Can I persist the clock on the local device as follows: ``` const now = hlc.nxt() localStorage.setItem('hlc', now) // shut down app // restart app const last = localStorage.getItem('hlc') hlc.recv(last) ``` Is this necessary?