Like with `issuedAt()` and `expiresAt()`, `notBefore()` takes and `Instant` and it should stay that way. Currently, the behavior is: ```java claims.put(NBF, nbf.getEpochSecond()) ``` But it should be ```java claims.put(NBF, nbf); ```