So we can just copy each row and fill it in with our data
Code: Select all
Marker min_40 min_20 min_10 0 min_8 min_4 min_2 min_1 Marker
M 0 1 0 0 1 0 0 0 M
Add that up and we get 28 minutes
Code: Select all
0 0 hour_20 hour_10 0 hour_8 hour_4 hour_2 hour_1 Marker
0 0 0 1 0 1 0 0 1 M
Add that up and we get hour 19.
Our date is give by a "day of the year" counter which takes up two rows:
Code: Select all
0 0 day_200 day_100 0 day_80 day_40 day_20 day_10 Marker
0 0 0 1 0 0 1 1 1 M
day_8 day_4 day_2 day_1 0 0 UT1_S[2] UT1_S[1] UT1_S[0] Marker
0 0 0 1 0 0 1 0 1 M
Add that up and we get 171. The UT1 stuff is for leap second correction, so ignore.
The last two digits of the year also takes two rows, plus more leap second stuff to ignore:
Code: Select all
UT1_C_0.8 UT1_C_0.4 UT1_C_0.2 UT1_C_0.1 0 year_80 year_40 year_20 year_10 Marker
0 0 0 0 0 0 0 1 0 M
year_8 year_4 year_2 year_1 0 LYI LSW DST[1] DST[0] Marker
0 1 0 0 0 1 0 1 1 M
Add up the year bits and we get 24.
So fully formatted we got 19 hours and 28 minutes UTC. 171 days = June 19 in the 24th year, or:
June 19, 2024 19:28 UTC
It works
