My first thought isn't code, it's a query against a table with the 36 values, getting a Cartesian product. A quick example using a table with the 24 hours:
SELECT tblHours.StartHour, tblHours_1.StartHour
FROM tblHours, tblHours AS tblHours_1
This produced the expected 576 records.