41424344454647484950
} @Override public final boolean equals(Object that) { if (that instanceof Bool) { Bool thatBool = (Bool) that; return this.value() == thatBool.value(); } return false; }
33343536373839404142