@fhevm/sdk 1.1.0-alpha.5 → 1.1.0-alpha.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (606) hide show
  1. package/_cjs/core/_version.js +1 -1
  2. package/_cjs/core/actions/base/index.js +1 -17
  3. package/_cjs/core/actions/base/index.js.map +1 -1
  4. package/_cjs/core/actions/base/signDecryptionPermit.js +0 -3
  5. package/_cjs/core/actions/base/signDecryptionPermit.js.map +1 -1
  6. package/_cjs/core/actions/chain/index.js +1 -13
  7. package/_cjs/core/actions/chain/index.js.map +1 -1
  8. package/_cjs/core/actions/chain/parseSignedDecryptionPermit.js.map +1 -1
  9. package/_cjs/core/actions/chain/serializeSignedDecryptionPermit.js.map +1 -1
  10. package/_cjs/core/actions/decrypt/canDecryptValue.js.map +1 -1
  11. package/_cjs/core/actions/decrypt/canDecryptValues.js.map +1 -1
  12. package/_cjs/core/actions/decrypt/canDecryptValuesFromPairs.js.map +1 -1
  13. package/_cjs/core/actions/decrypt/decryptValue.js +1 -0
  14. package/_cjs/core/actions/decrypt/decryptValue.js.map +1 -1
  15. package/_cjs/core/actions/decrypt/decryptValues.js +2 -0
  16. package/_cjs/core/actions/decrypt/decryptValues.js.map +1 -1
  17. package/_cjs/core/actions/decrypt/decryptValuesFromPairs.js +2 -0
  18. package/_cjs/core/actions/decrypt/decryptValuesFromPairs.js.map +1 -1
  19. package/_cjs/core/actions/decrypt/index.js +1 -3
  20. package/_cjs/core/actions/decrypt/index.js.map +1 -1
  21. package/_cjs/core/actions/host/index.js +1 -9
  22. package/_cjs/core/actions/host/index.js.map +1 -1
  23. package/_cjs/core/base/bytes.js +2 -1
  24. package/_cjs/core/base/bytes.js.map +1 -1
  25. package/_cjs/core/base/cachedFetch.js +2 -1
  26. package/_cjs/core/base/cachedFetch.js.map +1 -1
  27. package/_cjs/core/base/environment.js +122 -0
  28. package/_cjs/core/base/environment.js.map +1 -0
  29. package/_cjs/core/base/errors/Sha256VerificationError.js +15 -0
  30. package/_cjs/core/base/errors/Sha256VerificationError.js.map +1 -0
  31. package/_cjs/core/base/inflate.js +282 -0
  32. package/_cjs/core/base/inflate.js.map +1 -0
  33. package/_cjs/core/base/isomorphicFs.js +24 -0
  34. package/_cjs/core/base/isomorphicFs.js.map +1 -0
  35. package/_cjs/core/base/isomorphicWorker.js +42 -111
  36. package/_cjs/core/base/isomorphicWorker.js.map +1 -1
  37. package/_cjs/core/base/uint.js +7 -0
  38. package/_cjs/core/base/uint.js.map +1 -1
  39. package/_cjs/core/base/wasm.js +15 -55
  40. package/_cjs/core/base/wasm.js.map +1 -1
  41. package/_cjs/core/clients/decorators/base.js +1 -1
  42. package/_cjs/core/clients/decorators/base.js.map +1 -1
  43. package/_cjs/core/host-contracts/canDecryptValuesFromPairs.js +4 -1
  44. package/_cjs/core/host-contracts/canDecryptValuesFromPairs.js.map +1 -1
  45. package/_cjs/core/host-contracts/getCoprocessorContextSignersAndThreshold-p.js +1 -1
  46. package/_cjs/core/host-contracts/getCoprocessorContextSignersAndThreshold-p.js.map +1 -1
  47. package/_cjs/core/host-contracts/getCurrentKmsContextAndEpoch-p.js +1 -1
  48. package/_cjs/core/host-contracts/getCurrentKmsContextAndEpoch-p.js.map +1 -1
  49. package/_cjs/core/host-contracts/getCurrentKmsContextId-p.js +1 -1
  50. package/_cjs/core/host-contracts/getCurrentKmsContextId-p.js.map +1 -1
  51. package/_cjs/core/host-contracts/getKmsContextSignersAndThreshold-p.js +1 -1
  52. package/_cjs/core/host-contracts/getKmsContextSignersAndThreshold-p.js.map +1 -1
  53. package/_cjs/core/kms/PublicDecryptionProof-p.js +4 -4
  54. package/_cjs/core/kms/SignedDecryptionPermit-p.js +33 -199
  55. package/_cjs/core/kms/SignedDecryptionPermit-p.js.map +1 -1
  56. package/_cjs/core/kms/SignedDecryptionPermitV1-p.js +217 -0
  57. package/_cjs/core/kms/SignedDecryptionPermitV1-p.js.map +1 -0
  58. package/_cjs/core/kms/SignedDecryptionPermitV2-p.js +184 -0
  59. package/_cjs/core/kms/SignedDecryptionPermitV2-p.js.map +1 -0
  60. package/_cjs/core/kms/TransportKeyPair-p.js +0 -4
  61. package/_cjs/core/kms/TransportKeyPair-p.js.map +1 -1
  62. package/_cjs/core/kms/{createKmsDelegatedUserDecryptEip712.js → createKmsDelegatedUserDecryptEip712V1.js} +9 -9
  63. package/_cjs/core/kms/createKmsDelegatedUserDecryptEip712V1.js.map +1 -0
  64. package/_cjs/core/kms/{createKmsUserDecryptEip712.js → createKmsUserDecryptEip712V1.js} +18 -14
  65. package/_cjs/core/kms/createKmsUserDecryptEip712V1.js.map +1 -0
  66. package/_cjs/core/kms/decryptValuesFromPairs.js +18 -2
  67. package/_cjs/core/kms/decryptValuesFromPairs.js.map +1 -1
  68. package/_cjs/core/kms/{fetchKmsSigncryptedShares-p.js → fetchKmsSigncryptedSharesV1-p.js} +18 -8
  69. package/_cjs/core/kms/fetchKmsSigncryptedSharesV1-p.js.map +1 -0
  70. package/_cjs/core/kms/fetchKmsSigncryptedSharesV2-p.js +95 -0
  71. package/_cjs/core/kms/fetchKmsSigncryptedSharesV2-p.js.map +1 -0
  72. package/_cjs/core/kms/{kmsDelegatedUserDecryptEip712Types.js → kmsDelegatedUserDecryptEip712V1Types.js} +8 -8
  73. package/_cjs/core/kms/kmsDelegatedUserDecryptEip712V1Types.js.map +1 -0
  74. package/_cjs/core/kms/{kmsUserDecryptEip712Types.js → kmsUserDecryptEip712V1Types.js} +8 -8
  75. package/_cjs/core/kms/kmsUserDecryptEip712V1Types.js.map +1 -0
  76. package/_cjs/core/kms/kmsUserDecryptEip712V2Types.js.map +1 -1
  77. package/_cjs/core/kms/publicDecrypt.js +2 -2
  78. package/_cjs/core/kms/utils.js +0 -19
  79. package/_cjs/core/kms/utils.js.map +1 -1
  80. package/_cjs/core/kms/verifyKmsPublicDecryptEip712-p.js +1 -1
  81. package/_cjs/core/modules/decrypt/module/api-p.js +5 -5
  82. package/_cjs/core/modules/decrypt/module/init-p.js +124 -40
  83. package/_cjs/core/modules/decrypt/module/init-p.js.map +1 -1
  84. package/_cjs/core/modules/encrypt/module/init-p.js +153 -49
  85. package/_cjs/core/modules/encrypt/module/init-p.js.map +1 -1
  86. package/_cjs/core/modules/relayer/cleartext/fetchPublicDecrypt.js +3 -3
  87. package/_cjs/core/modules/relayer/cleartext/fetchUserDecrypt.js.map +1 -1
  88. package/_cjs/core/modules/relayer/module/{fetchDelegatedUserDecrypt.js → fetchDelegatedUserDecryptV1.js} +1 -1
  89. package/_cjs/core/modules/relayer/module/fetchDelegatedUserDecryptV1.js.map +1 -0
  90. package/_cjs/core/modules/relayer/module/fetchPublicDecrypt.js +1 -1
  91. package/_cjs/core/modules/relayer/module/fetchUserDecrypt.js +11 -45
  92. package/_cjs/core/modules/relayer/module/fetchUserDecrypt.js.map +1 -1
  93. package/_cjs/core/modules/relayer/module/fetchUserDecryptV1.js +52 -0
  94. package/_cjs/core/modules/relayer/module/fetchUserDecryptV1.js.map +1 -0
  95. package/_cjs/core/modules/relayer/module/fetchUserDecryptV2.js +54 -0
  96. package/_cjs/core/modules/relayer/module/fetchUserDecryptV2.js.map +1 -0
  97. package/_cjs/core/modules/relayer/module/guards/RelayerResponseFailed.js +10 -2
  98. package/_cjs/core/modules/relayer/module/guards/RelayerResponseFailed.js.map +1 -1
  99. package/_cjs/core/modules/relayer/module/guards/api-errors/RelayerApiError400NoDetails.js +5 -2
  100. package/_cjs/core/modules/relayer/module/guards/api-errors/RelayerApiError400NoDetails.js.map +1 -1
  101. package/_cjs/core/modules/relayer/module/guards/api-errors/RelayerApiError503.js +2 -0
  102. package/_cjs/core/modules/relayer/module/guards/api-errors/RelayerApiError503.js.map +1 -1
  103. package/_cjs/core/modules/relayer/module/index.js +2 -2
  104. package/_cjs/core/modules/relayer/module/index.js.map +1 -1
  105. package/_cjs/core/runtime/HyperWasmSolver-p.js +5 -10
  106. package/_cjs/core/runtime/HyperWasmSolver-p.js.map +1 -1
  107. package/_cjs/core/runtime/initFhevmEncryptRuntime-p.js +1 -1
  108. package/_cjs/core/runtime/initFhevmRuntime-p.js +1 -1
  109. package/_cjs/core/utils-p/decrypt/{verifyKmsDelegatedUserDecryptEip712.js → verifyKmsDelegatedUserDecryptEip712V1.js} +5 -5
  110. package/_cjs/core/utils-p/decrypt/verifyKmsDelegatedUserDecryptEip712V1.js.map +1 -0
  111. package/_cjs/core/utils-p/decrypt/{verifyKmsUserDecryptEip712.js → verifyKmsUserDecryptEip712V1.js} +5 -5
  112. package/_cjs/core/utils-p/decrypt/verifyKmsUserDecryptEip712V1.js.map +1 -0
  113. package/_cjs/core/utils-p/decrypt/verifyKmsUserDecryptEip712V2.js +30 -0
  114. package/_cjs/core/utils-p/decrypt/verifyKmsUserDecryptEip712V2.js.map +1 -0
  115. package/_cjs/wasm/tfhe/TfheApi.d.ts +12 -12
  116. package/_cjs/wasm/tfhe/loadTfheLib.js +11 -11
  117. package/_cjs/wasm/tfhe/loadTfheLib.js.map +2 -2
  118. package/_cjs/wasm/tfhe/v1.5.3/startWorkers.js +26 -9
  119. package/_cjs/wasm/tfhe/v1.5.3/startWorkers.js.map +2 -2
  120. package/_cjs/wasm/tfhe/v1.5.3/tfhe.d.ts +3 -0
  121. package/_cjs/wasm/tfhe/{v1.6.1 → v1.6.2}/startWorkers.js +28 -11
  122. package/_cjs/wasm/tfhe/v1.6.2/startWorkers.js.map +7 -0
  123. package/_cjs/wasm/tfhe/{v1.6.1 → v1.6.2}/tfhe-worker.mjs +40 -40
  124. package/_cjs/wasm/tfhe/{v1.6.1 → v1.6.2}/tfhe.d.ts +88 -85
  125. package/_cjs/wasm/tfhe/{v1.6.1 → v1.6.2}/tfhe.js +245 -442
  126. package/_cjs/wasm/tfhe/v1.6.2/tfhe.js.map +7 -0
  127. package/_cjs/wasm/tfhe/v1.6.2/tfhe_bg.wasm +0 -0
  128. package/_cjs/wasm/tfhe/v1.6.2/tfhe_bg.wasm.base64.js +35 -0
  129. package/_cjs/wasm/tfhe/v1.6.2/tfhe_bg.wasm.base64.js.map +7 -0
  130. package/_cjs/wasm/tkms/loadKmsLib.js.map +1 -1
  131. package/_cjs/wasm/wasmBaseUrl.js +8 -19
  132. package/_cjs/wasm/wasmBaseUrl.js.map +2 -2
  133. package/_esm/core/_version.js +1 -1
  134. package/_esm/core/actions/base/index.js +0 -8
  135. package/_esm/core/actions/base/index.js.map +1 -1
  136. package/_esm/core/actions/base/signDecryptionPermit.js +0 -6
  137. package/_esm/core/actions/base/signDecryptionPermit.js.map +1 -1
  138. package/_esm/core/actions/chain/index.js +0 -6
  139. package/_esm/core/actions/chain/index.js.map +1 -1
  140. package/_esm/core/actions/chain/parseSignedDecryptionPermit.js.map +1 -1
  141. package/_esm/core/actions/chain/serializeSignedDecryptionPermit.js.map +1 -1
  142. package/_esm/core/actions/decrypt/canDecryptValue.js +40 -0
  143. package/_esm/core/actions/decrypt/canDecryptValue.js.map +1 -1
  144. package/_esm/core/actions/decrypt/canDecryptValues.js +1 -0
  145. package/_esm/core/actions/decrypt/canDecryptValues.js.map +1 -1
  146. package/_esm/core/actions/decrypt/canDecryptValuesFromPairs.js +1 -0
  147. package/_esm/core/actions/decrypt/canDecryptValuesFromPairs.js.map +1 -1
  148. package/_esm/core/actions/decrypt/decryptValue.js +1 -0
  149. package/_esm/core/actions/decrypt/decryptValue.js.map +1 -1
  150. package/_esm/core/actions/decrypt/decryptValues.js +2 -0
  151. package/_esm/core/actions/decrypt/decryptValues.js.map +1 -1
  152. package/_esm/core/actions/decrypt/decryptValuesFromPairs.js +2 -0
  153. package/_esm/core/actions/decrypt/decryptValuesFromPairs.js.map +1 -1
  154. package/_esm/core/actions/decrypt/index.js +0 -1
  155. package/_esm/core/actions/decrypt/index.js.map +1 -1
  156. package/_esm/core/actions/host/index.js +0 -4
  157. package/_esm/core/actions/host/index.js.map +1 -1
  158. package/_esm/core/base/bytes.js +2 -1
  159. package/_esm/core/base/bytes.js.map +1 -1
  160. package/_esm/core/base/cachedFetch.js +1 -0
  161. package/_esm/core/base/cachedFetch.js.map +1 -1
  162. package/_esm/core/base/environment.js +164 -0
  163. package/_esm/core/base/environment.js.map +1 -0
  164. package/_esm/core/base/errors/Sha256VerificationError.js +11 -0
  165. package/_esm/core/base/errors/Sha256VerificationError.js.map +1 -0
  166. package/_esm/core/base/inflate.js +337 -0
  167. package/_esm/core/base/inflate.js.map +1 -0
  168. package/_esm/core/base/isomorphicFs.js +21 -0
  169. package/_esm/core/base/isomorphicFs.js.map +1 -0
  170. package/_esm/core/base/isomorphicWorker.js +92 -85
  171. package/_esm/core/base/isomorphicWorker.js.map +1 -1
  172. package/_esm/core/base/uint.js +7 -0
  173. package/_esm/core/base/uint.js.map +1 -1
  174. package/_esm/core/base/wasm.js +25 -31
  175. package/_esm/core/base/wasm.js.map +1 -1
  176. package/_esm/core/clients/decorators/base.js +2 -4
  177. package/_esm/core/clients/decorators/base.js.map +1 -1
  178. package/_esm/core/coprocessor/coprocessorEip712Types.js +2 -2
  179. package/_esm/core/host-contracts/canDecryptValuesFromPairs.js +5 -2
  180. package/_esm/core/host-contracts/canDecryptValuesFromPairs.js.map +1 -1
  181. package/_esm/core/host-contracts/getCoprocessorContextSignersAndThreshold-p.js +2 -2
  182. package/_esm/core/host-contracts/getCoprocessorContextSignersAndThreshold-p.js.map +1 -1
  183. package/_esm/core/host-contracts/getCurrentKmsContextAndEpoch-p.js +2 -2
  184. package/_esm/core/host-contracts/getCurrentKmsContextAndEpoch-p.js.map +1 -1
  185. package/_esm/core/host-contracts/getCurrentKmsContextId-p.js +2 -2
  186. package/_esm/core/host-contracts/getCurrentKmsContextId-p.js.map +1 -1
  187. package/_esm/core/host-contracts/getKmsContextSignersAndThreshold-p.js +2 -2
  188. package/_esm/core/host-contracts/getKmsContextSignersAndThreshold-p.js.map +1 -1
  189. package/_esm/core/kms/PublicDecryptionProof-p.js +4 -4
  190. package/_esm/core/kms/SignedDecryptionPermit-p.js +48 -245
  191. package/_esm/core/kms/SignedDecryptionPermit-p.js.map +1 -1
  192. package/_esm/core/kms/SignedDecryptionPermitV1-p.js +258 -0
  193. package/_esm/core/kms/SignedDecryptionPermitV1-p.js.map +1 -0
  194. package/_esm/core/kms/SignedDecryptionPermitV2-p.js +204 -0
  195. package/_esm/core/kms/SignedDecryptionPermitV2-p.js.map +1 -0
  196. package/_esm/core/kms/TransportKeyPair-p.js +0 -4
  197. package/_esm/core/kms/TransportKeyPair-p.js.map +1 -1
  198. package/_esm/core/kms/{createKmsDelegatedUserDecryptEip712.js → createKmsDelegatedUserDecryptEip712V1.js} +8 -8
  199. package/_esm/core/kms/createKmsDelegatedUserDecryptEip712V1.js.map +1 -0
  200. package/_esm/core/kms/createKmsPublicDecryptEip712.js +1 -1
  201. package/_esm/core/kms/{createKmsUserDecryptEip712.js → createKmsUserDecryptEip712V1.js} +18 -14
  202. package/_esm/core/kms/createKmsUserDecryptEip712V1.js.map +1 -0
  203. package/_esm/core/kms/decryptValuesFromPairs.js +18 -2
  204. package/_esm/core/kms/decryptValuesFromPairs.js.map +1 -1
  205. package/_esm/core/kms/{fetchKmsSigncryptedShares-p.js → fetchKmsSigncryptedSharesV1-p.js} +23 -13
  206. package/_esm/core/kms/fetchKmsSigncryptedSharesV1-p.js.map +1 -0
  207. package/_esm/core/kms/fetchKmsSigncryptedSharesV2-p.js +119 -0
  208. package/_esm/core/kms/fetchKmsSigncryptedSharesV2-p.js.map +1 -0
  209. package/_esm/core/kms/{kmsDelegatedUserDecryptEip712Types.js → kmsDelegatedUserDecryptEip712V1Types.js} +9 -8
  210. package/_esm/core/kms/kmsDelegatedUserDecryptEip712V1Types.js.map +1 -0
  211. package/_esm/core/kms/kmsPublicDecryptEip712Types.js +1 -1
  212. package/_esm/core/kms/{kmsUserDecryptEip712Types.js → kmsUserDecryptEip712V1Types.js} +9 -8
  213. package/_esm/core/kms/kmsUserDecryptEip712V1Types.js.map +1 -0
  214. package/_esm/core/kms/kmsUserDecryptEip712V2Types.js +2 -1
  215. package/_esm/core/kms/kmsUserDecryptEip712V2Types.js.map +1 -1
  216. package/_esm/core/kms/publicDecrypt.js +2 -2
  217. package/_esm/core/kms/utils.js +0 -18
  218. package/_esm/core/kms/utils.js.map +1 -1
  219. package/_esm/core/kms/verifyKmsPublicDecryptEip712-p.js +2 -2
  220. package/_esm/core/modules/decrypt/module/api-p.js +6 -6
  221. package/_esm/core/modules/decrypt/module/init-p.js +110 -55
  222. package/_esm/core/modules/decrypt/module/init-p.js.map +1 -1
  223. package/_esm/core/modules/encrypt/module/init-p.js +306 -57
  224. package/_esm/core/modules/encrypt/module/init-p.js.map +1 -1
  225. package/_esm/core/modules/relayer/cleartext/fetchPublicDecrypt.js +3 -3
  226. package/_esm/core/modules/relayer/cleartext/fetchUserDecrypt.js.map +1 -1
  227. package/_esm/core/modules/relayer/module/{fetchDelegatedUserDecrypt.js → fetchDelegatedUserDecryptV1.js} +1 -1
  228. package/_esm/core/modules/relayer/module/fetchDelegatedUserDecryptV1.js.map +1 -0
  229. package/_esm/core/modules/relayer/module/fetchPublicDecrypt.js +1 -1
  230. package/_esm/core/modules/relayer/module/fetchUserDecrypt.js +11 -46
  231. package/_esm/core/modules/relayer/module/fetchUserDecrypt.js.map +1 -1
  232. package/_esm/core/modules/relayer/module/fetchUserDecryptV1.js +53 -0
  233. package/_esm/core/modules/relayer/module/fetchUserDecryptV1.js.map +1 -0
  234. package/_esm/core/modules/relayer/module/fetchUserDecryptV2.js +56 -0
  235. package/_esm/core/modules/relayer/module/fetchUserDecryptV2.js.map +1 -0
  236. package/_esm/core/modules/relayer/module/guards/RelayerResponseFailed.js +10 -2
  237. package/_esm/core/modules/relayer/module/guards/RelayerResponseFailed.js.map +1 -1
  238. package/_esm/core/modules/relayer/module/guards/api-errors/RelayerApiError400NoDetails.js +6 -3
  239. package/_esm/core/modules/relayer/module/guards/api-errors/RelayerApiError400NoDetails.js.map +1 -1
  240. package/_esm/core/modules/relayer/module/guards/api-errors/RelayerApiError503.js +2 -0
  241. package/_esm/core/modules/relayer/module/guards/api-errors/RelayerApiError503.js.map +1 -1
  242. package/_esm/core/modules/relayer/module/index.js +1 -1
  243. package/_esm/core/modules/relayer/module/index.js.map +1 -1
  244. package/_esm/core/runtime/HyperWasmSolver-p.js +5 -10
  245. package/_esm/core/runtime/HyperWasmSolver-p.js.map +1 -1
  246. package/_esm/core/runtime/initFhevmEncryptRuntime-p.js +1 -1
  247. package/_esm/core/runtime/initFhevmRuntime-p.js +1 -1
  248. package/_esm/core/utils-p/decrypt/{verifyKmsDelegatedUserDecryptEip712.js → verifyKmsDelegatedUserDecryptEip712V1.js} +5 -5
  249. package/_esm/core/utils-p/decrypt/verifyKmsDelegatedUserDecryptEip712V1.js.map +1 -0
  250. package/_esm/core/utils-p/decrypt/{verifyKmsUserDecryptEip712.js → verifyKmsUserDecryptEip712V1.js} +5 -5
  251. package/_esm/core/utils-p/decrypt/verifyKmsUserDecryptEip712V1.js.map +1 -0
  252. package/_esm/core/utils-p/decrypt/verifyKmsUserDecryptEip712V2.js +27 -0
  253. package/_esm/core/utils-p/decrypt/verifyKmsUserDecryptEip712V2.js.map +1 -0
  254. package/_esm/wasm/tfhe/TfheApi.d.ts +12 -12
  255. package/_esm/wasm/tfhe/loadTfheLib.js +11 -11
  256. package/_esm/wasm/tfhe/v1.5.3/startWorkers.js +41 -20
  257. package/_esm/wasm/tfhe/v1.5.3/tfhe.d.ts +3 -0
  258. package/_esm/wasm/tfhe/{v1.6.1 → v1.6.2}/startWorkers.js +46 -25
  259. package/_esm/wasm/tfhe/{v1.6.1 → v1.6.2}/tfhe-worker.mjs +40 -40
  260. package/_esm/wasm/tfhe/{v1.6.1 → v1.6.2}/tfhe.d.ts +88 -85
  261. package/_esm/wasm/tfhe/{v1.6.1 → v1.6.2}/tfhe.js +245 -442
  262. package/_esm/wasm/tfhe/v1.6.2/tfhe_bg.wasm +0 -0
  263. package/_esm/wasm/tfhe/v1.6.2/tfhe_bg.wasm.base64.js +7 -0
  264. package/_esm/wasm/wasmBaseUrl.js +17 -54
  265. package/_types/core/actions/base/index.d.ts +0 -8
  266. package/_types/core/actions/base/index.d.ts.map +1 -1
  267. package/_types/core/actions/base/signDecryptionPermit.d.ts +4 -5
  268. package/_types/core/actions/base/signDecryptionPermit.d.ts.map +1 -1
  269. package/_types/core/actions/chain/index.d.ts +1 -7
  270. package/_types/core/actions/chain/index.d.ts.map +1 -1
  271. package/_types/core/actions/chain/parseSignedDecryptionPermit.d.ts +1 -0
  272. package/_types/core/actions/chain/parseSignedDecryptionPermit.d.ts.map +1 -1
  273. package/_types/core/actions/chain/serializeSignedDecryptionPermit.d.ts +3 -2
  274. package/_types/core/actions/chain/serializeSignedDecryptionPermit.d.ts.map +1 -1
  275. package/_types/core/actions/decrypt/canDecryptValue.d.ts +3 -4
  276. package/_types/core/actions/decrypt/canDecryptValue.d.ts.map +1 -1
  277. package/_types/core/actions/decrypt/canDecryptValues.d.ts +3 -4
  278. package/_types/core/actions/decrypt/canDecryptValues.d.ts.map +1 -1
  279. package/_types/core/actions/decrypt/canDecryptValuesFromPairs.d.ts +3 -4
  280. package/_types/core/actions/decrypt/canDecryptValuesFromPairs.d.ts.map +1 -1
  281. package/_types/core/actions/decrypt/decryptValue.d.ts.map +1 -1
  282. package/_types/core/actions/decrypt/decryptValues.d.ts.map +1 -1
  283. package/_types/core/actions/decrypt/decryptValuesFromPairs.d.ts.map +1 -1
  284. package/_types/core/actions/decrypt/index.d.ts +0 -1
  285. package/_types/core/actions/decrypt/index.d.ts.map +1 -1
  286. package/_types/core/actions/host/index.d.ts +0 -4
  287. package/_types/core/actions/host/index.d.ts.map +1 -1
  288. package/_types/core/base/bytes.d.ts.map +1 -1
  289. package/_types/core/base/cachedFetch.d.ts +1 -0
  290. package/_types/core/base/cachedFetch.d.ts.map +1 -1
  291. package/_types/core/base/environment.d.ts +92 -0
  292. package/_types/core/base/environment.d.ts.map +1 -0
  293. package/_types/core/base/errors/Sha256VerificationError.d.ts +14 -0
  294. package/_types/core/base/errors/Sha256VerificationError.d.ts.map +1 -0
  295. package/_types/core/base/inflate.d.ts +25 -0
  296. package/_types/core/base/inflate.d.ts.map +1 -0
  297. package/_types/core/base/isomorphicFs.d.ts +2 -0
  298. package/_types/core/base/isomorphicFs.d.ts.map +1 -0
  299. package/_types/core/base/isomorphicWorker.d.ts +27 -43
  300. package/_types/core/base/isomorphicWorker.d.ts.map +1 -1
  301. package/_types/core/base/uint.d.ts +2 -1
  302. package/_types/core/base/uint.d.ts.map +1 -1
  303. package/_types/core/base/wasm.d.ts +0 -8
  304. package/_types/core/base/wasm.d.ts.map +1 -1
  305. package/_types/core/clients/decorators/base.d.ts +12 -23
  306. package/_types/core/clients/decorators/base.d.ts.map +1 -1
  307. package/_types/core/host-contracts/canDecryptValuesFromPairs.d.ts +2 -2
  308. package/_types/core/host-contracts/canDecryptValuesFromPairs.d.ts.map +1 -1
  309. package/_types/core/kms/PublicDecryptionProof-p.d.ts +1 -1
  310. package/_types/core/kms/SignedDecryptionPermit-p.d.ts +15 -29
  311. package/_types/core/kms/SignedDecryptionPermit-p.d.ts.map +1 -1
  312. package/_types/core/kms/SignedDecryptionPermitV1-p.d.ts +7 -0
  313. package/_types/core/kms/SignedDecryptionPermitV1-p.d.ts.map +1 -0
  314. package/_types/core/kms/SignedDecryptionPermitV2-p.d.ts +7 -0
  315. package/_types/core/kms/SignedDecryptionPermitV2-p.d.ts.map +1 -0
  316. package/_types/core/kms/TransportKeyPair-p.d.ts.map +1 -1
  317. package/_types/core/kms/createKmsDelegatedUserDecryptEip712V1.d.ts +15 -0
  318. package/_types/core/kms/createKmsDelegatedUserDecryptEip712V1.d.ts.map +1 -0
  319. package/_types/core/kms/createKmsUserDecryptEip712V1.d.ts +26 -0
  320. package/_types/core/kms/createKmsUserDecryptEip712V1.d.ts.map +1 -0
  321. package/_types/core/kms/createKmsUserDecryptEip712V2.d.ts +1 -1
  322. package/_types/core/kms/createKmsUserDecryptEip712V2.d.ts.map +1 -1
  323. package/_types/core/kms/decryptValuesFromPairs.d.ts +4 -11
  324. package/_types/core/kms/decryptValuesFromPairs.d.ts.map +1 -1
  325. package/_types/core/kms/{fetchKmsSigncryptedShares-p.d.ts → fetchKmsSigncryptedSharesV1-p.d.ts} +10 -12
  326. package/_types/core/kms/fetchKmsSigncryptedSharesV1-p.d.ts.map +1 -0
  327. package/_types/core/kms/fetchKmsSigncryptedSharesV2-p.d.ts +28 -0
  328. package/_types/core/kms/fetchKmsSigncryptedSharesV2-p.d.ts.map +1 -0
  329. package/_types/core/kms/kmsDelegatedUserDecryptEip712V1Types.d.ts +3 -0
  330. package/_types/core/kms/kmsDelegatedUserDecryptEip712V1Types.d.ts.map +1 -0
  331. package/_types/core/kms/kmsUserDecryptEip712V1Types.d.ts +3 -0
  332. package/_types/core/kms/kmsUserDecryptEip712V1Types.d.ts.map +1 -0
  333. package/_types/core/kms/kmsUserDecryptEip712V2Types.d.ts.map +1 -1
  334. package/_types/core/kms/utils.d.ts +0 -4
  335. package/_types/core/kms/utils.d.ts.map +1 -1
  336. package/_types/core/kms/verifyKmsPublicDecryptEip712-p.d.ts +1 -1
  337. package/_types/core/modules/decrypt/module/init-p.d.ts.map +1 -1
  338. package/_types/core/modules/encrypt/module/init-p.d.ts.map +1 -1
  339. package/_types/core/modules/relayer/cleartext/fetchUserDecrypt.d.ts +2 -2
  340. package/_types/core/modules/relayer/cleartext/fetchUserDecrypt.d.ts.map +1 -1
  341. package/_types/core/modules/relayer/module/{fetchDelegatedUserDecrypt.d.ts → fetchDelegatedUserDecryptV1.d.ts} +1 -1
  342. package/_types/core/modules/relayer/module/fetchDelegatedUserDecryptV1.d.ts.map +1 -0
  343. package/_types/core/modules/relayer/module/fetchUserDecrypt.d.ts.map +1 -1
  344. package/_types/core/modules/relayer/module/fetchUserDecryptV1.d.ts +3 -0
  345. package/_types/core/modules/relayer/module/fetchUserDecryptV1.d.ts.map +1 -0
  346. package/_types/core/modules/relayer/module/fetchUserDecryptV2.d.ts +3 -0
  347. package/_types/core/modules/relayer/module/fetchUserDecryptV2.d.ts.map +1 -0
  348. package/_types/core/modules/relayer/module/guards/RelayerResponseFailed.d.ts.map +1 -1
  349. package/_types/core/modules/relayer/module/guards/api-errors/RelayerApiError400NoDetails.d.ts +1 -1
  350. package/_types/core/modules/relayer/module/guards/api-errors/RelayerApiError400NoDetails.d.ts.map +1 -1
  351. package/_types/core/modules/relayer/module/guards/api-errors/RelayerApiError503.d.ts.map +1 -1
  352. package/_types/core/modules/relayer/types.d.ts +18 -5
  353. package/_types/core/modules/relayer/types.d.ts.map +1 -1
  354. package/_types/core/types/kms.d.ts +18 -19
  355. package/_types/core/types/kms.d.ts.map +1 -1
  356. package/_types/core/types/logger.d.ts +3 -3
  357. package/_types/core/types/logger.d.ts.map +1 -1
  358. package/_types/core/types/record-p.d.ts +2 -1
  359. package/_types/core/types/record-p.d.ts.map +1 -1
  360. package/_types/core/types/relayer-p.d.ts +27 -5
  361. package/_types/core/types/relayer-p.d.ts.map +1 -1
  362. package/_types/core/types/signedDecryptionPermit.d.ts +37 -26
  363. package/_types/core/types/signedDecryptionPermit.d.ts.map +1 -1
  364. package/_types/core/types/wasmAssets.d.ts.map +1 -1
  365. package/_types/core/utils-p/decrypt/verifyKmsDelegatedUserDecryptEip712V1.d.ts +14 -0
  366. package/_types/core/utils-p/decrypt/verifyKmsDelegatedUserDecryptEip712V1.d.ts.map +1 -0
  367. package/_types/core/utils-p/decrypt/verifyKmsUserDecryptEip712V1.d.ts +14 -0
  368. package/_types/core/utils-p/decrypt/verifyKmsUserDecryptEip712V1.d.ts.map +1 -0
  369. package/_types/core/utils-p/decrypt/verifyKmsUserDecryptEip712V2.d.ts +14 -0
  370. package/_types/core/utils-p/decrypt/verifyKmsUserDecryptEip712V2.d.ts.map +1 -0
  371. package/_types/core/utils-p/runtime/recoverSigners.d.ts +2 -2
  372. package/_types/wasm/tfhe/TfheApi.d.ts +12 -12
  373. package/_types/wasm/tfhe/v1.5.3/tfhe.d.ts +3 -0
  374. package/_types/wasm/tfhe/{v1.6.1 → v1.6.2}/tfhe.d.ts +88 -85
  375. package/core/_version.ts +1 -1
  376. package/core/actions/base/index.ts +0 -42
  377. package/core/actions/base/signDecryptionPermit.ts +3 -31
  378. package/core/actions/chain/index.ts +0 -28
  379. package/core/actions/chain/parseSignedDecryptionPermit.ts +1 -0
  380. package/core/actions/chain/serializeSignedDecryptionPermit.ts +3 -2
  381. package/core/actions/decrypt/canDecryptValue.ts +2 -16
  382. package/core/actions/decrypt/canDecryptValues.ts +2 -16
  383. package/core/actions/decrypt/canDecryptValuesFromPairs.ts +2 -16
  384. package/core/actions/decrypt/decryptValue.ts +2 -1
  385. package/core/actions/decrypt/decryptValues.ts +3 -1
  386. package/core/actions/decrypt/decryptValuesFromPairs.ts +3 -1
  387. package/core/actions/decrypt/index.ts +0 -6
  388. package/core/actions/host/index.ts +0 -20
  389. package/core/base/bytes.ts +2 -1
  390. package/core/base/cachedFetch.ts +1 -0
  391. package/core/base/environment.ts +210 -0
  392. package/core/base/errors/Sha256VerificationError.ts +22 -0
  393. package/core/base/inflate.ts +373 -0
  394. package/core/base/isomorphicFs.ts +23 -0
  395. package/core/base/isomorphicWorker.ts +96 -123
  396. package/core/base/uint.ts +18 -1
  397. package/core/base/wasm.ts +28 -35
  398. package/core/clients/decorators/base.ts +13 -37
  399. package/core/coprocessor/coprocessorEip712Types.ts +2 -2
  400. package/core/host-contracts/canDecryptValuesFromPairs.ts +7 -7
  401. package/core/host-contracts/getCoprocessorContextSignersAndThreshold-p.ts +2 -2
  402. package/core/host-contracts/getCurrentKmsContextAndEpoch-p.ts +2 -2
  403. package/core/host-contracts/getCurrentKmsContextId-p.ts +2 -2
  404. package/core/host-contracts/getKmsContextSignersAndThreshold-p.ts +2 -2
  405. package/core/kms/PublicDecryptionProof-p.ts +5 -5
  406. package/core/kms/SignedDecryptionPermit-p.ts +67 -357
  407. package/core/kms/SignedDecryptionPermitV1-p.ts +350 -0
  408. package/core/kms/SignedDecryptionPermitV2-p.ts +292 -0
  409. package/core/kms/TransportKeyPair-p.ts +0 -5
  410. package/core/kms/{createKmsDelegatedUserDecryptEip712.ts → createKmsDelegatedUserDecryptEip712V1.ts} +16 -16
  411. package/core/kms/createKmsPublicDecryptEip712.ts +1 -1
  412. package/core/kms/{createKmsUserDecryptEip712.ts → createKmsUserDecryptEip712V1.ts} +31 -22
  413. package/core/kms/createKmsUserDecryptEip712V2.ts +1 -1
  414. package/core/kms/decryptValuesFromPairs.ts +34 -22
  415. package/core/kms/{fetchKmsSigncryptedShares-p.ts → fetchKmsSigncryptedSharesV1-p.ts} +35 -30
  416. package/core/kms/fetchKmsSigncryptedSharesV2-p.ts +176 -0
  417. package/core/kms/{kmsDelegatedUserDecryptEip712Types.ts → kmsDelegatedUserDecryptEip712V1Types.ts} +9 -8
  418. package/core/kms/kmsPublicDecryptEip712Types.ts +1 -1
  419. package/core/kms/{kmsUserDecryptEip712Types.ts → kmsUserDecryptEip712V1Types.ts} +9 -8
  420. package/core/kms/kmsUserDecryptEip712V2Types.ts +2 -1
  421. package/core/kms/publicDecrypt.ts +2 -2
  422. package/core/kms/utils.ts +0 -32
  423. package/core/kms/verifyKmsPublicDecryptEip712-p.ts +3 -3
  424. package/core/modules/decrypt/module/api-p.ts +8 -8
  425. package/core/modules/decrypt/module/init-p.ts +149 -60
  426. package/core/modules/encrypt/module/init-p.ts +377 -67
  427. package/core/modules/relayer/cleartext/fetchPublicDecrypt.ts +3 -3
  428. package/core/modules/relayer/cleartext/fetchUserDecrypt.ts +2 -2
  429. package/core/modules/relayer/module/fetchPublicDecrypt.ts +1 -1
  430. package/core/modules/relayer/module/fetchUserDecrypt.ts +20 -56
  431. package/core/modules/relayer/module/fetchUserDecryptV1.ts +69 -0
  432. package/core/modules/relayer/module/fetchUserDecryptV2.ts +71 -0
  433. package/core/modules/relayer/module/guards/RelayerResponseFailed.ts +10 -2
  434. package/core/modules/relayer/module/guards/api-errors/RelayerApiError400NoDetails.ts +6 -3
  435. package/core/modules/relayer/module/guards/api-errors/RelayerApiError503.ts +2 -0
  436. package/core/modules/relayer/module/index.ts +1 -1
  437. package/core/modules/relayer/types.ts +24 -5
  438. package/core/runtime/HyperWasmSolver-p.ts +5 -9
  439. package/core/runtime/initFhevmEncryptRuntime-p.ts +1 -1
  440. package/core/runtime/initFhevmRuntime-p.ts +1 -1
  441. package/core/types/kms.ts +40 -28
  442. package/core/types/logger.ts +3 -3
  443. package/core/types/record-p.ts +2 -1
  444. package/core/types/relayer-p.ts +48 -5
  445. package/core/types/signedDecryptionPermit.ts +47 -26
  446. package/core/types/wasmAssets.ts +58 -0
  447. package/core/utils-p/decrypt/{verifyKmsDelegatedUserDecryptEip712.ts → verifyKmsDelegatedUserDecryptEip712V1.ts} +9 -9
  448. package/core/utils-p/decrypt/{verifyKmsUserDecryptEip712.ts → verifyKmsUserDecryptEip712V1.ts} +9 -9
  449. package/core/utils-p/decrypt/verifyKmsUserDecryptEip712V2.ts +43 -0
  450. package/core/utils-p/runtime/recoverSigners.ts +2 -2
  451. package/package.json +1 -1
  452. package/wasm/tfhe/TfheApi.d.ts +12 -12
  453. package/wasm/tfhe/loadTfheLib.js +11 -11
  454. package/wasm/tfhe/v1.5.3/startWorkers.js +41 -20
  455. package/wasm/tfhe/v1.5.3/tfhe.d.ts +3 -0
  456. package/wasm/tfhe/v1.6.0-dev/startWorkers.js +41 -20
  457. package/wasm/tfhe/v1.6.0-dev/tfhe.d.ts +3 -0
  458. package/wasm/tfhe/{v1.6.1 → v1.6.2}/startWorkers.js +46 -25
  459. package/wasm/tfhe/{v1.6.1 → v1.6.2}/tfhe-worker.mjs +40 -40
  460. package/wasm/tfhe/{v1.6.1 → v1.6.2}/tfhe.d.ts +88 -85
  461. package/wasm/tfhe/{v1.6.1 → v1.6.2}/tfhe.js +245 -442
  462. package/wasm/tfhe/v1.6.2/tfhe_bg.wasm +0 -0
  463. package/wasm/tfhe/v1.6.2/tfhe_bg.wasm.base64.js +7 -0
  464. package/wasm/wasmBaseUrl.js +17 -54
  465. package/_cjs/core/actions/base/createVerifiedInputProofFromRawBytes.js +0 -10
  466. package/_cjs/core/actions/base/createVerifiedInputProofFromRawBytes.js.map +0 -1
  467. package/_cjs/core/actions/base/fetchKmsSigncryptedShares.js +0 -19
  468. package/_cjs/core/actions/base/fetchKmsSigncryptedShares.js.map +0 -1
  469. package/_cjs/core/actions/base/fetchVerifiedInputProof.js +0 -11
  470. package/_cjs/core/actions/base/fetchVerifiedInputProof.js.map +0 -1
  471. package/_cjs/core/actions/base/readKmsSignersContext.js +0 -11
  472. package/_cjs/core/actions/base/readKmsSignersContext.js.map +0 -1
  473. package/_cjs/core/actions/base/verifyHandlesCoprocessorSignatures.js +0 -31
  474. package/_cjs/core/actions/base/verifyHandlesCoprocessorSignatures.js.map +0 -1
  475. package/_cjs/core/actions/base/verifyInputProof.js +0 -24
  476. package/_cjs/core/actions/base/verifyInputProof.js.map +0 -1
  477. package/_cjs/core/actions/base/verifyZkProofCoprocessorSignatures.js +0 -17
  478. package/_cjs/core/actions/base/verifyZkProofCoprocessorSignatures.js.map +0 -1
  479. package/_cjs/core/actions/chain/createCoprocessorEip712Domain.js +0 -11
  480. package/_cjs/core/actions/chain/createCoprocessorEip712Domain.js.map +0 -1
  481. package/_cjs/core/actions/chain/createKmsDelegatedUserDecryptEip712.js +0 -17
  482. package/_cjs/core/actions/chain/createKmsDelegatedUserDecryptEip712.js.map +0 -1
  483. package/_cjs/core/actions/chain/createKmsEip712Domain.js +0 -11
  484. package/_cjs/core/actions/chain/createKmsEip712Domain.js.map +0 -1
  485. package/_cjs/core/actions/chain/createKmsUserDecryptEip712.js +0 -16
  486. package/_cjs/core/actions/chain/createKmsUserDecryptEip712.js.map +0 -1
  487. package/_cjs/core/actions/chain/verifyKmsDelegatedUserDecryptEip712.js +0 -8
  488. package/_cjs/core/actions/chain/verifyKmsDelegatedUserDecryptEip712.js.map +0 -1
  489. package/_cjs/core/actions/chain/verifyKmsUserDecryptEip712.js +0 -8
  490. package/_cjs/core/actions/chain/verifyKmsUserDecryptEip712.js.map +0 -1
  491. package/_cjs/core/actions/decrypt/decryptKmsSigncryptedShares.js +0 -13
  492. package/_cjs/core/actions/decrypt/decryptKmsSigncryptedShares.js.map +0 -1
  493. package/_cjs/core/kms/createKmsDelegatedUserDecryptEip712.js.map +0 -1
  494. package/_cjs/core/kms/createKmsUserDecryptEip712.js.map +0 -1
  495. package/_cjs/core/kms/fetchKmsSigncryptedShares-p.js.map +0 -1
  496. package/_cjs/core/kms/kmsDelegatedUserDecryptEip712Types.js.map +0 -1
  497. package/_cjs/core/kms/kmsUserDecryptEip712Types.js.map +0 -1
  498. package/_cjs/core/modules/relayer/module/fetchDelegatedUserDecrypt.js.map +0 -1
  499. package/_cjs/core/utils-p/decrypt/verifyKmsDelegatedUserDecryptEip712.js.map +0 -1
  500. package/_cjs/core/utils-p/decrypt/verifyKmsUserDecryptEip712.js.map +0 -1
  501. package/_cjs/wasm/tfhe/v1.6.1/startWorkers.js.map +0 -7
  502. package/_cjs/wasm/tfhe/v1.6.1/tfhe.js.map +0 -7
  503. package/_cjs/wasm/tfhe/v1.6.1/tfhe_bg.wasm +0 -0
  504. package/_cjs/wasm/tfhe/v1.6.1/tfhe_bg.wasm.base64.js +0 -35
  505. package/_cjs/wasm/tfhe/v1.6.1/tfhe_bg.wasm.base64.js.map +0 -7
  506. package/_esm/core/actions/base/createVerifiedInputProofFromRawBytes.js +0 -7
  507. package/_esm/core/actions/base/createVerifiedInputProofFromRawBytes.js.map +0 -1
  508. package/_esm/core/actions/base/fetchKmsSigncryptedShares.js +0 -17
  509. package/_esm/core/actions/base/fetchKmsSigncryptedShares.js.map +0 -1
  510. package/_esm/core/actions/base/fetchVerifiedInputProof.js +0 -8
  511. package/_esm/core/actions/base/fetchVerifiedInputProof.js.map +0 -1
  512. package/_esm/core/actions/base/readKmsSignersContext.js +0 -10
  513. package/_esm/core/actions/base/readKmsSignersContext.js.map +0 -1
  514. package/_esm/core/actions/base/verifyHandlesCoprocessorSignatures.js +0 -35
  515. package/_esm/core/actions/base/verifyHandlesCoprocessorSignatures.js.map +0 -1
  516. package/_esm/core/actions/base/verifyInputProof.js +0 -22
  517. package/_esm/core/actions/base/verifyInputProof.js.map +0 -1
  518. package/_esm/core/actions/base/verifyZkProofCoprocessorSignatures.js +0 -14
  519. package/_esm/core/actions/base/verifyZkProofCoprocessorSignatures.js.map +0 -1
  520. package/_esm/core/actions/chain/createCoprocessorEip712Domain.js +0 -8
  521. package/_esm/core/actions/chain/createCoprocessorEip712Domain.js.map +0 -1
  522. package/_esm/core/actions/chain/createKmsDelegatedUserDecryptEip712.js +0 -15
  523. package/_esm/core/actions/chain/createKmsDelegatedUserDecryptEip712.js.map +0 -1
  524. package/_esm/core/actions/chain/createKmsEip712Domain.js +0 -8
  525. package/_esm/core/actions/chain/createKmsEip712Domain.js.map +0 -1
  526. package/_esm/core/actions/chain/createKmsUserDecryptEip712.js +0 -14
  527. package/_esm/core/actions/chain/createKmsUserDecryptEip712.js.map +0 -1
  528. package/_esm/core/actions/chain/verifyKmsDelegatedUserDecryptEip712.js +0 -5
  529. package/_esm/core/actions/chain/verifyKmsDelegatedUserDecryptEip712.js.map +0 -1
  530. package/_esm/core/actions/chain/verifyKmsUserDecryptEip712.js +0 -5
  531. package/_esm/core/actions/chain/verifyKmsUserDecryptEip712.js.map +0 -1
  532. package/_esm/core/actions/decrypt/decryptKmsSigncryptedShares.js +0 -11
  533. package/_esm/core/actions/decrypt/decryptKmsSigncryptedShares.js.map +0 -1
  534. package/_esm/core/kms/createKmsDelegatedUserDecryptEip712.js.map +0 -1
  535. package/_esm/core/kms/createKmsUserDecryptEip712.js.map +0 -1
  536. package/_esm/core/kms/fetchKmsSigncryptedShares-p.js.map +0 -1
  537. package/_esm/core/kms/kmsDelegatedUserDecryptEip712Types.js.map +0 -1
  538. package/_esm/core/kms/kmsUserDecryptEip712Types.js.map +0 -1
  539. package/_esm/core/modules/relayer/module/fetchDelegatedUserDecrypt.js.map +0 -1
  540. package/_esm/core/utils-p/decrypt/verifyKmsDelegatedUserDecryptEip712.js.map +0 -1
  541. package/_esm/core/utils-p/decrypt/verifyKmsUserDecryptEip712.js.map +0 -1
  542. package/_esm/wasm/tfhe/v1.6.1/tfhe_bg.wasm +0 -0
  543. package/_esm/wasm/tfhe/v1.6.1/tfhe_bg.wasm.base64.js +0 -7
  544. package/_types/core/actions/base/createVerifiedInputProofFromRawBytes.d.ts +0 -14
  545. package/_types/core/actions/base/createVerifiedInputProofFromRawBytes.d.ts.map +0 -1
  546. package/_types/core/actions/base/fetchKmsSigncryptedShares.d.ts +0 -41
  547. package/_types/core/actions/base/fetchKmsSigncryptedShares.d.ts.map +0 -1
  548. package/_types/core/actions/base/fetchVerifiedInputProof.d.ts +0 -14
  549. package/_types/core/actions/base/fetchVerifiedInputProof.d.ts.map +0 -1
  550. package/_types/core/actions/base/readKmsSignersContext.d.ts +0 -6
  551. package/_types/core/actions/base/readKmsSignersContext.d.ts.map +0 -1
  552. package/_types/core/actions/base/verifyHandlesCoprocessorSignatures.d.ts +0 -14
  553. package/_types/core/actions/base/verifyHandlesCoprocessorSignatures.d.ts.map +0 -1
  554. package/_types/core/actions/base/verifyInputProof.d.ts +0 -14
  555. package/_types/core/actions/base/verifyInputProof.d.ts.map +0 -1
  556. package/_types/core/actions/base/verifyZkProofCoprocessorSignatures.d.ts +0 -11
  557. package/_types/core/actions/base/verifyZkProofCoprocessorSignatures.d.ts.map +0 -1
  558. package/_types/core/actions/chain/createCoprocessorEip712Domain.d.ts +0 -7
  559. package/_types/core/actions/chain/createCoprocessorEip712Domain.d.ts.map +0 -1
  560. package/_types/core/actions/chain/createKmsDelegatedUserDecryptEip712.d.ts +0 -15
  561. package/_types/core/actions/chain/createKmsDelegatedUserDecryptEip712.d.ts.map +0 -1
  562. package/_types/core/actions/chain/createKmsEip712Domain.d.ts +0 -7
  563. package/_types/core/actions/chain/createKmsEip712Domain.d.ts.map +0 -1
  564. package/_types/core/actions/chain/createKmsUserDecryptEip712.d.ts +0 -14
  565. package/_types/core/actions/chain/createKmsUserDecryptEip712.d.ts.map +0 -1
  566. package/_types/core/actions/chain/verifyKmsDelegatedUserDecryptEip712.d.ts +0 -7
  567. package/_types/core/actions/chain/verifyKmsDelegatedUserDecryptEip712.d.ts.map +0 -1
  568. package/_types/core/actions/chain/verifyKmsUserDecryptEip712.d.ts +0 -7
  569. package/_types/core/actions/chain/verifyKmsUserDecryptEip712.d.ts.map +0 -1
  570. package/_types/core/actions/decrypt/decryptKmsSigncryptedShares.d.ts +0 -13
  571. package/_types/core/actions/decrypt/decryptKmsSigncryptedShares.d.ts.map +0 -1
  572. package/_types/core/kms/createKmsDelegatedUserDecryptEip712.d.ts +0 -15
  573. package/_types/core/kms/createKmsDelegatedUserDecryptEip712.d.ts.map +0 -1
  574. package/_types/core/kms/createKmsUserDecryptEip712.d.ts +0 -26
  575. package/_types/core/kms/createKmsUserDecryptEip712.d.ts.map +0 -1
  576. package/_types/core/kms/fetchKmsSigncryptedShares-p.d.ts.map +0 -1
  577. package/_types/core/kms/kmsDelegatedUserDecryptEip712Types.d.ts +0 -3
  578. package/_types/core/kms/kmsDelegatedUserDecryptEip712Types.d.ts.map +0 -1
  579. package/_types/core/kms/kmsUserDecryptEip712Types.d.ts +0 -3
  580. package/_types/core/kms/kmsUserDecryptEip712Types.d.ts.map +0 -1
  581. package/_types/core/modules/relayer/module/fetchDelegatedUserDecrypt.d.ts.map +0 -1
  582. package/_types/core/utils-p/decrypt/verifyKmsDelegatedUserDecryptEip712.d.ts +0 -14
  583. package/_types/core/utils-p/decrypt/verifyKmsDelegatedUserDecryptEip712.d.ts.map +0 -1
  584. package/_types/core/utils-p/decrypt/verifyKmsUserDecryptEip712.d.ts +0 -14
  585. package/_types/core/utils-p/decrypt/verifyKmsUserDecryptEip712.d.ts.map +0 -1
  586. package/core/actions/base/createVerifiedInputProofFromRawBytes.ts +0 -24
  587. package/core/actions/base/fetchKmsSigncryptedShares.ts +0 -83
  588. package/core/actions/base/fetchVerifiedInputProof.ts +0 -25
  589. package/core/actions/base/readKmsSignersContext.ts +0 -20
  590. package/core/actions/base/verifyHandlesCoprocessorSignatures.ts +0 -60
  591. package/core/actions/base/verifyInputProof.ts +0 -45
  592. package/core/actions/base/verifyZkProofCoprocessorSignatures.ts +0 -32
  593. package/core/actions/chain/createCoprocessorEip712Domain.ts +0 -16
  594. package/core/actions/chain/createKmsDelegatedUserDecryptEip712.ts +0 -36
  595. package/core/actions/chain/createKmsEip712Domain.ts +0 -16
  596. package/core/actions/chain/createKmsUserDecryptEip712.ts +0 -34
  597. package/core/actions/chain/verifyKmsDelegatedUserDecryptEip712.ts +0 -16
  598. package/core/actions/chain/verifyKmsUserDecryptEip712.ts +0 -16
  599. package/core/actions/decrypt/decryptKmsSigncryptedShares.ts +0 -34
  600. package/wasm/tfhe/v1.6.1/tfhe_bg.wasm +0 -0
  601. package/wasm/tfhe/v1.6.1/tfhe_bg.wasm.base64.js +0 -7
  602. /package/_cjs/wasm/tfhe/{v1.6.1 → v1.6.2}/tfhe_bg.wasm.base64.d.ts +0 -0
  603. /package/_esm/wasm/tfhe/{v1.6.1 → v1.6.2}/tfhe_bg.wasm.base64.d.ts +0 -0
  604. /package/_types/wasm/tfhe/{v1.6.1 → v1.6.2}/tfhe_bg.wasm.base64.d.ts +0 -0
  605. /package/core/modules/relayer/module/{fetchDelegatedUserDecrypt.ts → fetchDelegatedUserDecryptV1.ts} +0 -0
  606. /package/wasm/tfhe/{v1.6.1 → v1.6.2}/tfhe_bg.wasm.base64.d.ts +0 -0
@@ -297,7 +297,6 @@ if (Symbol.dispose) Boolean.prototype[Symbol.dispose] = Boolean.prototype.free;
297
297
 
298
298
  export class BooleanCiphertext {
299
299
  static __wrap(ptr) {
300
- ptr = ptr >>> 0;
301
300
  const obj = Object.create(BooleanCiphertext.prototype);
302
301
  obj.__wbg_ptr = ptr;
303
302
  BooleanCiphertextFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -318,7 +317,6 @@ if (Symbol.dispose) BooleanCiphertext.prototype[Symbol.dispose] = BooleanCiphert
318
317
 
319
318
  export class BooleanClientKey {
320
319
  static __wrap(ptr) {
321
- ptr = ptr >>> 0;
322
320
  const obj = Object.create(BooleanClientKey.prototype);
323
321
  obj.__wbg_ptr = ptr;
324
322
  BooleanClientKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -339,7 +337,6 @@ if (Symbol.dispose) BooleanClientKey.prototype[Symbol.dispose] = BooleanClientKe
339
337
 
340
338
  export class BooleanCompressedCiphertext {
341
339
  static __wrap(ptr) {
342
- ptr = ptr >>> 0;
343
340
  const obj = Object.create(BooleanCompressedCiphertext.prototype);
344
341
  obj.__wbg_ptr = ptr;
345
342
  BooleanCompressedCiphertextFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -360,7 +357,6 @@ if (Symbol.dispose) BooleanCompressedCiphertext.prototype[Symbol.dispose] = Bool
360
357
 
361
358
  export class BooleanCompressedServerKey {
362
359
  static __wrap(ptr) {
363
- ptr = ptr >>> 0;
364
360
  const obj = Object.create(BooleanCompressedServerKey.prototype);
365
361
  obj.__wbg_ptr = ptr;
366
362
  BooleanCompressedServerKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -389,7 +385,6 @@ export const BooleanEncryptionKeyChoice = Object.freeze({
389
385
 
390
386
  export class BooleanNoiseDistribution {
391
387
  static __wrap(ptr) {
392
- ptr = ptr >>> 0;
393
388
  const obj = Object.create(BooleanNoiseDistribution.prototype);
394
389
  obj.__wbg_ptr = ptr;
395
390
  BooleanNoiseDistributionFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -420,7 +415,6 @@ export const BooleanParameterSet = Object.freeze({
420
415
 
421
416
  export class BooleanParameters {
422
417
  static __wrap(ptr) {
423
- ptr = ptr >>> 0;
424
418
  const obj = Object.create(BooleanParameters.prototype);
425
419
  obj.__wbg_ptr = ptr;
426
420
  BooleanParametersFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -441,7 +435,6 @@ if (Symbol.dispose) BooleanParameters.prototype[Symbol.dispose] = BooleanParamet
441
435
 
442
436
  export class BooleanPublicKey {
443
437
  static __wrap(ptr) {
444
- ptr = ptr >>> 0;
445
438
  const obj = Object.create(BooleanPublicKey.prototype);
446
439
  obj.__wbg_ptr = ptr;
447
440
  BooleanPublicKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -462,7 +455,6 @@ if (Symbol.dispose) BooleanPublicKey.prototype[Symbol.dispose] = BooleanPublicKe
462
455
 
463
456
  export class CompactCiphertextList {
464
457
  static __wrap(ptr) {
465
- ptr = ptr >>> 0;
466
458
  const obj = Object.create(CompactCiphertextList.prototype);
467
459
  obj.__wbg_ptr = ptr;
468
460
  CompactCiphertextListFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -588,7 +580,6 @@ if (Symbol.dispose) CompactCiphertextList.prototype[Symbol.dispose] = CompactCip
588
580
 
589
581
  export class CompactCiphertextListBuilder {
590
582
  static __wrap(ptr) {
591
- ptr = ptr >>> 0;
592
583
  const obj = Object.create(CompactCiphertextListBuilder.prototype);
593
584
  obj.__wbg_ptr = ptr;
594
585
  CompactCiphertextListBuilderFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -1424,7 +1415,6 @@ if (Symbol.dispose) CompactCiphertextListBuilder.prototype[Symbol.dispose] = Com
1424
1415
 
1425
1416
  export class CompactCiphertextListExpander {
1426
1417
  static __wrap(ptr) {
1427
- ptr = ptr >>> 0;
1428
1418
  const obj = Object.create(CompactCiphertextListExpander.prototype);
1429
1419
  obj.__wbg_ptr = ptr;
1430
1420
  CompactCiphertextListExpanderFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -2380,7 +2370,6 @@ if (Symbol.dispose) CompactCiphertextListExpander.prototype[Symbol.dispose] = Co
2380
2370
 
2381
2371
  export class CompactPkeCrs {
2382
2372
  static __wrap(ptr) {
2383
- ptr = ptr >>> 0;
2384
2373
  const obj = Object.create(CompactPkeCrs.prototype);
2385
2374
  obj.__wbg_ptr = ptr;
2386
2375
  CompactPkeCrsFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -2494,7 +2483,6 @@ if (Symbol.dispose) CompactPkeCrs.prototype[Symbol.dispose] = CompactPkeCrs.prot
2494
2483
 
2495
2484
  export class CompressedFheBool {
2496
2485
  static __wrap(ptr) {
2497
- ptr = ptr >>> 0;
2498
2486
  const obj = Object.create(CompressedFheBool.prototype);
2499
2487
  obj.__wbg_ptr = ptr;
2500
2488
  CompressedFheBoolFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -2590,7 +2578,6 @@ if (Symbol.dispose) CompressedFheBool.prototype[Symbol.dispose] = CompressedFheB
2590
2578
 
2591
2579
  export class CompressedFheInt10 {
2592
2580
  static __wrap(ptr) {
2593
- ptr = ptr >>> 0;
2594
2581
  const obj = Object.create(CompressedFheInt10.prototype);
2595
2582
  obj.__wbg_ptr = ptr;
2596
2583
  CompressedFheInt10Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -2686,7 +2673,6 @@ if (Symbol.dispose) CompressedFheInt10.prototype[Symbol.dispose] = CompressedFhe
2686
2673
 
2687
2674
  export class CompressedFheInt1024 {
2688
2675
  static __wrap(ptr) {
2689
- ptr = ptr >>> 0;
2690
2676
  const obj = Object.create(CompressedFheInt1024.prototype);
2691
2677
  obj.__wbg_ptr = ptr;
2692
2678
  CompressedFheInt1024Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -2782,7 +2768,6 @@ if (Symbol.dispose) CompressedFheInt1024.prototype[Symbol.dispose] = CompressedF
2782
2768
 
2783
2769
  export class CompressedFheInt104 {
2784
2770
  static __wrap(ptr) {
2785
- ptr = ptr >>> 0;
2786
2771
  const obj = Object.create(CompressedFheInt104.prototype);
2787
2772
  obj.__wbg_ptr = ptr;
2788
2773
  CompressedFheInt104Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -2878,7 +2863,6 @@ if (Symbol.dispose) CompressedFheInt104.prototype[Symbol.dispose] = CompressedFh
2878
2863
 
2879
2864
  export class CompressedFheInt112 {
2880
2865
  static __wrap(ptr) {
2881
- ptr = ptr >>> 0;
2882
2866
  const obj = Object.create(CompressedFheInt112.prototype);
2883
2867
  obj.__wbg_ptr = ptr;
2884
2868
  CompressedFheInt112Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -2974,7 +2958,6 @@ if (Symbol.dispose) CompressedFheInt112.prototype[Symbol.dispose] = CompressedFh
2974
2958
 
2975
2959
  export class CompressedFheInt12 {
2976
2960
  static __wrap(ptr) {
2977
- ptr = ptr >>> 0;
2978
2961
  const obj = Object.create(CompressedFheInt12.prototype);
2979
2962
  obj.__wbg_ptr = ptr;
2980
2963
  CompressedFheInt12Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -3070,7 +3053,6 @@ if (Symbol.dispose) CompressedFheInt12.prototype[Symbol.dispose] = CompressedFhe
3070
3053
 
3071
3054
  export class CompressedFheInt120 {
3072
3055
  static __wrap(ptr) {
3073
- ptr = ptr >>> 0;
3074
3056
  const obj = Object.create(CompressedFheInt120.prototype);
3075
3057
  obj.__wbg_ptr = ptr;
3076
3058
  CompressedFheInt120Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -3166,7 +3148,6 @@ if (Symbol.dispose) CompressedFheInt120.prototype[Symbol.dispose] = CompressedFh
3166
3148
 
3167
3149
  export class CompressedFheInt128 {
3168
3150
  static __wrap(ptr) {
3169
- ptr = ptr >>> 0;
3170
3151
  const obj = Object.create(CompressedFheInt128.prototype);
3171
3152
  obj.__wbg_ptr = ptr;
3172
3153
  CompressedFheInt128Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -3262,7 +3243,6 @@ if (Symbol.dispose) CompressedFheInt128.prototype[Symbol.dispose] = CompressedFh
3262
3243
 
3263
3244
  export class CompressedFheInt136 {
3264
3245
  static __wrap(ptr) {
3265
- ptr = ptr >>> 0;
3266
3246
  const obj = Object.create(CompressedFheInt136.prototype);
3267
3247
  obj.__wbg_ptr = ptr;
3268
3248
  CompressedFheInt136Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -3358,7 +3338,6 @@ if (Symbol.dispose) CompressedFheInt136.prototype[Symbol.dispose] = CompressedFh
3358
3338
 
3359
3339
  export class CompressedFheInt14 {
3360
3340
  static __wrap(ptr) {
3361
- ptr = ptr >>> 0;
3362
3341
  const obj = Object.create(CompressedFheInt14.prototype);
3363
3342
  obj.__wbg_ptr = ptr;
3364
3343
  CompressedFheInt14Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -3454,7 +3433,6 @@ if (Symbol.dispose) CompressedFheInt14.prototype[Symbol.dispose] = CompressedFhe
3454
3433
 
3455
3434
  export class CompressedFheInt144 {
3456
3435
  static __wrap(ptr) {
3457
- ptr = ptr >>> 0;
3458
3436
  const obj = Object.create(CompressedFheInt144.prototype);
3459
3437
  obj.__wbg_ptr = ptr;
3460
3438
  CompressedFheInt144Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -3550,7 +3528,6 @@ if (Symbol.dispose) CompressedFheInt144.prototype[Symbol.dispose] = CompressedFh
3550
3528
 
3551
3529
  export class CompressedFheInt152 {
3552
3530
  static __wrap(ptr) {
3553
- ptr = ptr >>> 0;
3554
3531
  const obj = Object.create(CompressedFheInt152.prototype);
3555
3532
  obj.__wbg_ptr = ptr;
3556
3533
  CompressedFheInt152Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -3646,7 +3623,6 @@ if (Symbol.dispose) CompressedFheInt152.prototype[Symbol.dispose] = CompressedFh
3646
3623
 
3647
3624
  export class CompressedFheInt16 {
3648
3625
  static __wrap(ptr) {
3649
- ptr = ptr >>> 0;
3650
3626
  const obj = Object.create(CompressedFheInt16.prototype);
3651
3627
  obj.__wbg_ptr = ptr;
3652
3628
  CompressedFheInt16Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -3742,7 +3718,6 @@ if (Symbol.dispose) CompressedFheInt16.prototype[Symbol.dispose] = CompressedFhe
3742
3718
 
3743
3719
  export class CompressedFheInt160 {
3744
3720
  static __wrap(ptr) {
3745
- ptr = ptr >>> 0;
3746
3721
  const obj = Object.create(CompressedFheInt160.prototype);
3747
3722
  obj.__wbg_ptr = ptr;
3748
3723
  CompressedFheInt160Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -3838,7 +3813,6 @@ if (Symbol.dispose) CompressedFheInt160.prototype[Symbol.dispose] = CompressedFh
3838
3813
 
3839
3814
  export class CompressedFheInt168 {
3840
3815
  static __wrap(ptr) {
3841
- ptr = ptr >>> 0;
3842
3816
  const obj = Object.create(CompressedFheInt168.prototype);
3843
3817
  obj.__wbg_ptr = ptr;
3844
3818
  CompressedFheInt168Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -3934,7 +3908,6 @@ if (Symbol.dispose) CompressedFheInt168.prototype[Symbol.dispose] = CompressedFh
3934
3908
 
3935
3909
  export class CompressedFheInt176 {
3936
3910
  static __wrap(ptr) {
3937
- ptr = ptr >>> 0;
3938
3911
  const obj = Object.create(CompressedFheInt176.prototype);
3939
3912
  obj.__wbg_ptr = ptr;
3940
3913
  CompressedFheInt176Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -4030,7 +4003,6 @@ if (Symbol.dispose) CompressedFheInt176.prototype[Symbol.dispose] = CompressedFh
4030
4003
 
4031
4004
  export class CompressedFheInt184 {
4032
4005
  static __wrap(ptr) {
4033
- ptr = ptr >>> 0;
4034
4006
  const obj = Object.create(CompressedFheInt184.prototype);
4035
4007
  obj.__wbg_ptr = ptr;
4036
4008
  CompressedFheInt184Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -4126,7 +4098,6 @@ if (Symbol.dispose) CompressedFheInt184.prototype[Symbol.dispose] = CompressedFh
4126
4098
 
4127
4099
  export class CompressedFheInt192 {
4128
4100
  static __wrap(ptr) {
4129
- ptr = ptr >>> 0;
4130
4101
  const obj = Object.create(CompressedFheInt192.prototype);
4131
4102
  obj.__wbg_ptr = ptr;
4132
4103
  CompressedFheInt192Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -4222,7 +4193,6 @@ if (Symbol.dispose) CompressedFheInt192.prototype[Symbol.dispose] = CompressedFh
4222
4193
 
4223
4194
  export class CompressedFheInt2 {
4224
4195
  static __wrap(ptr) {
4225
- ptr = ptr >>> 0;
4226
4196
  const obj = Object.create(CompressedFheInt2.prototype);
4227
4197
  obj.__wbg_ptr = ptr;
4228
4198
  CompressedFheInt2Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -4318,7 +4288,6 @@ if (Symbol.dispose) CompressedFheInt2.prototype[Symbol.dispose] = CompressedFheI
4318
4288
 
4319
4289
  export class CompressedFheInt200 {
4320
4290
  static __wrap(ptr) {
4321
- ptr = ptr >>> 0;
4322
4291
  const obj = Object.create(CompressedFheInt200.prototype);
4323
4292
  obj.__wbg_ptr = ptr;
4324
4293
  CompressedFheInt200Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -4414,7 +4383,6 @@ if (Symbol.dispose) CompressedFheInt200.prototype[Symbol.dispose] = CompressedFh
4414
4383
 
4415
4384
  export class CompressedFheInt2048 {
4416
4385
  static __wrap(ptr) {
4417
- ptr = ptr >>> 0;
4418
4386
  const obj = Object.create(CompressedFheInt2048.prototype);
4419
4387
  obj.__wbg_ptr = ptr;
4420
4388
  CompressedFheInt2048Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -4510,7 +4478,6 @@ if (Symbol.dispose) CompressedFheInt2048.prototype[Symbol.dispose] = CompressedF
4510
4478
 
4511
4479
  export class CompressedFheInt208 {
4512
4480
  static __wrap(ptr) {
4513
- ptr = ptr >>> 0;
4514
4481
  const obj = Object.create(CompressedFheInt208.prototype);
4515
4482
  obj.__wbg_ptr = ptr;
4516
4483
  CompressedFheInt208Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -4606,7 +4573,6 @@ if (Symbol.dispose) CompressedFheInt208.prototype[Symbol.dispose] = CompressedFh
4606
4573
 
4607
4574
  export class CompressedFheInt216 {
4608
4575
  static __wrap(ptr) {
4609
- ptr = ptr >>> 0;
4610
4576
  const obj = Object.create(CompressedFheInt216.prototype);
4611
4577
  obj.__wbg_ptr = ptr;
4612
4578
  CompressedFheInt216Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -4702,7 +4668,6 @@ if (Symbol.dispose) CompressedFheInt216.prototype[Symbol.dispose] = CompressedFh
4702
4668
 
4703
4669
  export class CompressedFheInt224 {
4704
4670
  static __wrap(ptr) {
4705
- ptr = ptr >>> 0;
4706
4671
  const obj = Object.create(CompressedFheInt224.prototype);
4707
4672
  obj.__wbg_ptr = ptr;
4708
4673
  CompressedFheInt224Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -4798,7 +4763,6 @@ if (Symbol.dispose) CompressedFheInt224.prototype[Symbol.dispose] = CompressedFh
4798
4763
 
4799
4764
  export class CompressedFheInt232 {
4800
4765
  static __wrap(ptr) {
4801
- ptr = ptr >>> 0;
4802
4766
  const obj = Object.create(CompressedFheInt232.prototype);
4803
4767
  obj.__wbg_ptr = ptr;
4804
4768
  CompressedFheInt232Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -4894,7 +4858,6 @@ if (Symbol.dispose) CompressedFheInt232.prototype[Symbol.dispose] = CompressedFh
4894
4858
 
4895
4859
  export class CompressedFheInt24 {
4896
4860
  static __wrap(ptr) {
4897
- ptr = ptr >>> 0;
4898
4861
  const obj = Object.create(CompressedFheInt24.prototype);
4899
4862
  obj.__wbg_ptr = ptr;
4900
4863
  CompressedFheInt24Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -4990,7 +4953,6 @@ if (Symbol.dispose) CompressedFheInt24.prototype[Symbol.dispose] = CompressedFhe
4990
4953
 
4991
4954
  export class CompressedFheInt240 {
4992
4955
  static __wrap(ptr) {
4993
- ptr = ptr >>> 0;
4994
4956
  const obj = Object.create(CompressedFheInt240.prototype);
4995
4957
  obj.__wbg_ptr = ptr;
4996
4958
  CompressedFheInt240Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -5086,7 +5048,6 @@ if (Symbol.dispose) CompressedFheInt240.prototype[Symbol.dispose] = CompressedFh
5086
5048
 
5087
5049
  export class CompressedFheInt248 {
5088
5050
  static __wrap(ptr) {
5089
- ptr = ptr >>> 0;
5090
5051
  const obj = Object.create(CompressedFheInt248.prototype);
5091
5052
  obj.__wbg_ptr = ptr;
5092
5053
  CompressedFheInt248Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -5182,7 +5143,6 @@ if (Symbol.dispose) CompressedFheInt248.prototype[Symbol.dispose] = CompressedFh
5182
5143
 
5183
5144
  export class CompressedFheInt256 {
5184
5145
  static __wrap(ptr) {
5185
- ptr = ptr >>> 0;
5186
5146
  const obj = Object.create(CompressedFheInt256.prototype);
5187
5147
  obj.__wbg_ptr = ptr;
5188
5148
  CompressedFheInt256Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -5278,7 +5238,6 @@ if (Symbol.dispose) CompressedFheInt256.prototype[Symbol.dispose] = CompressedFh
5278
5238
 
5279
5239
  export class CompressedFheInt32 {
5280
5240
  static __wrap(ptr) {
5281
- ptr = ptr >>> 0;
5282
5241
  const obj = Object.create(CompressedFheInt32.prototype);
5283
5242
  obj.__wbg_ptr = ptr;
5284
5243
  CompressedFheInt32Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -5374,7 +5333,6 @@ if (Symbol.dispose) CompressedFheInt32.prototype[Symbol.dispose] = CompressedFhe
5374
5333
 
5375
5334
  export class CompressedFheInt4 {
5376
5335
  static __wrap(ptr) {
5377
- ptr = ptr >>> 0;
5378
5336
  const obj = Object.create(CompressedFheInt4.prototype);
5379
5337
  obj.__wbg_ptr = ptr;
5380
5338
  CompressedFheInt4Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -5470,7 +5428,6 @@ if (Symbol.dispose) CompressedFheInt4.prototype[Symbol.dispose] = CompressedFheI
5470
5428
 
5471
5429
  export class CompressedFheInt40 {
5472
5430
  static __wrap(ptr) {
5473
- ptr = ptr >>> 0;
5474
5431
  const obj = Object.create(CompressedFheInt40.prototype);
5475
5432
  obj.__wbg_ptr = ptr;
5476
5433
  CompressedFheInt40Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -5566,7 +5523,6 @@ if (Symbol.dispose) CompressedFheInt40.prototype[Symbol.dispose] = CompressedFhe
5566
5523
 
5567
5524
  export class CompressedFheInt48 {
5568
5525
  static __wrap(ptr) {
5569
- ptr = ptr >>> 0;
5570
5526
  const obj = Object.create(CompressedFheInt48.prototype);
5571
5527
  obj.__wbg_ptr = ptr;
5572
5528
  CompressedFheInt48Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -5662,7 +5618,6 @@ if (Symbol.dispose) CompressedFheInt48.prototype[Symbol.dispose] = CompressedFhe
5662
5618
 
5663
5619
  export class CompressedFheInt512 {
5664
5620
  static __wrap(ptr) {
5665
- ptr = ptr >>> 0;
5666
5621
  const obj = Object.create(CompressedFheInt512.prototype);
5667
5622
  obj.__wbg_ptr = ptr;
5668
5623
  CompressedFheInt512Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -5758,7 +5713,6 @@ if (Symbol.dispose) CompressedFheInt512.prototype[Symbol.dispose] = CompressedFh
5758
5713
 
5759
5714
  export class CompressedFheInt56 {
5760
5715
  static __wrap(ptr) {
5761
- ptr = ptr >>> 0;
5762
5716
  const obj = Object.create(CompressedFheInt56.prototype);
5763
5717
  obj.__wbg_ptr = ptr;
5764
5718
  CompressedFheInt56Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -5854,7 +5808,6 @@ if (Symbol.dispose) CompressedFheInt56.prototype[Symbol.dispose] = CompressedFhe
5854
5808
 
5855
5809
  export class CompressedFheInt6 {
5856
5810
  static __wrap(ptr) {
5857
- ptr = ptr >>> 0;
5858
5811
  const obj = Object.create(CompressedFheInt6.prototype);
5859
5812
  obj.__wbg_ptr = ptr;
5860
5813
  CompressedFheInt6Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -5950,7 +5903,6 @@ if (Symbol.dispose) CompressedFheInt6.prototype[Symbol.dispose] = CompressedFheI
5950
5903
 
5951
5904
  export class CompressedFheInt64 {
5952
5905
  static __wrap(ptr) {
5953
- ptr = ptr >>> 0;
5954
5906
  const obj = Object.create(CompressedFheInt64.prototype);
5955
5907
  obj.__wbg_ptr = ptr;
5956
5908
  CompressedFheInt64Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -6046,7 +5998,6 @@ if (Symbol.dispose) CompressedFheInt64.prototype[Symbol.dispose] = CompressedFhe
6046
5998
 
6047
5999
  export class CompressedFheInt72 {
6048
6000
  static __wrap(ptr) {
6049
- ptr = ptr >>> 0;
6050
6001
  const obj = Object.create(CompressedFheInt72.prototype);
6051
6002
  obj.__wbg_ptr = ptr;
6052
6003
  CompressedFheInt72Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -6142,7 +6093,6 @@ if (Symbol.dispose) CompressedFheInt72.prototype[Symbol.dispose] = CompressedFhe
6142
6093
 
6143
6094
  export class CompressedFheInt8 {
6144
6095
  static __wrap(ptr) {
6145
- ptr = ptr >>> 0;
6146
6096
  const obj = Object.create(CompressedFheInt8.prototype);
6147
6097
  obj.__wbg_ptr = ptr;
6148
6098
  CompressedFheInt8Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -6238,7 +6188,6 @@ if (Symbol.dispose) CompressedFheInt8.prototype[Symbol.dispose] = CompressedFheI
6238
6188
 
6239
6189
  export class CompressedFheInt80 {
6240
6190
  static __wrap(ptr) {
6241
- ptr = ptr >>> 0;
6242
6191
  const obj = Object.create(CompressedFheInt80.prototype);
6243
6192
  obj.__wbg_ptr = ptr;
6244
6193
  CompressedFheInt80Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -6334,7 +6283,6 @@ if (Symbol.dispose) CompressedFheInt80.prototype[Symbol.dispose] = CompressedFhe
6334
6283
 
6335
6284
  export class CompressedFheInt88 {
6336
6285
  static __wrap(ptr) {
6337
- ptr = ptr >>> 0;
6338
6286
  const obj = Object.create(CompressedFheInt88.prototype);
6339
6287
  obj.__wbg_ptr = ptr;
6340
6288
  CompressedFheInt88Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -6430,7 +6378,6 @@ if (Symbol.dispose) CompressedFheInt88.prototype[Symbol.dispose] = CompressedFhe
6430
6378
 
6431
6379
  export class CompressedFheInt96 {
6432
6380
  static __wrap(ptr) {
6433
- ptr = ptr >>> 0;
6434
6381
  const obj = Object.create(CompressedFheInt96.prototype);
6435
6382
  obj.__wbg_ptr = ptr;
6436
6383
  CompressedFheInt96Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -6526,7 +6473,6 @@ if (Symbol.dispose) CompressedFheInt96.prototype[Symbol.dispose] = CompressedFhe
6526
6473
 
6527
6474
  export class CompressedFheUint10 {
6528
6475
  static __wrap(ptr) {
6529
- ptr = ptr >>> 0;
6530
6476
  const obj = Object.create(CompressedFheUint10.prototype);
6531
6477
  obj.__wbg_ptr = ptr;
6532
6478
  CompressedFheUint10Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -6622,7 +6568,6 @@ if (Symbol.dispose) CompressedFheUint10.prototype[Symbol.dispose] = CompressedFh
6622
6568
 
6623
6569
  export class CompressedFheUint1024 {
6624
6570
  static __wrap(ptr) {
6625
- ptr = ptr >>> 0;
6626
6571
  const obj = Object.create(CompressedFheUint1024.prototype);
6627
6572
  obj.__wbg_ptr = ptr;
6628
6573
  CompressedFheUint1024Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -6718,7 +6663,6 @@ if (Symbol.dispose) CompressedFheUint1024.prototype[Symbol.dispose] = Compressed
6718
6663
 
6719
6664
  export class CompressedFheUint104 {
6720
6665
  static __wrap(ptr) {
6721
- ptr = ptr >>> 0;
6722
6666
  const obj = Object.create(CompressedFheUint104.prototype);
6723
6667
  obj.__wbg_ptr = ptr;
6724
6668
  CompressedFheUint104Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -6814,7 +6758,6 @@ if (Symbol.dispose) CompressedFheUint104.prototype[Symbol.dispose] = CompressedF
6814
6758
 
6815
6759
  export class CompressedFheUint112 {
6816
6760
  static __wrap(ptr) {
6817
- ptr = ptr >>> 0;
6818
6761
  const obj = Object.create(CompressedFheUint112.prototype);
6819
6762
  obj.__wbg_ptr = ptr;
6820
6763
  CompressedFheUint112Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -6910,7 +6853,6 @@ if (Symbol.dispose) CompressedFheUint112.prototype[Symbol.dispose] = CompressedF
6910
6853
 
6911
6854
  export class CompressedFheUint12 {
6912
6855
  static __wrap(ptr) {
6913
- ptr = ptr >>> 0;
6914
6856
  const obj = Object.create(CompressedFheUint12.prototype);
6915
6857
  obj.__wbg_ptr = ptr;
6916
6858
  CompressedFheUint12Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -7006,7 +6948,6 @@ if (Symbol.dispose) CompressedFheUint12.prototype[Symbol.dispose] = CompressedFh
7006
6948
 
7007
6949
  export class CompressedFheUint120 {
7008
6950
  static __wrap(ptr) {
7009
- ptr = ptr >>> 0;
7010
6951
  const obj = Object.create(CompressedFheUint120.prototype);
7011
6952
  obj.__wbg_ptr = ptr;
7012
6953
  CompressedFheUint120Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -7102,7 +7043,6 @@ if (Symbol.dispose) CompressedFheUint120.prototype[Symbol.dispose] = CompressedF
7102
7043
 
7103
7044
  export class CompressedFheUint128 {
7104
7045
  static __wrap(ptr) {
7105
- ptr = ptr >>> 0;
7106
7046
  const obj = Object.create(CompressedFheUint128.prototype);
7107
7047
  obj.__wbg_ptr = ptr;
7108
7048
  CompressedFheUint128Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -7198,7 +7138,6 @@ if (Symbol.dispose) CompressedFheUint128.prototype[Symbol.dispose] = CompressedF
7198
7138
 
7199
7139
  export class CompressedFheUint136 {
7200
7140
  static __wrap(ptr) {
7201
- ptr = ptr >>> 0;
7202
7141
  const obj = Object.create(CompressedFheUint136.prototype);
7203
7142
  obj.__wbg_ptr = ptr;
7204
7143
  CompressedFheUint136Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -7294,7 +7233,6 @@ if (Symbol.dispose) CompressedFheUint136.prototype[Symbol.dispose] = CompressedF
7294
7233
 
7295
7234
  export class CompressedFheUint14 {
7296
7235
  static __wrap(ptr) {
7297
- ptr = ptr >>> 0;
7298
7236
  const obj = Object.create(CompressedFheUint14.prototype);
7299
7237
  obj.__wbg_ptr = ptr;
7300
7238
  CompressedFheUint14Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -7390,7 +7328,6 @@ if (Symbol.dispose) CompressedFheUint14.prototype[Symbol.dispose] = CompressedFh
7390
7328
 
7391
7329
  export class CompressedFheUint144 {
7392
7330
  static __wrap(ptr) {
7393
- ptr = ptr >>> 0;
7394
7331
  const obj = Object.create(CompressedFheUint144.prototype);
7395
7332
  obj.__wbg_ptr = ptr;
7396
7333
  CompressedFheUint144Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -7486,7 +7423,6 @@ if (Symbol.dispose) CompressedFheUint144.prototype[Symbol.dispose] = CompressedF
7486
7423
 
7487
7424
  export class CompressedFheUint152 {
7488
7425
  static __wrap(ptr) {
7489
- ptr = ptr >>> 0;
7490
7426
  const obj = Object.create(CompressedFheUint152.prototype);
7491
7427
  obj.__wbg_ptr = ptr;
7492
7428
  CompressedFheUint152Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -7582,7 +7518,6 @@ if (Symbol.dispose) CompressedFheUint152.prototype[Symbol.dispose] = CompressedF
7582
7518
 
7583
7519
  export class CompressedFheUint16 {
7584
7520
  static __wrap(ptr) {
7585
- ptr = ptr >>> 0;
7586
7521
  const obj = Object.create(CompressedFheUint16.prototype);
7587
7522
  obj.__wbg_ptr = ptr;
7588
7523
  CompressedFheUint16Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -7678,7 +7613,6 @@ if (Symbol.dispose) CompressedFheUint16.prototype[Symbol.dispose] = CompressedFh
7678
7613
 
7679
7614
  export class CompressedFheUint160 {
7680
7615
  static __wrap(ptr) {
7681
- ptr = ptr >>> 0;
7682
7616
  const obj = Object.create(CompressedFheUint160.prototype);
7683
7617
  obj.__wbg_ptr = ptr;
7684
7618
  CompressedFheUint160Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -7774,7 +7708,6 @@ if (Symbol.dispose) CompressedFheUint160.prototype[Symbol.dispose] = CompressedF
7774
7708
 
7775
7709
  export class CompressedFheUint168 {
7776
7710
  static __wrap(ptr) {
7777
- ptr = ptr >>> 0;
7778
7711
  const obj = Object.create(CompressedFheUint168.prototype);
7779
7712
  obj.__wbg_ptr = ptr;
7780
7713
  CompressedFheUint168Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -7870,7 +7803,6 @@ if (Symbol.dispose) CompressedFheUint168.prototype[Symbol.dispose] = CompressedF
7870
7803
 
7871
7804
  export class CompressedFheUint176 {
7872
7805
  static __wrap(ptr) {
7873
- ptr = ptr >>> 0;
7874
7806
  const obj = Object.create(CompressedFheUint176.prototype);
7875
7807
  obj.__wbg_ptr = ptr;
7876
7808
  CompressedFheUint176Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -7966,7 +7898,6 @@ if (Symbol.dispose) CompressedFheUint176.prototype[Symbol.dispose] = CompressedF
7966
7898
 
7967
7899
  export class CompressedFheUint184 {
7968
7900
  static __wrap(ptr) {
7969
- ptr = ptr >>> 0;
7970
7901
  const obj = Object.create(CompressedFheUint184.prototype);
7971
7902
  obj.__wbg_ptr = ptr;
7972
7903
  CompressedFheUint184Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -8062,7 +7993,6 @@ if (Symbol.dispose) CompressedFheUint184.prototype[Symbol.dispose] = CompressedF
8062
7993
 
8063
7994
  export class CompressedFheUint192 {
8064
7995
  static __wrap(ptr) {
8065
- ptr = ptr >>> 0;
8066
7996
  const obj = Object.create(CompressedFheUint192.prototype);
8067
7997
  obj.__wbg_ptr = ptr;
8068
7998
  CompressedFheUint192Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -8158,7 +8088,6 @@ if (Symbol.dispose) CompressedFheUint192.prototype[Symbol.dispose] = CompressedF
8158
8088
 
8159
8089
  export class CompressedFheUint2 {
8160
8090
  static __wrap(ptr) {
8161
- ptr = ptr >>> 0;
8162
8091
  const obj = Object.create(CompressedFheUint2.prototype);
8163
8092
  obj.__wbg_ptr = ptr;
8164
8093
  CompressedFheUint2Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -8254,7 +8183,6 @@ if (Symbol.dispose) CompressedFheUint2.prototype[Symbol.dispose] = CompressedFhe
8254
8183
 
8255
8184
  export class CompressedFheUint200 {
8256
8185
  static __wrap(ptr) {
8257
- ptr = ptr >>> 0;
8258
8186
  const obj = Object.create(CompressedFheUint200.prototype);
8259
8187
  obj.__wbg_ptr = ptr;
8260
8188
  CompressedFheUint200Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -8350,7 +8278,6 @@ if (Symbol.dispose) CompressedFheUint200.prototype[Symbol.dispose] = CompressedF
8350
8278
 
8351
8279
  export class CompressedFheUint2048 {
8352
8280
  static __wrap(ptr) {
8353
- ptr = ptr >>> 0;
8354
8281
  const obj = Object.create(CompressedFheUint2048.prototype);
8355
8282
  obj.__wbg_ptr = ptr;
8356
8283
  CompressedFheUint2048Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -8446,7 +8373,6 @@ if (Symbol.dispose) CompressedFheUint2048.prototype[Symbol.dispose] = Compressed
8446
8373
 
8447
8374
  export class CompressedFheUint208 {
8448
8375
  static __wrap(ptr) {
8449
- ptr = ptr >>> 0;
8450
8376
  const obj = Object.create(CompressedFheUint208.prototype);
8451
8377
  obj.__wbg_ptr = ptr;
8452
8378
  CompressedFheUint208Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -8542,7 +8468,6 @@ if (Symbol.dispose) CompressedFheUint208.prototype[Symbol.dispose] = CompressedF
8542
8468
 
8543
8469
  export class CompressedFheUint216 {
8544
8470
  static __wrap(ptr) {
8545
- ptr = ptr >>> 0;
8546
8471
  const obj = Object.create(CompressedFheUint216.prototype);
8547
8472
  obj.__wbg_ptr = ptr;
8548
8473
  CompressedFheUint216Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -8638,7 +8563,6 @@ if (Symbol.dispose) CompressedFheUint216.prototype[Symbol.dispose] = CompressedF
8638
8563
 
8639
8564
  export class CompressedFheUint224 {
8640
8565
  static __wrap(ptr) {
8641
- ptr = ptr >>> 0;
8642
8566
  const obj = Object.create(CompressedFheUint224.prototype);
8643
8567
  obj.__wbg_ptr = ptr;
8644
8568
  CompressedFheUint224Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -8734,7 +8658,6 @@ if (Symbol.dispose) CompressedFheUint224.prototype[Symbol.dispose] = CompressedF
8734
8658
 
8735
8659
  export class CompressedFheUint232 {
8736
8660
  static __wrap(ptr) {
8737
- ptr = ptr >>> 0;
8738
8661
  const obj = Object.create(CompressedFheUint232.prototype);
8739
8662
  obj.__wbg_ptr = ptr;
8740
8663
  CompressedFheUint232Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -8830,7 +8753,6 @@ if (Symbol.dispose) CompressedFheUint232.prototype[Symbol.dispose] = CompressedF
8830
8753
 
8831
8754
  export class CompressedFheUint24 {
8832
8755
  static __wrap(ptr) {
8833
- ptr = ptr >>> 0;
8834
8756
  const obj = Object.create(CompressedFheUint24.prototype);
8835
8757
  obj.__wbg_ptr = ptr;
8836
8758
  CompressedFheUint24Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -8926,7 +8848,6 @@ if (Symbol.dispose) CompressedFheUint24.prototype[Symbol.dispose] = CompressedFh
8926
8848
 
8927
8849
  export class CompressedFheUint240 {
8928
8850
  static __wrap(ptr) {
8929
- ptr = ptr >>> 0;
8930
8851
  const obj = Object.create(CompressedFheUint240.prototype);
8931
8852
  obj.__wbg_ptr = ptr;
8932
8853
  CompressedFheUint240Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -9022,7 +8943,6 @@ if (Symbol.dispose) CompressedFheUint240.prototype[Symbol.dispose] = CompressedF
9022
8943
 
9023
8944
  export class CompressedFheUint248 {
9024
8945
  static __wrap(ptr) {
9025
- ptr = ptr >>> 0;
9026
8946
  const obj = Object.create(CompressedFheUint248.prototype);
9027
8947
  obj.__wbg_ptr = ptr;
9028
8948
  CompressedFheUint248Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -9118,7 +9038,6 @@ if (Symbol.dispose) CompressedFheUint248.prototype[Symbol.dispose] = CompressedF
9118
9038
 
9119
9039
  export class CompressedFheUint256 {
9120
9040
  static __wrap(ptr) {
9121
- ptr = ptr >>> 0;
9122
9041
  const obj = Object.create(CompressedFheUint256.prototype);
9123
9042
  obj.__wbg_ptr = ptr;
9124
9043
  CompressedFheUint256Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -9214,7 +9133,6 @@ if (Symbol.dispose) CompressedFheUint256.prototype[Symbol.dispose] = CompressedF
9214
9133
 
9215
9134
  export class CompressedFheUint32 {
9216
9135
  static __wrap(ptr) {
9217
- ptr = ptr >>> 0;
9218
9136
  const obj = Object.create(CompressedFheUint32.prototype);
9219
9137
  obj.__wbg_ptr = ptr;
9220
9138
  CompressedFheUint32Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -9310,7 +9228,6 @@ if (Symbol.dispose) CompressedFheUint32.prototype[Symbol.dispose] = CompressedFh
9310
9228
 
9311
9229
  export class CompressedFheUint4 {
9312
9230
  static __wrap(ptr) {
9313
- ptr = ptr >>> 0;
9314
9231
  const obj = Object.create(CompressedFheUint4.prototype);
9315
9232
  obj.__wbg_ptr = ptr;
9316
9233
  CompressedFheUint4Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -9406,7 +9323,6 @@ if (Symbol.dispose) CompressedFheUint4.prototype[Symbol.dispose] = CompressedFhe
9406
9323
 
9407
9324
  export class CompressedFheUint40 {
9408
9325
  static __wrap(ptr) {
9409
- ptr = ptr >>> 0;
9410
9326
  const obj = Object.create(CompressedFheUint40.prototype);
9411
9327
  obj.__wbg_ptr = ptr;
9412
9328
  CompressedFheUint40Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -9502,7 +9418,6 @@ if (Symbol.dispose) CompressedFheUint40.prototype[Symbol.dispose] = CompressedFh
9502
9418
 
9503
9419
  export class CompressedFheUint48 {
9504
9420
  static __wrap(ptr) {
9505
- ptr = ptr >>> 0;
9506
9421
  const obj = Object.create(CompressedFheUint48.prototype);
9507
9422
  obj.__wbg_ptr = ptr;
9508
9423
  CompressedFheUint48Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -9598,7 +9513,6 @@ if (Symbol.dispose) CompressedFheUint48.prototype[Symbol.dispose] = CompressedFh
9598
9513
 
9599
9514
  export class CompressedFheUint512 {
9600
9515
  static __wrap(ptr) {
9601
- ptr = ptr >>> 0;
9602
9516
  const obj = Object.create(CompressedFheUint512.prototype);
9603
9517
  obj.__wbg_ptr = ptr;
9604
9518
  CompressedFheUint512Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -9694,7 +9608,6 @@ if (Symbol.dispose) CompressedFheUint512.prototype[Symbol.dispose] = CompressedF
9694
9608
 
9695
9609
  export class CompressedFheUint56 {
9696
9610
  static __wrap(ptr) {
9697
- ptr = ptr >>> 0;
9698
9611
  const obj = Object.create(CompressedFheUint56.prototype);
9699
9612
  obj.__wbg_ptr = ptr;
9700
9613
  CompressedFheUint56Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -9790,7 +9703,6 @@ if (Symbol.dispose) CompressedFheUint56.prototype[Symbol.dispose] = CompressedFh
9790
9703
 
9791
9704
  export class CompressedFheUint6 {
9792
9705
  static __wrap(ptr) {
9793
- ptr = ptr >>> 0;
9794
9706
  const obj = Object.create(CompressedFheUint6.prototype);
9795
9707
  obj.__wbg_ptr = ptr;
9796
9708
  CompressedFheUint6Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -9886,7 +9798,6 @@ if (Symbol.dispose) CompressedFheUint6.prototype[Symbol.dispose] = CompressedFhe
9886
9798
 
9887
9799
  export class CompressedFheUint64 {
9888
9800
  static __wrap(ptr) {
9889
- ptr = ptr >>> 0;
9890
9801
  const obj = Object.create(CompressedFheUint64.prototype);
9891
9802
  obj.__wbg_ptr = ptr;
9892
9803
  CompressedFheUint64Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -9982,7 +9893,6 @@ if (Symbol.dispose) CompressedFheUint64.prototype[Symbol.dispose] = CompressedFh
9982
9893
 
9983
9894
  export class CompressedFheUint72 {
9984
9895
  static __wrap(ptr) {
9985
- ptr = ptr >>> 0;
9986
9896
  const obj = Object.create(CompressedFheUint72.prototype);
9987
9897
  obj.__wbg_ptr = ptr;
9988
9898
  CompressedFheUint72Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -10078,7 +9988,6 @@ if (Symbol.dispose) CompressedFheUint72.prototype[Symbol.dispose] = CompressedFh
10078
9988
 
10079
9989
  export class CompressedFheUint8 {
10080
9990
  static __wrap(ptr) {
10081
- ptr = ptr >>> 0;
10082
9991
  const obj = Object.create(CompressedFheUint8.prototype);
10083
9992
  obj.__wbg_ptr = ptr;
10084
9993
  CompressedFheUint8Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -10174,7 +10083,6 @@ if (Symbol.dispose) CompressedFheUint8.prototype[Symbol.dispose] = CompressedFhe
10174
10083
 
10175
10084
  export class CompressedFheUint80 {
10176
10085
  static __wrap(ptr) {
10177
- ptr = ptr >>> 0;
10178
10086
  const obj = Object.create(CompressedFheUint80.prototype);
10179
10087
  obj.__wbg_ptr = ptr;
10180
10088
  CompressedFheUint80Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -10270,7 +10178,6 @@ if (Symbol.dispose) CompressedFheUint80.prototype[Symbol.dispose] = CompressedFh
10270
10178
 
10271
10179
  export class CompressedFheUint88 {
10272
10180
  static __wrap(ptr) {
10273
- ptr = ptr >>> 0;
10274
10181
  const obj = Object.create(CompressedFheUint88.prototype);
10275
10182
  obj.__wbg_ptr = ptr;
10276
10183
  CompressedFheUint88Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -10366,7 +10273,6 @@ if (Symbol.dispose) CompressedFheUint88.prototype[Symbol.dispose] = CompressedFh
10366
10273
 
10367
10274
  export class CompressedFheUint96 {
10368
10275
  static __wrap(ptr) {
10369
- ptr = ptr >>> 0;
10370
10276
  const obj = Object.create(CompressedFheUint96.prototype);
10371
10277
  obj.__wbg_ptr = ptr;
10372
10278
  CompressedFheUint96Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -10462,7 +10368,6 @@ if (Symbol.dispose) CompressedFheUint96.prototype[Symbol.dispose] = CompressedFh
10462
10368
 
10463
10369
  export class FheBool {
10464
10370
  static __wrap(ptr) {
10465
- ptr = ptr >>> 0;
10466
10371
  const obj = Object.create(FheBool.prototype);
10467
10372
  obj.__wbg_ptr = ptr;
10468
10373
  FheBoolFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -10586,7 +10491,6 @@ if (Symbol.dispose) FheBool.prototype[Symbol.dispose] = FheBool.prototype.free;
10586
10491
 
10587
10492
  export class FheInt10 {
10588
10493
  static __wrap(ptr) {
10589
- ptr = ptr >>> 0;
10590
10494
  const obj = Object.create(FheInt10.prototype);
10591
10495
  obj.__wbg_ptr = ptr;
10592
10496
  FheInt10Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -10710,7 +10614,6 @@ if (Symbol.dispose) FheInt10.prototype[Symbol.dispose] = FheInt10.prototype.free
10710
10614
 
10711
10615
  export class FheInt1024 {
10712
10616
  static __wrap(ptr) {
10713
- ptr = ptr >>> 0;
10714
10617
  const obj = Object.create(FheInt1024.prototype);
10715
10618
  obj.__wbg_ptr = ptr;
10716
10619
  FheInt1024Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -10834,7 +10737,6 @@ if (Symbol.dispose) FheInt1024.prototype[Symbol.dispose] = FheInt1024.prototype.
10834
10737
 
10835
10738
  export class FheInt104 {
10836
10739
  static __wrap(ptr) {
10837
- ptr = ptr >>> 0;
10838
10740
  const obj = Object.create(FheInt104.prototype);
10839
10741
  obj.__wbg_ptr = ptr;
10840
10742
  FheInt104Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -10958,7 +10860,6 @@ if (Symbol.dispose) FheInt104.prototype[Symbol.dispose] = FheInt104.prototype.fr
10958
10860
 
10959
10861
  export class FheInt112 {
10960
10862
  static __wrap(ptr) {
10961
- ptr = ptr >>> 0;
10962
10863
  const obj = Object.create(FheInt112.prototype);
10963
10864
  obj.__wbg_ptr = ptr;
10964
10865
  FheInt112Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -11082,7 +10983,6 @@ if (Symbol.dispose) FheInt112.prototype[Symbol.dispose] = FheInt112.prototype.fr
11082
10983
 
11083
10984
  export class FheInt12 {
11084
10985
  static __wrap(ptr) {
11085
- ptr = ptr >>> 0;
11086
10986
  const obj = Object.create(FheInt12.prototype);
11087
10987
  obj.__wbg_ptr = ptr;
11088
10988
  FheInt12Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -11206,7 +11106,6 @@ if (Symbol.dispose) FheInt12.prototype[Symbol.dispose] = FheInt12.prototype.free
11206
11106
 
11207
11107
  export class FheInt120 {
11208
11108
  static __wrap(ptr) {
11209
- ptr = ptr >>> 0;
11210
11109
  const obj = Object.create(FheInt120.prototype);
11211
11110
  obj.__wbg_ptr = ptr;
11212
11111
  FheInt120Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -11330,7 +11229,6 @@ if (Symbol.dispose) FheInt120.prototype[Symbol.dispose] = FheInt120.prototype.fr
11330
11229
 
11331
11230
  export class FheInt128 {
11332
11231
  static __wrap(ptr) {
11333
- ptr = ptr >>> 0;
11334
11232
  const obj = Object.create(FheInt128.prototype);
11335
11233
  obj.__wbg_ptr = ptr;
11336
11234
  FheInt128Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -11454,7 +11352,6 @@ if (Symbol.dispose) FheInt128.prototype[Symbol.dispose] = FheInt128.prototype.fr
11454
11352
 
11455
11353
  export class FheInt136 {
11456
11354
  static __wrap(ptr) {
11457
- ptr = ptr >>> 0;
11458
11355
  const obj = Object.create(FheInt136.prototype);
11459
11356
  obj.__wbg_ptr = ptr;
11460
11357
  FheInt136Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -11578,7 +11475,6 @@ if (Symbol.dispose) FheInt136.prototype[Symbol.dispose] = FheInt136.prototype.fr
11578
11475
 
11579
11476
  export class FheInt14 {
11580
11477
  static __wrap(ptr) {
11581
- ptr = ptr >>> 0;
11582
11478
  const obj = Object.create(FheInt14.prototype);
11583
11479
  obj.__wbg_ptr = ptr;
11584
11480
  FheInt14Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -11702,7 +11598,6 @@ if (Symbol.dispose) FheInt14.prototype[Symbol.dispose] = FheInt14.prototype.free
11702
11598
 
11703
11599
  export class FheInt144 {
11704
11600
  static __wrap(ptr) {
11705
- ptr = ptr >>> 0;
11706
11601
  const obj = Object.create(FheInt144.prototype);
11707
11602
  obj.__wbg_ptr = ptr;
11708
11603
  FheInt144Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -11826,7 +11721,6 @@ if (Symbol.dispose) FheInt144.prototype[Symbol.dispose] = FheInt144.prototype.fr
11826
11721
 
11827
11722
  export class FheInt152 {
11828
11723
  static __wrap(ptr) {
11829
- ptr = ptr >>> 0;
11830
11724
  const obj = Object.create(FheInt152.prototype);
11831
11725
  obj.__wbg_ptr = ptr;
11832
11726
  FheInt152Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -11950,7 +11844,6 @@ if (Symbol.dispose) FheInt152.prototype[Symbol.dispose] = FheInt152.prototype.fr
11950
11844
 
11951
11845
  export class FheInt16 {
11952
11846
  static __wrap(ptr) {
11953
- ptr = ptr >>> 0;
11954
11847
  const obj = Object.create(FheInt16.prototype);
11955
11848
  obj.__wbg_ptr = ptr;
11956
11849
  FheInt16Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -12074,7 +11967,6 @@ if (Symbol.dispose) FheInt16.prototype[Symbol.dispose] = FheInt16.prototype.free
12074
11967
 
12075
11968
  export class FheInt160 {
12076
11969
  static __wrap(ptr) {
12077
- ptr = ptr >>> 0;
12078
11970
  const obj = Object.create(FheInt160.prototype);
12079
11971
  obj.__wbg_ptr = ptr;
12080
11972
  FheInt160Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -12198,7 +12090,6 @@ if (Symbol.dispose) FheInt160.prototype[Symbol.dispose] = FheInt160.prototype.fr
12198
12090
 
12199
12091
  export class FheInt168 {
12200
12092
  static __wrap(ptr) {
12201
- ptr = ptr >>> 0;
12202
12093
  const obj = Object.create(FheInt168.prototype);
12203
12094
  obj.__wbg_ptr = ptr;
12204
12095
  FheInt168Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -12322,7 +12213,6 @@ if (Symbol.dispose) FheInt168.prototype[Symbol.dispose] = FheInt168.prototype.fr
12322
12213
 
12323
12214
  export class FheInt176 {
12324
12215
  static __wrap(ptr) {
12325
- ptr = ptr >>> 0;
12326
12216
  const obj = Object.create(FheInt176.prototype);
12327
12217
  obj.__wbg_ptr = ptr;
12328
12218
  FheInt176Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -12446,7 +12336,6 @@ if (Symbol.dispose) FheInt176.prototype[Symbol.dispose] = FheInt176.prototype.fr
12446
12336
 
12447
12337
  export class FheInt184 {
12448
12338
  static __wrap(ptr) {
12449
- ptr = ptr >>> 0;
12450
12339
  const obj = Object.create(FheInt184.prototype);
12451
12340
  obj.__wbg_ptr = ptr;
12452
12341
  FheInt184Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -12570,7 +12459,6 @@ if (Symbol.dispose) FheInt184.prototype[Symbol.dispose] = FheInt184.prototype.fr
12570
12459
 
12571
12460
  export class FheInt192 {
12572
12461
  static __wrap(ptr) {
12573
- ptr = ptr >>> 0;
12574
12462
  const obj = Object.create(FheInt192.prototype);
12575
12463
  obj.__wbg_ptr = ptr;
12576
12464
  FheInt192Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -12694,7 +12582,6 @@ if (Symbol.dispose) FheInt192.prototype[Symbol.dispose] = FheInt192.prototype.fr
12694
12582
 
12695
12583
  export class FheInt2 {
12696
12584
  static __wrap(ptr) {
12697
- ptr = ptr >>> 0;
12698
12585
  const obj = Object.create(FheInt2.prototype);
12699
12586
  obj.__wbg_ptr = ptr;
12700
12587
  FheInt2Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -12818,7 +12705,6 @@ if (Symbol.dispose) FheInt2.prototype[Symbol.dispose] = FheInt2.prototype.free;
12818
12705
 
12819
12706
  export class FheInt200 {
12820
12707
  static __wrap(ptr) {
12821
- ptr = ptr >>> 0;
12822
12708
  const obj = Object.create(FheInt200.prototype);
12823
12709
  obj.__wbg_ptr = ptr;
12824
12710
  FheInt200Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -12942,7 +12828,6 @@ if (Symbol.dispose) FheInt200.prototype[Symbol.dispose] = FheInt200.prototype.fr
12942
12828
 
12943
12829
  export class FheInt2048 {
12944
12830
  static __wrap(ptr) {
12945
- ptr = ptr >>> 0;
12946
12831
  const obj = Object.create(FheInt2048.prototype);
12947
12832
  obj.__wbg_ptr = ptr;
12948
12833
  FheInt2048Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -13066,7 +12951,6 @@ if (Symbol.dispose) FheInt2048.prototype[Symbol.dispose] = FheInt2048.prototype.
13066
12951
 
13067
12952
  export class FheInt208 {
13068
12953
  static __wrap(ptr) {
13069
- ptr = ptr >>> 0;
13070
12954
  const obj = Object.create(FheInt208.prototype);
13071
12955
  obj.__wbg_ptr = ptr;
13072
12956
  FheInt208Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -13190,7 +13074,6 @@ if (Symbol.dispose) FheInt208.prototype[Symbol.dispose] = FheInt208.prototype.fr
13190
13074
 
13191
13075
  export class FheInt216 {
13192
13076
  static __wrap(ptr) {
13193
- ptr = ptr >>> 0;
13194
13077
  const obj = Object.create(FheInt216.prototype);
13195
13078
  obj.__wbg_ptr = ptr;
13196
13079
  FheInt216Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -13314,7 +13197,6 @@ if (Symbol.dispose) FheInt216.prototype[Symbol.dispose] = FheInt216.prototype.fr
13314
13197
 
13315
13198
  export class FheInt224 {
13316
13199
  static __wrap(ptr) {
13317
- ptr = ptr >>> 0;
13318
13200
  const obj = Object.create(FheInt224.prototype);
13319
13201
  obj.__wbg_ptr = ptr;
13320
13202
  FheInt224Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -13438,7 +13320,6 @@ if (Symbol.dispose) FheInt224.prototype[Symbol.dispose] = FheInt224.prototype.fr
13438
13320
 
13439
13321
  export class FheInt232 {
13440
13322
  static __wrap(ptr) {
13441
- ptr = ptr >>> 0;
13442
13323
  const obj = Object.create(FheInt232.prototype);
13443
13324
  obj.__wbg_ptr = ptr;
13444
13325
  FheInt232Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -13562,7 +13443,6 @@ if (Symbol.dispose) FheInt232.prototype[Symbol.dispose] = FheInt232.prototype.fr
13562
13443
 
13563
13444
  export class FheInt24 {
13564
13445
  static __wrap(ptr) {
13565
- ptr = ptr >>> 0;
13566
13446
  const obj = Object.create(FheInt24.prototype);
13567
13447
  obj.__wbg_ptr = ptr;
13568
13448
  FheInt24Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -13686,7 +13566,6 @@ if (Symbol.dispose) FheInt24.prototype[Symbol.dispose] = FheInt24.prototype.free
13686
13566
 
13687
13567
  export class FheInt240 {
13688
13568
  static __wrap(ptr) {
13689
- ptr = ptr >>> 0;
13690
13569
  const obj = Object.create(FheInt240.prototype);
13691
13570
  obj.__wbg_ptr = ptr;
13692
13571
  FheInt240Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -13810,7 +13689,6 @@ if (Symbol.dispose) FheInt240.prototype[Symbol.dispose] = FheInt240.prototype.fr
13810
13689
 
13811
13690
  export class FheInt248 {
13812
13691
  static __wrap(ptr) {
13813
- ptr = ptr >>> 0;
13814
13692
  const obj = Object.create(FheInt248.prototype);
13815
13693
  obj.__wbg_ptr = ptr;
13816
13694
  FheInt248Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -13934,7 +13812,6 @@ if (Symbol.dispose) FheInt248.prototype[Symbol.dispose] = FheInt248.prototype.fr
13934
13812
 
13935
13813
  export class FheInt256 {
13936
13814
  static __wrap(ptr) {
13937
- ptr = ptr >>> 0;
13938
13815
  const obj = Object.create(FheInt256.prototype);
13939
13816
  obj.__wbg_ptr = ptr;
13940
13817
  FheInt256Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -14058,7 +13935,6 @@ if (Symbol.dispose) FheInt256.prototype[Symbol.dispose] = FheInt256.prototype.fr
14058
13935
 
14059
13936
  export class FheInt32 {
14060
13937
  static __wrap(ptr) {
14061
- ptr = ptr >>> 0;
14062
13938
  const obj = Object.create(FheInt32.prototype);
14063
13939
  obj.__wbg_ptr = ptr;
14064
13940
  FheInt32Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -14182,7 +14058,6 @@ if (Symbol.dispose) FheInt32.prototype[Symbol.dispose] = FheInt32.prototype.free
14182
14058
 
14183
14059
  export class FheInt4 {
14184
14060
  static __wrap(ptr) {
14185
- ptr = ptr >>> 0;
14186
14061
  const obj = Object.create(FheInt4.prototype);
14187
14062
  obj.__wbg_ptr = ptr;
14188
14063
  FheInt4Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -14306,7 +14181,6 @@ if (Symbol.dispose) FheInt4.prototype[Symbol.dispose] = FheInt4.prototype.free;
14306
14181
 
14307
14182
  export class FheInt40 {
14308
14183
  static __wrap(ptr) {
14309
- ptr = ptr >>> 0;
14310
14184
  const obj = Object.create(FheInt40.prototype);
14311
14185
  obj.__wbg_ptr = ptr;
14312
14186
  FheInt40Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -14430,7 +14304,6 @@ if (Symbol.dispose) FheInt40.prototype[Symbol.dispose] = FheInt40.prototype.free
14430
14304
 
14431
14305
  export class FheInt48 {
14432
14306
  static __wrap(ptr) {
14433
- ptr = ptr >>> 0;
14434
14307
  const obj = Object.create(FheInt48.prototype);
14435
14308
  obj.__wbg_ptr = ptr;
14436
14309
  FheInt48Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -14554,7 +14427,6 @@ if (Symbol.dispose) FheInt48.prototype[Symbol.dispose] = FheInt48.prototype.free
14554
14427
 
14555
14428
  export class FheInt512 {
14556
14429
  static __wrap(ptr) {
14557
- ptr = ptr >>> 0;
14558
14430
  const obj = Object.create(FheInt512.prototype);
14559
14431
  obj.__wbg_ptr = ptr;
14560
14432
  FheInt512Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -14678,7 +14550,6 @@ if (Symbol.dispose) FheInt512.prototype[Symbol.dispose] = FheInt512.prototype.fr
14678
14550
 
14679
14551
  export class FheInt56 {
14680
14552
  static __wrap(ptr) {
14681
- ptr = ptr >>> 0;
14682
14553
  const obj = Object.create(FheInt56.prototype);
14683
14554
  obj.__wbg_ptr = ptr;
14684
14555
  FheInt56Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -14802,7 +14673,6 @@ if (Symbol.dispose) FheInt56.prototype[Symbol.dispose] = FheInt56.prototype.free
14802
14673
 
14803
14674
  export class FheInt6 {
14804
14675
  static __wrap(ptr) {
14805
- ptr = ptr >>> 0;
14806
14676
  const obj = Object.create(FheInt6.prototype);
14807
14677
  obj.__wbg_ptr = ptr;
14808
14678
  FheInt6Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -14926,7 +14796,6 @@ if (Symbol.dispose) FheInt6.prototype[Symbol.dispose] = FheInt6.prototype.free;
14926
14796
 
14927
14797
  export class FheInt64 {
14928
14798
  static __wrap(ptr) {
14929
- ptr = ptr >>> 0;
14930
14799
  const obj = Object.create(FheInt64.prototype);
14931
14800
  obj.__wbg_ptr = ptr;
14932
14801
  FheInt64Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -15050,7 +14919,6 @@ if (Symbol.dispose) FheInt64.prototype[Symbol.dispose] = FheInt64.prototype.free
15050
14919
 
15051
14920
  export class FheInt72 {
15052
14921
  static __wrap(ptr) {
15053
- ptr = ptr >>> 0;
15054
14922
  const obj = Object.create(FheInt72.prototype);
15055
14923
  obj.__wbg_ptr = ptr;
15056
14924
  FheInt72Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -15174,7 +15042,6 @@ if (Symbol.dispose) FheInt72.prototype[Symbol.dispose] = FheInt72.prototype.free
15174
15042
 
15175
15043
  export class FheInt8 {
15176
15044
  static __wrap(ptr) {
15177
- ptr = ptr >>> 0;
15178
15045
  const obj = Object.create(FheInt8.prototype);
15179
15046
  obj.__wbg_ptr = ptr;
15180
15047
  FheInt8Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -15298,7 +15165,6 @@ if (Symbol.dispose) FheInt8.prototype[Symbol.dispose] = FheInt8.prototype.free;
15298
15165
 
15299
15166
  export class FheInt80 {
15300
15167
  static __wrap(ptr) {
15301
- ptr = ptr >>> 0;
15302
15168
  const obj = Object.create(FheInt80.prototype);
15303
15169
  obj.__wbg_ptr = ptr;
15304
15170
  FheInt80Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -15422,7 +15288,6 @@ if (Symbol.dispose) FheInt80.prototype[Symbol.dispose] = FheInt80.prototype.free
15422
15288
 
15423
15289
  export class FheInt88 {
15424
15290
  static __wrap(ptr) {
15425
- ptr = ptr >>> 0;
15426
15291
  const obj = Object.create(FheInt88.prototype);
15427
15292
  obj.__wbg_ptr = ptr;
15428
15293
  FheInt88Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -15546,7 +15411,6 @@ if (Symbol.dispose) FheInt88.prototype[Symbol.dispose] = FheInt88.prototype.free
15546
15411
 
15547
15412
  export class FheInt96 {
15548
15413
  static __wrap(ptr) {
15549
- ptr = ptr >>> 0;
15550
15414
  const obj = Object.create(FheInt96.prototype);
15551
15415
  obj.__wbg_ptr = ptr;
15552
15416
  FheInt96Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -15760,7 +15624,6 @@ export const FheTypes = Object.freeze({
15760
15624
 
15761
15625
  export class FheUint10 {
15762
15626
  static __wrap(ptr) {
15763
- ptr = ptr >>> 0;
15764
15627
  const obj = Object.create(FheUint10.prototype);
15765
15628
  obj.__wbg_ptr = ptr;
15766
15629
  FheUint10Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -15884,7 +15747,6 @@ if (Symbol.dispose) FheUint10.prototype[Symbol.dispose] = FheUint10.prototype.fr
15884
15747
 
15885
15748
  export class FheUint1024 {
15886
15749
  static __wrap(ptr) {
15887
- ptr = ptr >>> 0;
15888
15750
  const obj = Object.create(FheUint1024.prototype);
15889
15751
  obj.__wbg_ptr = ptr;
15890
15752
  FheUint1024Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -16008,7 +15870,6 @@ if (Symbol.dispose) FheUint1024.prototype[Symbol.dispose] = FheUint1024.prototyp
16008
15870
 
16009
15871
  export class FheUint104 {
16010
15872
  static __wrap(ptr) {
16011
- ptr = ptr >>> 0;
16012
15873
  const obj = Object.create(FheUint104.prototype);
16013
15874
  obj.__wbg_ptr = ptr;
16014
15875
  FheUint104Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -16132,7 +15993,6 @@ if (Symbol.dispose) FheUint104.prototype[Symbol.dispose] = FheUint104.prototype.
16132
15993
 
16133
15994
  export class FheUint112 {
16134
15995
  static __wrap(ptr) {
16135
- ptr = ptr >>> 0;
16136
15996
  const obj = Object.create(FheUint112.prototype);
16137
15997
  obj.__wbg_ptr = ptr;
16138
15998
  FheUint112Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -16256,7 +16116,6 @@ if (Symbol.dispose) FheUint112.prototype[Symbol.dispose] = FheUint112.prototype.
16256
16116
 
16257
16117
  export class FheUint12 {
16258
16118
  static __wrap(ptr) {
16259
- ptr = ptr >>> 0;
16260
16119
  const obj = Object.create(FheUint12.prototype);
16261
16120
  obj.__wbg_ptr = ptr;
16262
16121
  FheUint12Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -16380,7 +16239,6 @@ if (Symbol.dispose) FheUint12.prototype[Symbol.dispose] = FheUint12.prototype.fr
16380
16239
 
16381
16240
  export class FheUint120 {
16382
16241
  static __wrap(ptr) {
16383
- ptr = ptr >>> 0;
16384
16242
  const obj = Object.create(FheUint120.prototype);
16385
16243
  obj.__wbg_ptr = ptr;
16386
16244
  FheUint120Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -16504,7 +16362,6 @@ if (Symbol.dispose) FheUint120.prototype[Symbol.dispose] = FheUint120.prototype.
16504
16362
 
16505
16363
  export class FheUint128 {
16506
16364
  static __wrap(ptr) {
16507
- ptr = ptr >>> 0;
16508
16365
  const obj = Object.create(FheUint128.prototype);
16509
16366
  obj.__wbg_ptr = ptr;
16510
16367
  FheUint128Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -16628,7 +16485,6 @@ if (Symbol.dispose) FheUint128.prototype[Symbol.dispose] = FheUint128.prototype.
16628
16485
 
16629
16486
  export class FheUint136 {
16630
16487
  static __wrap(ptr) {
16631
- ptr = ptr >>> 0;
16632
16488
  const obj = Object.create(FheUint136.prototype);
16633
16489
  obj.__wbg_ptr = ptr;
16634
16490
  FheUint136Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -16752,7 +16608,6 @@ if (Symbol.dispose) FheUint136.prototype[Symbol.dispose] = FheUint136.prototype.
16752
16608
 
16753
16609
  export class FheUint14 {
16754
16610
  static __wrap(ptr) {
16755
- ptr = ptr >>> 0;
16756
16611
  const obj = Object.create(FheUint14.prototype);
16757
16612
  obj.__wbg_ptr = ptr;
16758
16613
  FheUint14Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -16876,7 +16731,6 @@ if (Symbol.dispose) FheUint14.prototype[Symbol.dispose] = FheUint14.prototype.fr
16876
16731
 
16877
16732
  export class FheUint144 {
16878
16733
  static __wrap(ptr) {
16879
- ptr = ptr >>> 0;
16880
16734
  const obj = Object.create(FheUint144.prototype);
16881
16735
  obj.__wbg_ptr = ptr;
16882
16736
  FheUint144Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -17000,7 +16854,6 @@ if (Symbol.dispose) FheUint144.prototype[Symbol.dispose] = FheUint144.prototype.
17000
16854
 
17001
16855
  export class FheUint152 {
17002
16856
  static __wrap(ptr) {
17003
- ptr = ptr >>> 0;
17004
16857
  const obj = Object.create(FheUint152.prototype);
17005
16858
  obj.__wbg_ptr = ptr;
17006
16859
  FheUint152Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -17124,7 +16977,6 @@ if (Symbol.dispose) FheUint152.prototype[Symbol.dispose] = FheUint152.prototype.
17124
16977
 
17125
16978
  export class FheUint16 {
17126
16979
  static __wrap(ptr) {
17127
- ptr = ptr >>> 0;
17128
16980
  const obj = Object.create(FheUint16.prototype);
17129
16981
  obj.__wbg_ptr = ptr;
17130
16982
  FheUint16Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -17248,7 +17100,6 @@ if (Symbol.dispose) FheUint16.prototype[Symbol.dispose] = FheUint16.prototype.fr
17248
17100
 
17249
17101
  export class FheUint160 {
17250
17102
  static __wrap(ptr) {
17251
- ptr = ptr >>> 0;
17252
17103
  const obj = Object.create(FheUint160.prototype);
17253
17104
  obj.__wbg_ptr = ptr;
17254
17105
  FheUint160Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -17372,7 +17223,6 @@ if (Symbol.dispose) FheUint160.prototype[Symbol.dispose] = FheUint160.prototype.
17372
17223
 
17373
17224
  export class FheUint168 {
17374
17225
  static __wrap(ptr) {
17375
- ptr = ptr >>> 0;
17376
17226
  const obj = Object.create(FheUint168.prototype);
17377
17227
  obj.__wbg_ptr = ptr;
17378
17228
  FheUint168Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -17496,7 +17346,6 @@ if (Symbol.dispose) FheUint168.prototype[Symbol.dispose] = FheUint168.prototype.
17496
17346
 
17497
17347
  export class FheUint176 {
17498
17348
  static __wrap(ptr) {
17499
- ptr = ptr >>> 0;
17500
17349
  const obj = Object.create(FheUint176.prototype);
17501
17350
  obj.__wbg_ptr = ptr;
17502
17351
  FheUint176Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -17620,7 +17469,6 @@ if (Symbol.dispose) FheUint176.prototype[Symbol.dispose] = FheUint176.prototype.
17620
17469
 
17621
17470
  export class FheUint184 {
17622
17471
  static __wrap(ptr) {
17623
- ptr = ptr >>> 0;
17624
17472
  const obj = Object.create(FheUint184.prototype);
17625
17473
  obj.__wbg_ptr = ptr;
17626
17474
  FheUint184Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -17744,7 +17592,6 @@ if (Symbol.dispose) FheUint184.prototype[Symbol.dispose] = FheUint184.prototype.
17744
17592
 
17745
17593
  export class FheUint192 {
17746
17594
  static __wrap(ptr) {
17747
- ptr = ptr >>> 0;
17748
17595
  const obj = Object.create(FheUint192.prototype);
17749
17596
  obj.__wbg_ptr = ptr;
17750
17597
  FheUint192Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -17868,7 +17715,6 @@ if (Symbol.dispose) FheUint192.prototype[Symbol.dispose] = FheUint192.prototype.
17868
17715
 
17869
17716
  export class FheUint2 {
17870
17717
  static __wrap(ptr) {
17871
- ptr = ptr >>> 0;
17872
17718
  const obj = Object.create(FheUint2.prototype);
17873
17719
  obj.__wbg_ptr = ptr;
17874
17720
  FheUint2Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -17992,7 +17838,6 @@ if (Symbol.dispose) FheUint2.prototype[Symbol.dispose] = FheUint2.prototype.free
17992
17838
 
17993
17839
  export class FheUint200 {
17994
17840
  static __wrap(ptr) {
17995
- ptr = ptr >>> 0;
17996
17841
  const obj = Object.create(FheUint200.prototype);
17997
17842
  obj.__wbg_ptr = ptr;
17998
17843
  FheUint200Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -18116,7 +17961,6 @@ if (Symbol.dispose) FheUint200.prototype[Symbol.dispose] = FheUint200.prototype.
18116
17961
 
18117
17962
  export class FheUint2048 {
18118
17963
  static __wrap(ptr) {
18119
- ptr = ptr >>> 0;
18120
17964
  const obj = Object.create(FheUint2048.prototype);
18121
17965
  obj.__wbg_ptr = ptr;
18122
17966
  FheUint2048Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -18240,7 +18084,6 @@ if (Symbol.dispose) FheUint2048.prototype[Symbol.dispose] = FheUint2048.prototyp
18240
18084
 
18241
18085
  export class FheUint208 {
18242
18086
  static __wrap(ptr) {
18243
- ptr = ptr >>> 0;
18244
18087
  const obj = Object.create(FheUint208.prototype);
18245
18088
  obj.__wbg_ptr = ptr;
18246
18089
  FheUint208Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -18364,7 +18207,6 @@ if (Symbol.dispose) FheUint208.prototype[Symbol.dispose] = FheUint208.prototype.
18364
18207
 
18365
18208
  export class FheUint216 {
18366
18209
  static __wrap(ptr) {
18367
- ptr = ptr >>> 0;
18368
18210
  const obj = Object.create(FheUint216.prototype);
18369
18211
  obj.__wbg_ptr = ptr;
18370
18212
  FheUint216Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -18488,7 +18330,6 @@ if (Symbol.dispose) FheUint216.prototype[Symbol.dispose] = FheUint216.prototype.
18488
18330
 
18489
18331
  export class FheUint224 {
18490
18332
  static __wrap(ptr) {
18491
- ptr = ptr >>> 0;
18492
18333
  const obj = Object.create(FheUint224.prototype);
18493
18334
  obj.__wbg_ptr = ptr;
18494
18335
  FheUint224Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -18612,7 +18453,6 @@ if (Symbol.dispose) FheUint224.prototype[Symbol.dispose] = FheUint224.prototype.
18612
18453
 
18613
18454
  export class FheUint232 {
18614
18455
  static __wrap(ptr) {
18615
- ptr = ptr >>> 0;
18616
18456
  const obj = Object.create(FheUint232.prototype);
18617
18457
  obj.__wbg_ptr = ptr;
18618
18458
  FheUint232Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -18736,7 +18576,6 @@ if (Symbol.dispose) FheUint232.prototype[Symbol.dispose] = FheUint232.prototype.
18736
18576
 
18737
18577
  export class FheUint24 {
18738
18578
  static __wrap(ptr) {
18739
- ptr = ptr >>> 0;
18740
18579
  const obj = Object.create(FheUint24.prototype);
18741
18580
  obj.__wbg_ptr = ptr;
18742
18581
  FheUint24Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -18860,7 +18699,6 @@ if (Symbol.dispose) FheUint24.prototype[Symbol.dispose] = FheUint24.prototype.fr
18860
18699
 
18861
18700
  export class FheUint240 {
18862
18701
  static __wrap(ptr) {
18863
- ptr = ptr >>> 0;
18864
18702
  const obj = Object.create(FheUint240.prototype);
18865
18703
  obj.__wbg_ptr = ptr;
18866
18704
  FheUint240Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -18984,7 +18822,6 @@ if (Symbol.dispose) FheUint240.prototype[Symbol.dispose] = FheUint240.prototype.
18984
18822
 
18985
18823
  export class FheUint248 {
18986
18824
  static __wrap(ptr) {
18987
- ptr = ptr >>> 0;
18988
18825
  const obj = Object.create(FheUint248.prototype);
18989
18826
  obj.__wbg_ptr = ptr;
18990
18827
  FheUint248Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -19108,7 +18945,6 @@ if (Symbol.dispose) FheUint248.prototype[Symbol.dispose] = FheUint248.prototype.
19108
18945
 
19109
18946
  export class FheUint256 {
19110
18947
  static __wrap(ptr) {
19111
- ptr = ptr >>> 0;
19112
18948
  const obj = Object.create(FheUint256.prototype);
19113
18949
  obj.__wbg_ptr = ptr;
19114
18950
  FheUint256Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -19232,7 +19068,6 @@ if (Symbol.dispose) FheUint256.prototype[Symbol.dispose] = FheUint256.prototype.
19232
19068
 
19233
19069
  export class FheUint32 {
19234
19070
  static __wrap(ptr) {
19235
- ptr = ptr >>> 0;
19236
19071
  const obj = Object.create(FheUint32.prototype);
19237
19072
  obj.__wbg_ptr = ptr;
19238
19073
  FheUint32Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -19356,7 +19191,6 @@ if (Symbol.dispose) FheUint32.prototype[Symbol.dispose] = FheUint32.prototype.fr
19356
19191
 
19357
19192
  export class FheUint4 {
19358
19193
  static __wrap(ptr) {
19359
- ptr = ptr >>> 0;
19360
19194
  const obj = Object.create(FheUint4.prototype);
19361
19195
  obj.__wbg_ptr = ptr;
19362
19196
  FheUint4Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -19480,7 +19314,6 @@ if (Symbol.dispose) FheUint4.prototype[Symbol.dispose] = FheUint4.prototype.free
19480
19314
 
19481
19315
  export class FheUint40 {
19482
19316
  static __wrap(ptr) {
19483
- ptr = ptr >>> 0;
19484
19317
  const obj = Object.create(FheUint40.prototype);
19485
19318
  obj.__wbg_ptr = ptr;
19486
19319
  FheUint40Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -19604,7 +19437,6 @@ if (Symbol.dispose) FheUint40.prototype[Symbol.dispose] = FheUint40.prototype.fr
19604
19437
 
19605
19438
  export class FheUint48 {
19606
19439
  static __wrap(ptr) {
19607
- ptr = ptr >>> 0;
19608
19440
  const obj = Object.create(FheUint48.prototype);
19609
19441
  obj.__wbg_ptr = ptr;
19610
19442
  FheUint48Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -19728,7 +19560,6 @@ if (Symbol.dispose) FheUint48.prototype[Symbol.dispose] = FheUint48.prototype.fr
19728
19560
 
19729
19561
  export class FheUint512 {
19730
19562
  static __wrap(ptr) {
19731
- ptr = ptr >>> 0;
19732
19563
  const obj = Object.create(FheUint512.prototype);
19733
19564
  obj.__wbg_ptr = ptr;
19734
19565
  FheUint512Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -19852,7 +19683,6 @@ if (Symbol.dispose) FheUint512.prototype[Symbol.dispose] = FheUint512.prototype.
19852
19683
 
19853
19684
  export class FheUint56 {
19854
19685
  static __wrap(ptr) {
19855
- ptr = ptr >>> 0;
19856
19686
  const obj = Object.create(FheUint56.prototype);
19857
19687
  obj.__wbg_ptr = ptr;
19858
19688
  FheUint56Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -19976,7 +19806,6 @@ if (Symbol.dispose) FheUint56.prototype[Symbol.dispose] = FheUint56.prototype.fr
19976
19806
 
19977
19807
  export class FheUint6 {
19978
19808
  static __wrap(ptr) {
19979
- ptr = ptr >>> 0;
19980
19809
  const obj = Object.create(FheUint6.prototype);
19981
19810
  obj.__wbg_ptr = ptr;
19982
19811
  FheUint6Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -20100,7 +19929,6 @@ if (Symbol.dispose) FheUint6.prototype[Symbol.dispose] = FheUint6.prototype.free
20100
19929
 
20101
19930
  export class FheUint64 {
20102
19931
  static __wrap(ptr) {
20103
- ptr = ptr >>> 0;
20104
19932
  const obj = Object.create(FheUint64.prototype);
20105
19933
  obj.__wbg_ptr = ptr;
20106
19934
  FheUint64Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -20224,7 +20052,6 @@ if (Symbol.dispose) FheUint64.prototype[Symbol.dispose] = FheUint64.prototype.fr
20224
20052
 
20225
20053
  export class FheUint72 {
20226
20054
  static __wrap(ptr) {
20227
- ptr = ptr >>> 0;
20228
20055
  const obj = Object.create(FheUint72.prototype);
20229
20056
  obj.__wbg_ptr = ptr;
20230
20057
  FheUint72Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -20348,7 +20175,6 @@ if (Symbol.dispose) FheUint72.prototype[Symbol.dispose] = FheUint72.prototype.fr
20348
20175
 
20349
20176
  export class FheUint8 {
20350
20177
  static __wrap(ptr) {
20351
- ptr = ptr >>> 0;
20352
20178
  const obj = Object.create(FheUint8.prototype);
20353
20179
  obj.__wbg_ptr = ptr;
20354
20180
  FheUint8Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -20472,7 +20298,6 @@ if (Symbol.dispose) FheUint8.prototype[Symbol.dispose] = FheUint8.prototype.free
20472
20298
 
20473
20299
  export class FheUint80 {
20474
20300
  static __wrap(ptr) {
20475
- ptr = ptr >>> 0;
20476
20301
  const obj = Object.create(FheUint80.prototype);
20477
20302
  obj.__wbg_ptr = ptr;
20478
20303
  FheUint80Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -20596,7 +20421,6 @@ if (Symbol.dispose) FheUint80.prototype[Symbol.dispose] = FheUint80.prototype.fr
20596
20421
 
20597
20422
  export class FheUint88 {
20598
20423
  static __wrap(ptr) {
20599
- ptr = ptr >>> 0;
20600
20424
  const obj = Object.create(FheUint88.prototype);
20601
20425
  obj.__wbg_ptr = ptr;
20602
20426
  FheUint88Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -20720,7 +20544,6 @@ if (Symbol.dispose) FheUint88.prototype[Symbol.dispose] = FheUint88.prototype.fr
20720
20544
 
20721
20545
  export class FheUint96 {
20722
20546
  static __wrap(ptr) {
20723
- ptr = ptr >>> 0;
20724
20547
  const obj = Object.create(FheUint96.prototype);
20725
20548
  obj.__wbg_ptr = ptr;
20726
20549
  FheUint96Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -20844,7 +20667,6 @@ if (Symbol.dispose) FheUint96.prototype[Symbol.dispose] = FheUint96.prototype.fr
20844
20667
 
20845
20668
  export class ProvenCompactCiphertextList {
20846
20669
  static __wrap(ptr) {
20847
- ptr = ptr >>> 0;
20848
20670
  const obj = Object.create(ProvenCompactCiphertextList.prototype);
20849
20671
  obj.__wbg_ptr = ptr;
20850
20672
  ProvenCompactCiphertextListFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -21313,7 +21135,6 @@ if (Symbol.dispose) Shortint.prototype[Symbol.dispose] = Shortint.prototype.free
21313
21135
 
21314
21136
  export class ShortintCiphertext {
21315
21137
  static __wrap(ptr) {
21316
- ptr = ptr >>> 0;
21317
21138
  const obj = Object.create(ShortintCiphertext.prototype);
21318
21139
  obj.__wbg_ptr = ptr;
21319
21140
  ShortintCiphertextFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -21334,7 +21155,6 @@ if (Symbol.dispose) ShortintCiphertext.prototype[Symbol.dispose] = ShortintCiphe
21334
21155
 
21335
21156
  export class ShortintClientKey {
21336
21157
  static __wrap(ptr) {
21337
- ptr = ptr >>> 0;
21338
21158
  const obj = Object.create(ShortintClientKey.prototype);
21339
21159
  obj.__wbg_ptr = ptr;
21340
21160
  ShortintClientKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -21355,7 +21175,6 @@ if (Symbol.dispose) ShortintClientKey.prototype[Symbol.dispose] = ShortintClient
21355
21175
 
21356
21176
  export class ShortintCompactPublicKeyEncryptionParameters {
21357
21177
  static __wrap(ptr) {
21358
- ptr = ptr >>> 0;
21359
21178
  const obj = Object.create(ShortintCompactPublicKeyEncryptionParameters.prototype);
21360
21179
  obj.__wbg_ptr = ptr;
21361
21180
  ShortintCompactPublicKeyEncryptionParametersFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -21376,7 +21195,7 @@ export class ShortintCompactPublicKeyEncryptionParameters {
21376
21195
  */
21377
21196
  constructor(name) {
21378
21197
  const ret = wasm.shortintcompactpublickeyencryptionparameters_new(name);
21379
- this.__wbg_ptr = ret >>> 0;
21198
+ this.__wbg_ptr = ret;
21380
21199
  ShortintCompactPublicKeyEncryptionParametersFinalization.register(this, this.__wbg_ptr, this);
21381
21200
  return this;
21382
21201
  }
@@ -21427,7 +21246,6 @@ export const ShortintCompactPublicKeyEncryptionParametersName = Object.freeze({
21427
21246
 
21428
21247
  export class ShortintCompressedCiphertext {
21429
21248
  static __wrap(ptr) {
21430
- ptr = ptr >>> 0;
21431
21249
  const obj = Object.create(ShortintCompressedCiphertext.prototype);
21432
21250
  obj.__wbg_ptr = ptr;
21433
21251
  ShortintCompressedCiphertextFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -21448,7 +21266,6 @@ if (Symbol.dispose) ShortintCompressedCiphertext.prototype[Symbol.dispose] = Sho
21448
21266
 
21449
21267
  export class ShortintCompressedPublicKey {
21450
21268
  static __wrap(ptr) {
21451
- ptr = ptr >>> 0;
21452
21269
  const obj = Object.create(ShortintCompressedPublicKey.prototype);
21453
21270
  obj.__wbg_ptr = ptr;
21454
21271
  ShortintCompressedPublicKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -21469,7 +21286,6 @@ if (Symbol.dispose) ShortintCompressedPublicKey.prototype[Symbol.dispose] = Shor
21469
21286
 
21470
21287
  export class ShortintCompressedServerKey {
21471
21288
  static __wrap(ptr) {
21472
- ptr = ptr >>> 0;
21473
21289
  const obj = Object.create(ShortintCompressedServerKey.prototype);
21474
21290
  obj.__wbg_ptr = ptr;
21475
21291
  ShortintCompressedServerKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -21498,7 +21314,6 @@ export const ShortintEncryptionKeyChoice = Object.freeze({
21498
21314
 
21499
21315
  export class ShortintNoiseDistribution {
21500
21316
  static __wrap(ptr) {
21501
- ptr = ptr >>> 0;
21502
21317
  const obj = Object.create(ShortintNoiseDistribution.prototype);
21503
21318
  obj.__wbg_ptr = ptr;
21504
21319
  ShortintNoiseDistributionFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -21527,7 +21342,6 @@ export const ShortintPBSOrder = Object.freeze({
21527
21342
 
21528
21343
  export class ShortintParameters {
21529
21344
  static __wrap(ptr) {
21530
- ptr = ptr >>> 0;
21531
21345
  const obj = Object.create(ShortintParameters.prototype);
21532
21346
  obj.__wbg_ptr = ptr;
21533
21347
  ShortintParametersFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -21614,7 +21428,7 @@ export class ShortintParameters {
21614
21428
  if (ret[2]) {
21615
21429
  throw takeFromExternrefTable0(ret[1]);
21616
21430
  }
21617
- this.__wbg_ptr = ret[0] >>> 0;
21431
+ this.__wbg_ptr = ret[0];
21618
21432
  ShortintParametersFinalization.register(this, this.__wbg_ptr, this);
21619
21433
  return this;
21620
21434
  }
@@ -22293,7 +22107,6 @@ export const ShortintParametersName = Object.freeze({
22293
22107
 
22294
22108
  export class ShortintPublicKey {
22295
22109
  static __wrap(ptr) {
22296
- ptr = ptr >>> 0;
22297
22110
  const obj = Object.create(ShortintPublicKey.prototype);
22298
22111
  obj.__wbg_ptr = ptr;
22299
22112
  ShortintPublicKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -22314,7 +22127,6 @@ if (Symbol.dispose) ShortintPublicKey.prototype[Symbol.dispose] = ShortintPublic
22314
22127
 
22315
22128
  export class TfheClientKey {
22316
22129
  static __wrap(ptr) {
22317
- ptr = ptr >>> 0;
22318
22130
  const obj = Object.create(TfheClientKey.prototype);
22319
22131
  obj.__wbg_ptr = ptr;
22320
22132
  TfheClientKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -22412,7 +22224,6 @@ if (Symbol.dispose) TfheClientKey.prototype[Symbol.dispose] = TfheClientKey.prot
22412
22224
 
22413
22225
  export class TfheCompactPublicKey {
22414
22226
  static __wrap(ptr) {
22415
- ptr = ptr >>> 0;
22416
22227
  const obj = Object.create(TfheCompactPublicKey.prototype);
22417
22228
  obj.__wbg_ptr = ptr;
22418
22229
  TfheCompactPublicKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -22513,7 +22324,6 @@ if (Symbol.dispose) TfheCompactPublicKey.prototype[Symbol.dispose] = TfheCompact
22513
22324
 
22514
22325
  export class TfheCompressedCompactPublicKey {
22515
22326
  static __wrap(ptr) {
22516
- ptr = ptr >>> 0;
22517
22327
  const obj = Object.create(TfheCompressedCompactPublicKey.prototype);
22518
22328
  obj.__wbg_ptr = ptr;
22519
22329
  TfheCompressedCompactPublicKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -22624,7 +22434,6 @@ if (Symbol.dispose) TfheCompressedCompactPublicKey.prototype[Symbol.dispose] = T
22624
22434
 
22625
22435
  export class TfheCompressedPublicKey {
22626
22436
  static __wrap(ptr) {
22627
- ptr = ptr >>> 0;
22628
22437
  const obj = Object.create(TfheCompressedPublicKey.prototype);
22629
22438
  obj.__wbg_ptr = ptr;
22630
22439
  TfheCompressedPublicKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -22719,7 +22528,6 @@ if (Symbol.dispose) TfheCompressedPublicKey.prototype[Symbol.dispose] = TfheComp
22719
22528
 
22720
22529
  export class TfheCompressedServerKey {
22721
22530
  static __wrap(ptr) {
22722
- ptr = ptr >>> 0;
22723
22531
  const obj = Object.create(TfheCompressedServerKey.prototype);
22724
22532
  obj.__wbg_ptr = ptr;
22725
22533
  TfheCompressedServerKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -22804,7 +22612,6 @@ if (Symbol.dispose) TfheCompressedServerKey.prototype[Symbol.dispose] = TfheComp
22804
22612
 
22805
22613
  export class TfheConfig {
22806
22614
  static __wrap(ptr) {
22807
- ptr = ptr >>> 0;
22808
22615
  const obj = Object.create(TfheConfig.prototype);
22809
22616
  obj.__wbg_ptr = ptr;
22810
22617
  TfheConfigFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -22825,7 +22632,6 @@ if (Symbol.dispose) TfheConfig.prototype[Symbol.dispose] = TfheConfig.prototype.
22825
22632
 
22826
22633
  export class TfheConfigBuilder {
22827
22634
  static __wrap(ptr) {
22828
- ptr = ptr >>> 0;
22829
22635
  const obj = Object.create(TfheConfigBuilder.prototype);
22830
22636
  obj.__wbg_ptr = ptr;
22831
22637
  TfheConfigBuilderFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -22890,7 +22696,6 @@ if (Symbol.dispose) TfheConfigBuilder.prototype[Symbol.dispose] = TfheConfigBuil
22890
22696
 
22891
22697
  export class TfhePublicKey {
22892
22698
  static __wrap(ptr) {
22893
- ptr = ptr >>> 0;
22894
22699
  const obj = Object.create(TfhePublicKey.prototype);
22895
22700
  obj.__wbg_ptr = ptr;
22896
22701
  TfhePublicKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -22975,7 +22780,6 @@ if (Symbol.dispose) TfhePublicKey.prototype[Symbol.dispose] = TfhePublicKey.prot
22975
22780
 
22976
22781
  export class TfheServerKey {
22977
22782
  static __wrap(ptr) {
22978
- ptr = ptr >>> 0;
22979
22783
  const obj = Object.create(TfheServerKey.prototype);
22980
22784
  obj.__wbg_ptr = ptr;
22981
22785
  TfheServerKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -23094,7 +22898,6 @@ if (Symbol.dispose) tfhe.prototype[Symbol.dispose] = tfhe.prototype.free;
23094
22898
 
23095
22899
  export class wbg_rayon_PoolBuilder {
23096
22900
  static __wrap(ptr) {
23097
- ptr = ptr >>> 0;
23098
22901
  const obj = Object.create(wbg_rayon_PoolBuilder.prototype);
23099
22902
  obj.__wbg_ptr = ptr;
23100
22903
  wbg_rayon_PoolBuilderFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -23139,85 +22942,85 @@ export function wbg_rayon_start_worker(receiver) {
23139
22942
  function __wbg_get_imports(memory) {
23140
22943
  const import0 = {
23141
22944
  __proto__: null,
23142
- __wbg_BigInt_65bcea251e788083: function(arg0) {
22945
+ __wbg_BigInt_590a7bb99baad06a: function(arg0) {
23143
22946
  const ret = BigInt(arg0);
23144
22947
  return ret;
23145
22948
  },
23146
- __wbg_BigInt_ccbca793f456e582: function() { return handleError(function (arg0) {
22949
+ __wbg_BigInt_d576983233c6e0d1: function() { return handleError(function (arg0) {
23147
22950
  const ret = BigInt(arg0);
23148
22951
  return ret;
23149
22952
  }, arguments); },
23150
- __wbg_Error_960c155d3d49e4c2: function(arg0, arg1) {
22953
+ __wbg_Error_ef53bc310eb298a0: function(arg0, arg1) {
23151
22954
  const ret = Error(getStringFromWasm0(arg0, arg1));
23152
22955
  return ret;
23153
22956
  },
23154
- __wbg___wbindgen_bigint_get_as_i64_3d3aba5d616c6a51: function(arg0, arg1) {
22957
+ __wbg___wbindgen_bigint_get_as_i64_38130e98eecd467d: function(arg0, arg1) {
23155
22958
  const v = arg1;
23156
22959
  const ret = typeof(v) === 'bigint' ? v : undefined;
23157
22960
  getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
23158
22961
  getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
23159
22962
  },
23160
- __wbg___wbindgen_bit_and_96f696c56b4950d5: function(arg0, arg1) {
22963
+ __wbg___wbindgen_bit_and_c3ff9328af026c6b: function(arg0, arg1) {
23161
22964
  const ret = arg0 & arg1;
23162
22965
  return ret;
23163
22966
  },
23164
- __wbg___wbindgen_bit_or_d564c2751fdac6c9: function(arg0, arg1) {
22967
+ __wbg___wbindgen_bit_or_df5d1a36f9eb4d41: function(arg0, arg1) {
23165
22968
  const ret = arg0 | arg1;
23166
22969
  return ret;
23167
22970
  },
23168
- __wbg___wbindgen_debug_string_ab4b34d23d6778bd: function(arg0, arg1) {
22971
+ __wbg___wbindgen_debug_string_0accd80f45e5faa2: function(arg0, arg1) {
23169
22972
  const ret = debugString(arg1);
23170
22973
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
23171
22974
  const len1 = WASM_VECTOR_LEN;
23172
22975
  getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
23173
22976
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
23174
22977
  },
23175
- __wbg___wbindgen_is_function_3baa9db1a987f47d: function(arg0) {
22978
+ __wbg___wbindgen_is_function_754e9f305ff6029e: function(arg0) {
23176
22979
  const ret = typeof(arg0) === 'function';
23177
22980
  return ret;
23178
22981
  },
23179
- __wbg___wbindgen_is_object_63322ec0cd6ea4ef: function(arg0) {
22982
+ __wbg___wbindgen_is_object_56732c2bc353f41d: function(arg0) {
23180
22983
  const val = arg0;
23181
22984
  const ret = typeof(val) === 'object' && val !== null;
23182
22985
  return ret;
23183
22986
  },
23184
- __wbg___wbindgen_is_string_6df3bf7ef1164ed3: function(arg0) {
22987
+ __wbg___wbindgen_is_string_c236cabd84a4d769: function(arg0) {
23185
22988
  const ret = typeof(arg0) === 'string';
23186
22989
  return ret;
23187
22990
  },
23188
- __wbg___wbindgen_is_undefined_29a43b4d42920abd: function(arg0) {
22991
+ __wbg___wbindgen_is_undefined_67b456be8673d3d7: function(arg0) {
23189
22992
  const ret = arg0 === undefined;
23190
22993
  return ret;
23191
22994
  },
23192
- __wbg___wbindgen_jsval_eq_d3465d8a07697228: function(arg0, arg1) {
22995
+ __wbg___wbindgen_jsval_eq_1068e624fa87f6ab: function(arg0, arg1) {
23193
22996
  const ret = arg0 === arg1;
23194
22997
  return ret;
23195
22998
  },
23196
- __wbg___wbindgen_lt_78bab382628fb48f: function(arg0, arg1) {
22999
+ __wbg___wbindgen_lt_b4bcf1fdfe2e41fe: function(arg0, arg1) {
23197
23000
  const ret = arg0 < arg1;
23198
23001
  return ret;
23199
23002
  },
23200
- __wbg___wbindgen_memory_dfa12096f400c9bd: function() {
23003
+ __wbg___wbindgen_memory_fbc4c3e30b409f08: function() {
23201
23004
  const ret = wasm.memory;
23202
23005
  return ret;
23203
23006
  },
23204
- __wbg___wbindgen_module_b5e6fb95dbdb7d7e: function() {
23007
+ __wbg___wbindgen_module_5dcc25d553a4424f: function() {
23205
23008
  const ret = wasmModule;
23206
23009
  return ret;
23207
23010
  },
23208
- __wbg___wbindgen_neg_8d39d23ef65c9fdb: function(arg0) {
23011
+ __wbg___wbindgen_neg_c5be7a95a9dd509c: function(arg0) {
23209
23012
  const ret = -arg0;
23210
23013
  return ret;
23211
23014
  },
23212
- __wbg___wbindgen_shl_c7ea4173387a1669: function(arg0, arg1) {
23015
+ __wbg___wbindgen_shl_9f0bde039d054e42: function(arg0, arg1) {
23213
23016
  const ret = arg0 << arg1;
23214
23017
  return ret;
23215
23018
  },
23216
- __wbg___wbindgen_shr_436553cbaef41a66: function(arg0, arg1) {
23019
+ __wbg___wbindgen_shr_b5893fce8492f5d9: function(arg0, arg1) {
23217
23020
  const ret = arg0 >> arg1;
23218
23021
  return ret;
23219
23022
  },
23220
- __wbg___wbindgen_string_get_7ed5322991caaec5: function(arg0, arg1) {
23023
+ __wbg___wbindgen_string_get_72bdf95d3ae505b1: function(arg0, arg1) {
23221
23024
  const obj = arg1;
23222
23025
  const ret = typeof(obj) === 'string' ? obj : undefined;
23223
23026
  var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
@@ -23225,10 +23028,10 @@ function __wbg_get_imports(memory) {
23225
23028
  getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
23226
23029
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
23227
23030
  },
23228
- __wbg___wbindgen_throw_6b64449b9b9ed33c: function(arg0, arg1) {
23031
+ __wbg___wbindgen_throw_1506f2235d1bdba0: function(arg0, arg1) {
23229
23032
  throw new Error(getStringFromWasm0(arg0, arg1));
23230
23033
  },
23231
- __wbg_call_a24592a6f349a97e: function() { return handleError(function (arg0, arg1, arg2) {
23034
+ __wbg_call_9c758de292015997: function() { return handleError(function (arg0, arg1, arg2) {
23232
23035
  const ret = arg0.call(arg1, arg2);
23233
23036
  return ret;
23234
23037
  }, arguments); },
@@ -23250,11 +23053,11 @@ function __wbg_get_imports(memory) {
23250
23053
  __wbg_getRandomValues_c44a50d8cfdaebeb: function() { return handleError(function (arg0, arg1) {
23251
23054
  arg0.getRandomValues(arg1);
23252
23055
  }, arguments); },
23253
- __wbg_getTime_da7c55f52b71e8c6: function(arg0) {
23056
+ __wbg_getTime_00b3f7db575e4ef5: function(arg0) {
23254
23057
  const ret = arg0.getTime();
23255
23058
  return ret;
23256
23059
  },
23257
- __wbg_instanceof_Window_cc64c86c8ef9e02b: function(arg0) {
23060
+ __wbg_instanceof_Window_e093be59ee9a8e14: function(arg0) {
23258
23061
  let result;
23259
23062
  try {
23260
23063
  result = arg0 instanceof Window;
@@ -23264,7 +23067,7 @@ function __wbg_get_imports(memory) {
23264
23067
  const ret = result;
23265
23068
  return ret;
23266
23069
  },
23267
- __wbg_length_9f1775224cf1d815: function(arg0) {
23070
+ __wbg_length_4a591ecaa01354d9: function(arg0) {
23268
23071
  const ret = arg0.length;
23269
23072
  return ret;
23270
23073
  },
@@ -23272,7 +23075,7 @@ function __wbg_get_imports(memory) {
23272
23075
  const ret = arg0.msCrypto;
23273
23076
  return ret;
23274
23077
  },
23275
- __wbg_new_0_4d657201ced14de3: function() {
23078
+ __wbg_new_0_445c13a750296eb6: function() {
23276
23079
  const ret = new Date();
23277
23080
  return ret;
23278
23081
  },
@@ -23280,7 +23083,7 @@ function __wbg_get_imports(memory) {
23280
23083
  const ret = new Error();
23281
23084
  return ret;
23282
23085
  },
23283
- __wbg_new_with_length_8c854e41ea4dae9b: function(arg0) {
23086
+ __wbg_new_with_length_36a4998e27b014c5: function(arg0) {
23284
23087
  const ret = new Uint8Array(arg0 >>> 0);
23285
23088
  return ret;
23286
23089
  },
@@ -23292,7 +23095,7 @@ function __wbg_get_imports(memory) {
23292
23095
  const ret = arg0.process;
23293
23096
  return ret;
23294
23097
  },
23295
- __wbg_prototypesetcall_a6b02eb00b0f4ce2: function(arg0, arg1, arg2) {
23098
+ __wbg_prototypesetcall_3249fc62a0fafa30: function(arg0, arg1, arg2) {
23296
23099
  Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
23297
23100
  },
23298
23101
  __wbg_randomFillSync_6c25eac9869eb53c: function() { return handleError(function (arg0, arg1) {
@@ -23313,37 +23116,37 @@ function __wbg_get_imports(memory) {
23313
23116
  const ret = startWorkers(arg0, arg1, wbg_rayon_PoolBuilder.__wrap(arg2));
23314
23117
  return ret;
23315
23118
  },
23316
- __wbg_static_accessor_GLOBAL_8cfadc87a297ca02: function() {
23119
+ __wbg_static_accessor_GLOBAL_9d53f2689e622ca1: function() {
23317
23120
  const ret = typeof global === 'undefined' ? null : global;
23318
23121
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
23319
23122
  },
23320
- __wbg_static_accessor_GLOBAL_THIS_602256ae5c8f42cf: function() {
23123
+ __wbg_static_accessor_GLOBAL_THIS_a1a35cec07001a8a: function() {
23321
23124
  const ret = typeof globalThis === 'undefined' ? null : globalThis;
23322
23125
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
23323
23126
  },
23324
- __wbg_static_accessor_SELF_e445c1c7484aecc3: function() {
23127
+ __wbg_static_accessor_SELF_4c59f6c7ea29a144: function() {
23325
23128
  const ret = typeof self === 'undefined' ? null : self;
23326
23129
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
23327
23130
  },
23328
- __wbg_static_accessor_WINDOW_f20e8576ef1e0f17: function() {
23131
+ __wbg_static_accessor_WINDOW_e70ae9f2eb052253: function() {
23329
23132
  const ret = typeof window === 'undefined' ? null : window;
23330
23133
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
23331
23134
  },
23332
- __wbg_subarray_f8ca46a25b1f5e0d: function(arg0, arg1, arg2) {
23135
+ __wbg_subarray_4aa221f6a4f5ab22: function(arg0, arg1, arg2) {
23333
23136
  const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0);
23334
23137
  return ret;
23335
23138
  },
23336
- __wbg_toString_6dc1a94e0bdba378: function(arg0) {
23337
- const ret = arg0.toString();
23338
- return ret;
23339
- },
23340
- __wbg_toString_c96dc76d5547a715: function(arg0, arg1, arg2) {
23139
+ __wbg_toString_0fa9821f840aaf09: function(arg0, arg1, arg2) {
23341
23140
  const ret = arg1.toString(arg2);
23342
23141
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
23343
23142
  const len1 = WASM_VECTOR_LEN;
23344
23143
  getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
23345
23144
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
23346
23145
  },
23146
+ __wbg_toString_ceaa3435e9077b9a: function(arg0) {
23147
+ const ret = arg0.toString();
23148
+ return ret;
23149
+ },
23347
23150
  __wbg_versions_276b2795b1c6a219: function(arg0) {
23348
23151
  const ret = arg0.versions;
23349
23152
  return ret;
@@ -23402,604 +23205,604 @@ function __wbg_get_imports(memory) {
23402
23205
 
23403
23206
  const BooleanFinalization = (typeof FinalizationRegistry === 'undefined')
23404
23207
  ? { register: () => {}, unregister: () => {} }
23405
- : new FinalizationRegistry(ptr => wasm.__wbg_boolean_free(ptr >>> 0, 1));
23208
+ : new FinalizationRegistry(ptr => wasm.__wbg_boolean_free(ptr, 1));
23406
23209
  const BooleanCiphertextFinalization = (typeof FinalizationRegistry === 'undefined')
23407
23210
  ? { register: () => {}, unregister: () => {} }
23408
- : new FinalizationRegistry(ptr => wasm.__wbg_booleanciphertext_free(ptr >>> 0, 1));
23211
+ : new FinalizationRegistry(ptr => wasm.__wbg_booleanciphertext_free(ptr, 1));
23409
23212
  const BooleanClientKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23410
23213
  ? { register: () => {}, unregister: () => {} }
23411
- : new FinalizationRegistry(ptr => wasm.__wbg_booleanclientkey_free(ptr >>> 0, 1));
23214
+ : new FinalizationRegistry(ptr => wasm.__wbg_booleanclientkey_free(ptr, 1));
23412
23215
  const BooleanCompressedCiphertextFinalization = (typeof FinalizationRegistry === 'undefined')
23413
23216
  ? { register: () => {}, unregister: () => {} }
23414
- : new FinalizationRegistry(ptr => wasm.__wbg_booleancompressedciphertext_free(ptr >>> 0, 1));
23217
+ : new FinalizationRegistry(ptr => wasm.__wbg_booleancompressedciphertext_free(ptr, 1));
23415
23218
  const BooleanCompressedServerKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23416
23219
  ? { register: () => {}, unregister: () => {} }
23417
- : new FinalizationRegistry(ptr => wasm.__wbg_booleancompressedserverkey_free(ptr >>> 0, 1));
23220
+ : new FinalizationRegistry(ptr => wasm.__wbg_booleancompressedserverkey_free(ptr, 1));
23418
23221
  const BooleanNoiseDistributionFinalization = (typeof FinalizationRegistry === 'undefined')
23419
23222
  ? { register: () => {}, unregister: () => {} }
23420
- : new FinalizationRegistry(ptr => wasm.__wbg_booleannoisedistribution_free(ptr >>> 0, 1));
23223
+ : new FinalizationRegistry(ptr => wasm.__wbg_booleannoisedistribution_free(ptr, 1));
23421
23224
  const BooleanParametersFinalization = (typeof FinalizationRegistry === 'undefined')
23422
23225
  ? { register: () => {}, unregister: () => {} }
23423
- : new FinalizationRegistry(ptr => wasm.__wbg_booleanparameters_free(ptr >>> 0, 1));
23226
+ : new FinalizationRegistry(ptr => wasm.__wbg_booleanparameters_free(ptr, 1));
23424
23227
  const BooleanPublicKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23425
23228
  ? { register: () => {}, unregister: () => {} }
23426
- : new FinalizationRegistry(ptr => wasm.__wbg_booleanpublickey_free(ptr >>> 0, 1));
23229
+ : new FinalizationRegistry(ptr => wasm.__wbg_booleanpublickey_free(ptr, 1));
23427
23230
  const CompactCiphertextListFinalization = (typeof FinalizationRegistry === 'undefined')
23428
23231
  ? { register: () => {}, unregister: () => {} }
23429
- : new FinalizationRegistry(ptr => wasm.__wbg_compactciphertextlist_free(ptr >>> 0, 1));
23232
+ : new FinalizationRegistry(ptr => wasm.__wbg_compactciphertextlist_free(ptr, 1));
23430
23233
  const CompactCiphertextListBuilderFinalization = (typeof FinalizationRegistry === 'undefined')
23431
23234
  ? { register: () => {}, unregister: () => {} }
23432
- : new FinalizationRegistry(ptr => wasm.__wbg_compactciphertextlistbuilder_free(ptr >>> 0, 1));
23235
+ : new FinalizationRegistry(ptr => wasm.__wbg_compactciphertextlistbuilder_free(ptr, 1));
23433
23236
  const CompactCiphertextListExpanderFinalization = (typeof FinalizationRegistry === 'undefined')
23434
23237
  ? { register: () => {}, unregister: () => {} }
23435
- : new FinalizationRegistry(ptr => wasm.__wbg_compactciphertextlistexpander_free(ptr >>> 0, 1));
23238
+ : new FinalizationRegistry(ptr => wasm.__wbg_compactciphertextlistexpander_free(ptr, 1));
23436
23239
  const CompactPkeCrsFinalization = (typeof FinalizationRegistry === 'undefined')
23437
23240
  ? { register: () => {}, unregister: () => {} }
23438
- : new FinalizationRegistry(ptr => wasm.__wbg_compactpkecrs_free(ptr >>> 0, 1));
23241
+ : new FinalizationRegistry(ptr => wasm.__wbg_compactpkecrs_free(ptr, 1));
23439
23242
  const CompressedFheBoolFinalization = (typeof FinalizationRegistry === 'undefined')
23440
23243
  ? { register: () => {}, unregister: () => {} }
23441
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfhebool_free(ptr >>> 0, 1));
23244
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfhebool_free(ptr, 1));
23442
23245
  const CompressedFheInt10Finalization = (typeof FinalizationRegistry === 'undefined')
23443
23246
  ? { register: () => {}, unregister: () => {} }
23444
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint10_free(ptr >>> 0, 1));
23247
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint10_free(ptr, 1));
23445
23248
  const CompressedFheInt1024Finalization = (typeof FinalizationRegistry === 'undefined')
23446
23249
  ? { register: () => {}, unregister: () => {} }
23447
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint1024_free(ptr >>> 0, 1));
23250
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint1024_free(ptr, 1));
23448
23251
  const CompressedFheInt104Finalization = (typeof FinalizationRegistry === 'undefined')
23449
23252
  ? { register: () => {}, unregister: () => {} }
23450
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint104_free(ptr >>> 0, 1));
23253
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint104_free(ptr, 1));
23451
23254
  const CompressedFheInt112Finalization = (typeof FinalizationRegistry === 'undefined')
23452
23255
  ? { register: () => {}, unregister: () => {} }
23453
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint112_free(ptr >>> 0, 1));
23256
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint112_free(ptr, 1));
23454
23257
  const CompressedFheInt12Finalization = (typeof FinalizationRegistry === 'undefined')
23455
23258
  ? { register: () => {}, unregister: () => {} }
23456
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint12_free(ptr >>> 0, 1));
23259
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint12_free(ptr, 1));
23457
23260
  const CompressedFheInt120Finalization = (typeof FinalizationRegistry === 'undefined')
23458
23261
  ? { register: () => {}, unregister: () => {} }
23459
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint120_free(ptr >>> 0, 1));
23262
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint120_free(ptr, 1));
23460
23263
  const CompressedFheInt128Finalization = (typeof FinalizationRegistry === 'undefined')
23461
23264
  ? { register: () => {}, unregister: () => {} }
23462
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint128_free(ptr >>> 0, 1));
23265
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint128_free(ptr, 1));
23463
23266
  const CompressedFheInt136Finalization = (typeof FinalizationRegistry === 'undefined')
23464
23267
  ? { register: () => {}, unregister: () => {} }
23465
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint136_free(ptr >>> 0, 1));
23268
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint136_free(ptr, 1));
23466
23269
  const CompressedFheInt14Finalization = (typeof FinalizationRegistry === 'undefined')
23467
23270
  ? { register: () => {}, unregister: () => {} }
23468
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint14_free(ptr >>> 0, 1));
23271
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint14_free(ptr, 1));
23469
23272
  const CompressedFheInt144Finalization = (typeof FinalizationRegistry === 'undefined')
23470
23273
  ? { register: () => {}, unregister: () => {} }
23471
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint144_free(ptr >>> 0, 1));
23274
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint144_free(ptr, 1));
23472
23275
  const CompressedFheInt152Finalization = (typeof FinalizationRegistry === 'undefined')
23473
23276
  ? { register: () => {}, unregister: () => {} }
23474
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint152_free(ptr >>> 0, 1));
23277
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint152_free(ptr, 1));
23475
23278
  const CompressedFheInt16Finalization = (typeof FinalizationRegistry === 'undefined')
23476
23279
  ? { register: () => {}, unregister: () => {} }
23477
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint16_free(ptr >>> 0, 1));
23280
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint16_free(ptr, 1));
23478
23281
  const CompressedFheInt160Finalization = (typeof FinalizationRegistry === 'undefined')
23479
23282
  ? { register: () => {}, unregister: () => {} }
23480
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint160_free(ptr >>> 0, 1));
23283
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint160_free(ptr, 1));
23481
23284
  const CompressedFheInt168Finalization = (typeof FinalizationRegistry === 'undefined')
23482
23285
  ? { register: () => {}, unregister: () => {} }
23483
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint168_free(ptr >>> 0, 1));
23286
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint168_free(ptr, 1));
23484
23287
  const CompressedFheInt176Finalization = (typeof FinalizationRegistry === 'undefined')
23485
23288
  ? { register: () => {}, unregister: () => {} }
23486
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint176_free(ptr >>> 0, 1));
23289
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint176_free(ptr, 1));
23487
23290
  const CompressedFheInt184Finalization = (typeof FinalizationRegistry === 'undefined')
23488
23291
  ? { register: () => {}, unregister: () => {} }
23489
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint184_free(ptr >>> 0, 1));
23292
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint184_free(ptr, 1));
23490
23293
  const CompressedFheInt192Finalization = (typeof FinalizationRegistry === 'undefined')
23491
23294
  ? { register: () => {}, unregister: () => {} }
23492
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint192_free(ptr >>> 0, 1));
23295
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint192_free(ptr, 1));
23493
23296
  const CompressedFheInt2Finalization = (typeof FinalizationRegistry === 'undefined')
23494
23297
  ? { register: () => {}, unregister: () => {} }
23495
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint2_free(ptr >>> 0, 1));
23298
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint2_free(ptr, 1));
23496
23299
  const CompressedFheInt200Finalization = (typeof FinalizationRegistry === 'undefined')
23497
23300
  ? { register: () => {}, unregister: () => {} }
23498
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint200_free(ptr >>> 0, 1));
23301
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint200_free(ptr, 1));
23499
23302
  const CompressedFheInt2048Finalization = (typeof FinalizationRegistry === 'undefined')
23500
23303
  ? { register: () => {}, unregister: () => {} }
23501
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint2048_free(ptr >>> 0, 1));
23304
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint2048_free(ptr, 1));
23502
23305
  const CompressedFheInt208Finalization = (typeof FinalizationRegistry === 'undefined')
23503
23306
  ? { register: () => {}, unregister: () => {} }
23504
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint208_free(ptr >>> 0, 1));
23307
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint208_free(ptr, 1));
23505
23308
  const CompressedFheInt216Finalization = (typeof FinalizationRegistry === 'undefined')
23506
23309
  ? { register: () => {}, unregister: () => {} }
23507
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint216_free(ptr >>> 0, 1));
23310
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint216_free(ptr, 1));
23508
23311
  const CompressedFheInt224Finalization = (typeof FinalizationRegistry === 'undefined')
23509
23312
  ? { register: () => {}, unregister: () => {} }
23510
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint224_free(ptr >>> 0, 1));
23313
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint224_free(ptr, 1));
23511
23314
  const CompressedFheInt232Finalization = (typeof FinalizationRegistry === 'undefined')
23512
23315
  ? { register: () => {}, unregister: () => {} }
23513
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint232_free(ptr >>> 0, 1));
23316
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint232_free(ptr, 1));
23514
23317
  const CompressedFheInt24Finalization = (typeof FinalizationRegistry === 'undefined')
23515
23318
  ? { register: () => {}, unregister: () => {} }
23516
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint24_free(ptr >>> 0, 1));
23319
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint24_free(ptr, 1));
23517
23320
  const CompressedFheInt240Finalization = (typeof FinalizationRegistry === 'undefined')
23518
23321
  ? { register: () => {}, unregister: () => {} }
23519
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint240_free(ptr >>> 0, 1));
23322
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint240_free(ptr, 1));
23520
23323
  const CompressedFheInt248Finalization = (typeof FinalizationRegistry === 'undefined')
23521
23324
  ? { register: () => {}, unregister: () => {} }
23522
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint248_free(ptr >>> 0, 1));
23325
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint248_free(ptr, 1));
23523
23326
  const CompressedFheInt256Finalization = (typeof FinalizationRegistry === 'undefined')
23524
23327
  ? { register: () => {}, unregister: () => {} }
23525
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint256_free(ptr >>> 0, 1));
23328
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint256_free(ptr, 1));
23526
23329
  const CompressedFheInt32Finalization = (typeof FinalizationRegistry === 'undefined')
23527
23330
  ? { register: () => {}, unregister: () => {} }
23528
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint32_free(ptr >>> 0, 1));
23331
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint32_free(ptr, 1));
23529
23332
  const CompressedFheInt4Finalization = (typeof FinalizationRegistry === 'undefined')
23530
23333
  ? { register: () => {}, unregister: () => {} }
23531
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint4_free(ptr >>> 0, 1));
23334
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint4_free(ptr, 1));
23532
23335
  const CompressedFheInt40Finalization = (typeof FinalizationRegistry === 'undefined')
23533
23336
  ? { register: () => {}, unregister: () => {} }
23534
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint40_free(ptr >>> 0, 1));
23337
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint40_free(ptr, 1));
23535
23338
  const CompressedFheInt48Finalization = (typeof FinalizationRegistry === 'undefined')
23536
23339
  ? { register: () => {}, unregister: () => {} }
23537
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint48_free(ptr >>> 0, 1));
23340
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint48_free(ptr, 1));
23538
23341
  const CompressedFheInt512Finalization = (typeof FinalizationRegistry === 'undefined')
23539
23342
  ? { register: () => {}, unregister: () => {} }
23540
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint512_free(ptr >>> 0, 1));
23343
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint512_free(ptr, 1));
23541
23344
  const CompressedFheInt56Finalization = (typeof FinalizationRegistry === 'undefined')
23542
23345
  ? { register: () => {}, unregister: () => {} }
23543
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint56_free(ptr >>> 0, 1));
23346
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint56_free(ptr, 1));
23544
23347
  const CompressedFheInt6Finalization = (typeof FinalizationRegistry === 'undefined')
23545
23348
  ? { register: () => {}, unregister: () => {} }
23546
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint6_free(ptr >>> 0, 1));
23349
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint6_free(ptr, 1));
23547
23350
  const CompressedFheInt64Finalization = (typeof FinalizationRegistry === 'undefined')
23548
23351
  ? { register: () => {}, unregister: () => {} }
23549
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint64_free(ptr >>> 0, 1));
23352
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint64_free(ptr, 1));
23550
23353
  const CompressedFheInt72Finalization = (typeof FinalizationRegistry === 'undefined')
23551
23354
  ? { register: () => {}, unregister: () => {} }
23552
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint72_free(ptr >>> 0, 1));
23355
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint72_free(ptr, 1));
23553
23356
  const CompressedFheInt8Finalization = (typeof FinalizationRegistry === 'undefined')
23554
23357
  ? { register: () => {}, unregister: () => {} }
23555
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint8_free(ptr >>> 0, 1));
23358
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint8_free(ptr, 1));
23556
23359
  const CompressedFheInt80Finalization = (typeof FinalizationRegistry === 'undefined')
23557
23360
  ? { register: () => {}, unregister: () => {} }
23558
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint80_free(ptr >>> 0, 1));
23361
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint80_free(ptr, 1));
23559
23362
  const CompressedFheInt88Finalization = (typeof FinalizationRegistry === 'undefined')
23560
23363
  ? { register: () => {}, unregister: () => {} }
23561
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint88_free(ptr >>> 0, 1));
23364
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint88_free(ptr, 1));
23562
23365
  const CompressedFheInt96Finalization = (typeof FinalizationRegistry === 'undefined')
23563
23366
  ? { register: () => {}, unregister: () => {} }
23564
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint96_free(ptr >>> 0, 1));
23367
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint96_free(ptr, 1));
23565
23368
  const CompressedFheUint10Finalization = (typeof FinalizationRegistry === 'undefined')
23566
23369
  ? { register: () => {}, unregister: () => {} }
23567
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint10_free(ptr >>> 0, 1));
23370
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint10_free(ptr, 1));
23568
23371
  const CompressedFheUint1024Finalization = (typeof FinalizationRegistry === 'undefined')
23569
23372
  ? { register: () => {}, unregister: () => {} }
23570
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint1024_free(ptr >>> 0, 1));
23373
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint1024_free(ptr, 1));
23571
23374
  const CompressedFheUint104Finalization = (typeof FinalizationRegistry === 'undefined')
23572
23375
  ? { register: () => {}, unregister: () => {} }
23573
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint104_free(ptr >>> 0, 1));
23376
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint104_free(ptr, 1));
23574
23377
  const CompressedFheUint112Finalization = (typeof FinalizationRegistry === 'undefined')
23575
23378
  ? { register: () => {}, unregister: () => {} }
23576
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint112_free(ptr >>> 0, 1));
23379
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint112_free(ptr, 1));
23577
23380
  const CompressedFheUint12Finalization = (typeof FinalizationRegistry === 'undefined')
23578
23381
  ? { register: () => {}, unregister: () => {} }
23579
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint12_free(ptr >>> 0, 1));
23382
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint12_free(ptr, 1));
23580
23383
  const CompressedFheUint120Finalization = (typeof FinalizationRegistry === 'undefined')
23581
23384
  ? { register: () => {}, unregister: () => {} }
23582
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint120_free(ptr >>> 0, 1));
23385
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint120_free(ptr, 1));
23583
23386
  const CompressedFheUint128Finalization = (typeof FinalizationRegistry === 'undefined')
23584
23387
  ? { register: () => {}, unregister: () => {} }
23585
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint128_free(ptr >>> 0, 1));
23388
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint128_free(ptr, 1));
23586
23389
  const CompressedFheUint136Finalization = (typeof FinalizationRegistry === 'undefined')
23587
23390
  ? { register: () => {}, unregister: () => {} }
23588
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint136_free(ptr >>> 0, 1));
23391
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint136_free(ptr, 1));
23589
23392
  const CompressedFheUint14Finalization = (typeof FinalizationRegistry === 'undefined')
23590
23393
  ? { register: () => {}, unregister: () => {} }
23591
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint14_free(ptr >>> 0, 1));
23394
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint14_free(ptr, 1));
23592
23395
  const CompressedFheUint144Finalization = (typeof FinalizationRegistry === 'undefined')
23593
23396
  ? { register: () => {}, unregister: () => {} }
23594
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint144_free(ptr >>> 0, 1));
23397
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint144_free(ptr, 1));
23595
23398
  const CompressedFheUint152Finalization = (typeof FinalizationRegistry === 'undefined')
23596
23399
  ? { register: () => {}, unregister: () => {} }
23597
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint152_free(ptr >>> 0, 1));
23400
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint152_free(ptr, 1));
23598
23401
  const CompressedFheUint16Finalization = (typeof FinalizationRegistry === 'undefined')
23599
23402
  ? { register: () => {}, unregister: () => {} }
23600
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint16_free(ptr >>> 0, 1));
23403
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint16_free(ptr, 1));
23601
23404
  const CompressedFheUint160Finalization = (typeof FinalizationRegistry === 'undefined')
23602
23405
  ? { register: () => {}, unregister: () => {} }
23603
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint160_free(ptr >>> 0, 1));
23406
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint160_free(ptr, 1));
23604
23407
  const CompressedFheUint168Finalization = (typeof FinalizationRegistry === 'undefined')
23605
23408
  ? { register: () => {}, unregister: () => {} }
23606
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint168_free(ptr >>> 0, 1));
23409
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint168_free(ptr, 1));
23607
23410
  const CompressedFheUint176Finalization = (typeof FinalizationRegistry === 'undefined')
23608
23411
  ? { register: () => {}, unregister: () => {} }
23609
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint176_free(ptr >>> 0, 1));
23412
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint176_free(ptr, 1));
23610
23413
  const CompressedFheUint184Finalization = (typeof FinalizationRegistry === 'undefined')
23611
23414
  ? { register: () => {}, unregister: () => {} }
23612
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint184_free(ptr >>> 0, 1));
23415
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint184_free(ptr, 1));
23613
23416
  const CompressedFheUint192Finalization = (typeof FinalizationRegistry === 'undefined')
23614
23417
  ? { register: () => {}, unregister: () => {} }
23615
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint192_free(ptr >>> 0, 1));
23418
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint192_free(ptr, 1));
23616
23419
  const CompressedFheUint2Finalization = (typeof FinalizationRegistry === 'undefined')
23617
23420
  ? { register: () => {}, unregister: () => {} }
23618
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint2_free(ptr >>> 0, 1));
23421
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint2_free(ptr, 1));
23619
23422
  const CompressedFheUint200Finalization = (typeof FinalizationRegistry === 'undefined')
23620
23423
  ? { register: () => {}, unregister: () => {} }
23621
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint200_free(ptr >>> 0, 1));
23424
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint200_free(ptr, 1));
23622
23425
  const CompressedFheUint2048Finalization = (typeof FinalizationRegistry === 'undefined')
23623
23426
  ? { register: () => {}, unregister: () => {} }
23624
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint2048_free(ptr >>> 0, 1));
23427
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint2048_free(ptr, 1));
23625
23428
  const CompressedFheUint208Finalization = (typeof FinalizationRegistry === 'undefined')
23626
23429
  ? { register: () => {}, unregister: () => {} }
23627
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint208_free(ptr >>> 0, 1));
23430
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint208_free(ptr, 1));
23628
23431
  const CompressedFheUint216Finalization = (typeof FinalizationRegistry === 'undefined')
23629
23432
  ? { register: () => {}, unregister: () => {} }
23630
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint216_free(ptr >>> 0, 1));
23433
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint216_free(ptr, 1));
23631
23434
  const CompressedFheUint224Finalization = (typeof FinalizationRegistry === 'undefined')
23632
23435
  ? { register: () => {}, unregister: () => {} }
23633
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint224_free(ptr >>> 0, 1));
23436
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint224_free(ptr, 1));
23634
23437
  const CompressedFheUint232Finalization = (typeof FinalizationRegistry === 'undefined')
23635
23438
  ? { register: () => {}, unregister: () => {} }
23636
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint232_free(ptr >>> 0, 1));
23439
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint232_free(ptr, 1));
23637
23440
  const CompressedFheUint24Finalization = (typeof FinalizationRegistry === 'undefined')
23638
23441
  ? { register: () => {}, unregister: () => {} }
23639
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint24_free(ptr >>> 0, 1));
23442
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint24_free(ptr, 1));
23640
23443
  const CompressedFheUint240Finalization = (typeof FinalizationRegistry === 'undefined')
23641
23444
  ? { register: () => {}, unregister: () => {} }
23642
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint240_free(ptr >>> 0, 1));
23445
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint240_free(ptr, 1));
23643
23446
  const CompressedFheUint248Finalization = (typeof FinalizationRegistry === 'undefined')
23644
23447
  ? { register: () => {}, unregister: () => {} }
23645
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint248_free(ptr >>> 0, 1));
23448
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint248_free(ptr, 1));
23646
23449
  const CompressedFheUint256Finalization = (typeof FinalizationRegistry === 'undefined')
23647
23450
  ? { register: () => {}, unregister: () => {} }
23648
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint256_free(ptr >>> 0, 1));
23451
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint256_free(ptr, 1));
23649
23452
  const CompressedFheUint32Finalization = (typeof FinalizationRegistry === 'undefined')
23650
23453
  ? { register: () => {}, unregister: () => {} }
23651
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint32_free(ptr >>> 0, 1));
23454
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint32_free(ptr, 1));
23652
23455
  const CompressedFheUint4Finalization = (typeof FinalizationRegistry === 'undefined')
23653
23456
  ? { register: () => {}, unregister: () => {} }
23654
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint4_free(ptr >>> 0, 1));
23457
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint4_free(ptr, 1));
23655
23458
  const CompressedFheUint40Finalization = (typeof FinalizationRegistry === 'undefined')
23656
23459
  ? { register: () => {}, unregister: () => {} }
23657
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint40_free(ptr >>> 0, 1));
23460
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint40_free(ptr, 1));
23658
23461
  const CompressedFheUint48Finalization = (typeof FinalizationRegistry === 'undefined')
23659
23462
  ? { register: () => {}, unregister: () => {} }
23660
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint48_free(ptr >>> 0, 1));
23463
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint48_free(ptr, 1));
23661
23464
  const CompressedFheUint512Finalization = (typeof FinalizationRegistry === 'undefined')
23662
23465
  ? { register: () => {}, unregister: () => {} }
23663
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint512_free(ptr >>> 0, 1));
23466
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint512_free(ptr, 1));
23664
23467
  const CompressedFheUint56Finalization = (typeof FinalizationRegistry === 'undefined')
23665
23468
  ? { register: () => {}, unregister: () => {} }
23666
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint56_free(ptr >>> 0, 1));
23469
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint56_free(ptr, 1));
23667
23470
  const CompressedFheUint6Finalization = (typeof FinalizationRegistry === 'undefined')
23668
23471
  ? { register: () => {}, unregister: () => {} }
23669
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint6_free(ptr >>> 0, 1));
23472
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint6_free(ptr, 1));
23670
23473
  const CompressedFheUint64Finalization = (typeof FinalizationRegistry === 'undefined')
23671
23474
  ? { register: () => {}, unregister: () => {} }
23672
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint64_free(ptr >>> 0, 1));
23475
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint64_free(ptr, 1));
23673
23476
  const CompressedFheUint72Finalization = (typeof FinalizationRegistry === 'undefined')
23674
23477
  ? { register: () => {}, unregister: () => {} }
23675
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint72_free(ptr >>> 0, 1));
23478
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint72_free(ptr, 1));
23676
23479
  const CompressedFheUint8Finalization = (typeof FinalizationRegistry === 'undefined')
23677
23480
  ? { register: () => {}, unregister: () => {} }
23678
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint8_free(ptr >>> 0, 1));
23481
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint8_free(ptr, 1));
23679
23482
  const CompressedFheUint80Finalization = (typeof FinalizationRegistry === 'undefined')
23680
23483
  ? { register: () => {}, unregister: () => {} }
23681
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint80_free(ptr >>> 0, 1));
23484
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint80_free(ptr, 1));
23682
23485
  const CompressedFheUint88Finalization = (typeof FinalizationRegistry === 'undefined')
23683
23486
  ? { register: () => {}, unregister: () => {} }
23684
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint88_free(ptr >>> 0, 1));
23487
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint88_free(ptr, 1));
23685
23488
  const CompressedFheUint96Finalization = (typeof FinalizationRegistry === 'undefined')
23686
23489
  ? { register: () => {}, unregister: () => {} }
23687
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint96_free(ptr >>> 0, 1));
23490
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint96_free(ptr, 1));
23688
23491
  const FheBoolFinalization = (typeof FinalizationRegistry === 'undefined')
23689
23492
  ? { register: () => {}, unregister: () => {} }
23690
- : new FinalizationRegistry(ptr => wasm.__wbg_fhebool_free(ptr >>> 0, 1));
23493
+ : new FinalizationRegistry(ptr => wasm.__wbg_fhebool_free(ptr, 1));
23691
23494
  const FheInt10Finalization = (typeof FinalizationRegistry === 'undefined')
23692
23495
  ? { register: () => {}, unregister: () => {} }
23693
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint10_free(ptr >>> 0, 1));
23496
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint10_free(ptr, 1));
23694
23497
  const FheInt1024Finalization = (typeof FinalizationRegistry === 'undefined')
23695
23498
  ? { register: () => {}, unregister: () => {} }
23696
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint1024_free(ptr >>> 0, 1));
23499
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint1024_free(ptr, 1));
23697
23500
  const FheInt104Finalization = (typeof FinalizationRegistry === 'undefined')
23698
23501
  ? { register: () => {}, unregister: () => {} }
23699
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint104_free(ptr >>> 0, 1));
23502
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint104_free(ptr, 1));
23700
23503
  const FheInt112Finalization = (typeof FinalizationRegistry === 'undefined')
23701
23504
  ? { register: () => {}, unregister: () => {} }
23702
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint112_free(ptr >>> 0, 1));
23505
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint112_free(ptr, 1));
23703
23506
  const FheInt12Finalization = (typeof FinalizationRegistry === 'undefined')
23704
23507
  ? { register: () => {}, unregister: () => {} }
23705
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint12_free(ptr >>> 0, 1));
23508
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint12_free(ptr, 1));
23706
23509
  const FheInt120Finalization = (typeof FinalizationRegistry === 'undefined')
23707
23510
  ? { register: () => {}, unregister: () => {} }
23708
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint120_free(ptr >>> 0, 1));
23511
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint120_free(ptr, 1));
23709
23512
  const FheInt128Finalization = (typeof FinalizationRegistry === 'undefined')
23710
23513
  ? { register: () => {}, unregister: () => {} }
23711
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint128_free(ptr >>> 0, 1));
23514
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint128_free(ptr, 1));
23712
23515
  const FheInt136Finalization = (typeof FinalizationRegistry === 'undefined')
23713
23516
  ? { register: () => {}, unregister: () => {} }
23714
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint136_free(ptr >>> 0, 1));
23517
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint136_free(ptr, 1));
23715
23518
  const FheInt14Finalization = (typeof FinalizationRegistry === 'undefined')
23716
23519
  ? { register: () => {}, unregister: () => {} }
23717
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint14_free(ptr >>> 0, 1));
23520
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint14_free(ptr, 1));
23718
23521
  const FheInt144Finalization = (typeof FinalizationRegistry === 'undefined')
23719
23522
  ? { register: () => {}, unregister: () => {} }
23720
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint144_free(ptr >>> 0, 1));
23523
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint144_free(ptr, 1));
23721
23524
  const FheInt152Finalization = (typeof FinalizationRegistry === 'undefined')
23722
23525
  ? { register: () => {}, unregister: () => {} }
23723
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint152_free(ptr >>> 0, 1));
23526
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint152_free(ptr, 1));
23724
23527
  const FheInt16Finalization = (typeof FinalizationRegistry === 'undefined')
23725
23528
  ? { register: () => {}, unregister: () => {} }
23726
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint16_free(ptr >>> 0, 1));
23529
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint16_free(ptr, 1));
23727
23530
  const FheInt160Finalization = (typeof FinalizationRegistry === 'undefined')
23728
23531
  ? { register: () => {}, unregister: () => {} }
23729
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint160_free(ptr >>> 0, 1));
23532
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint160_free(ptr, 1));
23730
23533
  const FheInt168Finalization = (typeof FinalizationRegistry === 'undefined')
23731
23534
  ? { register: () => {}, unregister: () => {} }
23732
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint168_free(ptr >>> 0, 1));
23535
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint168_free(ptr, 1));
23733
23536
  const FheInt176Finalization = (typeof FinalizationRegistry === 'undefined')
23734
23537
  ? { register: () => {}, unregister: () => {} }
23735
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint176_free(ptr >>> 0, 1));
23538
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint176_free(ptr, 1));
23736
23539
  const FheInt184Finalization = (typeof FinalizationRegistry === 'undefined')
23737
23540
  ? { register: () => {}, unregister: () => {} }
23738
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint184_free(ptr >>> 0, 1));
23541
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint184_free(ptr, 1));
23739
23542
  const FheInt192Finalization = (typeof FinalizationRegistry === 'undefined')
23740
23543
  ? { register: () => {}, unregister: () => {} }
23741
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint192_free(ptr >>> 0, 1));
23544
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint192_free(ptr, 1));
23742
23545
  const FheInt2Finalization = (typeof FinalizationRegistry === 'undefined')
23743
23546
  ? { register: () => {}, unregister: () => {} }
23744
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint2_free(ptr >>> 0, 1));
23547
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint2_free(ptr, 1));
23745
23548
  const FheInt200Finalization = (typeof FinalizationRegistry === 'undefined')
23746
23549
  ? { register: () => {}, unregister: () => {} }
23747
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint200_free(ptr >>> 0, 1));
23550
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint200_free(ptr, 1));
23748
23551
  const FheInt2048Finalization = (typeof FinalizationRegistry === 'undefined')
23749
23552
  ? { register: () => {}, unregister: () => {} }
23750
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint2048_free(ptr >>> 0, 1));
23553
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint2048_free(ptr, 1));
23751
23554
  const FheInt208Finalization = (typeof FinalizationRegistry === 'undefined')
23752
23555
  ? { register: () => {}, unregister: () => {} }
23753
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint208_free(ptr >>> 0, 1));
23556
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint208_free(ptr, 1));
23754
23557
  const FheInt216Finalization = (typeof FinalizationRegistry === 'undefined')
23755
23558
  ? { register: () => {}, unregister: () => {} }
23756
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint216_free(ptr >>> 0, 1));
23559
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint216_free(ptr, 1));
23757
23560
  const FheInt224Finalization = (typeof FinalizationRegistry === 'undefined')
23758
23561
  ? { register: () => {}, unregister: () => {} }
23759
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint224_free(ptr >>> 0, 1));
23562
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint224_free(ptr, 1));
23760
23563
  const FheInt232Finalization = (typeof FinalizationRegistry === 'undefined')
23761
23564
  ? { register: () => {}, unregister: () => {} }
23762
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint232_free(ptr >>> 0, 1));
23565
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint232_free(ptr, 1));
23763
23566
  const FheInt24Finalization = (typeof FinalizationRegistry === 'undefined')
23764
23567
  ? { register: () => {}, unregister: () => {} }
23765
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint24_free(ptr >>> 0, 1));
23568
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint24_free(ptr, 1));
23766
23569
  const FheInt240Finalization = (typeof FinalizationRegistry === 'undefined')
23767
23570
  ? { register: () => {}, unregister: () => {} }
23768
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint240_free(ptr >>> 0, 1));
23571
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint240_free(ptr, 1));
23769
23572
  const FheInt248Finalization = (typeof FinalizationRegistry === 'undefined')
23770
23573
  ? { register: () => {}, unregister: () => {} }
23771
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint248_free(ptr >>> 0, 1));
23574
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint248_free(ptr, 1));
23772
23575
  const FheInt256Finalization = (typeof FinalizationRegistry === 'undefined')
23773
23576
  ? { register: () => {}, unregister: () => {} }
23774
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint256_free(ptr >>> 0, 1));
23577
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint256_free(ptr, 1));
23775
23578
  const FheInt32Finalization = (typeof FinalizationRegistry === 'undefined')
23776
23579
  ? { register: () => {}, unregister: () => {} }
23777
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint32_free(ptr >>> 0, 1));
23580
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint32_free(ptr, 1));
23778
23581
  const FheInt4Finalization = (typeof FinalizationRegistry === 'undefined')
23779
23582
  ? { register: () => {}, unregister: () => {} }
23780
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint4_free(ptr >>> 0, 1));
23583
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint4_free(ptr, 1));
23781
23584
  const FheInt40Finalization = (typeof FinalizationRegistry === 'undefined')
23782
23585
  ? { register: () => {}, unregister: () => {} }
23783
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint40_free(ptr >>> 0, 1));
23586
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint40_free(ptr, 1));
23784
23587
  const FheInt48Finalization = (typeof FinalizationRegistry === 'undefined')
23785
23588
  ? { register: () => {}, unregister: () => {} }
23786
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint48_free(ptr >>> 0, 1));
23589
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint48_free(ptr, 1));
23787
23590
  const FheInt512Finalization = (typeof FinalizationRegistry === 'undefined')
23788
23591
  ? { register: () => {}, unregister: () => {} }
23789
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint512_free(ptr >>> 0, 1));
23592
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint512_free(ptr, 1));
23790
23593
  const FheInt56Finalization = (typeof FinalizationRegistry === 'undefined')
23791
23594
  ? { register: () => {}, unregister: () => {} }
23792
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint56_free(ptr >>> 0, 1));
23595
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint56_free(ptr, 1));
23793
23596
  const FheInt6Finalization = (typeof FinalizationRegistry === 'undefined')
23794
23597
  ? { register: () => {}, unregister: () => {} }
23795
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint6_free(ptr >>> 0, 1));
23598
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint6_free(ptr, 1));
23796
23599
  const FheInt64Finalization = (typeof FinalizationRegistry === 'undefined')
23797
23600
  ? { register: () => {}, unregister: () => {} }
23798
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint64_free(ptr >>> 0, 1));
23601
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint64_free(ptr, 1));
23799
23602
  const FheInt72Finalization = (typeof FinalizationRegistry === 'undefined')
23800
23603
  ? { register: () => {}, unregister: () => {} }
23801
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint72_free(ptr >>> 0, 1));
23604
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint72_free(ptr, 1));
23802
23605
  const FheInt8Finalization = (typeof FinalizationRegistry === 'undefined')
23803
23606
  ? { register: () => {}, unregister: () => {} }
23804
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint8_free(ptr >>> 0, 1));
23607
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint8_free(ptr, 1));
23805
23608
  const FheInt80Finalization = (typeof FinalizationRegistry === 'undefined')
23806
23609
  ? { register: () => {}, unregister: () => {} }
23807
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint80_free(ptr >>> 0, 1));
23610
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint80_free(ptr, 1));
23808
23611
  const FheInt88Finalization = (typeof FinalizationRegistry === 'undefined')
23809
23612
  ? { register: () => {}, unregister: () => {} }
23810
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint88_free(ptr >>> 0, 1));
23613
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint88_free(ptr, 1));
23811
23614
  const FheInt96Finalization = (typeof FinalizationRegistry === 'undefined')
23812
23615
  ? { register: () => {}, unregister: () => {} }
23813
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint96_free(ptr >>> 0, 1));
23616
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint96_free(ptr, 1));
23814
23617
  const FheUint10Finalization = (typeof FinalizationRegistry === 'undefined')
23815
23618
  ? { register: () => {}, unregister: () => {} }
23816
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint10_free(ptr >>> 0, 1));
23619
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint10_free(ptr, 1));
23817
23620
  const FheUint1024Finalization = (typeof FinalizationRegistry === 'undefined')
23818
23621
  ? { register: () => {}, unregister: () => {} }
23819
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint1024_free(ptr >>> 0, 1));
23622
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint1024_free(ptr, 1));
23820
23623
  const FheUint104Finalization = (typeof FinalizationRegistry === 'undefined')
23821
23624
  ? { register: () => {}, unregister: () => {} }
23822
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint104_free(ptr >>> 0, 1));
23625
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint104_free(ptr, 1));
23823
23626
  const FheUint112Finalization = (typeof FinalizationRegistry === 'undefined')
23824
23627
  ? { register: () => {}, unregister: () => {} }
23825
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint112_free(ptr >>> 0, 1));
23628
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint112_free(ptr, 1));
23826
23629
  const FheUint12Finalization = (typeof FinalizationRegistry === 'undefined')
23827
23630
  ? { register: () => {}, unregister: () => {} }
23828
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint12_free(ptr >>> 0, 1));
23631
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint12_free(ptr, 1));
23829
23632
  const FheUint120Finalization = (typeof FinalizationRegistry === 'undefined')
23830
23633
  ? { register: () => {}, unregister: () => {} }
23831
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint120_free(ptr >>> 0, 1));
23634
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint120_free(ptr, 1));
23832
23635
  const FheUint128Finalization = (typeof FinalizationRegistry === 'undefined')
23833
23636
  ? { register: () => {}, unregister: () => {} }
23834
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint128_free(ptr >>> 0, 1));
23637
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint128_free(ptr, 1));
23835
23638
  const FheUint136Finalization = (typeof FinalizationRegistry === 'undefined')
23836
23639
  ? { register: () => {}, unregister: () => {} }
23837
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint136_free(ptr >>> 0, 1));
23640
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint136_free(ptr, 1));
23838
23641
  const FheUint14Finalization = (typeof FinalizationRegistry === 'undefined')
23839
23642
  ? { register: () => {}, unregister: () => {} }
23840
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint14_free(ptr >>> 0, 1));
23643
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint14_free(ptr, 1));
23841
23644
  const FheUint144Finalization = (typeof FinalizationRegistry === 'undefined')
23842
23645
  ? { register: () => {}, unregister: () => {} }
23843
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint144_free(ptr >>> 0, 1));
23646
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint144_free(ptr, 1));
23844
23647
  const FheUint152Finalization = (typeof FinalizationRegistry === 'undefined')
23845
23648
  ? { register: () => {}, unregister: () => {} }
23846
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint152_free(ptr >>> 0, 1));
23649
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint152_free(ptr, 1));
23847
23650
  const FheUint16Finalization = (typeof FinalizationRegistry === 'undefined')
23848
23651
  ? { register: () => {}, unregister: () => {} }
23849
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint16_free(ptr >>> 0, 1));
23652
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint16_free(ptr, 1));
23850
23653
  const FheUint160Finalization = (typeof FinalizationRegistry === 'undefined')
23851
23654
  ? { register: () => {}, unregister: () => {} }
23852
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint160_free(ptr >>> 0, 1));
23655
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint160_free(ptr, 1));
23853
23656
  const FheUint168Finalization = (typeof FinalizationRegistry === 'undefined')
23854
23657
  ? { register: () => {}, unregister: () => {} }
23855
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint168_free(ptr >>> 0, 1));
23658
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint168_free(ptr, 1));
23856
23659
  const FheUint176Finalization = (typeof FinalizationRegistry === 'undefined')
23857
23660
  ? { register: () => {}, unregister: () => {} }
23858
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint176_free(ptr >>> 0, 1));
23661
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint176_free(ptr, 1));
23859
23662
  const FheUint184Finalization = (typeof FinalizationRegistry === 'undefined')
23860
23663
  ? { register: () => {}, unregister: () => {} }
23861
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint184_free(ptr >>> 0, 1));
23664
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint184_free(ptr, 1));
23862
23665
  const FheUint192Finalization = (typeof FinalizationRegistry === 'undefined')
23863
23666
  ? { register: () => {}, unregister: () => {} }
23864
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint192_free(ptr >>> 0, 1));
23667
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint192_free(ptr, 1));
23865
23668
  const FheUint2Finalization = (typeof FinalizationRegistry === 'undefined')
23866
23669
  ? { register: () => {}, unregister: () => {} }
23867
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint2_free(ptr >>> 0, 1));
23670
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint2_free(ptr, 1));
23868
23671
  const FheUint200Finalization = (typeof FinalizationRegistry === 'undefined')
23869
23672
  ? { register: () => {}, unregister: () => {} }
23870
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint200_free(ptr >>> 0, 1));
23673
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint200_free(ptr, 1));
23871
23674
  const FheUint2048Finalization = (typeof FinalizationRegistry === 'undefined')
23872
23675
  ? { register: () => {}, unregister: () => {} }
23873
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint2048_free(ptr >>> 0, 1));
23676
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint2048_free(ptr, 1));
23874
23677
  const FheUint208Finalization = (typeof FinalizationRegistry === 'undefined')
23875
23678
  ? { register: () => {}, unregister: () => {} }
23876
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint208_free(ptr >>> 0, 1));
23679
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint208_free(ptr, 1));
23877
23680
  const FheUint216Finalization = (typeof FinalizationRegistry === 'undefined')
23878
23681
  ? { register: () => {}, unregister: () => {} }
23879
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint216_free(ptr >>> 0, 1));
23682
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint216_free(ptr, 1));
23880
23683
  const FheUint224Finalization = (typeof FinalizationRegistry === 'undefined')
23881
23684
  ? { register: () => {}, unregister: () => {} }
23882
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint224_free(ptr >>> 0, 1));
23685
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint224_free(ptr, 1));
23883
23686
  const FheUint232Finalization = (typeof FinalizationRegistry === 'undefined')
23884
23687
  ? { register: () => {}, unregister: () => {} }
23885
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint232_free(ptr >>> 0, 1));
23688
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint232_free(ptr, 1));
23886
23689
  const FheUint24Finalization = (typeof FinalizationRegistry === 'undefined')
23887
23690
  ? { register: () => {}, unregister: () => {} }
23888
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint24_free(ptr >>> 0, 1));
23691
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint24_free(ptr, 1));
23889
23692
  const FheUint240Finalization = (typeof FinalizationRegistry === 'undefined')
23890
23693
  ? { register: () => {}, unregister: () => {} }
23891
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint240_free(ptr >>> 0, 1));
23694
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint240_free(ptr, 1));
23892
23695
  const FheUint248Finalization = (typeof FinalizationRegistry === 'undefined')
23893
23696
  ? { register: () => {}, unregister: () => {} }
23894
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint248_free(ptr >>> 0, 1));
23697
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint248_free(ptr, 1));
23895
23698
  const FheUint256Finalization = (typeof FinalizationRegistry === 'undefined')
23896
23699
  ? { register: () => {}, unregister: () => {} }
23897
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint256_free(ptr >>> 0, 1));
23700
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint256_free(ptr, 1));
23898
23701
  const FheUint32Finalization = (typeof FinalizationRegistry === 'undefined')
23899
23702
  ? { register: () => {}, unregister: () => {} }
23900
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint32_free(ptr >>> 0, 1));
23703
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint32_free(ptr, 1));
23901
23704
  const FheUint4Finalization = (typeof FinalizationRegistry === 'undefined')
23902
23705
  ? { register: () => {}, unregister: () => {} }
23903
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint4_free(ptr >>> 0, 1));
23706
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint4_free(ptr, 1));
23904
23707
  const FheUint40Finalization = (typeof FinalizationRegistry === 'undefined')
23905
23708
  ? { register: () => {}, unregister: () => {} }
23906
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint40_free(ptr >>> 0, 1));
23709
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint40_free(ptr, 1));
23907
23710
  const FheUint48Finalization = (typeof FinalizationRegistry === 'undefined')
23908
23711
  ? { register: () => {}, unregister: () => {} }
23909
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint48_free(ptr >>> 0, 1));
23712
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint48_free(ptr, 1));
23910
23713
  const FheUint512Finalization = (typeof FinalizationRegistry === 'undefined')
23911
23714
  ? { register: () => {}, unregister: () => {} }
23912
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint512_free(ptr >>> 0, 1));
23715
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint512_free(ptr, 1));
23913
23716
  const FheUint56Finalization = (typeof FinalizationRegistry === 'undefined')
23914
23717
  ? { register: () => {}, unregister: () => {} }
23915
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint56_free(ptr >>> 0, 1));
23718
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint56_free(ptr, 1));
23916
23719
  const FheUint6Finalization = (typeof FinalizationRegistry === 'undefined')
23917
23720
  ? { register: () => {}, unregister: () => {} }
23918
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint6_free(ptr >>> 0, 1));
23721
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint6_free(ptr, 1));
23919
23722
  const FheUint64Finalization = (typeof FinalizationRegistry === 'undefined')
23920
23723
  ? { register: () => {}, unregister: () => {} }
23921
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint64_free(ptr >>> 0, 1));
23724
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint64_free(ptr, 1));
23922
23725
  const FheUint72Finalization = (typeof FinalizationRegistry === 'undefined')
23923
23726
  ? { register: () => {}, unregister: () => {} }
23924
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint72_free(ptr >>> 0, 1));
23727
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint72_free(ptr, 1));
23925
23728
  const FheUint8Finalization = (typeof FinalizationRegistry === 'undefined')
23926
23729
  ? { register: () => {}, unregister: () => {} }
23927
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint8_free(ptr >>> 0, 1));
23730
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint8_free(ptr, 1));
23928
23731
  const FheUint80Finalization = (typeof FinalizationRegistry === 'undefined')
23929
23732
  ? { register: () => {}, unregister: () => {} }
23930
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint80_free(ptr >>> 0, 1));
23733
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint80_free(ptr, 1));
23931
23734
  const FheUint88Finalization = (typeof FinalizationRegistry === 'undefined')
23932
23735
  ? { register: () => {}, unregister: () => {} }
23933
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint88_free(ptr >>> 0, 1));
23736
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint88_free(ptr, 1));
23934
23737
  const FheUint96Finalization = (typeof FinalizationRegistry === 'undefined')
23935
23738
  ? { register: () => {}, unregister: () => {} }
23936
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint96_free(ptr >>> 0, 1));
23739
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint96_free(ptr, 1));
23937
23740
  const ProvenCompactCiphertextListFinalization = (typeof FinalizationRegistry === 'undefined')
23938
23741
  ? { register: () => {}, unregister: () => {} }
23939
- : new FinalizationRegistry(ptr => wasm.__wbg_provencompactciphertextlist_free(ptr >>> 0, 1));
23742
+ : new FinalizationRegistry(ptr => wasm.__wbg_provencompactciphertextlist_free(ptr, 1));
23940
23743
  const ShortintFinalization = (typeof FinalizationRegistry === 'undefined')
23941
23744
  ? { register: () => {}, unregister: () => {} }
23942
- : new FinalizationRegistry(ptr => wasm.__wbg_shortint_free(ptr >>> 0, 1));
23745
+ : new FinalizationRegistry(ptr => wasm.__wbg_shortint_free(ptr, 1));
23943
23746
  const ShortintCiphertextFinalization = (typeof FinalizationRegistry === 'undefined')
23944
23747
  ? { register: () => {}, unregister: () => {} }
23945
- : new FinalizationRegistry(ptr => wasm.__wbg_shortintciphertext_free(ptr >>> 0, 1));
23748
+ : new FinalizationRegistry(ptr => wasm.__wbg_shortintciphertext_free(ptr, 1));
23946
23749
  const ShortintClientKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23947
23750
  ? { register: () => {}, unregister: () => {} }
23948
- : new FinalizationRegistry(ptr => wasm.__wbg_shortintclientkey_free(ptr >>> 0, 1));
23751
+ : new FinalizationRegistry(ptr => wasm.__wbg_shortintclientkey_free(ptr, 1));
23949
23752
  const ShortintCompactPublicKeyEncryptionParametersFinalization = (typeof FinalizationRegistry === 'undefined')
23950
23753
  ? { register: () => {}, unregister: () => {} }
23951
- : new FinalizationRegistry(ptr => wasm.__wbg_shortintcompactpublickeyencryptionparameters_free(ptr >>> 0, 1));
23754
+ : new FinalizationRegistry(ptr => wasm.__wbg_shortintcompactpublickeyencryptionparameters_free(ptr, 1));
23952
23755
  const ShortintCompressedCiphertextFinalization = (typeof FinalizationRegistry === 'undefined')
23953
23756
  ? { register: () => {}, unregister: () => {} }
23954
- : new FinalizationRegistry(ptr => wasm.__wbg_shortintcompressedciphertext_free(ptr >>> 0, 1));
23757
+ : new FinalizationRegistry(ptr => wasm.__wbg_shortintcompressedciphertext_free(ptr, 1));
23955
23758
  const ShortintCompressedPublicKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23956
23759
  ? { register: () => {}, unregister: () => {} }
23957
- : new FinalizationRegistry(ptr => wasm.__wbg_shortintcompressedpublickey_free(ptr >>> 0, 1));
23760
+ : new FinalizationRegistry(ptr => wasm.__wbg_shortintcompressedpublickey_free(ptr, 1));
23958
23761
  const ShortintCompressedServerKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23959
23762
  ? { register: () => {}, unregister: () => {} }
23960
- : new FinalizationRegistry(ptr => wasm.__wbg_shortintcompressedserverkey_free(ptr >>> 0, 1));
23763
+ : new FinalizationRegistry(ptr => wasm.__wbg_shortintcompressedserverkey_free(ptr, 1));
23961
23764
  const ShortintNoiseDistributionFinalization = (typeof FinalizationRegistry === 'undefined')
23962
23765
  ? { register: () => {}, unregister: () => {} }
23963
- : new FinalizationRegistry(ptr => wasm.__wbg_shortintnoisedistribution_free(ptr >>> 0, 1));
23766
+ : new FinalizationRegistry(ptr => wasm.__wbg_shortintnoisedistribution_free(ptr, 1));
23964
23767
  const ShortintParametersFinalization = (typeof FinalizationRegistry === 'undefined')
23965
23768
  ? { register: () => {}, unregister: () => {} }
23966
- : new FinalizationRegistry(ptr => wasm.__wbg_shortintparameters_free(ptr >>> 0, 1));
23769
+ : new FinalizationRegistry(ptr => wasm.__wbg_shortintparameters_free(ptr, 1));
23967
23770
  const ShortintPublicKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23968
23771
  ? { register: () => {}, unregister: () => {} }
23969
- : new FinalizationRegistry(ptr => wasm.__wbg_shortintpublickey_free(ptr >>> 0, 1));
23772
+ : new FinalizationRegistry(ptr => wasm.__wbg_shortintpublickey_free(ptr, 1));
23970
23773
  const TfheClientKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23971
23774
  ? { register: () => {}, unregister: () => {} }
23972
- : new FinalizationRegistry(ptr => wasm.__wbg_tfheclientkey_free(ptr >>> 0, 1));
23775
+ : new FinalizationRegistry(ptr => wasm.__wbg_tfheclientkey_free(ptr, 1));
23973
23776
  const TfheCompactPublicKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23974
23777
  ? { register: () => {}, unregister: () => {} }
23975
- : new FinalizationRegistry(ptr => wasm.__wbg_tfhecompactpublickey_free(ptr >>> 0, 1));
23778
+ : new FinalizationRegistry(ptr => wasm.__wbg_tfhecompactpublickey_free(ptr, 1));
23976
23779
  const TfheCompressedCompactPublicKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23977
23780
  ? { register: () => {}, unregister: () => {} }
23978
- : new FinalizationRegistry(ptr => wasm.__wbg_tfhecompressedcompactpublickey_free(ptr >>> 0, 1));
23781
+ : new FinalizationRegistry(ptr => wasm.__wbg_tfhecompressedcompactpublickey_free(ptr, 1));
23979
23782
  const TfheCompressedPublicKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23980
23783
  ? { register: () => {}, unregister: () => {} }
23981
- : new FinalizationRegistry(ptr => wasm.__wbg_tfhecompressedpublickey_free(ptr >>> 0, 1));
23784
+ : new FinalizationRegistry(ptr => wasm.__wbg_tfhecompressedpublickey_free(ptr, 1));
23982
23785
  const TfheCompressedServerKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23983
23786
  ? { register: () => {}, unregister: () => {} }
23984
- : new FinalizationRegistry(ptr => wasm.__wbg_tfhecompressedserverkey_free(ptr >>> 0, 1));
23787
+ : new FinalizationRegistry(ptr => wasm.__wbg_tfhecompressedserverkey_free(ptr, 1));
23985
23788
  const TfheConfigFinalization = (typeof FinalizationRegistry === 'undefined')
23986
23789
  ? { register: () => {}, unregister: () => {} }
23987
- : new FinalizationRegistry(ptr => wasm.__wbg_tfheconfig_free(ptr >>> 0, 1));
23790
+ : new FinalizationRegistry(ptr => wasm.__wbg_tfheconfig_free(ptr, 1));
23988
23791
  const TfheConfigBuilderFinalization = (typeof FinalizationRegistry === 'undefined')
23989
23792
  ? { register: () => {}, unregister: () => {} }
23990
- : new FinalizationRegistry(ptr => wasm.__wbg_tfheconfigbuilder_free(ptr >>> 0, 1));
23793
+ : new FinalizationRegistry(ptr => wasm.__wbg_tfheconfigbuilder_free(ptr, 1));
23991
23794
  const TfhePublicKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23992
23795
  ? { register: () => {}, unregister: () => {} }
23993
- : new FinalizationRegistry(ptr => wasm.__wbg_tfhepublickey_free(ptr >>> 0, 1));
23796
+ : new FinalizationRegistry(ptr => wasm.__wbg_tfhepublickey_free(ptr, 1));
23994
23797
  const TfheServerKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23995
23798
  ? { register: () => {}, unregister: () => {} }
23996
- : new FinalizationRegistry(ptr => wasm.__wbg_tfheserverkey_free(ptr >>> 0, 1));
23799
+ : new FinalizationRegistry(ptr => wasm.__wbg_tfheserverkey_free(ptr, 1));
23997
23800
  const tfheFinalization = (typeof FinalizationRegistry === 'undefined')
23998
23801
  ? { register: () => {}, unregister: () => {} }
23999
- : new FinalizationRegistry(ptr => wasm.__wbg_tfhe_free(ptr >>> 0, 1));
23802
+ : new FinalizationRegistry(ptr => wasm.__wbg_tfhe_free(ptr, 1));
24000
23803
  const wbg_rayon_PoolBuilderFinalization = (typeof FinalizationRegistry === 'undefined')
24001
23804
  ? { register: () => {}, unregister: () => {} }
24002
- : new FinalizationRegistry(ptr => wasm.__wbg_wbg_rayon_poolbuilder_free(ptr >>> 0, 1));
23805
+ : new FinalizationRegistry(ptr => wasm.__wbg_wbg_rayon_poolbuilder_free(ptr, 1));
24003
23806
 
24004
23807
  function addToExternrefTable0(obj) {
24005
23808
  const idx = wasm.__externref_table_alloc();
@@ -24092,8 +23895,7 @@ function getDataViewMemory0() {
24092
23895
  }
24093
23896
 
24094
23897
  function getStringFromWasm0(ptr, len) {
24095
- ptr = ptr >>> 0;
24096
- return decodeText(ptr, len);
23898
+ return decodeText(ptr >>> 0, len);
24097
23899
  }
24098
23900
 
24099
23901
  let cachedUint8ArrayMemory0 = null;
@@ -24197,8 +23999,9 @@ if (cachedTextEncoder) {
24197
23999
 
24198
24000
  let WASM_VECTOR_LEN = 0;
24199
24001
 
24200
- let wasmModule, wasm;
24002
+ let wasmModule, wasmInstance, wasm;
24201
24003
  function __wbg_finalize_init(instance, module, thread_stack_size) {
24004
+ wasmInstance = instance;
24202
24005
  wasm = instance.exports;
24203
24006
  wasmModule = module;
24204
24007
  cachedDataViewMemory0 = null;
@@ -24296,15 +24099,15 @@ function getWasmInfo() {
24296
24099
  const memory = wasm?.memory;
24297
24100
  return {
24298
24101
  name: 'tfhe',
24299
- version: "1.6.1",
24102
+ version: "1.6.2",
24300
24103
  downloadFiles: [
24301
24104
  {
24302
24105
  filename: "tfhe_bg.wasm",
24303
- sha256: "d470dc00347cdc83135e29700abe54c6a7ee9ba4ad58449bfc2494dfa4423f38",
24106
+ sha256: "ecd1841ad42226629c1a665ba784e073f2e780137f7986b00088c9227acb9760",
24304
24107
  },
24305
24108
  {
24306
24109
  filename: "tfhe-worker.mjs",
24307
- sha256: "348fe6c2e77bafe0cbfb9c0a512af99b5f97de1119ceadf07cc34620dbc5690e",
24110
+ sha256: "2c648dd89132bb63d37e8b47c6fe1f53b06abb1389faeb9b3f671eea9a0db5dd",
24308
24111
  }
24309
24112
  ],
24310
24113
  memory: