bool operator==(Time a, Time b) { return a.seconds_from(b) == 0; }
bool operator!=(Time a, Time b) { return a.seconds_from(b) != 0; }
bool operator<(Time a, Time b) { return a.seconds_from(b) < 0; }