tfhe 1.6.0 → 1.6.2

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 (4) hide show
  1. package/package.json +1 -1
  2. package/tfhe.d.ts +85 -85
  3. package/tfhe.js +242 -439
  4. package/tfhe_bg.wasm +0 -0
package/tfhe.js CHANGED
@@ -298,7 +298,6 @@ if (Symbol.dispose) Boolean.prototype[Symbol.dispose] = Boolean.prototype.free;
298
298
 
299
299
  export class BooleanCiphertext {
300
300
  static __wrap(ptr) {
301
- ptr = ptr >>> 0;
302
301
  const obj = Object.create(BooleanCiphertext.prototype);
303
302
  obj.__wbg_ptr = ptr;
304
303
  BooleanCiphertextFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -319,7 +318,6 @@ if (Symbol.dispose) BooleanCiphertext.prototype[Symbol.dispose] = BooleanCiphert
319
318
 
320
319
  export class BooleanClientKey {
321
320
  static __wrap(ptr) {
322
- ptr = ptr >>> 0;
323
321
  const obj = Object.create(BooleanClientKey.prototype);
324
322
  obj.__wbg_ptr = ptr;
325
323
  BooleanClientKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -340,7 +338,6 @@ if (Symbol.dispose) BooleanClientKey.prototype[Symbol.dispose] = BooleanClientKe
340
338
 
341
339
  export class BooleanCompressedCiphertext {
342
340
  static __wrap(ptr) {
343
- ptr = ptr >>> 0;
344
341
  const obj = Object.create(BooleanCompressedCiphertext.prototype);
345
342
  obj.__wbg_ptr = ptr;
346
343
  BooleanCompressedCiphertextFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -361,7 +358,6 @@ if (Symbol.dispose) BooleanCompressedCiphertext.prototype[Symbol.dispose] = Bool
361
358
 
362
359
  export class BooleanCompressedServerKey {
363
360
  static __wrap(ptr) {
364
- ptr = ptr >>> 0;
365
361
  const obj = Object.create(BooleanCompressedServerKey.prototype);
366
362
  obj.__wbg_ptr = ptr;
367
363
  BooleanCompressedServerKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -390,7 +386,6 @@ export const BooleanEncryptionKeyChoice = Object.freeze({
390
386
 
391
387
  export class BooleanNoiseDistribution {
392
388
  static __wrap(ptr) {
393
- ptr = ptr >>> 0;
394
389
  const obj = Object.create(BooleanNoiseDistribution.prototype);
395
390
  obj.__wbg_ptr = ptr;
396
391
  BooleanNoiseDistributionFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -421,7 +416,6 @@ export const BooleanParameterSet = Object.freeze({
421
416
 
422
417
  export class BooleanParameters {
423
418
  static __wrap(ptr) {
424
- ptr = ptr >>> 0;
425
419
  const obj = Object.create(BooleanParameters.prototype);
426
420
  obj.__wbg_ptr = ptr;
427
421
  BooleanParametersFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -442,7 +436,6 @@ if (Symbol.dispose) BooleanParameters.prototype[Symbol.dispose] = BooleanParamet
442
436
 
443
437
  export class BooleanPublicKey {
444
438
  static __wrap(ptr) {
445
- ptr = ptr >>> 0;
446
439
  const obj = Object.create(BooleanPublicKey.prototype);
447
440
  obj.__wbg_ptr = ptr;
448
441
  BooleanPublicKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -463,7 +456,6 @@ if (Symbol.dispose) BooleanPublicKey.prototype[Symbol.dispose] = BooleanPublicKe
463
456
 
464
457
  export class CompactCiphertextList {
465
458
  static __wrap(ptr) {
466
- ptr = ptr >>> 0;
467
459
  const obj = Object.create(CompactCiphertextList.prototype);
468
460
  obj.__wbg_ptr = ptr;
469
461
  CompactCiphertextListFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -589,7 +581,6 @@ if (Symbol.dispose) CompactCiphertextList.prototype[Symbol.dispose] = CompactCip
589
581
 
590
582
  export class CompactCiphertextListBuilder {
591
583
  static __wrap(ptr) {
592
- ptr = ptr >>> 0;
593
584
  const obj = Object.create(CompactCiphertextListBuilder.prototype);
594
585
  obj.__wbg_ptr = ptr;
595
586
  CompactCiphertextListBuilderFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -1425,7 +1416,6 @@ if (Symbol.dispose) CompactCiphertextListBuilder.prototype[Symbol.dispose] = Com
1425
1416
 
1426
1417
  export class CompactCiphertextListExpander {
1427
1418
  static __wrap(ptr) {
1428
- ptr = ptr >>> 0;
1429
1419
  const obj = Object.create(CompactCiphertextListExpander.prototype);
1430
1420
  obj.__wbg_ptr = ptr;
1431
1421
  CompactCiphertextListExpanderFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -2381,7 +2371,6 @@ if (Symbol.dispose) CompactCiphertextListExpander.prototype[Symbol.dispose] = Co
2381
2371
 
2382
2372
  export class CompactPkeCrs {
2383
2373
  static __wrap(ptr) {
2384
- ptr = ptr >>> 0;
2385
2374
  const obj = Object.create(CompactPkeCrs.prototype);
2386
2375
  obj.__wbg_ptr = ptr;
2387
2376
  CompactPkeCrsFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -2495,7 +2484,6 @@ if (Symbol.dispose) CompactPkeCrs.prototype[Symbol.dispose] = CompactPkeCrs.prot
2495
2484
 
2496
2485
  export class CompressedFheBool {
2497
2486
  static __wrap(ptr) {
2498
- ptr = ptr >>> 0;
2499
2487
  const obj = Object.create(CompressedFheBool.prototype);
2500
2488
  obj.__wbg_ptr = ptr;
2501
2489
  CompressedFheBoolFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -2591,7 +2579,6 @@ if (Symbol.dispose) CompressedFheBool.prototype[Symbol.dispose] = CompressedFheB
2591
2579
 
2592
2580
  export class CompressedFheInt10 {
2593
2581
  static __wrap(ptr) {
2594
- ptr = ptr >>> 0;
2595
2582
  const obj = Object.create(CompressedFheInt10.prototype);
2596
2583
  obj.__wbg_ptr = ptr;
2597
2584
  CompressedFheInt10Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -2687,7 +2674,6 @@ if (Symbol.dispose) CompressedFheInt10.prototype[Symbol.dispose] = CompressedFhe
2687
2674
 
2688
2675
  export class CompressedFheInt1024 {
2689
2676
  static __wrap(ptr) {
2690
- ptr = ptr >>> 0;
2691
2677
  const obj = Object.create(CompressedFheInt1024.prototype);
2692
2678
  obj.__wbg_ptr = ptr;
2693
2679
  CompressedFheInt1024Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -2783,7 +2769,6 @@ if (Symbol.dispose) CompressedFheInt1024.prototype[Symbol.dispose] = CompressedF
2783
2769
 
2784
2770
  export class CompressedFheInt104 {
2785
2771
  static __wrap(ptr) {
2786
- ptr = ptr >>> 0;
2787
2772
  const obj = Object.create(CompressedFheInt104.prototype);
2788
2773
  obj.__wbg_ptr = ptr;
2789
2774
  CompressedFheInt104Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -2879,7 +2864,6 @@ if (Symbol.dispose) CompressedFheInt104.prototype[Symbol.dispose] = CompressedFh
2879
2864
 
2880
2865
  export class CompressedFheInt112 {
2881
2866
  static __wrap(ptr) {
2882
- ptr = ptr >>> 0;
2883
2867
  const obj = Object.create(CompressedFheInt112.prototype);
2884
2868
  obj.__wbg_ptr = ptr;
2885
2869
  CompressedFheInt112Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -2975,7 +2959,6 @@ if (Symbol.dispose) CompressedFheInt112.prototype[Symbol.dispose] = CompressedFh
2975
2959
 
2976
2960
  export class CompressedFheInt12 {
2977
2961
  static __wrap(ptr) {
2978
- ptr = ptr >>> 0;
2979
2962
  const obj = Object.create(CompressedFheInt12.prototype);
2980
2963
  obj.__wbg_ptr = ptr;
2981
2964
  CompressedFheInt12Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -3071,7 +3054,6 @@ if (Symbol.dispose) CompressedFheInt12.prototype[Symbol.dispose] = CompressedFhe
3071
3054
 
3072
3055
  export class CompressedFheInt120 {
3073
3056
  static __wrap(ptr) {
3074
- ptr = ptr >>> 0;
3075
3057
  const obj = Object.create(CompressedFheInt120.prototype);
3076
3058
  obj.__wbg_ptr = ptr;
3077
3059
  CompressedFheInt120Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -3167,7 +3149,6 @@ if (Symbol.dispose) CompressedFheInt120.prototype[Symbol.dispose] = CompressedFh
3167
3149
 
3168
3150
  export class CompressedFheInt128 {
3169
3151
  static __wrap(ptr) {
3170
- ptr = ptr >>> 0;
3171
3152
  const obj = Object.create(CompressedFheInt128.prototype);
3172
3153
  obj.__wbg_ptr = ptr;
3173
3154
  CompressedFheInt128Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -3263,7 +3244,6 @@ if (Symbol.dispose) CompressedFheInt128.prototype[Symbol.dispose] = CompressedFh
3263
3244
 
3264
3245
  export class CompressedFheInt136 {
3265
3246
  static __wrap(ptr) {
3266
- ptr = ptr >>> 0;
3267
3247
  const obj = Object.create(CompressedFheInt136.prototype);
3268
3248
  obj.__wbg_ptr = ptr;
3269
3249
  CompressedFheInt136Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -3359,7 +3339,6 @@ if (Symbol.dispose) CompressedFheInt136.prototype[Symbol.dispose] = CompressedFh
3359
3339
 
3360
3340
  export class CompressedFheInt14 {
3361
3341
  static __wrap(ptr) {
3362
- ptr = ptr >>> 0;
3363
3342
  const obj = Object.create(CompressedFheInt14.prototype);
3364
3343
  obj.__wbg_ptr = ptr;
3365
3344
  CompressedFheInt14Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -3455,7 +3434,6 @@ if (Symbol.dispose) CompressedFheInt14.prototype[Symbol.dispose] = CompressedFhe
3455
3434
 
3456
3435
  export class CompressedFheInt144 {
3457
3436
  static __wrap(ptr) {
3458
- ptr = ptr >>> 0;
3459
3437
  const obj = Object.create(CompressedFheInt144.prototype);
3460
3438
  obj.__wbg_ptr = ptr;
3461
3439
  CompressedFheInt144Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -3551,7 +3529,6 @@ if (Symbol.dispose) CompressedFheInt144.prototype[Symbol.dispose] = CompressedFh
3551
3529
 
3552
3530
  export class CompressedFheInt152 {
3553
3531
  static __wrap(ptr) {
3554
- ptr = ptr >>> 0;
3555
3532
  const obj = Object.create(CompressedFheInt152.prototype);
3556
3533
  obj.__wbg_ptr = ptr;
3557
3534
  CompressedFheInt152Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -3647,7 +3624,6 @@ if (Symbol.dispose) CompressedFheInt152.prototype[Symbol.dispose] = CompressedFh
3647
3624
 
3648
3625
  export class CompressedFheInt16 {
3649
3626
  static __wrap(ptr) {
3650
- ptr = ptr >>> 0;
3651
3627
  const obj = Object.create(CompressedFheInt16.prototype);
3652
3628
  obj.__wbg_ptr = ptr;
3653
3629
  CompressedFheInt16Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -3743,7 +3719,6 @@ if (Symbol.dispose) CompressedFheInt16.prototype[Symbol.dispose] = CompressedFhe
3743
3719
 
3744
3720
  export class CompressedFheInt160 {
3745
3721
  static __wrap(ptr) {
3746
- ptr = ptr >>> 0;
3747
3722
  const obj = Object.create(CompressedFheInt160.prototype);
3748
3723
  obj.__wbg_ptr = ptr;
3749
3724
  CompressedFheInt160Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -3839,7 +3814,6 @@ if (Symbol.dispose) CompressedFheInt160.prototype[Symbol.dispose] = CompressedFh
3839
3814
 
3840
3815
  export class CompressedFheInt168 {
3841
3816
  static __wrap(ptr) {
3842
- ptr = ptr >>> 0;
3843
3817
  const obj = Object.create(CompressedFheInt168.prototype);
3844
3818
  obj.__wbg_ptr = ptr;
3845
3819
  CompressedFheInt168Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -3935,7 +3909,6 @@ if (Symbol.dispose) CompressedFheInt168.prototype[Symbol.dispose] = CompressedFh
3935
3909
 
3936
3910
  export class CompressedFheInt176 {
3937
3911
  static __wrap(ptr) {
3938
- ptr = ptr >>> 0;
3939
3912
  const obj = Object.create(CompressedFheInt176.prototype);
3940
3913
  obj.__wbg_ptr = ptr;
3941
3914
  CompressedFheInt176Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -4031,7 +4004,6 @@ if (Symbol.dispose) CompressedFheInt176.prototype[Symbol.dispose] = CompressedFh
4031
4004
 
4032
4005
  export class CompressedFheInt184 {
4033
4006
  static __wrap(ptr) {
4034
- ptr = ptr >>> 0;
4035
4007
  const obj = Object.create(CompressedFheInt184.prototype);
4036
4008
  obj.__wbg_ptr = ptr;
4037
4009
  CompressedFheInt184Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -4127,7 +4099,6 @@ if (Symbol.dispose) CompressedFheInt184.prototype[Symbol.dispose] = CompressedFh
4127
4099
 
4128
4100
  export class CompressedFheInt192 {
4129
4101
  static __wrap(ptr) {
4130
- ptr = ptr >>> 0;
4131
4102
  const obj = Object.create(CompressedFheInt192.prototype);
4132
4103
  obj.__wbg_ptr = ptr;
4133
4104
  CompressedFheInt192Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -4223,7 +4194,6 @@ if (Symbol.dispose) CompressedFheInt192.prototype[Symbol.dispose] = CompressedFh
4223
4194
 
4224
4195
  export class CompressedFheInt2 {
4225
4196
  static __wrap(ptr) {
4226
- ptr = ptr >>> 0;
4227
4197
  const obj = Object.create(CompressedFheInt2.prototype);
4228
4198
  obj.__wbg_ptr = ptr;
4229
4199
  CompressedFheInt2Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -4319,7 +4289,6 @@ if (Symbol.dispose) CompressedFheInt2.prototype[Symbol.dispose] = CompressedFheI
4319
4289
 
4320
4290
  export class CompressedFheInt200 {
4321
4291
  static __wrap(ptr) {
4322
- ptr = ptr >>> 0;
4323
4292
  const obj = Object.create(CompressedFheInt200.prototype);
4324
4293
  obj.__wbg_ptr = ptr;
4325
4294
  CompressedFheInt200Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -4415,7 +4384,6 @@ if (Symbol.dispose) CompressedFheInt200.prototype[Symbol.dispose] = CompressedFh
4415
4384
 
4416
4385
  export class CompressedFheInt2048 {
4417
4386
  static __wrap(ptr) {
4418
- ptr = ptr >>> 0;
4419
4387
  const obj = Object.create(CompressedFheInt2048.prototype);
4420
4388
  obj.__wbg_ptr = ptr;
4421
4389
  CompressedFheInt2048Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -4511,7 +4479,6 @@ if (Symbol.dispose) CompressedFheInt2048.prototype[Symbol.dispose] = CompressedF
4511
4479
 
4512
4480
  export class CompressedFheInt208 {
4513
4481
  static __wrap(ptr) {
4514
- ptr = ptr >>> 0;
4515
4482
  const obj = Object.create(CompressedFheInt208.prototype);
4516
4483
  obj.__wbg_ptr = ptr;
4517
4484
  CompressedFheInt208Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -4607,7 +4574,6 @@ if (Symbol.dispose) CompressedFheInt208.prototype[Symbol.dispose] = CompressedFh
4607
4574
 
4608
4575
  export class CompressedFheInt216 {
4609
4576
  static __wrap(ptr) {
4610
- ptr = ptr >>> 0;
4611
4577
  const obj = Object.create(CompressedFheInt216.prototype);
4612
4578
  obj.__wbg_ptr = ptr;
4613
4579
  CompressedFheInt216Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -4703,7 +4669,6 @@ if (Symbol.dispose) CompressedFheInt216.prototype[Symbol.dispose] = CompressedFh
4703
4669
 
4704
4670
  export class CompressedFheInt224 {
4705
4671
  static __wrap(ptr) {
4706
- ptr = ptr >>> 0;
4707
4672
  const obj = Object.create(CompressedFheInt224.prototype);
4708
4673
  obj.__wbg_ptr = ptr;
4709
4674
  CompressedFheInt224Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -4799,7 +4764,6 @@ if (Symbol.dispose) CompressedFheInt224.prototype[Symbol.dispose] = CompressedFh
4799
4764
 
4800
4765
  export class CompressedFheInt232 {
4801
4766
  static __wrap(ptr) {
4802
- ptr = ptr >>> 0;
4803
4767
  const obj = Object.create(CompressedFheInt232.prototype);
4804
4768
  obj.__wbg_ptr = ptr;
4805
4769
  CompressedFheInt232Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -4895,7 +4859,6 @@ if (Symbol.dispose) CompressedFheInt232.prototype[Symbol.dispose] = CompressedFh
4895
4859
 
4896
4860
  export class CompressedFheInt24 {
4897
4861
  static __wrap(ptr) {
4898
- ptr = ptr >>> 0;
4899
4862
  const obj = Object.create(CompressedFheInt24.prototype);
4900
4863
  obj.__wbg_ptr = ptr;
4901
4864
  CompressedFheInt24Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -4991,7 +4954,6 @@ if (Symbol.dispose) CompressedFheInt24.prototype[Symbol.dispose] = CompressedFhe
4991
4954
 
4992
4955
  export class CompressedFheInt240 {
4993
4956
  static __wrap(ptr) {
4994
- ptr = ptr >>> 0;
4995
4957
  const obj = Object.create(CompressedFheInt240.prototype);
4996
4958
  obj.__wbg_ptr = ptr;
4997
4959
  CompressedFheInt240Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -5087,7 +5049,6 @@ if (Symbol.dispose) CompressedFheInt240.prototype[Symbol.dispose] = CompressedFh
5087
5049
 
5088
5050
  export class CompressedFheInt248 {
5089
5051
  static __wrap(ptr) {
5090
- ptr = ptr >>> 0;
5091
5052
  const obj = Object.create(CompressedFheInt248.prototype);
5092
5053
  obj.__wbg_ptr = ptr;
5093
5054
  CompressedFheInt248Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -5183,7 +5144,6 @@ if (Symbol.dispose) CompressedFheInt248.prototype[Symbol.dispose] = CompressedFh
5183
5144
 
5184
5145
  export class CompressedFheInt256 {
5185
5146
  static __wrap(ptr) {
5186
- ptr = ptr >>> 0;
5187
5147
  const obj = Object.create(CompressedFheInt256.prototype);
5188
5148
  obj.__wbg_ptr = ptr;
5189
5149
  CompressedFheInt256Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -5279,7 +5239,6 @@ if (Symbol.dispose) CompressedFheInt256.prototype[Symbol.dispose] = CompressedFh
5279
5239
 
5280
5240
  export class CompressedFheInt32 {
5281
5241
  static __wrap(ptr) {
5282
- ptr = ptr >>> 0;
5283
5242
  const obj = Object.create(CompressedFheInt32.prototype);
5284
5243
  obj.__wbg_ptr = ptr;
5285
5244
  CompressedFheInt32Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -5375,7 +5334,6 @@ if (Symbol.dispose) CompressedFheInt32.prototype[Symbol.dispose] = CompressedFhe
5375
5334
 
5376
5335
  export class CompressedFheInt4 {
5377
5336
  static __wrap(ptr) {
5378
- ptr = ptr >>> 0;
5379
5337
  const obj = Object.create(CompressedFheInt4.prototype);
5380
5338
  obj.__wbg_ptr = ptr;
5381
5339
  CompressedFheInt4Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -5471,7 +5429,6 @@ if (Symbol.dispose) CompressedFheInt4.prototype[Symbol.dispose] = CompressedFheI
5471
5429
 
5472
5430
  export class CompressedFheInt40 {
5473
5431
  static __wrap(ptr) {
5474
- ptr = ptr >>> 0;
5475
5432
  const obj = Object.create(CompressedFheInt40.prototype);
5476
5433
  obj.__wbg_ptr = ptr;
5477
5434
  CompressedFheInt40Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -5567,7 +5524,6 @@ if (Symbol.dispose) CompressedFheInt40.prototype[Symbol.dispose] = CompressedFhe
5567
5524
 
5568
5525
  export class CompressedFheInt48 {
5569
5526
  static __wrap(ptr) {
5570
- ptr = ptr >>> 0;
5571
5527
  const obj = Object.create(CompressedFheInt48.prototype);
5572
5528
  obj.__wbg_ptr = ptr;
5573
5529
  CompressedFheInt48Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -5663,7 +5619,6 @@ if (Symbol.dispose) CompressedFheInt48.prototype[Symbol.dispose] = CompressedFhe
5663
5619
 
5664
5620
  export class CompressedFheInt512 {
5665
5621
  static __wrap(ptr) {
5666
- ptr = ptr >>> 0;
5667
5622
  const obj = Object.create(CompressedFheInt512.prototype);
5668
5623
  obj.__wbg_ptr = ptr;
5669
5624
  CompressedFheInt512Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -5759,7 +5714,6 @@ if (Symbol.dispose) CompressedFheInt512.prototype[Symbol.dispose] = CompressedFh
5759
5714
 
5760
5715
  export class CompressedFheInt56 {
5761
5716
  static __wrap(ptr) {
5762
- ptr = ptr >>> 0;
5763
5717
  const obj = Object.create(CompressedFheInt56.prototype);
5764
5718
  obj.__wbg_ptr = ptr;
5765
5719
  CompressedFheInt56Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -5855,7 +5809,6 @@ if (Symbol.dispose) CompressedFheInt56.prototype[Symbol.dispose] = CompressedFhe
5855
5809
 
5856
5810
  export class CompressedFheInt6 {
5857
5811
  static __wrap(ptr) {
5858
- ptr = ptr >>> 0;
5859
5812
  const obj = Object.create(CompressedFheInt6.prototype);
5860
5813
  obj.__wbg_ptr = ptr;
5861
5814
  CompressedFheInt6Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -5951,7 +5904,6 @@ if (Symbol.dispose) CompressedFheInt6.prototype[Symbol.dispose] = CompressedFheI
5951
5904
 
5952
5905
  export class CompressedFheInt64 {
5953
5906
  static __wrap(ptr) {
5954
- ptr = ptr >>> 0;
5955
5907
  const obj = Object.create(CompressedFheInt64.prototype);
5956
5908
  obj.__wbg_ptr = ptr;
5957
5909
  CompressedFheInt64Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -6047,7 +5999,6 @@ if (Symbol.dispose) CompressedFheInt64.prototype[Symbol.dispose] = CompressedFhe
6047
5999
 
6048
6000
  export class CompressedFheInt72 {
6049
6001
  static __wrap(ptr) {
6050
- ptr = ptr >>> 0;
6051
6002
  const obj = Object.create(CompressedFheInt72.prototype);
6052
6003
  obj.__wbg_ptr = ptr;
6053
6004
  CompressedFheInt72Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -6143,7 +6094,6 @@ if (Symbol.dispose) CompressedFheInt72.prototype[Symbol.dispose] = CompressedFhe
6143
6094
 
6144
6095
  export class CompressedFheInt8 {
6145
6096
  static __wrap(ptr) {
6146
- ptr = ptr >>> 0;
6147
6097
  const obj = Object.create(CompressedFheInt8.prototype);
6148
6098
  obj.__wbg_ptr = ptr;
6149
6099
  CompressedFheInt8Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -6239,7 +6189,6 @@ if (Symbol.dispose) CompressedFheInt8.prototype[Symbol.dispose] = CompressedFheI
6239
6189
 
6240
6190
  export class CompressedFheInt80 {
6241
6191
  static __wrap(ptr) {
6242
- ptr = ptr >>> 0;
6243
6192
  const obj = Object.create(CompressedFheInt80.prototype);
6244
6193
  obj.__wbg_ptr = ptr;
6245
6194
  CompressedFheInt80Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -6335,7 +6284,6 @@ if (Symbol.dispose) CompressedFheInt80.prototype[Symbol.dispose] = CompressedFhe
6335
6284
 
6336
6285
  export class CompressedFheInt88 {
6337
6286
  static __wrap(ptr) {
6338
- ptr = ptr >>> 0;
6339
6287
  const obj = Object.create(CompressedFheInt88.prototype);
6340
6288
  obj.__wbg_ptr = ptr;
6341
6289
  CompressedFheInt88Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -6431,7 +6379,6 @@ if (Symbol.dispose) CompressedFheInt88.prototype[Symbol.dispose] = CompressedFhe
6431
6379
 
6432
6380
  export class CompressedFheInt96 {
6433
6381
  static __wrap(ptr) {
6434
- ptr = ptr >>> 0;
6435
6382
  const obj = Object.create(CompressedFheInt96.prototype);
6436
6383
  obj.__wbg_ptr = ptr;
6437
6384
  CompressedFheInt96Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -6527,7 +6474,6 @@ if (Symbol.dispose) CompressedFheInt96.prototype[Symbol.dispose] = CompressedFhe
6527
6474
 
6528
6475
  export class CompressedFheUint10 {
6529
6476
  static __wrap(ptr) {
6530
- ptr = ptr >>> 0;
6531
6477
  const obj = Object.create(CompressedFheUint10.prototype);
6532
6478
  obj.__wbg_ptr = ptr;
6533
6479
  CompressedFheUint10Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -6623,7 +6569,6 @@ if (Symbol.dispose) CompressedFheUint10.prototype[Symbol.dispose] = CompressedFh
6623
6569
 
6624
6570
  export class CompressedFheUint1024 {
6625
6571
  static __wrap(ptr) {
6626
- ptr = ptr >>> 0;
6627
6572
  const obj = Object.create(CompressedFheUint1024.prototype);
6628
6573
  obj.__wbg_ptr = ptr;
6629
6574
  CompressedFheUint1024Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -6719,7 +6664,6 @@ if (Symbol.dispose) CompressedFheUint1024.prototype[Symbol.dispose] = Compressed
6719
6664
 
6720
6665
  export class CompressedFheUint104 {
6721
6666
  static __wrap(ptr) {
6722
- ptr = ptr >>> 0;
6723
6667
  const obj = Object.create(CompressedFheUint104.prototype);
6724
6668
  obj.__wbg_ptr = ptr;
6725
6669
  CompressedFheUint104Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -6815,7 +6759,6 @@ if (Symbol.dispose) CompressedFheUint104.prototype[Symbol.dispose] = CompressedF
6815
6759
 
6816
6760
  export class CompressedFheUint112 {
6817
6761
  static __wrap(ptr) {
6818
- ptr = ptr >>> 0;
6819
6762
  const obj = Object.create(CompressedFheUint112.prototype);
6820
6763
  obj.__wbg_ptr = ptr;
6821
6764
  CompressedFheUint112Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -6911,7 +6854,6 @@ if (Symbol.dispose) CompressedFheUint112.prototype[Symbol.dispose] = CompressedF
6911
6854
 
6912
6855
  export class CompressedFheUint12 {
6913
6856
  static __wrap(ptr) {
6914
- ptr = ptr >>> 0;
6915
6857
  const obj = Object.create(CompressedFheUint12.prototype);
6916
6858
  obj.__wbg_ptr = ptr;
6917
6859
  CompressedFheUint12Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -7007,7 +6949,6 @@ if (Symbol.dispose) CompressedFheUint12.prototype[Symbol.dispose] = CompressedFh
7007
6949
 
7008
6950
  export class CompressedFheUint120 {
7009
6951
  static __wrap(ptr) {
7010
- ptr = ptr >>> 0;
7011
6952
  const obj = Object.create(CompressedFheUint120.prototype);
7012
6953
  obj.__wbg_ptr = ptr;
7013
6954
  CompressedFheUint120Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -7103,7 +7044,6 @@ if (Symbol.dispose) CompressedFheUint120.prototype[Symbol.dispose] = CompressedF
7103
7044
 
7104
7045
  export class CompressedFheUint128 {
7105
7046
  static __wrap(ptr) {
7106
- ptr = ptr >>> 0;
7107
7047
  const obj = Object.create(CompressedFheUint128.prototype);
7108
7048
  obj.__wbg_ptr = ptr;
7109
7049
  CompressedFheUint128Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -7199,7 +7139,6 @@ if (Symbol.dispose) CompressedFheUint128.prototype[Symbol.dispose] = CompressedF
7199
7139
 
7200
7140
  export class CompressedFheUint136 {
7201
7141
  static __wrap(ptr) {
7202
- ptr = ptr >>> 0;
7203
7142
  const obj = Object.create(CompressedFheUint136.prototype);
7204
7143
  obj.__wbg_ptr = ptr;
7205
7144
  CompressedFheUint136Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -7295,7 +7234,6 @@ if (Symbol.dispose) CompressedFheUint136.prototype[Symbol.dispose] = CompressedF
7295
7234
 
7296
7235
  export class CompressedFheUint14 {
7297
7236
  static __wrap(ptr) {
7298
- ptr = ptr >>> 0;
7299
7237
  const obj = Object.create(CompressedFheUint14.prototype);
7300
7238
  obj.__wbg_ptr = ptr;
7301
7239
  CompressedFheUint14Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -7391,7 +7329,6 @@ if (Symbol.dispose) CompressedFheUint14.prototype[Symbol.dispose] = CompressedFh
7391
7329
 
7392
7330
  export class CompressedFheUint144 {
7393
7331
  static __wrap(ptr) {
7394
- ptr = ptr >>> 0;
7395
7332
  const obj = Object.create(CompressedFheUint144.prototype);
7396
7333
  obj.__wbg_ptr = ptr;
7397
7334
  CompressedFheUint144Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -7487,7 +7424,6 @@ if (Symbol.dispose) CompressedFheUint144.prototype[Symbol.dispose] = CompressedF
7487
7424
 
7488
7425
  export class CompressedFheUint152 {
7489
7426
  static __wrap(ptr) {
7490
- ptr = ptr >>> 0;
7491
7427
  const obj = Object.create(CompressedFheUint152.prototype);
7492
7428
  obj.__wbg_ptr = ptr;
7493
7429
  CompressedFheUint152Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -7583,7 +7519,6 @@ if (Symbol.dispose) CompressedFheUint152.prototype[Symbol.dispose] = CompressedF
7583
7519
 
7584
7520
  export class CompressedFheUint16 {
7585
7521
  static __wrap(ptr) {
7586
- ptr = ptr >>> 0;
7587
7522
  const obj = Object.create(CompressedFheUint16.prototype);
7588
7523
  obj.__wbg_ptr = ptr;
7589
7524
  CompressedFheUint16Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -7679,7 +7614,6 @@ if (Symbol.dispose) CompressedFheUint16.prototype[Symbol.dispose] = CompressedFh
7679
7614
 
7680
7615
  export class CompressedFheUint160 {
7681
7616
  static __wrap(ptr) {
7682
- ptr = ptr >>> 0;
7683
7617
  const obj = Object.create(CompressedFheUint160.prototype);
7684
7618
  obj.__wbg_ptr = ptr;
7685
7619
  CompressedFheUint160Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -7775,7 +7709,6 @@ if (Symbol.dispose) CompressedFheUint160.prototype[Symbol.dispose] = CompressedF
7775
7709
 
7776
7710
  export class CompressedFheUint168 {
7777
7711
  static __wrap(ptr) {
7778
- ptr = ptr >>> 0;
7779
7712
  const obj = Object.create(CompressedFheUint168.prototype);
7780
7713
  obj.__wbg_ptr = ptr;
7781
7714
  CompressedFheUint168Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -7871,7 +7804,6 @@ if (Symbol.dispose) CompressedFheUint168.prototype[Symbol.dispose] = CompressedF
7871
7804
 
7872
7805
  export class CompressedFheUint176 {
7873
7806
  static __wrap(ptr) {
7874
- ptr = ptr >>> 0;
7875
7807
  const obj = Object.create(CompressedFheUint176.prototype);
7876
7808
  obj.__wbg_ptr = ptr;
7877
7809
  CompressedFheUint176Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -7967,7 +7899,6 @@ if (Symbol.dispose) CompressedFheUint176.prototype[Symbol.dispose] = CompressedF
7967
7899
 
7968
7900
  export class CompressedFheUint184 {
7969
7901
  static __wrap(ptr) {
7970
- ptr = ptr >>> 0;
7971
7902
  const obj = Object.create(CompressedFheUint184.prototype);
7972
7903
  obj.__wbg_ptr = ptr;
7973
7904
  CompressedFheUint184Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -8063,7 +7994,6 @@ if (Symbol.dispose) CompressedFheUint184.prototype[Symbol.dispose] = CompressedF
8063
7994
 
8064
7995
  export class CompressedFheUint192 {
8065
7996
  static __wrap(ptr) {
8066
- ptr = ptr >>> 0;
8067
7997
  const obj = Object.create(CompressedFheUint192.prototype);
8068
7998
  obj.__wbg_ptr = ptr;
8069
7999
  CompressedFheUint192Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -8159,7 +8089,6 @@ if (Symbol.dispose) CompressedFheUint192.prototype[Symbol.dispose] = CompressedF
8159
8089
 
8160
8090
  export class CompressedFheUint2 {
8161
8091
  static __wrap(ptr) {
8162
- ptr = ptr >>> 0;
8163
8092
  const obj = Object.create(CompressedFheUint2.prototype);
8164
8093
  obj.__wbg_ptr = ptr;
8165
8094
  CompressedFheUint2Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -8255,7 +8184,6 @@ if (Symbol.dispose) CompressedFheUint2.prototype[Symbol.dispose] = CompressedFhe
8255
8184
 
8256
8185
  export class CompressedFheUint200 {
8257
8186
  static __wrap(ptr) {
8258
- ptr = ptr >>> 0;
8259
8187
  const obj = Object.create(CompressedFheUint200.prototype);
8260
8188
  obj.__wbg_ptr = ptr;
8261
8189
  CompressedFheUint200Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -8351,7 +8279,6 @@ if (Symbol.dispose) CompressedFheUint200.prototype[Symbol.dispose] = CompressedF
8351
8279
 
8352
8280
  export class CompressedFheUint2048 {
8353
8281
  static __wrap(ptr) {
8354
- ptr = ptr >>> 0;
8355
8282
  const obj = Object.create(CompressedFheUint2048.prototype);
8356
8283
  obj.__wbg_ptr = ptr;
8357
8284
  CompressedFheUint2048Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -8447,7 +8374,6 @@ if (Symbol.dispose) CompressedFheUint2048.prototype[Symbol.dispose] = Compressed
8447
8374
 
8448
8375
  export class CompressedFheUint208 {
8449
8376
  static __wrap(ptr) {
8450
- ptr = ptr >>> 0;
8451
8377
  const obj = Object.create(CompressedFheUint208.prototype);
8452
8378
  obj.__wbg_ptr = ptr;
8453
8379
  CompressedFheUint208Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -8543,7 +8469,6 @@ if (Symbol.dispose) CompressedFheUint208.prototype[Symbol.dispose] = CompressedF
8543
8469
 
8544
8470
  export class CompressedFheUint216 {
8545
8471
  static __wrap(ptr) {
8546
- ptr = ptr >>> 0;
8547
8472
  const obj = Object.create(CompressedFheUint216.prototype);
8548
8473
  obj.__wbg_ptr = ptr;
8549
8474
  CompressedFheUint216Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -8639,7 +8564,6 @@ if (Symbol.dispose) CompressedFheUint216.prototype[Symbol.dispose] = CompressedF
8639
8564
 
8640
8565
  export class CompressedFheUint224 {
8641
8566
  static __wrap(ptr) {
8642
- ptr = ptr >>> 0;
8643
8567
  const obj = Object.create(CompressedFheUint224.prototype);
8644
8568
  obj.__wbg_ptr = ptr;
8645
8569
  CompressedFheUint224Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -8735,7 +8659,6 @@ if (Symbol.dispose) CompressedFheUint224.prototype[Symbol.dispose] = CompressedF
8735
8659
 
8736
8660
  export class CompressedFheUint232 {
8737
8661
  static __wrap(ptr) {
8738
- ptr = ptr >>> 0;
8739
8662
  const obj = Object.create(CompressedFheUint232.prototype);
8740
8663
  obj.__wbg_ptr = ptr;
8741
8664
  CompressedFheUint232Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -8831,7 +8754,6 @@ if (Symbol.dispose) CompressedFheUint232.prototype[Symbol.dispose] = CompressedF
8831
8754
 
8832
8755
  export class CompressedFheUint24 {
8833
8756
  static __wrap(ptr) {
8834
- ptr = ptr >>> 0;
8835
8757
  const obj = Object.create(CompressedFheUint24.prototype);
8836
8758
  obj.__wbg_ptr = ptr;
8837
8759
  CompressedFheUint24Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -8927,7 +8849,6 @@ if (Symbol.dispose) CompressedFheUint24.prototype[Symbol.dispose] = CompressedFh
8927
8849
 
8928
8850
  export class CompressedFheUint240 {
8929
8851
  static __wrap(ptr) {
8930
- ptr = ptr >>> 0;
8931
8852
  const obj = Object.create(CompressedFheUint240.prototype);
8932
8853
  obj.__wbg_ptr = ptr;
8933
8854
  CompressedFheUint240Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -9023,7 +8944,6 @@ if (Symbol.dispose) CompressedFheUint240.prototype[Symbol.dispose] = CompressedF
9023
8944
 
9024
8945
  export class CompressedFheUint248 {
9025
8946
  static __wrap(ptr) {
9026
- ptr = ptr >>> 0;
9027
8947
  const obj = Object.create(CompressedFheUint248.prototype);
9028
8948
  obj.__wbg_ptr = ptr;
9029
8949
  CompressedFheUint248Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -9119,7 +9039,6 @@ if (Symbol.dispose) CompressedFheUint248.prototype[Symbol.dispose] = CompressedF
9119
9039
 
9120
9040
  export class CompressedFheUint256 {
9121
9041
  static __wrap(ptr) {
9122
- ptr = ptr >>> 0;
9123
9042
  const obj = Object.create(CompressedFheUint256.prototype);
9124
9043
  obj.__wbg_ptr = ptr;
9125
9044
  CompressedFheUint256Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -9215,7 +9134,6 @@ if (Symbol.dispose) CompressedFheUint256.prototype[Symbol.dispose] = CompressedF
9215
9134
 
9216
9135
  export class CompressedFheUint32 {
9217
9136
  static __wrap(ptr) {
9218
- ptr = ptr >>> 0;
9219
9137
  const obj = Object.create(CompressedFheUint32.prototype);
9220
9138
  obj.__wbg_ptr = ptr;
9221
9139
  CompressedFheUint32Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -9311,7 +9229,6 @@ if (Symbol.dispose) CompressedFheUint32.prototype[Symbol.dispose] = CompressedFh
9311
9229
 
9312
9230
  export class CompressedFheUint4 {
9313
9231
  static __wrap(ptr) {
9314
- ptr = ptr >>> 0;
9315
9232
  const obj = Object.create(CompressedFheUint4.prototype);
9316
9233
  obj.__wbg_ptr = ptr;
9317
9234
  CompressedFheUint4Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -9407,7 +9324,6 @@ if (Symbol.dispose) CompressedFheUint4.prototype[Symbol.dispose] = CompressedFhe
9407
9324
 
9408
9325
  export class CompressedFheUint40 {
9409
9326
  static __wrap(ptr) {
9410
- ptr = ptr >>> 0;
9411
9327
  const obj = Object.create(CompressedFheUint40.prototype);
9412
9328
  obj.__wbg_ptr = ptr;
9413
9329
  CompressedFheUint40Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -9503,7 +9419,6 @@ if (Symbol.dispose) CompressedFheUint40.prototype[Symbol.dispose] = CompressedFh
9503
9419
 
9504
9420
  export class CompressedFheUint48 {
9505
9421
  static __wrap(ptr) {
9506
- ptr = ptr >>> 0;
9507
9422
  const obj = Object.create(CompressedFheUint48.prototype);
9508
9423
  obj.__wbg_ptr = ptr;
9509
9424
  CompressedFheUint48Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -9599,7 +9514,6 @@ if (Symbol.dispose) CompressedFheUint48.prototype[Symbol.dispose] = CompressedFh
9599
9514
 
9600
9515
  export class CompressedFheUint512 {
9601
9516
  static __wrap(ptr) {
9602
- ptr = ptr >>> 0;
9603
9517
  const obj = Object.create(CompressedFheUint512.prototype);
9604
9518
  obj.__wbg_ptr = ptr;
9605
9519
  CompressedFheUint512Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -9695,7 +9609,6 @@ if (Symbol.dispose) CompressedFheUint512.prototype[Symbol.dispose] = CompressedF
9695
9609
 
9696
9610
  export class CompressedFheUint56 {
9697
9611
  static __wrap(ptr) {
9698
- ptr = ptr >>> 0;
9699
9612
  const obj = Object.create(CompressedFheUint56.prototype);
9700
9613
  obj.__wbg_ptr = ptr;
9701
9614
  CompressedFheUint56Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -9791,7 +9704,6 @@ if (Symbol.dispose) CompressedFheUint56.prototype[Symbol.dispose] = CompressedFh
9791
9704
 
9792
9705
  export class CompressedFheUint6 {
9793
9706
  static __wrap(ptr) {
9794
- ptr = ptr >>> 0;
9795
9707
  const obj = Object.create(CompressedFheUint6.prototype);
9796
9708
  obj.__wbg_ptr = ptr;
9797
9709
  CompressedFheUint6Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -9887,7 +9799,6 @@ if (Symbol.dispose) CompressedFheUint6.prototype[Symbol.dispose] = CompressedFhe
9887
9799
 
9888
9800
  export class CompressedFheUint64 {
9889
9801
  static __wrap(ptr) {
9890
- ptr = ptr >>> 0;
9891
9802
  const obj = Object.create(CompressedFheUint64.prototype);
9892
9803
  obj.__wbg_ptr = ptr;
9893
9804
  CompressedFheUint64Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -9983,7 +9894,6 @@ if (Symbol.dispose) CompressedFheUint64.prototype[Symbol.dispose] = CompressedFh
9983
9894
 
9984
9895
  export class CompressedFheUint72 {
9985
9896
  static __wrap(ptr) {
9986
- ptr = ptr >>> 0;
9987
9897
  const obj = Object.create(CompressedFheUint72.prototype);
9988
9898
  obj.__wbg_ptr = ptr;
9989
9899
  CompressedFheUint72Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -10079,7 +9989,6 @@ if (Symbol.dispose) CompressedFheUint72.prototype[Symbol.dispose] = CompressedFh
10079
9989
 
10080
9990
  export class CompressedFheUint8 {
10081
9991
  static __wrap(ptr) {
10082
- ptr = ptr >>> 0;
10083
9992
  const obj = Object.create(CompressedFheUint8.prototype);
10084
9993
  obj.__wbg_ptr = ptr;
10085
9994
  CompressedFheUint8Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -10175,7 +10084,6 @@ if (Symbol.dispose) CompressedFheUint8.prototype[Symbol.dispose] = CompressedFhe
10175
10084
 
10176
10085
  export class CompressedFheUint80 {
10177
10086
  static __wrap(ptr) {
10178
- ptr = ptr >>> 0;
10179
10087
  const obj = Object.create(CompressedFheUint80.prototype);
10180
10088
  obj.__wbg_ptr = ptr;
10181
10089
  CompressedFheUint80Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -10271,7 +10179,6 @@ if (Symbol.dispose) CompressedFheUint80.prototype[Symbol.dispose] = CompressedFh
10271
10179
 
10272
10180
  export class CompressedFheUint88 {
10273
10181
  static __wrap(ptr) {
10274
- ptr = ptr >>> 0;
10275
10182
  const obj = Object.create(CompressedFheUint88.prototype);
10276
10183
  obj.__wbg_ptr = ptr;
10277
10184
  CompressedFheUint88Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -10367,7 +10274,6 @@ if (Symbol.dispose) CompressedFheUint88.prototype[Symbol.dispose] = CompressedFh
10367
10274
 
10368
10275
  export class CompressedFheUint96 {
10369
10276
  static __wrap(ptr) {
10370
- ptr = ptr >>> 0;
10371
10277
  const obj = Object.create(CompressedFheUint96.prototype);
10372
10278
  obj.__wbg_ptr = ptr;
10373
10279
  CompressedFheUint96Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -10463,7 +10369,6 @@ if (Symbol.dispose) CompressedFheUint96.prototype[Symbol.dispose] = CompressedFh
10463
10369
 
10464
10370
  export class FheBool {
10465
10371
  static __wrap(ptr) {
10466
- ptr = ptr >>> 0;
10467
10372
  const obj = Object.create(FheBool.prototype);
10468
10373
  obj.__wbg_ptr = ptr;
10469
10374
  FheBoolFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -10587,7 +10492,6 @@ if (Symbol.dispose) FheBool.prototype[Symbol.dispose] = FheBool.prototype.free;
10587
10492
 
10588
10493
  export class FheInt10 {
10589
10494
  static __wrap(ptr) {
10590
- ptr = ptr >>> 0;
10591
10495
  const obj = Object.create(FheInt10.prototype);
10592
10496
  obj.__wbg_ptr = ptr;
10593
10497
  FheInt10Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -10711,7 +10615,6 @@ if (Symbol.dispose) FheInt10.prototype[Symbol.dispose] = FheInt10.prototype.free
10711
10615
 
10712
10616
  export class FheInt1024 {
10713
10617
  static __wrap(ptr) {
10714
- ptr = ptr >>> 0;
10715
10618
  const obj = Object.create(FheInt1024.prototype);
10716
10619
  obj.__wbg_ptr = ptr;
10717
10620
  FheInt1024Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -10835,7 +10738,6 @@ if (Symbol.dispose) FheInt1024.prototype[Symbol.dispose] = FheInt1024.prototype.
10835
10738
 
10836
10739
  export class FheInt104 {
10837
10740
  static __wrap(ptr) {
10838
- ptr = ptr >>> 0;
10839
10741
  const obj = Object.create(FheInt104.prototype);
10840
10742
  obj.__wbg_ptr = ptr;
10841
10743
  FheInt104Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -10959,7 +10861,6 @@ if (Symbol.dispose) FheInt104.prototype[Symbol.dispose] = FheInt104.prototype.fr
10959
10861
 
10960
10862
  export class FheInt112 {
10961
10863
  static __wrap(ptr) {
10962
- ptr = ptr >>> 0;
10963
10864
  const obj = Object.create(FheInt112.prototype);
10964
10865
  obj.__wbg_ptr = ptr;
10965
10866
  FheInt112Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -11083,7 +10984,6 @@ if (Symbol.dispose) FheInt112.prototype[Symbol.dispose] = FheInt112.prototype.fr
11083
10984
 
11084
10985
  export class FheInt12 {
11085
10986
  static __wrap(ptr) {
11086
- ptr = ptr >>> 0;
11087
10987
  const obj = Object.create(FheInt12.prototype);
11088
10988
  obj.__wbg_ptr = ptr;
11089
10989
  FheInt12Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -11207,7 +11107,6 @@ if (Symbol.dispose) FheInt12.prototype[Symbol.dispose] = FheInt12.prototype.free
11207
11107
 
11208
11108
  export class FheInt120 {
11209
11109
  static __wrap(ptr) {
11210
- ptr = ptr >>> 0;
11211
11110
  const obj = Object.create(FheInt120.prototype);
11212
11111
  obj.__wbg_ptr = ptr;
11213
11112
  FheInt120Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -11331,7 +11230,6 @@ if (Symbol.dispose) FheInt120.prototype[Symbol.dispose] = FheInt120.prototype.fr
11331
11230
 
11332
11231
  export class FheInt128 {
11333
11232
  static __wrap(ptr) {
11334
- ptr = ptr >>> 0;
11335
11233
  const obj = Object.create(FheInt128.prototype);
11336
11234
  obj.__wbg_ptr = ptr;
11337
11235
  FheInt128Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -11455,7 +11353,6 @@ if (Symbol.dispose) FheInt128.prototype[Symbol.dispose] = FheInt128.prototype.fr
11455
11353
 
11456
11354
  export class FheInt136 {
11457
11355
  static __wrap(ptr) {
11458
- ptr = ptr >>> 0;
11459
11356
  const obj = Object.create(FheInt136.prototype);
11460
11357
  obj.__wbg_ptr = ptr;
11461
11358
  FheInt136Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -11579,7 +11476,6 @@ if (Symbol.dispose) FheInt136.prototype[Symbol.dispose] = FheInt136.prototype.fr
11579
11476
 
11580
11477
  export class FheInt14 {
11581
11478
  static __wrap(ptr) {
11582
- ptr = ptr >>> 0;
11583
11479
  const obj = Object.create(FheInt14.prototype);
11584
11480
  obj.__wbg_ptr = ptr;
11585
11481
  FheInt14Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -11703,7 +11599,6 @@ if (Symbol.dispose) FheInt14.prototype[Symbol.dispose] = FheInt14.prototype.free
11703
11599
 
11704
11600
  export class FheInt144 {
11705
11601
  static __wrap(ptr) {
11706
- ptr = ptr >>> 0;
11707
11602
  const obj = Object.create(FheInt144.prototype);
11708
11603
  obj.__wbg_ptr = ptr;
11709
11604
  FheInt144Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -11827,7 +11722,6 @@ if (Symbol.dispose) FheInt144.prototype[Symbol.dispose] = FheInt144.prototype.fr
11827
11722
 
11828
11723
  export class FheInt152 {
11829
11724
  static __wrap(ptr) {
11830
- ptr = ptr >>> 0;
11831
11725
  const obj = Object.create(FheInt152.prototype);
11832
11726
  obj.__wbg_ptr = ptr;
11833
11727
  FheInt152Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -11951,7 +11845,6 @@ if (Symbol.dispose) FheInt152.prototype[Symbol.dispose] = FheInt152.prototype.fr
11951
11845
 
11952
11846
  export class FheInt16 {
11953
11847
  static __wrap(ptr) {
11954
- ptr = ptr >>> 0;
11955
11848
  const obj = Object.create(FheInt16.prototype);
11956
11849
  obj.__wbg_ptr = ptr;
11957
11850
  FheInt16Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -12075,7 +11968,6 @@ if (Symbol.dispose) FheInt16.prototype[Symbol.dispose] = FheInt16.prototype.free
12075
11968
 
12076
11969
  export class FheInt160 {
12077
11970
  static __wrap(ptr) {
12078
- ptr = ptr >>> 0;
12079
11971
  const obj = Object.create(FheInt160.prototype);
12080
11972
  obj.__wbg_ptr = ptr;
12081
11973
  FheInt160Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -12199,7 +12091,6 @@ if (Symbol.dispose) FheInt160.prototype[Symbol.dispose] = FheInt160.prototype.fr
12199
12091
 
12200
12092
  export class FheInt168 {
12201
12093
  static __wrap(ptr) {
12202
- ptr = ptr >>> 0;
12203
12094
  const obj = Object.create(FheInt168.prototype);
12204
12095
  obj.__wbg_ptr = ptr;
12205
12096
  FheInt168Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -12323,7 +12214,6 @@ if (Symbol.dispose) FheInt168.prototype[Symbol.dispose] = FheInt168.prototype.fr
12323
12214
 
12324
12215
  export class FheInt176 {
12325
12216
  static __wrap(ptr) {
12326
- ptr = ptr >>> 0;
12327
12217
  const obj = Object.create(FheInt176.prototype);
12328
12218
  obj.__wbg_ptr = ptr;
12329
12219
  FheInt176Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -12447,7 +12337,6 @@ if (Symbol.dispose) FheInt176.prototype[Symbol.dispose] = FheInt176.prototype.fr
12447
12337
 
12448
12338
  export class FheInt184 {
12449
12339
  static __wrap(ptr) {
12450
- ptr = ptr >>> 0;
12451
12340
  const obj = Object.create(FheInt184.prototype);
12452
12341
  obj.__wbg_ptr = ptr;
12453
12342
  FheInt184Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -12571,7 +12460,6 @@ if (Symbol.dispose) FheInt184.prototype[Symbol.dispose] = FheInt184.prototype.fr
12571
12460
 
12572
12461
  export class FheInt192 {
12573
12462
  static __wrap(ptr) {
12574
- ptr = ptr >>> 0;
12575
12463
  const obj = Object.create(FheInt192.prototype);
12576
12464
  obj.__wbg_ptr = ptr;
12577
12465
  FheInt192Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -12695,7 +12583,6 @@ if (Symbol.dispose) FheInt192.prototype[Symbol.dispose] = FheInt192.prototype.fr
12695
12583
 
12696
12584
  export class FheInt2 {
12697
12585
  static __wrap(ptr) {
12698
- ptr = ptr >>> 0;
12699
12586
  const obj = Object.create(FheInt2.prototype);
12700
12587
  obj.__wbg_ptr = ptr;
12701
12588
  FheInt2Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -12819,7 +12706,6 @@ if (Symbol.dispose) FheInt2.prototype[Symbol.dispose] = FheInt2.prototype.free;
12819
12706
 
12820
12707
  export class FheInt200 {
12821
12708
  static __wrap(ptr) {
12822
- ptr = ptr >>> 0;
12823
12709
  const obj = Object.create(FheInt200.prototype);
12824
12710
  obj.__wbg_ptr = ptr;
12825
12711
  FheInt200Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -12943,7 +12829,6 @@ if (Symbol.dispose) FheInt200.prototype[Symbol.dispose] = FheInt200.prototype.fr
12943
12829
 
12944
12830
  export class FheInt2048 {
12945
12831
  static __wrap(ptr) {
12946
- ptr = ptr >>> 0;
12947
12832
  const obj = Object.create(FheInt2048.prototype);
12948
12833
  obj.__wbg_ptr = ptr;
12949
12834
  FheInt2048Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -13067,7 +12952,6 @@ if (Symbol.dispose) FheInt2048.prototype[Symbol.dispose] = FheInt2048.prototype.
13067
12952
 
13068
12953
  export class FheInt208 {
13069
12954
  static __wrap(ptr) {
13070
- ptr = ptr >>> 0;
13071
12955
  const obj = Object.create(FheInt208.prototype);
13072
12956
  obj.__wbg_ptr = ptr;
13073
12957
  FheInt208Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -13191,7 +13075,6 @@ if (Symbol.dispose) FheInt208.prototype[Symbol.dispose] = FheInt208.prototype.fr
13191
13075
 
13192
13076
  export class FheInt216 {
13193
13077
  static __wrap(ptr) {
13194
- ptr = ptr >>> 0;
13195
13078
  const obj = Object.create(FheInt216.prototype);
13196
13079
  obj.__wbg_ptr = ptr;
13197
13080
  FheInt216Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -13315,7 +13198,6 @@ if (Symbol.dispose) FheInt216.prototype[Symbol.dispose] = FheInt216.prototype.fr
13315
13198
 
13316
13199
  export class FheInt224 {
13317
13200
  static __wrap(ptr) {
13318
- ptr = ptr >>> 0;
13319
13201
  const obj = Object.create(FheInt224.prototype);
13320
13202
  obj.__wbg_ptr = ptr;
13321
13203
  FheInt224Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -13439,7 +13321,6 @@ if (Symbol.dispose) FheInt224.prototype[Symbol.dispose] = FheInt224.prototype.fr
13439
13321
 
13440
13322
  export class FheInt232 {
13441
13323
  static __wrap(ptr) {
13442
- ptr = ptr >>> 0;
13443
13324
  const obj = Object.create(FheInt232.prototype);
13444
13325
  obj.__wbg_ptr = ptr;
13445
13326
  FheInt232Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -13563,7 +13444,6 @@ if (Symbol.dispose) FheInt232.prototype[Symbol.dispose] = FheInt232.prototype.fr
13563
13444
 
13564
13445
  export class FheInt24 {
13565
13446
  static __wrap(ptr) {
13566
- ptr = ptr >>> 0;
13567
13447
  const obj = Object.create(FheInt24.prototype);
13568
13448
  obj.__wbg_ptr = ptr;
13569
13449
  FheInt24Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -13687,7 +13567,6 @@ if (Symbol.dispose) FheInt24.prototype[Symbol.dispose] = FheInt24.prototype.free
13687
13567
 
13688
13568
  export class FheInt240 {
13689
13569
  static __wrap(ptr) {
13690
- ptr = ptr >>> 0;
13691
13570
  const obj = Object.create(FheInt240.prototype);
13692
13571
  obj.__wbg_ptr = ptr;
13693
13572
  FheInt240Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -13811,7 +13690,6 @@ if (Symbol.dispose) FheInt240.prototype[Symbol.dispose] = FheInt240.prototype.fr
13811
13690
 
13812
13691
  export class FheInt248 {
13813
13692
  static __wrap(ptr) {
13814
- ptr = ptr >>> 0;
13815
13693
  const obj = Object.create(FheInt248.prototype);
13816
13694
  obj.__wbg_ptr = ptr;
13817
13695
  FheInt248Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -13935,7 +13813,6 @@ if (Symbol.dispose) FheInt248.prototype[Symbol.dispose] = FheInt248.prototype.fr
13935
13813
 
13936
13814
  export class FheInt256 {
13937
13815
  static __wrap(ptr) {
13938
- ptr = ptr >>> 0;
13939
13816
  const obj = Object.create(FheInt256.prototype);
13940
13817
  obj.__wbg_ptr = ptr;
13941
13818
  FheInt256Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -14059,7 +13936,6 @@ if (Symbol.dispose) FheInt256.prototype[Symbol.dispose] = FheInt256.prototype.fr
14059
13936
 
14060
13937
  export class FheInt32 {
14061
13938
  static __wrap(ptr) {
14062
- ptr = ptr >>> 0;
14063
13939
  const obj = Object.create(FheInt32.prototype);
14064
13940
  obj.__wbg_ptr = ptr;
14065
13941
  FheInt32Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -14183,7 +14059,6 @@ if (Symbol.dispose) FheInt32.prototype[Symbol.dispose] = FheInt32.prototype.free
14183
14059
 
14184
14060
  export class FheInt4 {
14185
14061
  static __wrap(ptr) {
14186
- ptr = ptr >>> 0;
14187
14062
  const obj = Object.create(FheInt4.prototype);
14188
14063
  obj.__wbg_ptr = ptr;
14189
14064
  FheInt4Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -14307,7 +14182,6 @@ if (Symbol.dispose) FheInt4.prototype[Symbol.dispose] = FheInt4.prototype.free;
14307
14182
 
14308
14183
  export class FheInt40 {
14309
14184
  static __wrap(ptr) {
14310
- ptr = ptr >>> 0;
14311
14185
  const obj = Object.create(FheInt40.prototype);
14312
14186
  obj.__wbg_ptr = ptr;
14313
14187
  FheInt40Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -14431,7 +14305,6 @@ if (Symbol.dispose) FheInt40.prototype[Symbol.dispose] = FheInt40.prototype.free
14431
14305
 
14432
14306
  export class FheInt48 {
14433
14307
  static __wrap(ptr) {
14434
- ptr = ptr >>> 0;
14435
14308
  const obj = Object.create(FheInt48.prototype);
14436
14309
  obj.__wbg_ptr = ptr;
14437
14310
  FheInt48Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -14555,7 +14428,6 @@ if (Symbol.dispose) FheInt48.prototype[Symbol.dispose] = FheInt48.prototype.free
14555
14428
 
14556
14429
  export class FheInt512 {
14557
14430
  static __wrap(ptr) {
14558
- ptr = ptr >>> 0;
14559
14431
  const obj = Object.create(FheInt512.prototype);
14560
14432
  obj.__wbg_ptr = ptr;
14561
14433
  FheInt512Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -14679,7 +14551,6 @@ if (Symbol.dispose) FheInt512.prototype[Symbol.dispose] = FheInt512.prototype.fr
14679
14551
 
14680
14552
  export class FheInt56 {
14681
14553
  static __wrap(ptr) {
14682
- ptr = ptr >>> 0;
14683
14554
  const obj = Object.create(FheInt56.prototype);
14684
14555
  obj.__wbg_ptr = ptr;
14685
14556
  FheInt56Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -14803,7 +14674,6 @@ if (Symbol.dispose) FheInt56.prototype[Symbol.dispose] = FheInt56.prototype.free
14803
14674
 
14804
14675
  export class FheInt6 {
14805
14676
  static __wrap(ptr) {
14806
- ptr = ptr >>> 0;
14807
14677
  const obj = Object.create(FheInt6.prototype);
14808
14678
  obj.__wbg_ptr = ptr;
14809
14679
  FheInt6Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -14927,7 +14797,6 @@ if (Symbol.dispose) FheInt6.prototype[Symbol.dispose] = FheInt6.prototype.free;
14927
14797
 
14928
14798
  export class FheInt64 {
14929
14799
  static __wrap(ptr) {
14930
- ptr = ptr >>> 0;
14931
14800
  const obj = Object.create(FheInt64.prototype);
14932
14801
  obj.__wbg_ptr = ptr;
14933
14802
  FheInt64Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -15051,7 +14920,6 @@ if (Symbol.dispose) FheInt64.prototype[Symbol.dispose] = FheInt64.prototype.free
15051
14920
 
15052
14921
  export class FheInt72 {
15053
14922
  static __wrap(ptr) {
15054
- ptr = ptr >>> 0;
15055
14923
  const obj = Object.create(FheInt72.prototype);
15056
14924
  obj.__wbg_ptr = ptr;
15057
14925
  FheInt72Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -15175,7 +15043,6 @@ if (Symbol.dispose) FheInt72.prototype[Symbol.dispose] = FheInt72.prototype.free
15175
15043
 
15176
15044
  export class FheInt8 {
15177
15045
  static __wrap(ptr) {
15178
- ptr = ptr >>> 0;
15179
15046
  const obj = Object.create(FheInt8.prototype);
15180
15047
  obj.__wbg_ptr = ptr;
15181
15048
  FheInt8Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -15299,7 +15166,6 @@ if (Symbol.dispose) FheInt8.prototype[Symbol.dispose] = FheInt8.prototype.free;
15299
15166
 
15300
15167
  export class FheInt80 {
15301
15168
  static __wrap(ptr) {
15302
- ptr = ptr >>> 0;
15303
15169
  const obj = Object.create(FheInt80.prototype);
15304
15170
  obj.__wbg_ptr = ptr;
15305
15171
  FheInt80Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -15423,7 +15289,6 @@ if (Symbol.dispose) FheInt80.prototype[Symbol.dispose] = FheInt80.prototype.free
15423
15289
 
15424
15290
  export class FheInt88 {
15425
15291
  static __wrap(ptr) {
15426
- ptr = ptr >>> 0;
15427
15292
  const obj = Object.create(FheInt88.prototype);
15428
15293
  obj.__wbg_ptr = ptr;
15429
15294
  FheInt88Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -15547,7 +15412,6 @@ if (Symbol.dispose) FheInt88.prototype[Symbol.dispose] = FheInt88.prototype.free
15547
15412
 
15548
15413
  export class FheInt96 {
15549
15414
  static __wrap(ptr) {
15550
- ptr = ptr >>> 0;
15551
15415
  const obj = Object.create(FheInt96.prototype);
15552
15416
  obj.__wbg_ptr = ptr;
15553
15417
  FheInt96Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -15761,7 +15625,6 @@ export const FheTypes = Object.freeze({
15761
15625
 
15762
15626
  export class FheUint10 {
15763
15627
  static __wrap(ptr) {
15764
- ptr = ptr >>> 0;
15765
15628
  const obj = Object.create(FheUint10.prototype);
15766
15629
  obj.__wbg_ptr = ptr;
15767
15630
  FheUint10Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -15885,7 +15748,6 @@ if (Symbol.dispose) FheUint10.prototype[Symbol.dispose] = FheUint10.prototype.fr
15885
15748
 
15886
15749
  export class FheUint1024 {
15887
15750
  static __wrap(ptr) {
15888
- ptr = ptr >>> 0;
15889
15751
  const obj = Object.create(FheUint1024.prototype);
15890
15752
  obj.__wbg_ptr = ptr;
15891
15753
  FheUint1024Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -16009,7 +15871,6 @@ if (Symbol.dispose) FheUint1024.prototype[Symbol.dispose] = FheUint1024.prototyp
16009
15871
 
16010
15872
  export class FheUint104 {
16011
15873
  static __wrap(ptr) {
16012
- ptr = ptr >>> 0;
16013
15874
  const obj = Object.create(FheUint104.prototype);
16014
15875
  obj.__wbg_ptr = ptr;
16015
15876
  FheUint104Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -16133,7 +15994,6 @@ if (Symbol.dispose) FheUint104.prototype[Symbol.dispose] = FheUint104.prototype.
16133
15994
 
16134
15995
  export class FheUint112 {
16135
15996
  static __wrap(ptr) {
16136
- ptr = ptr >>> 0;
16137
15997
  const obj = Object.create(FheUint112.prototype);
16138
15998
  obj.__wbg_ptr = ptr;
16139
15999
  FheUint112Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -16257,7 +16117,6 @@ if (Symbol.dispose) FheUint112.prototype[Symbol.dispose] = FheUint112.prototype.
16257
16117
 
16258
16118
  export class FheUint12 {
16259
16119
  static __wrap(ptr) {
16260
- ptr = ptr >>> 0;
16261
16120
  const obj = Object.create(FheUint12.prototype);
16262
16121
  obj.__wbg_ptr = ptr;
16263
16122
  FheUint12Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -16381,7 +16240,6 @@ if (Symbol.dispose) FheUint12.prototype[Symbol.dispose] = FheUint12.prototype.fr
16381
16240
 
16382
16241
  export class FheUint120 {
16383
16242
  static __wrap(ptr) {
16384
- ptr = ptr >>> 0;
16385
16243
  const obj = Object.create(FheUint120.prototype);
16386
16244
  obj.__wbg_ptr = ptr;
16387
16245
  FheUint120Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -16505,7 +16363,6 @@ if (Symbol.dispose) FheUint120.prototype[Symbol.dispose] = FheUint120.prototype.
16505
16363
 
16506
16364
  export class FheUint128 {
16507
16365
  static __wrap(ptr) {
16508
- ptr = ptr >>> 0;
16509
16366
  const obj = Object.create(FheUint128.prototype);
16510
16367
  obj.__wbg_ptr = ptr;
16511
16368
  FheUint128Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -16629,7 +16486,6 @@ if (Symbol.dispose) FheUint128.prototype[Symbol.dispose] = FheUint128.prototype.
16629
16486
 
16630
16487
  export class FheUint136 {
16631
16488
  static __wrap(ptr) {
16632
- ptr = ptr >>> 0;
16633
16489
  const obj = Object.create(FheUint136.prototype);
16634
16490
  obj.__wbg_ptr = ptr;
16635
16491
  FheUint136Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -16753,7 +16609,6 @@ if (Symbol.dispose) FheUint136.prototype[Symbol.dispose] = FheUint136.prototype.
16753
16609
 
16754
16610
  export class FheUint14 {
16755
16611
  static __wrap(ptr) {
16756
- ptr = ptr >>> 0;
16757
16612
  const obj = Object.create(FheUint14.prototype);
16758
16613
  obj.__wbg_ptr = ptr;
16759
16614
  FheUint14Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -16877,7 +16732,6 @@ if (Symbol.dispose) FheUint14.prototype[Symbol.dispose] = FheUint14.prototype.fr
16877
16732
 
16878
16733
  export class FheUint144 {
16879
16734
  static __wrap(ptr) {
16880
- ptr = ptr >>> 0;
16881
16735
  const obj = Object.create(FheUint144.prototype);
16882
16736
  obj.__wbg_ptr = ptr;
16883
16737
  FheUint144Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -17001,7 +16855,6 @@ if (Symbol.dispose) FheUint144.prototype[Symbol.dispose] = FheUint144.prototype.
17001
16855
 
17002
16856
  export class FheUint152 {
17003
16857
  static __wrap(ptr) {
17004
- ptr = ptr >>> 0;
17005
16858
  const obj = Object.create(FheUint152.prototype);
17006
16859
  obj.__wbg_ptr = ptr;
17007
16860
  FheUint152Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -17125,7 +16978,6 @@ if (Symbol.dispose) FheUint152.prototype[Symbol.dispose] = FheUint152.prototype.
17125
16978
 
17126
16979
  export class FheUint16 {
17127
16980
  static __wrap(ptr) {
17128
- ptr = ptr >>> 0;
17129
16981
  const obj = Object.create(FheUint16.prototype);
17130
16982
  obj.__wbg_ptr = ptr;
17131
16983
  FheUint16Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -17249,7 +17101,6 @@ if (Symbol.dispose) FheUint16.prototype[Symbol.dispose] = FheUint16.prototype.fr
17249
17101
 
17250
17102
  export class FheUint160 {
17251
17103
  static __wrap(ptr) {
17252
- ptr = ptr >>> 0;
17253
17104
  const obj = Object.create(FheUint160.prototype);
17254
17105
  obj.__wbg_ptr = ptr;
17255
17106
  FheUint160Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -17373,7 +17224,6 @@ if (Symbol.dispose) FheUint160.prototype[Symbol.dispose] = FheUint160.prototype.
17373
17224
 
17374
17225
  export class FheUint168 {
17375
17226
  static __wrap(ptr) {
17376
- ptr = ptr >>> 0;
17377
17227
  const obj = Object.create(FheUint168.prototype);
17378
17228
  obj.__wbg_ptr = ptr;
17379
17229
  FheUint168Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -17497,7 +17347,6 @@ if (Symbol.dispose) FheUint168.prototype[Symbol.dispose] = FheUint168.prototype.
17497
17347
 
17498
17348
  export class FheUint176 {
17499
17349
  static __wrap(ptr) {
17500
- ptr = ptr >>> 0;
17501
17350
  const obj = Object.create(FheUint176.prototype);
17502
17351
  obj.__wbg_ptr = ptr;
17503
17352
  FheUint176Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -17621,7 +17470,6 @@ if (Symbol.dispose) FheUint176.prototype[Symbol.dispose] = FheUint176.prototype.
17621
17470
 
17622
17471
  export class FheUint184 {
17623
17472
  static __wrap(ptr) {
17624
- ptr = ptr >>> 0;
17625
17473
  const obj = Object.create(FheUint184.prototype);
17626
17474
  obj.__wbg_ptr = ptr;
17627
17475
  FheUint184Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -17745,7 +17593,6 @@ if (Symbol.dispose) FheUint184.prototype[Symbol.dispose] = FheUint184.prototype.
17745
17593
 
17746
17594
  export class FheUint192 {
17747
17595
  static __wrap(ptr) {
17748
- ptr = ptr >>> 0;
17749
17596
  const obj = Object.create(FheUint192.prototype);
17750
17597
  obj.__wbg_ptr = ptr;
17751
17598
  FheUint192Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -17869,7 +17716,6 @@ if (Symbol.dispose) FheUint192.prototype[Symbol.dispose] = FheUint192.prototype.
17869
17716
 
17870
17717
  export class FheUint2 {
17871
17718
  static __wrap(ptr) {
17872
- ptr = ptr >>> 0;
17873
17719
  const obj = Object.create(FheUint2.prototype);
17874
17720
  obj.__wbg_ptr = ptr;
17875
17721
  FheUint2Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -17993,7 +17839,6 @@ if (Symbol.dispose) FheUint2.prototype[Symbol.dispose] = FheUint2.prototype.free
17993
17839
 
17994
17840
  export class FheUint200 {
17995
17841
  static __wrap(ptr) {
17996
- ptr = ptr >>> 0;
17997
17842
  const obj = Object.create(FheUint200.prototype);
17998
17843
  obj.__wbg_ptr = ptr;
17999
17844
  FheUint200Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -18117,7 +17962,6 @@ if (Symbol.dispose) FheUint200.prototype[Symbol.dispose] = FheUint200.prototype.
18117
17962
 
18118
17963
  export class FheUint2048 {
18119
17964
  static __wrap(ptr) {
18120
- ptr = ptr >>> 0;
18121
17965
  const obj = Object.create(FheUint2048.prototype);
18122
17966
  obj.__wbg_ptr = ptr;
18123
17967
  FheUint2048Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -18241,7 +18085,6 @@ if (Symbol.dispose) FheUint2048.prototype[Symbol.dispose] = FheUint2048.prototyp
18241
18085
 
18242
18086
  export class FheUint208 {
18243
18087
  static __wrap(ptr) {
18244
- ptr = ptr >>> 0;
18245
18088
  const obj = Object.create(FheUint208.prototype);
18246
18089
  obj.__wbg_ptr = ptr;
18247
18090
  FheUint208Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -18365,7 +18208,6 @@ if (Symbol.dispose) FheUint208.prototype[Symbol.dispose] = FheUint208.prototype.
18365
18208
 
18366
18209
  export class FheUint216 {
18367
18210
  static __wrap(ptr) {
18368
- ptr = ptr >>> 0;
18369
18211
  const obj = Object.create(FheUint216.prototype);
18370
18212
  obj.__wbg_ptr = ptr;
18371
18213
  FheUint216Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -18489,7 +18331,6 @@ if (Symbol.dispose) FheUint216.prototype[Symbol.dispose] = FheUint216.prototype.
18489
18331
 
18490
18332
  export class FheUint224 {
18491
18333
  static __wrap(ptr) {
18492
- ptr = ptr >>> 0;
18493
18334
  const obj = Object.create(FheUint224.prototype);
18494
18335
  obj.__wbg_ptr = ptr;
18495
18336
  FheUint224Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -18613,7 +18454,6 @@ if (Symbol.dispose) FheUint224.prototype[Symbol.dispose] = FheUint224.prototype.
18613
18454
 
18614
18455
  export class FheUint232 {
18615
18456
  static __wrap(ptr) {
18616
- ptr = ptr >>> 0;
18617
18457
  const obj = Object.create(FheUint232.prototype);
18618
18458
  obj.__wbg_ptr = ptr;
18619
18459
  FheUint232Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -18737,7 +18577,6 @@ if (Symbol.dispose) FheUint232.prototype[Symbol.dispose] = FheUint232.prototype.
18737
18577
 
18738
18578
  export class FheUint24 {
18739
18579
  static __wrap(ptr) {
18740
- ptr = ptr >>> 0;
18741
18580
  const obj = Object.create(FheUint24.prototype);
18742
18581
  obj.__wbg_ptr = ptr;
18743
18582
  FheUint24Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -18861,7 +18700,6 @@ if (Symbol.dispose) FheUint24.prototype[Symbol.dispose] = FheUint24.prototype.fr
18861
18700
 
18862
18701
  export class FheUint240 {
18863
18702
  static __wrap(ptr) {
18864
- ptr = ptr >>> 0;
18865
18703
  const obj = Object.create(FheUint240.prototype);
18866
18704
  obj.__wbg_ptr = ptr;
18867
18705
  FheUint240Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -18985,7 +18823,6 @@ if (Symbol.dispose) FheUint240.prototype[Symbol.dispose] = FheUint240.prototype.
18985
18823
 
18986
18824
  export class FheUint248 {
18987
18825
  static __wrap(ptr) {
18988
- ptr = ptr >>> 0;
18989
18826
  const obj = Object.create(FheUint248.prototype);
18990
18827
  obj.__wbg_ptr = ptr;
18991
18828
  FheUint248Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -19109,7 +18946,6 @@ if (Symbol.dispose) FheUint248.prototype[Symbol.dispose] = FheUint248.prototype.
19109
18946
 
19110
18947
  export class FheUint256 {
19111
18948
  static __wrap(ptr) {
19112
- ptr = ptr >>> 0;
19113
18949
  const obj = Object.create(FheUint256.prototype);
19114
18950
  obj.__wbg_ptr = ptr;
19115
18951
  FheUint256Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -19233,7 +19069,6 @@ if (Symbol.dispose) FheUint256.prototype[Symbol.dispose] = FheUint256.prototype.
19233
19069
 
19234
19070
  export class FheUint32 {
19235
19071
  static __wrap(ptr) {
19236
- ptr = ptr >>> 0;
19237
19072
  const obj = Object.create(FheUint32.prototype);
19238
19073
  obj.__wbg_ptr = ptr;
19239
19074
  FheUint32Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -19357,7 +19192,6 @@ if (Symbol.dispose) FheUint32.prototype[Symbol.dispose] = FheUint32.prototype.fr
19357
19192
 
19358
19193
  export class FheUint4 {
19359
19194
  static __wrap(ptr) {
19360
- ptr = ptr >>> 0;
19361
19195
  const obj = Object.create(FheUint4.prototype);
19362
19196
  obj.__wbg_ptr = ptr;
19363
19197
  FheUint4Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -19481,7 +19315,6 @@ if (Symbol.dispose) FheUint4.prototype[Symbol.dispose] = FheUint4.prototype.free
19481
19315
 
19482
19316
  export class FheUint40 {
19483
19317
  static __wrap(ptr) {
19484
- ptr = ptr >>> 0;
19485
19318
  const obj = Object.create(FheUint40.prototype);
19486
19319
  obj.__wbg_ptr = ptr;
19487
19320
  FheUint40Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -19605,7 +19438,6 @@ if (Symbol.dispose) FheUint40.prototype[Symbol.dispose] = FheUint40.prototype.fr
19605
19438
 
19606
19439
  export class FheUint48 {
19607
19440
  static __wrap(ptr) {
19608
- ptr = ptr >>> 0;
19609
19441
  const obj = Object.create(FheUint48.prototype);
19610
19442
  obj.__wbg_ptr = ptr;
19611
19443
  FheUint48Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -19729,7 +19561,6 @@ if (Symbol.dispose) FheUint48.prototype[Symbol.dispose] = FheUint48.prototype.fr
19729
19561
 
19730
19562
  export class FheUint512 {
19731
19563
  static __wrap(ptr) {
19732
- ptr = ptr >>> 0;
19733
19564
  const obj = Object.create(FheUint512.prototype);
19734
19565
  obj.__wbg_ptr = ptr;
19735
19566
  FheUint512Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -19853,7 +19684,6 @@ if (Symbol.dispose) FheUint512.prototype[Symbol.dispose] = FheUint512.prototype.
19853
19684
 
19854
19685
  export class FheUint56 {
19855
19686
  static __wrap(ptr) {
19856
- ptr = ptr >>> 0;
19857
19687
  const obj = Object.create(FheUint56.prototype);
19858
19688
  obj.__wbg_ptr = ptr;
19859
19689
  FheUint56Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -19977,7 +19807,6 @@ if (Symbol.dispose) FheUint56.prototype[Symbol.dispose] = FheUint56.prototype.fr
19977
19807
 
19978
19808
  export class FheUint6 {
19979
19809
  static __wrap(ptr) {
19980
- ptr = ptr >>> 0;
19981
19810
  const obj = Object.create(FheUint6.prototype);
19982
19811
  obj.__wbg_ptr = ptr;
19983
19812
  FheUint6Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -20101,7 +19930,6 @@ if (Symbol.dispose) FheUint6.prototype[Symbol.dispose] = FheUint6.prototype.free
20101
19930
 
20102
19931
  export class FheUint64 {
20103
19932
  static __wrap(ptr) {
20104
- ptr = ptr >>> 0;
20105
19933
  const obj = Object.create(FheUint64.prototype);
20106
19934
  obj.__wbg_ptr = ptr;
20107
19935
  FheUint64Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -20225,7 +20053,6 @@ if (Symbol.dispose) FheUint64.prototype[Symbol.dispose] = FheUint64.prototype.fr
20225
20053
 
20226
20054
  export class FheUint72 {
20227
20055
  static __wrap(ptr) {
20228
- ptr = ptr >>> 0;
20229
20056
  const obj = Object.create(FheUint72.prototype);
20230
20057
  obj.__wbg_ptr = ptr;
20231
20058
  FheUint72Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -20349,7 +20176,6 @@ if (Symbol.dispose) FheUint72.prototype[Symbol.dispose] = FheUint72.prototype.fr
20349
20176
 
20350
20177
  export class FheUint8 {
20351
20178
  static __wrap(ptr) {
20352
- ptr = ptr >>> 0;
20353
20179
  const obj = Object.create(FheUint8.prototype);
20354
20180
  obj.__wbg_ptr = ptr;
20355
20181
  FheUint8Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -20473,7 +20299,6 @@ if (Symbol.dispose) FheUint8.prototype[Symbol.dispose] = FheUint8.prototype.free
20473
20299
 
20474
20300
  export class FheUint80 {
20475
20301
  static __wrap(ptr) {
20476
- ptr = ptr >>> 0;
20477
20302
  const obj = Object.create(FheUint80.prototype);
20478
20303
  obj.__wbg_ptr = ptr;
20479
20304
  FheUint80Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -20597,7 +20422,6 @@ if (Symbol.dispose) FheUint80.prototype[Symbol.dispose] = FheUint80.prototype.fr
20597
20422
 
20598
20423
  export class FheUint88 {
20599
20424
  static __wrap(ptr) {
20600
- ptr = ptr >>> 0;
20601
20425
  const obj = Object.create(FheUint88.prototype);
20602
20426
  obj.__wbg_ptr = ptr;
20603
20427
  FheUint88Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -20721,7 +20545,6 @@ if (Symbol.dispose) FheUint88.prototype[Symbol.dispose] = FheUint88.prototype.fr
20721
20545
 
20722
20546
  export class FheUint96 {
20723
20547
  static __wrap(ptr) {
20724
- ptr = ptr >>> 0;
20725
20548
  const obj = Object.create(FheUint96.prototype);
20726
20549
  obj.__wbg_ptr = ptr;
20727
20550
  FheUint96Finalization.register(obj, obj.__wbg_ptr, obj);
@@ -20845,7 +20668,6 @@ if (Symbol.dispose) FheUint96.prototype[Symbol.dispose] = FheUint96.prototype.fr
20845
20668
 
20846
20669
  export class ProvenCompactCiphertextList {
20847
20670
  static __wrap(ptr) {
20848
- ptr = ptr >>> 0;
20849
20671
  const obj = Object.create(ProvenCompactCiphertextList.prototype);
20850
20672
  obj.__wbg_ptr = ptr;
20851
20673
  ProvenCompactCiphertextListFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -21314,7 +21136,6 @@ if (Symbol.dispose) Shortint.prototype[Symbol.dispose] = Shortint.prototype.free
21314
21136
 
21315
21137
  export class ShortintCiphertext {
21316
21138
  static __wrap(ptr) {
21317
- ptr = ptr >>> 0;
21318
21139
  const obj = Object.create(ShortintCiphertext.prototype);
21319
21140
  obj.__wbg_ptr = ptr;
21320
21141
  ShortintCiphertextFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -21335,7 +21156,6 @@ if (Symbol.dispose) ShortintCiphertext.prototype[Symbol.dispose] = ShortintCiphe
21335
21156
 
21336
21157
  export class ShortintClientKey {
21337
21158
  static __wrap(ptr) {
21338
- ptr = ptr >>> 0;
21339
21159
  const obj = Object.create(ShortintClientKey.prototype);
21340
21160
  obj.__wbg_ptr = ptr;
21341
21161
  ShortintClientKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -21356,7 +21176,6 @@ if (Symbol.dispose) ShortintClientKey.prototype[Symbol.dispose] = ShortintClient
21356
21176
 
21357
21177
  export class ShortintCompactPublicKeyEncryptionParameters {
21358
21178
  static __wrap(ptr) {
21359
- ptr = ptr >>> 0;
21360
21179
  const obj = Object.create(ShortintCompactPublicKeyEncryptionParameters.prototype);
21361
21180
  obj.__wbg_ptr = ptr;
21362
21181
  ShortintCompactPublicKeyEncryptionParametersFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -21377,7 +21196,7 @@ export class ShortintCompactPublicKeyEncryptionParameters {
21377
21196
  */
21378
21197
  constructor(name) {
21379
21198
  const ret = wasm.shortintcompactpublickeyencryptionparameters_new(name);
21380
- this.__wbg_ptr = ret >>> 0;
21199
+ this.__wbg_ptr = ret;
21381
21200
  ShortintCompactPublicKeyEncryptionParametersFinalization.register(this, this.__wbg_ptr, this);
21382
21201
  return this;
21383
21202
  }
@@ -21428,7 +21247,6 @@ export const ShortintCompactPublicKeyEncryptionParametersName = Object.freeze({
21428
21247
 
21429
21248
  export class ShortintCompressedCiphertext {
21430
21249
  static __wrap(ptr) {
21431
- ptr = ptr >>> 0;
21432
21250
  const obj = Object.create(ShortintCompressedCiphertext.prototype);
21433
21251
  obj.__wbg_ptr = ptr;
21434
21252
  ShortintCompressedCiphertextFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -21449,7 +21267,6 @@ if (Symbol.dispose) ShortintCompressedCiphertext.prototype[Symbol.dispose] = Sho
21449
21267
 
21450
21268
  export class ShortintCompressedPublicKey {
21451
21269
  static __wrap(ptr) {
21452
- ptr = ptr >>> 0;
21453
21270
  const obj = Object.create(ShortintCompressedPublicKey.prototype);
21454
21271
  obj.__wbg_ptr = ptr;
21455
21272
  ShortintCompressedPublicKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -21470,7 +21287,6 @@ if (Symbol.dispose) ShortintCompressedPublicKey.prototype[Symbol.dispose] = Shor
21470
21287
 
21471
21288
  export class ShortintCompressedServerKey {
21472
21289
  static __wrap(ptr) {
21473
- ptr = ptr >>> 0;
21474
21290
  const obj = Object.create(ShortintCompressedServerKey.prototype);
21475
21291
  obj.__wbg_ptr = ptr;
21476
21292
  ShortintCompressedServerKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -21499,7 +21315,6 @@ export const ShortintEncryptionKeyChoice = Object.freeze({
21499
21315
 
21500
21316
  export class ShortintNoiseDistribution {
21501
21317
  static __wrap(ptr) {
21502
- ptr = ptr >>> 0;
21503
21318
  const obj = Object.create(ShortintNoiseDistribution.prototype);
21504
21319
  obj.__wbg_ptr = ptr;
21505
21320
  ShortintNoiseDistributionFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -21528,7 +21343,6 @@ export const ShortintPBSOrder = Object.freeze({
21528
21343
 
21529
21344
  export class ShortintParameters {
21530
21345
  static __wrap(ptr) {
21531
- ptr = ptr >>> 0;
21532
21346
  const obj = Object.create(ShortintParameters.prototype);
21533
21347
  obj.__wbg_ptr = ptr;
21534
21348
  ShortintParametersFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -21615,7 +21429,7 @@ export class ShortintParameters {
21615
21429
  if (ret[2]) {
21616
21430
  throw takeFromExternrefTable0(ret[1]);
21617
21431
  }
21618
- this.__wbg_ptr = ret[0] >>> 0;
21432
+ this.__wbg_ptr = ret[0];
21619
21433
  ShortintParametersFinalization.register(this, this.__wbg_ptr, this);
21620
21434
  return this;
21621
21435
  }
@@ -22294,7 +22108,6 @@ export const ShortintParametersName = Object.freeze({
22294
22108
 
22295
22109
  export class ShortintPublicKey {
22296
22110
  static __wrap(ptr) {
22297
- ptr = ptr >>> 0;
22298
22111
  const obj = Object.create(ShortintPublicKey.prototype);
22299
22112
  obj.__wbg_ptr = ptr;
22300
22113
  ShortintPublicKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -22315,7 +22128,6 @@ if (Symbol.dispose) ShortintPublicKey.prototype[Symbol.dispose] = ShortintPublic
22315
22128
 
22316
22129
  export class TfheClientKey {
22317
22130
  static __wrap(ptr) {
22318
- ptr = ptr >>> 0;
22319
22131
  const obj = Object.create(TfheClientKey.prototype);
22320
22132
  obj.__wbg_ptr = ptr;
22321
22133
  TfheClientKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -22413,7 +22225,6 @@ if (Symbol.dispose) TfheClientKey.prototype[Symbol.dispose] = TfheClientKey.prot
22413
22225
 
22414
22226
  export class TfheCompactPublicKey {
22415
22227
  static __wrap(ptr) {
22416
- ptr = ptr >>> 0;
22417
22228
  const obj = Object.create(TfheCompactPublicKey.prototype);
22418
22229
  obj.__wbg_ptr = ptr;
22419
22230
  TfheCompactPublicKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -22514,7 +22325,6 @@ if (Symbol.dispose) TfheCompactPublicKey.prototype[Symbol.dispose] = TfheCompact
22514
22325
 
22515
22326
  export class TfheCompressedCompactPublicKey {
22516
22327
  static __wrap(ptr) {
22517
- ptr = ptr >>> 0;
22518
22328
  const obj = Object.create(TfheCompressedCompactPublicKey.prototype);
22519
22329
  obj.__wbg_ptr = ptr;
22520
22330
  TfheCompressedCompactPublicKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -22625,7 +22435,6 @@ if (Symbol.dispose) TfheCompressedCompactPublicKey.prototype[Symbol.dispose] = T
22625
22435
 
22626
22436
  export class TfheCompressedPublicKey {
22627
22437
  static __wrap(ptr) {
22628
- ptr = ptr >>> 0;
22629
22438
  const obj = Object.create(TfheCompressedPublicKey.prototype);
22630
22439
  obj.__wbg_ptr = ptr;
22631
22440
  TfheCompressedPublicKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -22720,7 +22529,6 @@ if (Symbol.dispose) TfheCompressedPublicKey.prototype[Symbol.dispose] = TfheComp
22720
22529
 
22721
22530
  export class TfheCompressedServerKey {
22722
22531
  static __wrap(ptr) {
22723
- ptr = ptr >>> 0;
22724
22532
  const obj = Object.create(TfheCompressedServerKey.prototype);
22725
22533
  obj.__wbg_ptr = ptr;
22726
22534
  TfheCompressedServerKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -22805,7 +22613,6 @@ if (Symbol.dispose) TfheCompressedServerKey.prototype[Symbol.dispose] = TfheComp
22805
22613
 
22806
22614
  export class TfheConfig {
22807
22615
  static __wrap(ptr) {
22808
- ptr = ptr >>> 0;
22809
22616
  const obj = Object.create(TfheConfig.prototype);
22810
22617
  obj.__wbg_ptr = ptr;
22811
22618
  TfheConfigFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -22826,7 +22633,6 @@ if (Symbol.dispose) TfheConfig.prototype[Symbol.dispose] = TfheConfig.prototype.
22826
22633
 
22827
22634
  export class TfheConfigBuilder {
22828
22635
  static __wrap(ptr) {
22829
- ptr = ptr >>> 0;
22830
22636
  const obj = Object.create(TfheConfigBuilder.prototype);
22831
22637
  obj.__wbg_ptr = ptr;
22832
22638
  TfheConfigBuilderFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -22891,7 +22697,6 @@ if (Symbol.dispose) TfheConfigBuilder.prototype[Symbol.dispose] = TfheConfigBuil
22891
22697
 
22892
22698
  export class TfhePublicKey {
22893
22699
  static __wrap(ptr) {
22894
- ptr = ptr >>> 0;
22895
22700
  const obj = Object.create(TfhePublicKey.prototype);
22896
22701
  obj.__wbg_ptr = ptr;
22897
22702
  TfhePublicKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -22976,7 +22781,6 @@ if (Symbol.dispose) TfhePublicKey.prototype[Symbol.dispose] = TfhePublicKey.prot
22976
22781
 
22977
22782
  export class TfheServerKey {
22978
22783
  static __wrap(ptr) {
22979
- ptr = ptr >>> 0;
22980
22784
  const obj = Object.create(TfheServerKey.prototype);
22981
22785
  obj.__wbg_ptr = ptr;
22982
22786
  TfheServerKeyFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -23095,7 +22899,6 @@ if (Symbol.dispose) tfhe.prototype[Symbol.dispose] = tfhe.prototype.free;
23095
22899
 
23096
22900
  export class wbg_rayon_PoolBuilder {
23097
22901
  static __wrap(ptr) {
23098
- ptr = ptr >>> 0;
23099
22902
  const obj = Object.create(wbg_rayon_PoolBuilder.prototype);
23100
22903
  obj.__wbg_ptr = ptr;
23101
22904
  wbg_rayon_PoolBuilderFinalization.register(obj, obj.__wbg_ptr, obj);
@@ -23140,85 +22943,85 @@ export function wbg_rayon_start_worker(receiver) {
23140
22943
  function __wbg_get_imports(memory) {
23141
22944
  const import0 = {
23142
22945
  __proto__: null,
23143
- __wbg_BigInt_65bcea251e788083: function(arg0) {
22946
+ __wbg_BigInt_590a7bb99baad06a: function(arg0) {
23144
22947
  const ret = BigInt(arg0);
23145
22948
  return ret;
23146
22949
  },
23147
- __wbg_BigInt_ccbca793f456e582: function() { return handleError(function (arg0) {
22950
+ __wbg_BigInt_d576983233c6e0d1: function() { return handleError(function (arg0) {
23148
22951
  const ret = BigInt(arg0);
23149
22952
  return ret;
23150
22953
  }, arguments); },
23151
- __wbg_Error_960c155d3d49e4c2: function(arg0, arg1) {
22954
+ __wbg_Error_ef53bc310eb298a0: function(arg0, arg1) {
23152
22955
  const ret = Error(getStringFromWasm0(arg0, arg1));
23153
22956
  return ret;
23154
22957
  },
23155
- __wbg___wbindgen_bigint_get_as_i64_3d3aba5d616c6a51: function(arg0, arg1) {
22958
+ __wbg___wbindgen_bigint_get_as_i64_38130e98eecd467d: function(arg0, arg1) {
23156
22959
  const v = arg1;
23157
22960
  const ret = typeof(v) === 'bigint' ? v : undefined;
23158
22961
  getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
23159
22962
  getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
23160
22963
  },
23161
- __wbg___wbindgen_bit_and_96f696c56b4950d5: function(arg0, arg1) {
22964
+ __wbg___wbindgen_bit_and_c3ff9328af026c6b: function(arg0, arg1) {
23162
22965
  const ret = arg0 & arg1;
23163
22966
  return ret;
23164
22967
  },
23165
- __wbg___wbindgen_bit_or_d564c2751fdac6c9: function(arg0, arg1) {
22968
+ __wbg___wbindgen_bit_or_df5d1a36f9eb4d41: function(arg0, arg1) {
23166
22969
  const ret = arg0 | arg1;
23167
22970
  return ret;
23168
22971
  },
23169
- __wbg___wbindgen_debug_string_ab4b34d23d6778bd: function(arg0, arg1) {
22972
+ __wbg___wbindgen_debug_string_0accd80f45e5faa2: function(arg0, arg1) {
23170
22973
  const ret = debugString(arg1);
23171
22974
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
23172
22975
  const len1 = WASM_VECTOR_LEN;
23173
22976
  getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
23174
22977
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
23175
22978
  },
23176
- __wbg___wbindgen_is_function_3baa9db1a987f47d: function(arg0) {
22979
+ __wbg___wbindgen_is_function_754e9f305ff6029e: function(arg0) {
23177
22980
  const ret = typeof(arg0) === 'function';
23178
22981
  return ret;
23179
22982
  },
23180
- __wbg___wbindgen_is_object_63322ec0cd6ea4ef: function(arg0) {
22983
+ __wbg___wbindgen_is_object_56732c2bc353f41d: function(arg0) {
23181
22984
  const val = arg0;
23182
22985
  const ret = typeof(val) === 'object' && val !== null;
23183
22986
  return ret;
23184
22987
  },
23185
- __wbg___wbindgen_is_string_6df3bf7ef1164ed3: function(arg0) {
22988
+ __wbg___wbindgen_is_string_c236cabd84a4d769: function(arg0) {
23186
22989
  const ret = typeof(arg0) === 'string';
23187
22990
  return ret;
23188
22991
  },
23189
- __wbg___wbindgen_is_undefined_29a43b4d42920abd: function(arg0) {
22992
+ __wbg___wbindgen_is_undefined_67b456be8673d3d7: function(arg0) {
23190
22993
  const ret = arg0 === undefined;
23191
22994
  return ret;
23192
22995
  },
23193
- __wbg___wbindgen_jsval_eq_d3465d8a07697228: function(arg0, arg1) {
22996
+ __wbg___wbindgen_jsval_eq_1068e624fa87f6ab: function(arg0, arg1) {
23194
22997
  const ret = arg0 === arg1;
23195
22998
  return ret;
23196
22999
  },
23197
- __wbg___wbindgen_lt_78bab382628fb48f: function(arg0, arg1) {
23000
+ __wbg___wbindgen_lt_b4bcf1fdfe2e41fe: function(arg0, arg1) {
23198
23001
  const ret = arg0 < arg1;
23199
23002
  return ret;
23200
23003
  },
23201
- __wbg___wbindgen_memory_dfa12096f400c9bd: function() {
23004
+ __wbg___wbindgen_memory_fbc4c3e30b409f08: function() {
23202
23005
  const ret = wasm.memory;
23203
23006
  return ret;
23204
23007
  },
23205
- __wbg___wbindgen_module_b5e6fb95dbdb7d7e: function() {
23008
+ __wbg___wbindgen_module_5dcc25d553a4424f: function() {
23206
23009
  const ret = wasmModule;
23207
23010
  return ret;
23208
23011
  },
23209
- __wbg___wbindgen_neg_8d39d23ef65c9fdb: function(arg0) {
23012
+ __wbg___wbindgen_neg_c5be7a95a9dd509c: function(arg0) {
23210
23013
  const ret = -arg0;
23211
23014
  return ret;
23212
23015
  },
23213
- __wbg___wbindgen_shl_c7ea4173387a1669: function(arg0, arg1) {
23016
+ __wbg___wbindgen_shl_9f0bde039d054e42: function(arg0, arg1) {
23214
23017
  const ret = arg0 << arg1;
23215
23018
  return ret;
23216
23019
  },
23217
- __wbg___wbindgen_shr_436553cbaef41a66: function(arg0, arg1) {
23020
+ __wbg___wbindgen_shr_b5893fce8492f5d9: function(arg0, arg1) {
23218
23021
  const ret = arg0 >> arg1;
23219
23022
  return ret;
23220
23023
  },
23221
- __wbg___wbindgen_string_get_7ed5322991caaec5: function(arg0, arg1) {
23024
+ __wbg___wbindgen_string_get_72bdf95d3ae505b1: function(arg0, arg1) {
23222
23025
  const obj = arg1;
23223
23026
  const ret = typeof(obj) === 'string' ? obj : undefined;
23224
23027
  var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
@@ -23226,10 +23029,10 @@ function __wbg_get_imports(memory) {
23226
23029
  getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
23227
23030
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
23228
23031
  },
23229
- __wbg___wbindgen_throw_6b64449b9b9ed33c: function(arg0, arg1) {
23032
+ __wbg___wbindgen_throw_1506f2235d1bdba0: function(arg0, arg1) {
23230
23033
  throw new Error(getStringFromWasm0(arg0, arg1));
23231
23034
  },
23232
- __wbg_call_a24592a6f349a97e: function() { return handleError(function (arg0, arg1, arg2) {
23035
+ __wbg_call_9c758de292015997: function() { return handleError(function (arg0, arg1, arg2) {
23233
23036
  const ret = arg0.call(arg1, arg2);
23234
23037
  return ret;
23235
23038
  }, arguments); },
@@ -23251,11 +23054,11 @@ function __wbg_get_imports(memory) {
23251
23054
  __wbg_getRandomValues_c44a50d8cfdaebeb: function() { return handleError(function (arg0, arg1) {
23252
23055
  arg0.getRandomValues(arg1);
23253
23056
  }, arguments); },
23254
- __wbg_getTime_da7c55f52b71e8c6: function(arg0) {
23057
+ __wbg_getTime_00b3f7db575e4ef5: function(arg0) {
23255
23058
  const ret = arg0.getTime();
23256
23059
  return ret;
23257
23060
  },
23258
- __wbg_instanceof_Window_cc64c86c8ef9e02b: function(arg0) {
23061
+ __wbg_instanceof_Window_e093be59ee9a8e14: function(arg0) {
23259
23062
  let result;
23260
23063
  try {
23261
23064
  result = arg0 instanceof Window;
@@ -23265,7 +23068,7 @@ function __wbg_get_imports(memory) {
23265
23068
  const ret = result;
23266
23069
  return ret;
23267
23070
  },
23268
- __wbg_length_9f1775224cf1d815: function(arg0) {
23071
+ __wbg_length_4a591ecaa01354d9: function(arg0) {
23269
23072
  const ret = arg0.length;
23270
23073
  return ret;
23271
23074
  },
@@ -23273,7 +23076,7 @@ function __wbg_get_imports(memory) {
23273
23076
  const ret = arg0.msCrypto;
23274
23077
  return ret;
23275
23078
  },
23276
- __wbg_new_0_4d657201ced14de3: function() {
23079
+ __wbg_new_0_445c13a750296eb6: function() {
23277
23080
  const ret = new Date();
23278
23081
  return ret;
23279
23082
  },
@@ -23281,7 +23084,7 @@ function __wbg_get_imports(memory) {
23281
23084
  const ret = new Error();
23282
23085
  return ret;
23283
23086
  },
23284
- __wbg_new_with_length_8c854e41ea4dae9b: function(arg0) {
23087
+ __wbg_new_with_length_36a4998e27b014c5: function(arg0) {
23285
23088
  const ret = new Uint8Array(arg0 >>> 0);
23286
23089
  return ret;
23287
23090
  },
@@ -23293,7 +23096,7 @@ function __wbg_get_imports(memory) {
23293
23096
  const ret = arg0.process;
23294
23097
  return ret;
23295
23098
  },
23296
- __wbg_prototypesetcall_a6b02eb00b0f4ce2: function(arg0, arg1, arg2) {
23099
+ __wbg_prototypesetcall_3249fc62a0fafa30: function(arg0, arg1, arg2) {
23297
23100
  Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
23298
23101
  },
23299
23102
  __wbg_randomFillSync_6c25eac9869eb53c: function() { return handleError(function (arg0, arg1) {
@@ -23314,37 +23117,37 @@ function __wbg_get_imports(memory) {
23314
23117
  const ret = startWorkers(arg0, arg1, wbg_rayon_PoolBuilder.__wrap(arg2));
23315
23118
  return ret;
23316
23119
  },
23317
- __wbg_static_accessor_GLOBAL_8cfadc87a297ca02: function() {
23120
+ __wbg_static_accessor_GLOBAL_9d53f2689e622ca1: function() {
23318
23121
  const ret = typeof global === 'undefined' ? null : global;
23319
23122
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
23320
23123
  },
23321
- __wbg_static_accessor_GLOBAL_THIS_602256ae5c8f42cf: function() {
23124
+ __wbg_static_accessor_GLOBAL_THIS_a1a35cec07001a8a: function() {
23322
23125
  const ret = typeof globalThis === 'undefined' ? null : globalThis;
23323
23126
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
23324
23127
  },
23325
- __wbg_static_accessor_SELF_e445c1c7484aecc3: function() {
23128
+ __wbg_static_accessor_SELF_4c59f6c7ea29a144: function() {
23326
23129
  const ret = typeof self === 'undefined' ? null : self;
23327
23130
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
23328
23131
  },
23329
- __wbg_static_accessor_WINDOW_f20e8576ef1e0f17: function() {
23132
+ __wbg_static_accessor_WINDOW_e70ae9f2eb052253: function() {
23330
23133
  const ret = typeof window === 'undefined' ? null : window;
23331
23134
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
23332
23135
  },
23333
- __wbg_subarray_f8ca46a25b1f5e0d: function(arg0, arg1, arg2) {
23136
+ __wbg_subarray_4aa221f6a4f5ab22: function(arg0, arg1, arg2) {
23334
23137
  const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0);
23335
23138
  return ret;
23336
23139
  },
23337
- __wbg_toString_6dc1a94e0bdba378: function(arg0) {
23338
- const ret = arg0.toString();
23339
- return ret;
23340
- },
23341
- __wbg_toString_c96dc76d5547a715: function(arg0, arg1, arg2) {
23140
+ __wbg_toString_0fa9821f840aaf09: function(arg0, arg1, arg2) {
23342
23141
  const ret = arg1.toString(arg2);
23343
23142
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
23344
23143
  const len1 = WASM_VECTOR_LEN;
23345
23144
  getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
23346
23145
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
23347
23146
  },
23147
+ __wbg_toString_ceaa3435e9077b9a: function(arg0) {
23148
+ const ret = arg0.toString();
23149
+ return ret;
23150
+ },
23348
23151
  __wbg_versions_276b2795b1c6a219: function(arg0) {
23349
23152
  const ret = arg0.versions;
23350
23153
  return ret;
@@ -23403,604 +23206,604 @@ function __wbg_get_imports(memory) {
23403
23206
 
23404
23207
  const BooleanFinalization = (typeof FinalizationRegistry === 'undefined')
23405
23208
  ? { register: () => {}, unregister: () => {} }
23406
- : new FinalizationRegistry(ptr => wasm.__wbg_boolean_free(ptr >>> 0, 1));
23209
+ : new FinalizationRegistry(ptr => wasm.__wbg_boolean_free(ptr, 1));
23407
23210
  const BooleanCiphertextFinalization = (typeof FinalizationRegistry === 'undefined')
23408
23211
  ? { register: () => {}, unregister: () => {} }
23409
- : new FinalizationRegistry(ptr => wasm.__wbg_booleanciphertext_free(ptr >>> 0, 1));
23212
+ : new FinalizationRegistry(ptr => wasm.__wbg_booleanciphertext_free(ptr, 1));
23410
23213
  const BooleanClientKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23411
23214
  ? { register: () => {}, unregister: () => {} }
23412
- : new FinalizationRegistry(ptr => wasm.__wbg_booleanclientkey_free(ptr >>> 0, 1));
23215
+ : new FinalizationRegistry(ptr => wasm.__wbg_booleanclientkey_free(ptr, 1));
23413
23216
  const BooleanCompressedCiphertextFinalization = (typeof FinalizationRegistry === 'undefined')
23414
23217
  ? { register: () => {}, unregister: () => {} }
23415
- : new FinalizationRegistry(ptr => wasm.__wbg_booleancompressedciphertext_free(ptr >>> 0, 1));
23218
+ : new FinalizationRegistry(ptr => wasm.__wbg_booleancompressedciphertext_free(ptr, 1));
23416
23219
  const BooleanCompressedServerKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23417
23220
  ? { register: () => {}, unregister: () => {} }
23418
- : new FinalizationRegistry(ptr => wasm.__wbg_booleancompressedserverkey_free(ptr >>> 0, 1));
23221
+ : new FinalizationRegistry(ptr => wasm.__wbg_booleancompressedserverkey_free(ptr, 1));
23419
23222
  const BooleanNoiseDistributionFinalization = (typeof FinalizationRegistry === 'undefined')
23420
23223
  ? { register: () => {}, unregister: () => {} }
23421
- : new FinalizationRegistry(ptr => wasm.__wbg_booleannoisedistribution_free(ptr >>> 0, 1));
23224
+ : new FinalizationRegistry(ptr => wasm.__wbg_booleannoisedistribution_free(ptr, 1));
23422
23225
  const BooleanParametersFinalization = (typeof FinalizationRegistry === 'undefined')
23423
23226
  ? { register: () => {}, unregister: () => {} }
23424
- : new FinalizationRegistry(ptr => wasm.__wbg_booleanparameters_free(ptr >>> 0, 1));
23227
+ : new FinalizationRegistry(ptr => wasm.__wbg_booleanparameters_free(ptr, 1));
23425
23228
  const BooleanPublicKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23426
23229
  ? { register: () => {}, unregister: () => {} }
23427
- : new FinalizationRegistry(ptr => wasm.__wbg_booleanpublickey_free(ptr >>> 0, 1));
23230
+ : new FinalizationRegistry(ptr => wasm.__wbg_booleanpublickey_free(ptr, 1));
23428
23231
  const CompactCiphertextListFinalization = (typeof FinalizationRegistry === 'undefined')
23429
23232
  ? { register: () => {}, unregister: () => {} }
23430
- : new FinalizationRegistry(ptr => wasm.__wbg_compactciphertextlist_free(ptr >>> 0, 1));
23233
+ : new FinalizationRegistry(ptr => wasm.__wbg_compactciphertextlist_free(ptr, 1));
23431
23234
  const CompactCiphertextListBuilderFinalization = (typeof FinalizationRegistry === 'undefined')
23432
23235
  ? { register: () => {}, unregister: () => {} }
23433
- : new FinalizationRegistry(ptr => wasm.__wbg_compactciphertextlistbuilder_free(ptr >>> 0, 1));
23236
+ : new FinalizationRegistry(ptr => wasm.__wbg_compactciphertextlistbuilder_free(ptr, 1));
23434
23237
  const CompactCiphertextListExpanderFinalization = (typeof FinalizationRegistry === 'undefined')
23435
23238
  ? { register: () => {}, unregister: () => {} }
23436
- : new FinalizationRegistry(ptr => wasm.__wbg_compactciphertextlistexpander_free(ptr >>> 0, 1));
23239
+ : new FinalizationRegistry(ptr => wasm.__wbg_compactciphertextlistexpander_free(ptr, 1));
23437
23240
  const CompactPkeCrsFinalization = (typeof FinalizationRegistry === 'undefined')
23438
23241
  ? { register: () => {}, unregister: () => {} }
23439
- : new FinalizationRegistry(ptr => wasm.__wbg_compactpkecrs_free(ptr >>> 0, 1));
23242
+ : new FinalizationRegistry(ptr => wasm.__wbg_compactpkecrs_free(ptr, 1));
23440
23243
  const CompressedFheBoolFinalization = (typeof FinalizationRegistry === 'undefined')
23441
23244
  ? { register: () => {}, unregister: () => {} }
23442
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfhebool_free(ptr >>> 0, 1));
23245
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfhebool_free(ptr, 1));
23443
23246
  const CompressedFheInt10Finalization = (typeof FinalizationRegistry === 'undefined')
23444
23247
  ? { register: () => {}, unregister: () => {} }
23445
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint10_free(ptr >>> 0, 1));
23248
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint10_free(ptr, 1));
23446
23249
  const CompressedFheInt1024Finalization = (typeof FinalizationRegistry === 'undefined')
23447
23250
  ? { register: () => {}, unregister: () => {} }
23448
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint1024_free(ptr >>> 0, 1));
23251
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint1024_free(ptr, 1));
23449
23252
  const CompressedFheInt104Finalization = (typeof FinalizationRegistry === 'undefined')
23450
23253
  ? { register: () => {}, unregister: () => {} }
23451
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint104_free(ptr >>> 0, 1));
23254
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint104_free(ptr, 1));
23452
23255
  const CompressedFheInt112Finalization = (typeof FinalizationRegistry === 'undefined')
23453
23256
  ? { register: () => {}, unregister: () => {} }
23454
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint112_free(ptr >>> 0, 1));
23257
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint112_free(ptr, 1));
23455
23258
  const CompressedFheInt12Finalization = (typeof FinalizationRegistry === 'undefined')
23456
23259
  ? { register: () => {}, unregister: () => {} }
23457
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint12_free(ptr >>> 0, 1));
23260
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint12_free(ptr, 1));
23458
23261
  const CompressedFheInt120Finalization = (typeof FinalizationRegistry === 'undefined')
23459
23262
  ? { register: () => {}, unregister: () => {} }
23460
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint120_free(ptr >>> 0, 1));
23263
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint120_free(ptr, 1));
23461
23264
  const CompressedFheInt128Finalization = (typeof FinalizationRegistry === 'undefined')
23462
23265
  ? { register: () => {}, unregister: () => {} }
23463
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint128_free(ptr >>> 0, 1));
23266
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint128_free(ptr, 1));
23464
23267
  const CompressedFheInt136Finalization = (typeof FinalizationRegistry === 'undefined')
23465
23268
  ? { register: () => {}, unregister: () => {} }
23466
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint136_free(ptr >>> 0, 1));
23269
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint136_free(ptr, 1));
23467
23270
  const CompressedFheInt14Finalization = (typeof FinalizationRegistry === 'undefined')
23468
23271
  ? { register: () => {}, unregister: () => {} }
23469
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint14_free(ptr >>> 0, 1));
23272
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint14_free(ptr, 1));
23470
23273
  const CompressedFheInt144Finalization = (typeof FinalizationRegistry === 'undefined')
23471
23274
  ? { register: () => {}, unregister: () => {} }
23472
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint144_free(ptr >>> 0, 1));
23275
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint144_free(ptr, 1));
23473
23276
  const CompressedFheInt152Finalization = (typeof FinalizationRegistry === 'undefined')
23474
23277
  ? { register: () => {}, unregister: () => {} }
23475
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint152_free(ptr >>> 0, 1));
23278
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint152_free(ptr, 1));
23476
23279
  const CompressedFheInt16Finalization = (typeof FinalizationRegistry === 'undefined')
23477
23280
  ? { register: () => {}, unregister: () => {} }
23478
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint16_free(ptr >>> 0, 1));
23281
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint16_free(ptr, 1));
23479
23282
  const CompressedFheInt160Finalization = (typeof FinalizationRegistry === 'undefined')
23480
23283
  ? { register: () => {}, unregister: () => {} }
23481
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint160_free(ptr >>> 0, 1));
23284
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint160_free(ptr, 1));
23482
23285
  const CompressedFheInt168Finalization = (typeof FinalizationRegistry === 'undefined')
23483
23286
  ? { register: () => {}, unregister: () => {} }
23484
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint168_free(ptr >>> 0, 1));
23287
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint168_free(ptr, 1));
23485
23288
  const CompressedFheInt176Finalization = (typeof FinalizationRegistry === 'undefined')
23486
23289
  ? { register: () => {}, unregister: () => {} }
23487
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint176_free(ptr >>> 0, 1));
23290
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint176_free(ptr, 1));
23488
23291
  const CompressedFheInt184Finalization = (typeof FinalizationRegistry === 'undefined')
23489
23292
  ? { register: () => {}, unregister: () => {} }
23490
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint184_free(ptr >>> 0, 1));
23293
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint184_free(ptr, 1));
23491
23294
  const CompressedFheInt192Finalization = (typeof FinalizationRegistry === 'undefined')
23492
23295
  ? { register: () => {}, unregister: () => {} }
23493
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint192_free(ptr >>> 0, 1));
23296
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint192_free(ptr, 1));
23494
23297
  const CompressedFheInt2Finalization = (typeof FinalizationRegistry === 'undefined')
23495
23298
  ? { register: () => {}, unregister: () => {} }
23496
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint2_free(ptr >>> 0, 1));
23299
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint2_free(ptr, 1));
23497
23300
  const CompressedFheInt200Finalization = (typeof FinalizationRegistry === 'undefined')
23498
23301
  ? { register: () => {}, unregister: () => {} }
23499
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint200_free(ptr >>> 0, 1));
23302
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint200_free(ptr, 1));
23500
23303
  const CompressedFheInt2048Finalization = (typeof FinalizationRegistry === 'undefined')
23501
23304
  ? { register: () => {}, unregister: () => {} }
23502
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint2048_free(ptr >>> 0, 1));
23305
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint2048_free(ptr, 1));
23503
23306
  const CompressedFheInt208Finalization = (typeof FinalizationRegistry === 'undefined')
23504
23307
  ? { register: () => {}, unregister: () => {} }
23505
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint208_free(ptr >>> 0, 1));
23308
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint208_free(ptr, 1));
23506
23309
  const CompressedFheInt216Finalization = (typeof FinalizationRegistry === 'undefined')
23507
23310
  ? { register: () => {}, unregister: () => {} }
23508
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint216_free(ptr >>> 0, 1));
23311
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint216_free(ptr, 1));
23509
23312
  const CompressedFheInt224Finalization = (typeof FinalizationRegistry === 'undefined')
23510
23313
  ? { register: () => {}, unregister: () => {} }
23511
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint224_free(ptr >>> 0, 1));
23314
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint224_free(ptr, 1));
23512
23315
  const CompressedFheInt232Finalization = (typeof FinalizationRegistry === 'undefined')
23513
23316
  ? { register: () => {}, unregister: () => {} }
23514
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint232_free(ptr >>> 0, 1));
23317
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint232_free(ptr, 1));
23515
23318
  const CompressedFheInt24Finalization = (typeof FinalizationRegistry === 'undefined')
23516
23319
  ? { register: () => {}, unregister: () => {} }
23517
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint24_free(ptr >>> 0, 1));
23320
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint24_free(ptr, 1));
23518
23321
  const CompressedFheInt240Finalization = (typeof FinalizationRegistry === 'undefined')
23519
23322
  ? { register: () => {}, unregister: () => {} }
23520
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint240_free(ptr >>> 0, 1));
23323
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint240_free(ptr, 1));
23521
23324
  const CompressedFheInt248Finalization = (typeof FinalizationRegistry === 'undefined')
23522
23325
  ? { register: () => {}, unregister: () => {} }
23523
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint248_free(ptr >>> 0, 1));
23326
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint248_free(ptr, 1));
23524
23327
  const CompressedFheInt256Finalization = (typeof FinalizationRegistry === 'undefined')
23525
23328
  ? { register: () => {}, unregister: () => {} }
23526
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint256_free(ptr >>> 0, 1));
23329
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint256_free(ptr, 1));
23527
23330
  const CompressedFheInt32Finalization = (typeof FinalizationRegistry === 'undefined')
23528
23331
  ? { register: () => {}, unregister: () => {} }
23529
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint32_free(ptr >>> 0, 1));
23332
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint32_free(ptr, 1));
23530
23333
  const CompressedFheInt4Finalization = (typeof FinalizationRegistry === 'undefined')
23531
23334
  ? { register: () => {}, unregister: () => {} }
23532
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint4_free(ptr >>> 0, 1));
23335
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint4_free(ptr, 1));
23533
23336
  const CompressedFheInt40Finalization = (typeof FinalizationRegistry === 'undefined')
23534
23337
  ? { register: () => {}, unregister: () => {} }
23535
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint40_free(ptr >>> 0, 1));
23338
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint40_free(ptr, 1));
23536
23339
  const CompressedFheInt48Finalization = (typeof FinalizationRegistry === 'undefined')
23537
23340
  ? { register: () => {}, unregister: () => {} }
23538
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint48_free(ptr >>> 0, 1));
23341
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint48_free(ptr, 1));
23539
23342
  const CompressedFheInt512Finalization = (typeof FinalizationRegistry === 'undefined')
23540
23343
  ? { register: () => {}, unregister: () => {} }
23541
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint512_free(ptr >>> 0, 1));
23344
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint512_free(ptr, 1));
23542
23345
  const CompressedFheInt56Finalization = (typeof FinalizationRegistry === 'undefined')
23543
23346
  ? { register: () => {}, unregister: () => {} }
23544
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint56_free(ptr >>> 0, 1));
23347
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint56_free(ptr, 1));
23545
23348
  const CompressedFheInt6Finalization = (typeof FinalizationRegistry === 'undefined')
23546
23349
  ? { register: () => {}, unregister: () => {} }
23547
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint6_free(ptr >>> 0, 1));
23350
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint6_free(ptr, 1));
23548
23351
  const CompressedFheInt64Finalization = (typeof FinalizationRegistry === 'undefined')
23549
23352
  ? { register: () => {}, unregister: () => {} }
23550
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint64_free(ptr >>> 0, 1));
23353
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint64_free(ptr, 1));
23551
23354
  const CompressedFheInt72Finalization = (typeof FinalizationRegistry === 'undefined')
23552
23355
  ? { register: () => {}, unregister: () => {} }
23553
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint72_free(ptr >>> 0, 1));
23356
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint72_free(ptr, 1));
23554
23357
  const CompressedFheInt8Finalization = (typeof FinalizationRegistry === 'undefined')
23555
23358
  ? { register: () => {}, unregister: () => {} }
23556
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint8_free(ptr >>> 0, 1));
23359
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint8_free(ptr, 1));
23557
23360
  const CompressedFheInt80Finalization = (typeof FinalizationRegistry === 'undefined')
23558
23361
  ? { register: () => {}, unregister: () => {} }
23559
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint80_free(ptr >>> 0, 1));
23362
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint80_free(ptr, 1));
23560
23363
  const CompressedFheInt88Finalization = (typeof FinalizationRegistry === 'undefined')
23561
23364
  ? { register: () => {}, unregister: () => {} }
23562
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint88_free(ptr >>> 0, 1));
23365
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint88_free(ptr, 1));
23563
23366
  const CompressedFheInt96Finalization = (typeof FinalizationRegistry === 'undefined')
23564
23367
  ? { register: () => {}, unregister: () => {} }
23565
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint96_free(ptr >>> 0, 1));
23368
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheint96_free(ptr, 1));
23566
23369
  const CompressedFheUint10Finalization = (typeof FinalizationRegistry === 'undefined')
23567
23370
  ? { register: () => {}, unregister: () => {} }
23568
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint10_free(ptr >>> 0, 1));
23371
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint10_free(ptr, 1));
23569
23372
  const CompressedFheUint1024Finalization = (typeof FinalizationRegistry === 'undefined')
23570
23373
  ? { register: () => {}, unregister: () => {} }
23571
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint1024_free(ptr >>> 0, 1));
23374
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint1024_free(ptr, 1));
23572
23375
  const CompressedFheUint104Finalization = (typeof FinalizationRegistry === 'undefined')
23573
23376
  ? { register: () => {}, unregister: () => {} }
23574
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint104_free(ptr >>> 0, 1));
23377
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint104_free(ptr, 1));
23575
23378
  const CompressedFheUint112Finalization = (typeof FinalizationRegistry === 'undefined')
23576
23379
  ? { register: () => {}, unregister: () => {} }
23577
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint112_free(ptr >>> 0, 1));
23380
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint112_free(ptr, 1));
23578
23381
  const CompressedFheUint12Finalization = (typeof FinalizationRegistry === 'undefined')
23579
23382
  ? { register: () => {}, unregister: () => {} }
23580
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint12_free(ptr >>> 0, 1));
23383
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint12_free(ptr, 1));
23581
23384
  const CompressedFheUint120Finalization = (typeof FinalizationRegistry === 'undefined')
23582
23385
  ? { register: () => {}, unregister: () => {} }
23583
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint120_free(ptr >>> 0, 1));
23386
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint120_free(ptr, 1));
23584
23387
  const CompressedFheUint128Finalization = (typeof FinalizationRegistry === 'undefined')
23585
23388
  ? { register: () => {}, unregister: () => {} }
23586
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint128_free(ptr >>> 0, 1));
23389
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint128_free(ptr, 1));
23587
23390
  const CompressedFheUint136Finalization = (typeof FinalizationRegistry === 'undefined')
23588
23391
  ? { register: () => {}, unregister: () => {} }
23589
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint136_free(ptr >>> 0, 1));
23392
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint136_free(ptr, 1));
23590
23393
  const CompressedFheUint14Finalization = (typeof FinalizationRegistry === 'undefined')
23591
23394
  ? { register: () => {}, unregister: () => {} }
23592
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint14_free(ptr >>> 0, 1));
23395
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint14_free(ptr, 1));
23593
23396
  const CompressedFheUint144Finalization = (typeof FinalizationRegistry === 'undefined')
23594
23397
  ? { register: () => {}, unregister: () => {} }
23595
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint144_free(ptr >>> 0, 1));
23398
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint144_free(ptr, 1));
23596
23399
  const CompressedFheUint152Finalization = (typeof FinalizationRegistry === 'undefined')
23597
23400
  ? { register: () => {}, unregister: () => {} }
23598
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint152_free(ptr >>> 0, 1));
23401
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint152_free(ptr, 1));
23599
23402
  const CompressedFheUint16Finalization = (typeof FinalizationRegistry === 'undefined')
23600
23403
  ? { register: () => {}, unregister: () => {} }
23601
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint16_free(ptr >>> 0, 1));
23404
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint16_free(ptr, 1));
23602
23405
  const CompressedFheUint160Finalization = (typeof FinalizationRegistry === 'undefined')
23603
23406
  ? { register: () => {}, unregister: () => {} }
23604
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint160_free(ptr >>> 0, 1));
23407
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint160_free(ptr, 1));
23605
23408
  const CompressedFheUint168Finalization = (typeof FinalizationRegistry === 'undefined')
23606
23409
  ? { register: () => {}, unregister: () => {} }
23607
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint168_free(ptr >>> 0, 1));
23410
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint168_free(ptr, 1));
23608
23411
  const CompressedFheUint176Finalization = (typeof FinalizationRegistry === 'undefined')
23609
23412
  ? { register: () => {}, unregister: () => {} }
23610
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint176_free(ptr >>> 0, 1));
23413
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint176_free(ptr, 1));
23611
23414
  const CompressedFheUint184Finalization = (typeof FinalizationRegistry === 'undefined')
23612
23415
  ? { register: () => {}, unregister: () => {} }
23613
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint184_free(ptr >>> 0, 1));
23416
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint184_free(ptr, 1));
23614
23417
  const CompressedFheUint192Finalization = (typeof FinalizationRegistry === 'undefined')
23615
23418
  ? { register: () => {}, unregister: () => {} }
23616
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint192_free(ptr >>> 0, 1));
23419
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint192_free(ptr, 1));
23617
23420
  const CompressedFheUint2Finalization = (typeof FinalizationRegistry === 'undefined')
23618
23421
  ? { register: () => {}, unregister: () => {} }
23619
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint2_free(ptr >>> 0, 1));
23422
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint2_free(ptr, 1));
23620
23423
  const CompressedFheUint200Finalization = (typeof FinalizationRegistry === 'undefined')
23621
23424
  ? { register: () => {}, unregister: () => {} }
23622
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint200_free(ptr >>> 0, 1));
23425
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint200_free(ptr, 1));
23623
23426
  const CompressedFheUint2048Finalization = (typeof FinalizationRegistry === 'undefined')
23624
23427
  ? { register: () => {}, unregister: () => {} }
23625
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint2048_free(ptr >>> 0, 1));
23428
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint2048_free(ptr, 1));
23626
23429
  const CompressedFheUint208Finalization = (typeof FinalizationRegistry === 'undefined')
23627
23430
  ? { register: () => {}, unregister: () => {} }
23628
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint208_free(ptr >>> 0, 1));
23431
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint208_free(ptr, 1));
23629
23432
  const CompressedFheUint216Finalization = (typeof FinalizationRegistry === 'undefined')
23630
23433
  ? { register: () => {}, unregister: () => {} }
23631
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint216_free(ptr >>> 0, 1));
23434
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint216_free(ptr, 1));
23632
23435
  const CompressedFheUint224Finalization = (typeof FinalizationRegistry === 'undefined')
23633
23436
  ? { register: () => {}, unregister: () => {} }
23634
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint224_free(ptr >>> 0, 1));
23437
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint224_free(ptr, 1));
23635
23438
  const CompressedFheUint232Finalization = (typeof FinalizationRegistry === 'undefined')
23636
23439
  ? { register: () => {}, unregister: () => {} }
23637
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint232_free(ptr >>> 0, 1));
23440
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint232_free(ptr, 1));
23638
23441
  const CompressedFheUint24Finalization = (typeof FinalizationRegistry === 'undefined')
23639
23442
  ? { register: () => {}, unregister: () => {} }
23640
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint24_free(ptr >>> 0, 1));
23443
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint24_free(ptr, 1));
23641
23444
  const CompressedFheUint240Finalization = (typeof FinalizationRegistry === 'undefined')
23642
23445
  ? { register: () => {}, unregister: () => {} }
23643
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint240_free(ptr >>> 0, 1));
23446
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint240_free(ptr, 1));
23644
23447
  const CompressedFheUint248Finalization = (typeof FinalizationRegistry === 'undefined')
23645
23448
  ? { register: () => {}, unregister: () => {} }
23646
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint248_free(ptr >>> 0, 1));
23449
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint248_free(ptr, 1));
23647
23450
  const CompressedFheUint256Finalization = (typeof FinalizationRegistry === 'undefined')
23648
23451
  ? { register: () => {}, unregister: () => {} }
23649
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint256_free(ptr >>> 0, 1));
23452
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint256_free(ptr, 1));
23650
23453
  const CompressedFheUint32Finalization = (typeof FinalizationRegistry === 'undefined')
23651
23454
  ? { register: () => {}, unregister: () => {} }
23652
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint32_free(ptr >>> 0, 1));
23455
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint32_free(ptr, 1));
23653
23456
  const CompressedFheUint4Finalization = (typeof FinalizationRegistry === 'undefined')
23654
23457
  ? { register: () => {}, unregister: () => {} }
23655
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint4_free(ptr >>> 0, 1));
23458
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint4_free(ptr, 1));
23656
23459
  const CompressedFheUint40Finalization = (typeof FinalizationRegistry === 'undefined')
23657
23460
  ? { register: () => {}, unregister: () => {} }
23658
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint40_free(ptr >>> 0, 1));
23461
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint40_free(ptr, 1));
23659
23462
  const CompressedFheUint48Finalization = (typeof FinalizationRegistry === 'undefined')
23660
23463
  ? { register: () => {}, unregister: () => {} }
23661
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint48_free(ptr >>> 0, 1));
23464
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint48_free(ptr, 1));
23662
23465
  const CompressedFheUint512Finalization = (typeof FinalizationRegistry === 'undefined')
23663
23466
  ? { register: () => {}, unregister: () => {} }
23664
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint512_free(ptr >>> 0, 1));
23467
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint512_free(ptr, 1));
23665
23468
  const CompressedFheUint56Finalization = (typeof FinalizationRegistry === 'undefined')
23666
23469
  ? { register: () => {}, unregister: () => {} }
23667
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint56_free(ptr >>> 0, 1));
23470
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint56_free(ptr, 1));
23668
23471
  const CompressedFheUint6Finalization = (typeof FinalizationRegistry === 'undefined')
23669
23472
  ? { register: () => {}, unregister: () => {} }
23670
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint6_free(ptr >>> 0, 1));
23473
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint6_free(ptr, 1));
23671
23474
  const CompressedFheUint64Finalization = (typeof FinalizationRegistry === 'undefined')
23672
23475
  ? { register: () => {}, unregister: () => {} }
23673
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint64_free(ptr >>> 0, 1));
23476
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint64_free(ptr, 1));
23674
23477
  const CompressedFheUint72Finalization = (typeof FinalizationRegistry === 'undefined')
23675
23478
  ? { register: () => {}, unregister: () => {} }
23676
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint72_free(ptr >>> 0, 1));
23479
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint72_free(ptr, 1));
23677
23480
  const CompressedFheUint8Finalization = (typeof FinalizationRegistry === 'undefined')
23678
23481
  ? { register: () => {}, unregister: () => {} }
23679
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint8_free(ptr >>> 0, 1));
23482
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint8_free(ptr, 1));
23680
23483
  const CompressedFheUint80Finalization = (typeof FinalizationRegistry === 'undefined')
23681
23484
  ? { register: () => {}, unregister: () => {} }
23682
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint80_free(ptr >>> 0, 1));
23485
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint80_free(ptr, 1));
23683
23486
  const CompressedFheUint88Finalization = (typeof FinalizationRegistry === 'undefined')
23684
23487
  ? { register: () => {}, unregister: () => {} }
23685
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint88_free(ptr >>> 0, 1));
23488
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint88_free(ptr, 1));
23686
23489
  const CompressedFheUint96Finalization = (typeof FinalizationRegistry === 'undefined')
23687
23490
  ? { register: () => {}, unregister: () => {} }
23688
- : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint96_free(ptr >>> 0, 1));
23491
+ : new FinalizationRegistry(ptr => wasm.__wbg_compressedfheuint96_free(ptr, 1));
23689
23492
  const FheBoolFinalization = (typeof FinalizationRegistry === 'undefined')
23690
23493
  ? { register: () => {}, unregister: () => {} }
23691
- : new FinalizationRegistry(ptr => wasm.__wbg_fhebool_free(ptr >>> 0, 1));
23494
+ : new FinalizationRegistry(ptr => wasm.__wbg_fhebool_free(ptr, 1));
23692
23495
  const FheInt10Finalization = (typeof FinalizationRegistry === 'undefined')
23693
23496
  ? { register: () => {}, unregister: () => {} }
23694
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint10_free(ptr >>> 0, 1));
23497
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint10_free(ptr, 1));
23695
23498
  const FheInt1024Finalization = (typeof FinalizationRegistry === 'undefined')
23696
23499
  ? { register: () => {}, unregister: () => {} }
23697
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint1024_free(ptr >>> 0, 1));
23500
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint1024_free(ptr, 1));
23698
23501
  const FheInt104Finalization = (typeof FinalizationRegistry === 'undefined')
23699
23502
  ? { register: () => {}, unregister: () => {} }
23700
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint104_free(ptr >>> 0, 1));
23503
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint104_free(ptr, 1));
23701
23504
  const FheInt112Finalization = (typeof FinalizationRegistry === 'undefined')
23702
23505
  ? { register: () => {}, unregister: () => {} }
23703
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint112_free(ptr >>> 0, 1));
23506
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint112_free(ptr, 1));
23704
23507
  const FheInt12Finalization = (typeof FinalizationRegistry === 'undefined')
23705
23508
  ? { register: () => {}, unregister: () => {} }
23706
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint12_free(ptr >>> 0, 1));
23509
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint12_free(ptr, 1));
23707
23510
  const FheInt120Finalization = (typeof FinalizationRegistry === 'undefined')
23708
23511
  ? { register: () => {}, unregister: () => {} }
23709
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint120_free(ptr >>> 0, 1));
23512
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint120_free(ptr, 1));
23710
23513
  const FheInt128Finalization = (typeof FinalizationRegistry === 'undefined')
23711
23514
  ? { register: () => {}, unregister: () => {} }
23712
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint128_free(ptr >>> 0, 1));
23515
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint128_free(ptr, 1));
23713
23516
  const FheInt136Finalization = (typeof FinalizationRegistry === 'undefined')
23714
23517
  ? { register: () => {}, unregister: () => {} }
23715
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint136_free(ptr >>> 0, 1));
23518
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint136_free(ptr, 1));
23716
23519
  const FheInt14Finalization = (typeof FinalizationRegistry === 'undefined')
23717
23520
  ? { register: () => {}, unregister: () => {} }
23718
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint14_free(ptr >>> 0, 1));
23521
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint14_free(ptr, 1));
23719
23522
  const FheInt144Finalization = (typeof FinalizationRegistry === 'undefined')
23720
23523
  ? { register: () => {}, unregister: () => {} }
23721
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint144_free(ptr >>> 0, 1));
23524
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint144_free(ptr, 1));
23722
23525
  const FheInt152Finalization = (typeof FinalizationRegistry === 'undefined')
23723
23526
  ? { register: () => {}, unregister: () => {} }
23724
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint152_free(ptr >>> 0, 1));
23527
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint152_free(ptr, 1));
23725
23528
  const FheInt16Finalization = (typeof FinalizationRegistry === 'undefined')
23726
23529
  ? { register: () => {}, unregister: () => {} }
23727
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint16_free(ptr >>> 0, 1));
23530
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint16_free(ptr, 1));
23728
23531
  const FheInt160Finalization = (typeof FinalizationRegistry === 'undefined')
23729
23532
  ? { register: () => {}, unregister: () => {} }
23730
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint160_free(ptr >>> 0, 1));
23533
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint160_free(ptr, 1));
23731
23534
  const FheInt168Finalization = (typeof FinalizationRegistry === 'undefined')
23732
23535
  ? { register: () => {}, unregister: () => {} }
23733
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint168_free(ptr >>> 0, 1));
23536
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint168_free(ptr, 1));
23734
23537
  const FheInt176Finalization = (typeof FinalizationRegistry === 'undefined')
23735
23538
  ? { register: () => {}, unregister: () => {} }
23736
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint176_free(ptr >>> 0, 1));
23539
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint176_free(ptr, 1));
23737
23540
  const FheInt184Finalization = (typeof FinalizationRegistry === 'undefined')
23738
23541
  ? { register: () => {}, unregister: () => {} }
23739
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint184_free(ptr >>> 0, 1));
23542
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint184_free(ptr, 1));
23740
23543
  const FheInt192Finalization = (typeof FinalizationRegistry === 'undefined')
23741
23544
  ? { register: () => {}, unregister: () => {} }
23742
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint192_free(ptr >>> 0, 1));
23545
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint192_free(ptr, 1));
23743
23546
  const FheInt2Finalization = (typeof FinalizationRegistry === 'undefined')
23744
23547
  ? { register: () => {}, unregister: () => {} }
23745
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint2_free(ptr >>> 0, 1));
23548
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint2_free(ptr, 1));
23746
23549
  const FheInt200Finalization = (typeof FinalizationRegistry === 'undefined')
23747
23550
  ? { register: () => {}, unregister: () => {} }
23748
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint200_free(ptr >>> 0, 1));
23551
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint200_free(ptr, 1));
23749
23552
  const FheInt2048Finalization = (typeof FinalizationRegistry === 'undefined')
23750
23553
  ? { register: () => {}, unregister: () => {} }
23751
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint2048_free(ptr >>> 0, 1));
23554
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint2048_free(ptr, 1));
23752
23555
  const FheInt208Finalization = (typeof FinalizationRegistry === 'undefined')
23753
23556
  ? { register: () => {}, unregister: () => {} }
23754
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint208_free(ptr >>> 0, 1));
23557
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint208_free(ptr, 1));
23755
23558
  const FheInt216Finalization = (typeof FinalizationRegistry === 'undefined')
23756
23559
  ? { register: () => {}, unregister: () => {} }
23757
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint216_free(ptr >>> 0, 1));
23560
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint216_free(ptr, 1));
23758
23561
  const FheInt224Finalization = (typeof FinalizationRegistry === 'undefined')
23759
23562
  ? { register: () => {}, unregister: () => {} }
23760
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint224_free(ptr >>> 0, 1));
23563
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint224_free(ptr, 1));
23761
23564
  const FheInt232Finalization = (typeof FinalizationRegistry === 'undefined')
23762
23565
  ? { register: () => {}, unregister: () => {} }
23763
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint232_free(ptr >>> 0, 1));
23566
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint232_free(ptr, 1));
23764
23567
  const FheInt24Finalization = (typeof FinalizationRegistry === 'undefined')
23765
23568
  ? { register: () => {}, unregister: () => {} }
23766
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint24_free(ptr >>> 0, 1));
23569
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint24_free(ptr, 1));
23767
23570
  const FheInt240Finalization = (typeof FinalizationRegistry === 'undefined')
23768
23571
  ? { register: () => {}, unregister: () => {} }
23769
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint240_free(ptr >>> 0, 1));
23572
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint240_free(ptr, 1));
23770
23573
  const FheInt248Finalization = (typeof FinalizationRegistry === 'undefined')
23771
23574
  ? { register: () => {}, unregister: () => {} }
23772
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint248_free(ptr >>> 0, 1));
23575
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint248_free(ptr, 1));
23773
23576
  const FheInt256Finalization = (typeof FinalizationRegistry === 'undefined')
23774
23577
  ? { register: () => {}, unregister: () => {} }
23775
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint256_free(ptr >>> 0, 1));
23578
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint256_free(ptr, 1));
23776
23579
  const FheInt32Finalization = (typeof FinalizationRegistry === 'undefined')
23777
23580
  ? { register: () => {}, unregister: () => {} }
23778
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint32_free(ptr >>> 0, 1));
23581
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint32_free(ptr, 1));
23779
23582
  const FheInt4Finalization = (typeof FinalizationRegistry === 'undefined')
23780
23583
  ? { register: () => {}, unregister: () => {} }
23781
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint4_free(ptr >>> 0, 1));
23584
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint4_free(ptr, 1));
23782
23585
  const FheInt40Finalization = (typeof FinalizationRegistry === 'undefined')
23783
23586
  ? { register: () => {}, unregister: () => {} }
23784
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint40_free(ptr >>> 0, 1));
23587
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint40_free(ptr, 1));
23785
23588
  const FheInt48Finalization = (typeof FinalizationRegistry === 'undefined')
23786
23589
  ? { register: () => {}, unregister: () => {} }
23787
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint48_free(ptr >>> 0, 1));
23590
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint48_free(ptr, 1));
23788
23591
  const FheInt512Finalization = (typeof FinalizationRegistry === 'undefined')
23789
23592
  ? { register: () => {}, unregister: () => {} }
23790
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint512_free(ptr >>> 0, 1));
23593
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint512_free(ptr, 1));
23791
23594
  const FheInt56Finalization = (typeof FinalizationRegistry === 'undefined')
23792
23595
  ? { register: () => {}, unregister: () => {} }
23793
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint56_free(ptr >>> 0, 1));
23596
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint56_free(ptr, 1));
23794
23597
  const FheInt6Finalization = (typeof FinalizationRegistry === 'undefined')
23795
23598
  ? { register: () => {}, unregister: () => {} }
23796
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint6_free(ptr >>> 0, 1));
23599
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint6_free(ptr, 1));
23797
23600
  const FheInt64Finalization = (typeof FinalizationRegistry === 'undefined')
23798
23601
  ? { register: () => {}, unregister: () => {} }
23799
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint64_free(ptr >>> 0, 1));
23602
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint64_free(ptr, 1));
23800
23603
  const FheInt72Finalization = (typeof FinalizationRegistry === 'undefined')
23801
23604
  ? { register: () => {}, unregister: () => {} }
23802
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint72_free(ptr >>> 0, 1));
23605
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint72_free(ptr, 1));
23803
23606
  const FheInt8Finalization = (typeof FinalizationRegistry === 'undefined')
23804
23607
  ? { register: () => {}, unregister: () => {} }
23805
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint8_free(ptr >>> 0, 1));
23608
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint8_free(ptr, 1));
23806
23609
  const FheInt80Finalization = (typeof FinalizationRegistry === 'undefined')
23807
23610
  ? { register: () => {}, unregister: () => {} }
23808
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint80_free(ptr >>> 0, 1));
23611
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint80_free(ptr, 1));
23809
23612
  const FheInt88Finalization = (typeof FinalizationRegistry === 'undefined')
23810
23613
  ? { register: () => {}, unregister: () => {} }
23811
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint88_free(ptr >>> 0, 1));
23614
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint88_free(ptr, 1));
23812
23615
  const FheInt96Finalization = (typeof FinalizationRegistry === 'undefined')
23813
23616
  ? { register: () => {}, unregister: () => {} }
23814
- : new FinalizationRegistry(ptr => wasm.__wbg_fheint96_free(ptr >>> 0, 1));
23617
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheint96_free(ptr, 1));
23815
23618
  const FheUint10Finalization = (typeof FinalizationRegistry === 'undefined')
23816
23619
  ? { register: () => {}, unregister: () => {} }
23817
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint10_free(ptr >>> 0, 1));
23620
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint10_free(ptr, 1));
23818
23621
  const FheUint1024Finalization = (typeof FinalizationRegistry === 'undefined')
23819
23622
  ? { register: () => {}, unregister: () => {} }
23820
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint1024_free(ptr >>> 0, 1));
23623
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint1024_free(ptr, 1));
23821
23624
  const FheUint104Finalization = (typeof FinalizationRegistry === 'undefined')
23822
23625
  ? { register: () => {}, unregister: () => {} }
23823
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint104_free(ptr >>> 0, 1));
23626
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint104_free(ptr, 1));
23824
23627
  const FheUint112Finalization = (typeof FinalizationRegistry === 'undefined')
23825
23628
  ? { register: () => {}, unregister: () => {} }
23826
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint112_free(ptr >>> 0, 1));
23629
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint112_free(ptr, 1));
23827
23630
  const FheUint12Finalization = (typeof FinalizationRegistry === 'undefined')
23828
23631
  ? { register: () => {}, unregister: () => {} }
23829
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint12_free(ptr >>> 0, 1));
23632
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint12_free(ptr, 1));
23830
23633
  const FheUint120Finalization = (typeof FinalizationRegistry === 'undefined')
23831
23634
  ? { register: () => {}, unregister: () => {} }
23832
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint120_free(ptr >>> 0, 1));
23635
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint120_free(ptr, 1));
23833
23636
  const FheUint128Finalization = (typeof FinalizationRegistry === 'undefined')
23834
23637
  ? { register: () => {}, unregister: () => {} }
23835
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint128_free(ptr >>> 0, 1));
23638
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint128_free(ptr, 1));
23836
23639
  const FheUint136Finalization = (typeof FinalizationRegistry === 'undefined')
23837
23640
  ? { register: () => {}, unregister: () => {} }
23838
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint136_free(ptr >>> 0, 1));
23641
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint136_free(ptr, 1));
23839
23642
  const FheUint14Finalization = (typeof FinalizationRegistry === 'undefined')
23840
23643
  ? { register: () => {}, unregister: () => {} }
23841
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint14_free(ptr >>> 0, 1));
23644
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint14_free(ptr, 1));
23842
23645
  const FheUint144Finalization = (typeof FinalizationRegistry === 'undefined')
23843
23646
  ? { register: () => {}, unregister: () => {} }
23844
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint144_free(ptr >>> 0, 1));
23647
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint144_free(ptr, 1));
23845
23648
  const FheUint152Finalization = (typeof FinalizationRegistry === 'undefined')
23846
23649
  ? { register: () => {}, unregister: () => {} }
23847
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint152_free(ptr >>> 0, 1));
23650
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint152_free(ptr, 1));
23848
23651
  const FheUint16Finalization = (typeof FinalizationRegistry === 'undefined')
23849
23652
  ? { register: () => {}, unregister: () => {} }
23850
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint16_free(ptr >>> 0, 1));
23653
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint16_free(ptr, 1));
23851
23654
  const FheUint160Finalization = (typeof FinalizationRegistry === 'undefined')
23852
23655
  ? { register: () => {}, unregister: () => {} }
23853
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint160_free(ptr >>> 0, 1));
23656
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint160_free(ptr, 1));
23854
23657
  const FheUint168Finalization = (typeof FinalizationRegistry === 'undefined')
23855
23658
  ? { register: () => {}, unregister: () => {} }
23856
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint168_free(ptr >>> 0, 1));
23659
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint168_free(ptr, 1));
23857
23660
  const FheUint176Finalization = (typeof FinalizationRegistry === 'undefined')
23858
23661
  ? { register: () => {}, unregister: () => {} }
23859
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint176_free(ptr >>> 0, 1));
23662
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint176_free(ptr, 1));
23860
23663
  const FheUint184Finalization = (typeof FinalizationRegistry === 'undefined')
23861
23664
  ? { register: () => {}, unregister: () => {} }
23862
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint184_free(ptr >>> 0, 1));
23665
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint184_free(ptr, 1));
23863
23666
  const FheUint192Finalization = (typeof FinalizationRegistry === 'undefined')
23864
23667
  ? { register: () => {}, unregister: () => {} }
23865
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint192_free(ptr >>> 0, 1));
23668
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint192_free(ptr, 1));
23866
23669
  const FheUint2Finalization = (typeof FinalizationRegistry === 'undefined')
23867
23670
  ? { register: () => {}, unregister: () => {} }
23868
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint2_free(ptr >>> 0, 1));
23671
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint2_free(ptr, 1));
23869
23672
  const FheUint200Finalization = (typeof FinalizationRegistry === 'undefined')
23870
23673
  ? { register: () => {}, unregister: () => {} }
23871
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint200_free(ptr >>> 0, 1));
23674
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint200_free(ptr, 1));
23872
23675
  const FheUint2048Finalization = (typeof FinalizationRegistry === 'undefined')
23873
23676
  ? { register: () => {}, unregister: () => {} }
23874
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint2048_free(ptr >>> 0, 1));
23677
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint2048_free(ptr, 1));
23875
23678
  const FheUint208Finalization = (typeof FinalizationRegistry === 'undefined')
23876
23679
  ? { register: () => {}, unregister: () => {} }
23877
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint208_free(ptr >>> 0, 1));
23680
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint208_free(ptr, 1));
23878
23681
  const FheUint216Finalization = (typeof FinalizationRegistry === 'undefined')
23879
23682
  ? { register: () => {}, unregister: () => {} }
23880
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint216_free(ptr >>> 0, 1));
23683
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint216_free(ptr, 1));
23881
23684
  const FheUint224Finalization = (typeof FinalizationRegistry === 'undefined')
23882
23685
  ? { register: () => {}, unregister: () => {} }
23883
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint224_free(ptr >>> 0, 1));
23686
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint224_free(ptr, 1));
23884
23687
  const FheUint232Finalization = (typeof FinalizationRegistry === 'undefined')
23885
23688
  ? { register: () => {}, unregister: () => {} }
23886
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint232_free(ptr >>> 0, 1));
23689
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint232_free(ptr, 1));
23887
23690
  const FheUint24Finalization = (typeof FinalizationRegistry === 'undefined')
23888
23691
  ? { register: () => {}, unregister: () => {} }
23889
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint24_free(ptr >>> 0, 1));
23692
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint24_free(ptr, 1));
23890
23693
  const FheUint240Finalization = (typeof FinalizationRegistry === 'undefined')
23891
23694
  ? { register: () => {}, unregister: () => {} }
23892
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint240_free(ptr >>> 0, 1));
23695
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint240_free(ptr, 1));
23893
23696
  const FheUint248Finalization = (typeof FinalizationRegistry === 'undefined')
23894
23697
  ? { register: () => {}, unregister: () => {} }
23895
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint248_free(ptr >>> 0, 1));
23698
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint248_free(ptr, 1));
23896
23699
  const FheUint256Finalization = (typeof FinalizationRegistry === 'undefined')
23897
23700
  ? { register: () => {}, unregister: () => {} }
23898
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint256_free(ptr >>> 0, 1));
23701
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint256_free(ptr, 1));
23899
23702
  const FheUint32Finalization = (typeof FinalizationRegistry === 'undefined')
23900
23703
  ? { register: () => {}, unregister: () => {} }
23901
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint32_free(ptr >>> 0, 1));
23704
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint32_free(ptr, 1));
23902
23705
  const FheUint4Finalization = (typeof FinalizationRegistry === 'undefined')
23903
23706
  ? { register: () => {}, unregister: () => {} }
23904
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint4_free(ptr >>> 0, 1));
23707
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint4_free(ptr, 1));
23905
23708
  const FheUint40Finalization = (typeof FinalizationRegistry === 'undefined')
23906
23709
  ? { register: () => {}, unregister: () => {} }
23907
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint40_free(ptr >>> 0, 1));
23710
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint40_free(ptr, 1));
23908
23711
  const FheUint48Finalization = (typeof FinalizationRegistry === 'undefined')
23909
23712
  ? { register: () => {}, unregister: () => {} }
23910
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint48_free(ptr >>> 0, 1));
23713
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint48_free(ptr, 1));
23911
23714
  const FheUint512Finalization = (typeof FinalizationRegistry === 'undefined')
23912
23715
  ? { register: () => {}, unregister: () => {} }
23913
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint512_free(ptr >>> 0, 1));
23716
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint512_free(ptr, 1));
23914
23717
  const FheUint56Finalization = (typeof FinalizationRegistry === 'undefined')
23915
23718
  ? { register: () => {}, unregister: () => {} }
23916
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint56_free(ptr >>> 0, 1));
23719
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint56_free(ptr, 1));
23917
23720
  const FheUint6Finalization = (typeof FinalizationRegistry === 'undefined')
23918
23721
  ? { register: () => {}, unregister: () => {} }
23919
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint6_free(ptr >>> 0, 1));
23722
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint6_free(ptr, 1));
23920
23723
  const FheUint64Finalization = (typeof FinalizationRegistry === 'undefined')
23921
23724
  ? { register: () => {}, unregister: () => {} }
23922
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint64_free(ptr >>> 0, 1));
23725
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint64_free(ptr, 1));
23923
23726
  const FheUint72Finalization = (typeof FinalizationRegistry === 'undefined')
23924
23727
  ? { register: () => {}, unregister: () => {} }
23925
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint72_free(ptr >>> 0, 1));
23728
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint72_free(ptr, 1));
23926
23729
  const FheUint8Finalization = (typeof FinalizationRegistry === 'undefined')
23927
23730
  ? { register: () => {}, unregister: () => {} }
23928
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint8_free(ptr >>> 0, 1));
23731
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint8_free(ptr, 1));
23929
23732
  const FheUint80Finalization = (typeof FinalizationRegistry === 'undefined')
23930
23733
  ? { register: () => {}, unregister: () => {} }
23931
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint80_free(ptr >>> 0, 1));
23734
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint80_free(ptr, 1));
23932
23735
  const FheUint88Finalization = (typeof FinalizationRegistry === 'undefined')
23933
23736
  ? { register: () => {}, unregister: () => {} }
23934
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint88_free(ptr >>> 0, 1));
23737
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint88_free(ptr, 1));
23935
23738
  const FheUint96Finalization = (typeof FinalizationRegistry === 'undefined')
23936
23739
  ? { register: () => {}, unregister: () => {} }
23937
- : new FinalizationRegistry(ptr => wasm.__wbg_fheuint96_free(ptr >>> 0, 1));
23740
+ : new FinalizationRegistry(ptr => wasm.__wbg_fheuint96_free(ptr, 1));
23938
23741
  const ProvenCompactCiphertextListFinalization = (typeof FinalizationRegistry === 'undefined')
23939
23742
  ? { register: () => {}, unregister: () => {} }
23940
- : new FinalizationRegistry(ptr => wasm.__wbg_provencompactciphertextlist_free(ptr >>> 0, 1));
23743
+ : new FinalizationRegistry(ptr => wasm.__wbg_provencompactciphertextlist_free(ptr, 1));
23941
23744
  const ShortintFinalization = (typeof FinalizationRegistry === 'undefined')
23942
23745
  ? { register: () => {}, unregister: () => {} }
23943
- : new FinalizationRegistry(ptr => wasm.__wbg_shortint_free(ptr >>> 0, 1));
23746
+ : new FinalizationRegistry(ptr => wasm.__wbg_shortint_free(ptr, 1));
23944
23747
  const ShortintCiphertextFinalization = (typeof FinalizationRegistry === 'undefined')
23945
23748
  ? { register: () => {}, unregister: () => {} }
23946
- : new FinalizationRegistry(ptr => wasm.__wbg_shortintciphertext_free(ptr >>> 0, 1));
23749
+ : new FinalizationRegistry(ptr => wasm.__wbg_shortintciphertext_free(ptr, 1));
23947
23750
  const ShortintClientKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23948
23751
  ? { register: () => {}, unregister: () => {} }
23949
- : new FinalizationRegistry(ptr => wasm.__wbg_shortintclientkey_free(ptr >>> 0, 1));
23752
+ : new FinalizationRegistry(ptr => wasm.__wbg_shortintclientkey_free(ptr, 1));
23950
23753
  const ShortintCompactPublicKeyEncryptionParametersFinalization = (typeof FinalizationRegistry === 'undefined')
23951
23754
  ? { register: () => {}, unregister: () => {} }
23952
- : new FinalizationRegistry(ptr => wasm.__wbg_shortintcompactpublickeyencryptionparameters_free(ptr >>> 0, 1));
23755
+ : new FinalizationRegistry(ptr => wasm.__wbg_shortintcompactpublickeyencryptionparameters_free(ptr, 1));
23953
23756
  const ShortintCompressedCiphertextFinalization = (typeof FinalizationRegistry === 'undefined')
23954
23757
  ? { register: () => {}, unregister: () => {} }
23955
- : new FinalizationRegistry(ptr => wasm.__wbg_shortintcompressedciphertext_free(ptr >>> 0, 1));
23758
+ : new FinalizationRegistry(ptr => wasm.__wbg_shortintcompressedciphertext_free(ptr, 1));
23956
23759
  const ShortintCompressedPublicKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23957
23760
  ? { register: () => {}, unregister: () => {} }
23958
- : new FinalizationRegistry(ptr => wasm.__wbg_shortintcompressedpublickey_free(ptr >>> 0, 1));
23761
+ : new FinalizationRegistry(ptr => wasm.__wbg_shortintcompressedpublickey_free(ptr, 1));
23959
23762
  const ShortintCompressedServerKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23960
23763
  ? { register: () => {}, unregister: () => {} }
23961
- : new FinalizationRegistry(ptr => wasm.__wbg_shortintcompressedserverkey_free(ptr >>> 0, 1));
23764
+ : new FinalizationRegistry(ptr => wasm.__wbg_shortintcompressedserverkey_free(ptr, 1));
23962
23765
  const ShortintNoiseDistributionFinalization = (typeof FinalizationRegistry === 'undefined')
23963
23766
  ? { register: () => {}, unregister: () => {} }
23964
- : new FinalizationRegistry(ptr => wasm.__wbg_shortintnoisedistribution_free(ptr >>> 0, 1));
23767
+ : new FinalizationRegistry(ptr => wasm.__wbg_shortintnoisedistribution_free(ptr, 1));
23965
23768
  const ShortintParametersFinalization = (typeof FinalizationRegistry === 'undefined')
23966
23769
  ? { register: () => {}, unregister: () => {} }
23967
- : new FinalizationRegistry(ptr => wasm.__wbg_shortintparameters_free(ptr >>> 0, 1));
23770
+ : new FinalizationRegistry(ptr => wasm.__wbg_shortintparameters_free(ptr, 1));
23968
23771
  const ShortintPublicKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23969
23772
  ? { register: () => {}, unregister: () => {} }
23970
- : new FinalizationRegistry(ptr => wasm.__wbg_shortintpublickey_free(ptr >>> 0, 1));
23773
+ : new FinalizationRegistry(ptr => wasm.__wbg_shortintpublickey_free(ptr, 1));
23971
23774
  const TfheClientKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23972
23775
  ? { register: () => {}, unregister: () => {} }
23973
- : new FinalizationRegistry(ptr => wasm.__wbg_tfheclientkey_free(ptr >>> 0, 1));
23776
+ : new FinalizationRegistry(ptr => wasm.__wbg_tfheclientkey_free(ptr, 1));
23974
23777
  const TfheCompactPublicKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23975
23778
  ? { register: () => {}, unregister: () => {} }
23976
- : new FinalizationRegistry(ptr => wasm.__wbg_tfhecompactpublickey_free(ptr >>> 0, 1));
23779
+ : new FinalizationRegistry(ptr => wasm.__wbg_tfhecompactpublickey_free(ptr, 1));
23977
23780
  const TfheCompressedCompactPublicKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23978
23781
  ? { register: () => {}, unregister: () => {} }
23979
- : new FinalizationRegistry(ptr => wasm.__wbg_tfhecompressedcompactpublickey_free(ptr >>> 0, 1));
23782
+ : new FinalizationRegistry(ptr => wasm.__wbg_tfhecompressedcompactpublickey_free(ptr, 1));
23980
23783
  const TfheCompressedPublicKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23981
23784
  ? { register: () => {}, unregister: () => {} }
23982
- : new FinalizationRegistry(ptr => wasm.__wbg_tfhecompressedpublickey_free(ptr >>> 0, 1));
23785
+ : new FinalizationRegistry(ptr => wasm.__wbg_tfhecompressedpublickey_free(ptr, 1));
23983
23786
  const TfheCompressedServerKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23984
23787
  ? { register: () => {}, unregister: () => {} }
23985
- : new FinalizationRegistry(ptr => wasm.__wbg_tfhecompressedserverkey_free(ptr >>> 0, 1));
23788
+ : new FinalizationRegistry(ptr => wasm.__wbg_tfhecompressedserverkey_free(ptr, 1));
23986
23789
  const TfheConfigFinalization = (typeof FinalizationRegistry === 'undefined')
23987
23790
  ? { register: () => {}, unregister: () => {} }
23988
- : new FinalizationRegistry(ptr => wasm.__wbg_tfheconfig_free(ptr >>> 0, 1));
23791
+ : new FinalizationRegistry(ptr => wasm.__wbg_tfheconfig_free(ptr, 1));
23989
23792
  const TfheConfigBuilderFinalization = (typeof FinalizationRegistry === 'undefined')
23990
23793
  ? { register: () => {}, unregister: () => {} }
23991
- : new FinalizationRegistry(ptr => wasm.__wbg_tfheconfigbuilder_free(ptr >>> 0, 1));
23794
+ : new FinalizationRegistry(ptr => wasm.__wbg_tfheconfigbuilder_free(ptr, 1));
23992
23795
  const TfhePublicKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23993
23796
  ? { register: () => {}, unregister: () => {} }
23994
- : new FinalizationRegistry(ptr => wasm.__wbg_tfhepublickey_free(ptr >>> 0, 1));
23797
+ : new FinalizationRegistry(ptr => wasm.__wbg_tfhepublickey_free(ptr, 1));
23995
23798
  const TfheServerKeyFinalization = (typeof FinalizationRegistry === 'undefined')
23996
23799
  ? { register: () => {}, unregister: () => {} }
23997
- : new FinalizationRegistry(ptr => wasm.__wbg_tfheserverkey_free(ptr >>> 0, 1));
23800
+ : new FinalizationRegistry(ptr => wasm.__wbg_tfheserverkey_free(ptr, 1));
23998
23801
  const tfheFinalization = (typeof FinalizationRegistry === 'undefined')
23999
23802
  ? { register: () => {}, unregister: () => {} }
24000
- : new FinalizationRegistry(ptr => wasm.__wbg_tfhe_free(ptr >>> 0, 1));
23803
+ : new FinalizationRegistry(ptr => wasm.__wbg_tfhe_free(ptr, 1));
24001
23804
  const wbg_rayon_PoolBuilderFinalization = (typeof FinalizationRegistry === 'undefined')
24002
23805
  ? { register: () => {}, unregister: () => {} }
24003
- : new FinalizationRegistry(ptr => wasm.__wbg_wbg_rayon_poolbuilder_free(ptr >>> 0, 1));
23806
+ : new FinalizationRegistry(ptr => wasm.__wbg_wbg_rayon_poolbuilder_free(ptr, 1));
24004
23807
 
24005
23808
  function addToExternrefTable0(obj) {
24006
23809
  const idx = wasm.__externref_table_alloc();
@@ -24093,8 +23896,7 @@ function getDataViewMemory0() {
24093
23896
  }
24094
23897
 
24095
23898
  function getStringFromWasm0(ptr, len) {
24096
- ptr = ptr >>> 0;
24097
- return decodeText(ptr, len);
23899
+ return decodeText(ptr >>> 0, len);
24098
23900
  }
24099
23901
 
24100
23902
  let cachedUint8ArrayMemory0 = null;
@@ -24198,8 +24000,9 @@ if (cachedTextEncoder) {
24198
24000
 
24199
24001
  let WASM_VECTOR_LEN = 0;
24200
24002
 
24201
- let wasmModule, wasm;
24003
+ let wasmModule, wasmInstance, wasm;
24202
24004
  function __wbg_finalize_init(instance, module, thread_stack_size) {
24005
+ wasmInstance = instance;
24203
24006
  wasm = instance.exports;
24204
24007
  wasmModule = module;
24205
24008
  cachedDataViewMemory0 = null;