def create_timestamp_from_now(hour, minute, second): return toUTC(datetime.now().replace(hour=hour, minute=minute, second=second).isoformat())
def current_timestamp(): return toUTC(datetime.now()).isoformat()