Wrapped Sequence Numbers
If adding to a high sequence number results in a small value, it has wrapped
Use very large numbers, and if the difference between two possibly adjacent number is huge, assume a wrap
So, a is older than b across space N if:
- a < b and |b - a| < N/2, or
- a > b and |b - a| > N/2