public BigInteger toBigInteger() {
   return SHORTENER.expand(this.shortId);
 }
 public ShortId(BigInteger bigInteger) {
   this.shortId = SHORTENER.shorten(bigInteger);
 }