factory BitVecNumeral.from(int value, {int size = 64}) { return BitVecNumeral( BigInt.from(value).toUnsigned(size), BitVecSort(size), ); }