@bitcredit/bcr-ebill-wasm 0.5.1 → 0.5.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.
package/index.d.ts CHANGED
@@ -789,7 +789,23 @@ export interface SignatoryResponse {
789
789
  }
790
790
 
791
791
  export interface StatusResponse {
792
+ /**
793
+ * Name of the currently configured Bitcoin network (e.g. `mainnet`, `testnet`).
794
+ */
792
795
  bitcoin_network: string;
796
+ /**
797
+ * `true` if the app has an active connection to at least one configured Nostr relay.
798
+ *
799
+ * This reflects the status of the Nostr transport layer, not general internet
800
+ * connectivity or backend/database availability. When `connected` is `false`,
801
+ * operations that require Nostr (such as bill synchronization with other peers,
802
+ * sending or receiving notifications, or other relay-based messaging) will not
803
+ * be able to communicate over the network and may fall back to local-only state.
804
+ */
805
+ connected: boolean;
806
+ /**
807
+ * Semantic version of the running E-Bills application backend.
808
+ */
793
809
  app_version: string;
794
810
  }
795
811
 
@@ -833,7 +849,7 @@ export type CompanyStatusWeb = "Invited" | "Active" | "None";
833
849
 
834
850
  export type GeneralSearchFilterItemTypeWeb = "Company" | "Bill" | "Contact";
835
851
 
836
- export type JsErrorType = "FieldEmpty" | "FieldInvalid" | "InvalidSum" | "InvalidCurrency" | "InvalidContentType" | "IdentityCantBeAnon" | "InvalidContactType" | "InvalidIdentityType" | "InvalidDate" | "InvalidCountry" | "InvalidTimestamp" | "DeadlineBeforeMinimum" | "SelfDraftedBillCantBeBlank" | "RequestToMintForBillAndMintAlreadyActive" | "SignerCantBeAnon" | "ContactIsAnonymous" | "InvalidContact" | "InvalidMint" | "IssueDateAfterMaturityDate" | "MaturityDateInThePast" | "InvalidFileUploadId" | "InvalidNodeId" | "InvalidBillId" | "InvalidBillType" | "DraweeCantBePayee" | "EndorserCantBeEndorsee" | "BuyerCantBeSeller" | "RecourserCantBeRecoursee" | "DraweeNotInContacts" | "PayeeNotInContacts" | "MintNotInContacts" | "BuyerNotInContacts" | "EndorseeNotInContacts" | "RecourseeNotInContacts" | "CancelMintRequestNotPending" | "RejectMintRequestNotOffered" | "AcceptMintRequestNotOffered" | "AcceptMintOfferExpired" | "NoConfirmedEmailForIdentIdentity" | "NoFileForFileUploadId" | "NotFound" | "ExternalApi" | "Crypto" | "Persistence" | "Blockchain" | "Protocol" | "InvalidRelayUrl" | "Serialization" | "Init" | "NotificationNetwork" | "NotificationMessage" | "InvalidOperation" | "BillAlreadyAccepted" | "BillWasRejectedToAccept" | "BillAcceptanceExpired" | "BillWasRejectedToPay" | "BillPaymentExpired" | "BillWasRecoursedToTheEnd" | "BillAlreadyRequestedToAccept" | "BillNotAccepted" | "CallerIsNotDrawee" | "CallerIsNotHolder" | "CallerIsNotRecoursee" | "CallerIsNotBuyer" | "RequestAlreadyRejected" | "BillAlreadyPaid" | "BillWasNotRequestedToPay" | "BillWasNotOfferedToSell" | "BillRequestToAcceptDidNotExpireAndWasNotRejected" | "BillRequestToPayDidNotExpireAndWasNotRejected" | "RecourseeNotPastHolder" | "BillWasNotRequestedToRecourse" | "BillIsNotRequestedToRecourseAndWaitingForPayment" | "BillIsNotOfferToSellWaitingForPayment" | "BillSellDataInvalid" | "BillRecourseDataInvalid" | "BillIsRequestedToPayAndWaitingForPayment" | "BillIsOfferedToSellAndWaitingForPayment" | "BillIsInRecourseAndWaitingForPayment" | "SignatoryNotInContacts" | "SignatoryAlreadySignatory" | "CantRemoveLastSignatory" | "NotASignatory" | "NotARemovedOrRejectedSignatory" | "NotInvitedAsSignatory" | "NoSignerIdentityProof" | "FileIsTooBig" | "FileIsEmpty" | "TooManyFiles" | "InvalidFileName" | "UnknownNodeId" | "CallerMustBeSignatory" | "InvalidSignature" | "InvalidHash" | "InvalidUrl" | "InvalidIdentityProofStatus" | "Json" | "InvalidBillAction" | "InvalidMintRequestId";
852
+ export type JsErrorType = "FieldEmpty" | "FieldInvalid" | "InvalidSum" | "InvalidCurrency" | "InvalidContentType" | "IdentityCantBeAnon" | "InvalidContactType" | "InvalidIdentityType" | "InvalidDate" | "InvalidCountry" | "InvalidTimestamp" | "DeadlineBeforeMinimum" | "SelfDraftedBillCantBeBlank" | "RequestToMintForBillAndMintAlreadyActive" | "SignerCantBeAnon" | "ContactIsAnonymous" | "InvalidContact" | "InvalidMint" | "IssueDateAfterMaturityDate" | "MaturityDateInThePast" | "InvalidFileUploadId" | "InvalidNodeId" | "InvalidBillId" | "InvalidBillType" | "DraweeCantBePayee" | "EndorserCantBeEndorsee" | "BuyerCantBeSeller" | "RecourserCantBeRecoursee" | "DraweeNotInContacts" | "PayeeNotInContacts" | "MintNotInContacts" | "BuyerNotInContacts" | "EndorseeNotInContacts" | "RecourseeNotInContacts" | "CancelMintRequestNotPending" | "RejectMintRequestNotOffered" | "AcceptMintRequestNotOffered" | "AcceptMintOfferExpired" | "NoConfirmedEmailForIdentIdentity" | "NoFileForFileUploadId" | "NotFound" | "ExternalApi" | "Crypto" | "Persistence" | "Blockchain" | "Protocol" | "InvalidRelayUrl" | "Serialization" | "Init" | "NotificationNetwork" | "NotificationMessage" | "InvalidOperation" | "BillAlreadyAccepted" | "BillWasRejectedToAccept" | "BillAcceptanceExpired" | "BillWasRejectedToPay" | "BillPaymentExpired" | "BillWasRecoursedToTheEnd" | "BillAlreadyRequestedToAccept" | "BillNotAccepted" | "CallerIsNotDrawee" | "CallerIsNotHolder" | "CallerIsNotRecoursee" | "CallerIsNotBuyer" | "RequestAlreadyRejected" | "BillAlreadyPaid" | "BillWasNotRequestedToPay" | "BillWasNotOfferedToSell" | "BillRequestToAcceptDidNotExpireAndWasNotRejected" | "BillRequestToPayDidNotExpireAndWasNotRejected" | "RecourseeNotPastHolder" | "BillWasNotRequestedToRecourse" | "BillIsNotRequestedToRecourseAndWaitingForPayment" | "BillIsNotOfferToSellWaitingForPayment" | "BillSellDataInvalid" | "BillRecourseDataInvalid" | "BillIsRequestedToPayAndWaitingForPayment" | "BillIsOfferedToSellAndWaitingForPayment" | "BillIsInRecourseAndWaitingForPayment" | "SignatoryNotInContacts" | "SignatoryAlreadySignatory" | "CantRemoveLastSignatory" | "NotASignatory" | "NotARemovedOrRejectedSignatory" | "NotInvitedAsSignatory" | "NoSignerIdentityProof" | "FileIsTooBig" | "FileIsEmpty" | "TooManyFiles" | "InvalidFileName" | "UnknownNodeId" | "CallerMustBeSignatory" | "InvalidIdentityProof" | "InvalidReferenceBlock" | "InvalidSignature" | "InvalidHash" | "InvalidUrl" | "InvalidIdentityProofStatus" | "Json" | "InvalidBillAction" | "InvalidCompanyAction" | "CompanySignerCreatorMismatch" | "InvalidMintRequestId";
837
853
 
838
854
  export type LightBillParticipantWeb = { Anon: LightBillAnonParticipantWeb } | { Ident: LightBillIdentParticipantWithAddressWeb };
839
855
 
@@ -1173,20 +1189,22 @@ export interface InitOutput {
1173
1189
  readonly general_new: () => number;
1174
1190
  readonly identity_new: () => number;
1175
1191
  readonly notification_new: () => number;
1176
- readonly __wbg_bill_free: (a: number, b: number) => void;
1177
1192
  readonly __wbg_contact_free: (a: number, b: number) => void;
1178
1193
  readonly __wbg_general_free: (a: number, b: number) => void;
1179
- readonly __wbg_identity_free: (a: number, b: number) => void;
1180
- readonly __wbg_notification_free: (a: number, b: number) => void;
1181
1194
  readonly __wbg_company_free: (a: number, b: number) => void;
1182
- readonly wasm_bindgen__closure__destroy__h51aac892dc13997d: (a: number, b: number) => void;
1183
- readonly wasm_bindgen__closure__destroy__hbe06519e24c1c17d: (a: number, b: number) => void;
1184
- readonly wasm_bindgen__closure__destroy__h5f782d91b3951026: (a: number, b: number) => void;
1185
- readonly wasm_bindgen__convert__closures_____invoke__h8d953eaa28de6843: (a: number, b: number, c: any) => [number, number];
1186
- readonly wasm_bindgen__convert__closures_____invoke__h6abaf268b0f3e50a: (a: number, b: number, c: any, d: any) => void;
1187
- readonly wasm_bindgen__convert__closures_____invoke__hc7201d82e9552dab: (a: number, b: number, c: any) => void;
1188
- readonly wasm_bindgen__convert__closures_____invoke__h135d7136d7f648a6: (a: number, b: number) => void;
1189
- readonly wasm_bindgen__convert__closures_____invoke__h39afabf71b34096e: (a: number, b: number) => void;
1195
+ readonly __wbg_bill_free: (a: number, b: number) => void;
1196
+ readonly __wbg_notification_free: (a: number, b: number) => void;
1197
+ readonly __wbg_identity_free: (a: number, b: number) => void;
1198
+ readonly wasm_bindgen__closure__destroy__h2b64577c0d30e7ff: (a: number, b: number) => void;
1199
+ readonly wasm_bindgen__closure__destroy__h56f6a1c416286713: (a: number, b: number) => void;
1200
+ readonly wasm_bindgen__closure__destroy__h2681b741ef6c8dcf: (a: number, b: number) => void;
1201
+ readonly wasm_bindgen__convert__closures_____invoke__h6aec09e193342f93: (a: number, b: number, c: any) => [number, number];
1202
+ readonly wasm_bindgen__convert__closures_____invoke__h5f1e16860b61a77a: (a: number, b: number, c: any) => [number, number];
1203
+ readonly wasm_bindgen__convert__closures_____invoke__h0a7adf7d3880a828: (a: number, b: number, c: any, d: any) => void;
1204
+ readonly wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6: (a: number, b: number, c: any) => void;
1205
+ readonly wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6_2: (a: number, b: number, c: any) => void;
1206
+ readonly wasm_bindgen__convert__closures_____invoke__h3af009eb2e384dae: (a: number, b: number) => void;
1207
+ readonly wasm_bindgen__convert__closures_____invoke__hf807c24f46a17e5e: (a: number, b: number) => void;
1190
1208
  readonly __wbindgen_malloc: (a: number, b: number) => number;
1191
1209
  readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
1192
1210
  readonly __wbindgen_exn_store: (a: number) => void;
package/index.js CHANGED
@@ -22,35 +22,35 @@ export class Api {
22
22
  * @returns {Company}
23
23
  */
24
24
  static company() {
25
- const ret = wasm.api_bill();
25
+ const ret = wasm.api_company();
26
26
  return Company.__wrap(ret);
27
27
  }
28
28
  /**
29
29
  * @returns {Contact}
30
30
  */
31
31
  static contact() {
32
- const ret = wasm.api_bill();
32
+ const ret = wasm.api_contact();
33
33
  return Contact.__wrap(ret);
34
34
  }
35
35
  /**
36
36
  * @returns {General}
37
37
  */
38
38
  static general() {
39
- const ret = wasm.api_bill();
39
+ const ret = wasm.api_general();
40
40
  return General.__wrap(ret);
41
41
  }
42
42
  /**
43
43
  * @returns {Identity}
44
44
  */
45
45
  static identity() {
46
- const ret = wasm.api_bill();
46
+ const ret = wasm.api_identity();
47
47
  return Identity.__wrap(ret);
48
48
  }
49
49
  /**
50
50
  * @returns {Notification}
51
51
  */
52
52
  static notification() {
53
- const ret = wasm.api_bill();
53
+ const ret = wasm.api_notification();
54
54
  return Notification.__wrap(ret);
55
55
  }
56
56
  }
@@ -273,7 +273,7 @@ export class Bill {
273
273
  * @returns {Bill}
274
274
  */
275
275
  static new() {
276
- const ret = wasm.api_bill();
276
+ const ret = wasm.bill_new();
277
277
  return Bill.__wrap(ret);
278
278
  }
279
279
  /**
@@ -596,7 +596,7 @@ export class Company {
596
596
  * @returns {Company}
597
597
  */
598
598
  static new() {
599
- const ret = wasm.api_bill();
599
+ const ret = wasm.company_new();
600
600
  return Company.__wrap(ret);
601
601
  }
602
602
  /**
@@ -770,7 +770,7 @@ export class Contact {
770
770
  * @returns {Contact}
771
771
  */
772
772
  static new() {
773
- const ret = wasm.api_bill();
773
+ const ret = wasm.contact_new();
774
774
  return Contact.__wrap(ret);
775
775
  }
776
776
  /**
@@ -850,7 +850,7 @@ export class General {
850
850
  * @returns {General}
851
851
  */
852
852
  static new() {
853
- const ret = wasm.api_bill();
853
+ const ret = wasm.general_new();
854
854
  return General.__wrap(ret);
855
855
  }
856
856
  /**
@@ -1001,7 +1001,7 @@ export class Identity {
1001
1001
  * @returns {Identity}
1002
1002
  */
1003
1003
  static new() {
1004
- const ret = wasm.api_bill();
1004
+ const ret = wasm.identity_new();
1005
1005
  return Identity.__wrap(ret);
1006
1006
  }
1007
1007
  /**
@@ -1126,7 +1126,7 @@ export class Notification {
1126
1126
  * @returns {Notification}
1127
1127
  */
1128
1128
  static new() {
1129
- const ret = wasm.api_bill();
1129
+ const ret = wasm.notification_new();
1130
1130
  return Notification.__wrap(ret);
1131
1131
  }
1132
1132
  /**
@@ -1179,83 +1179,83 @@ export function task_worker_entry_point(ptr) {
1179
1179
  function __wbg_get_imports() {
1180
1180
  const import0 = {
1181
1181
  __proto__: null,
1182
- __wbg_Error_8c4e43fe74559d73: function(arg0, arg1) {
1182
+ __wbg_Error_83742b46f01ce22d: function(arg0, arg1) {
1183
1183
  const ret = Error(getStringFromWasm0(arg0, arg1));
1184
1184
  return ret;
1185
1185
  },
1186
- __wbg_Number_04624de7d0e8332d: function(arg0) {
1186
+ __wbg_Number_a5a435bd7bbec835: function(arg0) {
1187
1187
  const ret = Number(arg0);
1188
1188
  return ret;
1189
1189
  },
1190
- __wbg_String_8f0eb39a4a4c2f66: function(arg0, arg1) {
1190
+ __wbg_String_8564e559799eccda: function(arg0, arg1) {
1191
1191
  const ret = String(arg1);
1192
1192
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
1193
1193
  const len1 = WASM_VECTOR_LEN;
1194
1194
  getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
1195
1195
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
1196
1196
  },
1197
- __wbg___wbindgen_bigint_get_as_i64_8fcf4ce7f1ca72a2: function(arg0, arg1) {
1197
+ __wbg___wbindgen_bigint_get_as_i64_447a76b5c6ef7bda: function(arg0, arg1) {
1198
1198
  const v = arg1;
1199
1199
  const ret = typeof(v) === 'bigint' ? v : undefined;
1200
1200
  getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
1201
1201
  getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
1202
1202
  },
1203
- __wbg___wbindgen_boolean_get_bbbb1c18aa2f5e25: function(arg0) {
1203
+ __wbg___wbindgen_boolean_get_c0f3f60bac5a78d1: function(arg0) {
1204
1204
  const v = arg0;
1205
1205
  const ret = typeof(v) === 'boolean' ? v : undefined;
1206
1206
  return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
1207
1207
  },
1208
- __wbg___wbindgen_debug_string_0bc8482c6e3508ae: function(arg0, arg1) {
1208
+ __wbg___wbindgen_debug_string_5398f5bb970e0daa: function(arg0, arg1) {
1209
1209
  const ret = debugString(arg1);
1210
1210
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
1211
1211
  const len1 = WASM_VECTOR_LEN;
1212
1212
  getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
1213
1213
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
1214
1214
  },
1215
- __wbg___wbindgen_in_47fa6863be6f2f25: function(arg0, arg1) {
1215
+ __wbg___wbindgen_in_41dbb8413020e076: function(arg0, arg1) {
1216
1216
  const ret = arg0 in arg1;
1217
1217
  return ret;
1218
1218
  },
1219
- __wbg___wbindgen_is_bigint_31b12575b56f32fc: function(arg0) {
1219
+ __wbg___wbindgen_is_bigint_e2141d4f045b7eda: function(arg0) {
1220
1220
  const ret = typeof(arg0) === 'bigint';
1221
1221
  return ret;
1222
1222
  },
1223
- __wbg___wbindgen_is_falsy_e623e5b815413d00: function(arg0) {
1223
+ __wbg___wbindgen_is_falsy_30906e697739fcc2: function(arg0) {
1224
1224
  const ret = !arg0;
1225
1225
  return ret;
1226
1226
  },
1227
- __wbg___wbindgen_is_function_0095a73b8b156f76: function(arg0) {
1227
+ __wbg___wbindgen_is_function_3c846841762788c1: function(arg0) {
1228
1228
  const ret = typeof(arg0) === 'function';
1229
1229
  return ret;
1230
1230
  },
1231
- __wbg___wbindgen_is_object_5ae8e5880f2c1fbd: function(arg0) {
1231
+ __wbg___wbindgen_is_object_781bc9f159099513: function(arg0) {
1232
1232
  const val = arg0;
1233
1233
  const ret = typeof(val) === 'object' && val !== null;
1234
1234
  return ret;
1235
1235
  },
1236
- __wbg___wbindgen_is_string_cd444516edc5b180: function(arg0) {
1236
+ __wbg___wbindgen_is_string_7ef6b97b02428fae: function(arg0) {
1237
1237
  const ret = typeof(arg0) === 'string';
1238
1238
  return ret;
1239
1239
  },
1240
- __wbg___wbindgen_is_undefined_9e4d92534c42d778: function(arg0) {
1240
+ __wbg___wbindgen_is_undefined_52709e72fb9f179c: function(arg0) {
1241
1241
  const ret = arg0 === undefined;
1242
1242
  return ret;
1243
1243
  },
1244
- __wbg___wbindgen_jsval_eq_11888390b0186270: function(arg0, arg1) {
1244
+ __wbg___wbindgen_jsval_eq_ee31bfad3e536463: function(arg0, arg1) {
1245
1245
  const ret = arg0 === arg1;
1246
1246
  return ret;
1247
1247
  },
1248
- __wbg___wbindgen_jsval_loose_eq_9dd77d8cd6671811: function(arg0, arg1) {
1248
+ __wbg___wbindgen_jsval_loose_eq_5bcc3bed3c69e72b: function(arg0, arg1) {
1249
1249
  const ret = arg0 == arg1;
1250
1250
  return ret;
1251
1251
  },
1252
- __wbg___wbindgen_number_get_8ff4255516ccad3e: function(arg0, arg1) {
1252
+ __wbg___wbindgen_number_get_34bb9d9dcfa21373: function(arg0, arg1) {
1253
1253
  const obj = arg1;
1254
1254
  const ret = typeof(obj) === 'number' ? obj : undefined;
1255
1255
  getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
1256
1256
  getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
1257
1257
  },
1258
- __wbg___wbindgen_string_get_72fb696202c56729: function(arg0, arg1) {
1258
+ __wbg___wbindgen_string_get_395e606bd0ee4427: function(arg0, arg1) {
1259
1259
  const obj = arg1;
1260
1260
  const ret = typeof(obj) === 'string' ? obj : undefined;
1261
1261
  var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
@@ -1263,114 +1263,117 @@ function __wbg_get_imports() {
1263
1263
  getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
1264
1264
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
1265
1265
  },
1266
- __wbg___wbindgen_throw_be289d5034ed271b: function(arg0, arg1) {
1266
+ __wbg___wbindgen_throw_6ddd609b62940d55: function(arg0, arg1) {
1267
1267
  throw new Error(getStringFromWasm0(arg0, arg1));
1268
1268
  },
1269
- __wbg__wbg_cb_unref_d9b87ff7982e3b21: function(arg0) {
1269
+ __wbg__wbg_cb_unref_6b5b6b8576d35cb1: function(arg0) {
1270
1270
  arg0._wbg_cb_unref();
1271
1271
  },
1272
- __wbg_abort_2f0584e03e8e3950: function(arg0) {
1272
+ __wbg_abort_5ef96933660780b7: function(arg0) {
1273
1273
  arg0.abort();
1274
1274
  },
1275
- __wbg_abort_5151361027dc87df: function() { return handleError(function (arg0) {
1275
+ __wbg_abort_60dcb252ae0031fc: function() { return handleError(function (arg0) {
1276
1276
  arg0.abort();
1277
1277
  }, arguments); },
1278
- __wbg_abort_d549b92d3c665de1: function(arg0, arg1) {
1278
+ __wbg_abort_6479c2d794ebf2ee: function(arg0, arg1) {
1279
1279
  arg0.abort(arg1);
1280
1280
  },
1281
- __wbg_advance_92b0e42f9cd4e26b: function() { return handleError(function (arg0, arg1) {
1281
+ __wbg_advance_670851c833f4530f: function() { return handleError(function (arg0, arg1) {
1282
1282
  arg0.advance(arg1 >>> 0);
1283
1283
  }, arguments); },
1284
- __wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
1284
+ __wbg_append_608dfb635ee8998f: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
1285
1285
  arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
1286
1286
  }, arguments); },
1287
- __wbg_arrayBuffer_bb54076166006c39: function() { return handleError(function (arg0) {
1287
+ __wbg_arrayBuffer_eb8e9ca620af2a19: function() { return handleError(function (arg0) {
1288
1288
  const ret = arg0.arrayBuffer();
1289
1289
  return ret;
1290
1290
  }, arguments); },
1291
- __wbg_bound_cd56e28886f21887: function() { return handleError(function (arg0, arg1, arg2, arg3) {
1291
+ __wbg_bound_4e343b4fbe5419fa: function() { return handleError(function (arg0, arg1, arg2, arg3) {
1292
1292
  const ret = IDBKeyRange.bound(arg0, arg1, arg2 !== 0, arg3 !== 0);
1293
1293
  return ret;
1294
1294
  }, arguments); },
1295
- __wbg_call_389efe28435a9388: function() { return handleError(function (arg0, arg1) {
1296
- const ret = arg0.call(arg1);
1295
+ __wbg_call_2d781c1f4d5c0ef8: function() { return handleError(function (arg0, arg1, arg2) {
1296
+ const ret = arg0.call(arg1, arg2);
1297
1297
  return ret;
1298
1298
  }, arguments); },
1299
- __wbg_call_4708e0c13bdc8e95: function() { return handleError(function (arg0, arg1, arg2) {
1300
- const ret = arg0.call(arg1, arg2);
1299
+ __wbg_call_e133b57c9155d22c: function() { return handleError(function (arg0, arg1) {
1300
+ const ret = arg0.call(arg1);
1301
1301
  return ret;
1302
1302
  }, arguments); },
1303
- __wbg_clearInterval_f58e642200529dfb: function(arg0) {
1303
+ __wbg_clearInterval_f2824d65a83440ff: function(arg0) {
1304
1304
  globalThis.clearInterval(arg0);
1305
1305
  },
1306
- __wbg_clearTimeout_42d9ccd50822fd3a: function(arg0) {
1306
+ __wbg_clearTimeout_113b1cde814ec762: function(arg0) {
1307
1307
  const ret = clearTimeout(arg0);
1308
1308
  return ret;
1309
1309
  },
1310
- __wbg_clearTimeout_5a54f8841c30079a: function(arg0) {
1310
+ __wbg_clearTimeout_6b8d9a38b9263d65: function(arg0) {
1311
1311
  const ret = clearTimeout(arg0);
1312
1312
  return ret;
1313
1313
  },
1314
- __wbg_close_1d08eaf57ed325c0: function() { return handleError(function (arg0) {
1314
+ __wbg_close_af26905c832a88cb: function() { return handleError(function (arg0) {
1315
1315
  arg0.close();
1316
1316
  }, arguments); },
1317
- __wbg_code_35e4ec59fbc7d427: function(arg0) {
1317
+ __wbg_code_aea376e2d265a64f: function(arg0) {
1318
1318
  const ret = arg0.code;
1319
1319
  return ret;
1320
1320
  },
1321
- __wbg_code_a552f1e91eda69b7: function(arg0) {
1321
+ __wbg_code_bc4dde4d67926010: function(arg0) {
1322
1322
  const ret = arg0.code;
1323
1323
  return ret;
1324
1324
  },
1325
- __wbg_contains_bde74fed714d6521: function(arg0, arg1, arg2) {
1325
+ __wbg_contains_ef4bfb7fa5a241b7: function(arg0, arg1, arg2) {
1326
1326
  const ret = arg0.contains(getStringFromWasm0(arg1, arg2));
1327
1327
  return ret;
1328
1328
  },
1329
- __wbg_continue_209e676996911d82: function() { return handleError(function (arg0) {
1329
+ __wbg_continue_44abcf9ba406e87e: function() { return handleError(function (arg0) {
1330
1330
  arg0.continue();
1331
1331
  }, arguments); },
1332
- __wbg_createIndex_9a2be04a017f6a17: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
1332
+ __wbg_createIndex_323cb0213cc21d9b: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
1333
1333
  const ret = arg0.createIndex(getStringFromWasm0(arg1, arg2), arg3, arg4);
1334
1334
  return ret;
1335
1335
  }, arguments); },
1336
- __wbg_createObjectStore_f75f59d55a549868: function() { return handleError(function (arg0, arg1, arg2, arg3) {
1336
+ __wbg_createObjectStore_4709de9339ffc6c0: function() { return handleError(function (arg0, arg1, arg2, arg3) {
1337
1337
  const ret = arg0.createObjectStore(getStringFromWasm0(arg1, arg2), arg3);
1338
1338
  return ret;
1339
1339
  }, arguments); },
1340
- __wbg_crypto_86f2631e91b51511: function(arg0) {
1340
+ __wbg_crypto_38df2bab126b63dc: function(arg0) {
1341
1341
  const ret = arg0.crypto;
1342
1342
  return ret;
1343
1343
  },
1344
- __wbg_data_5330da50312d0bc1: function(arg0) {
1344
+ __wbg_data_a3d9ff9cdd801002: function(arg0) {
1345
1345
  const ret = arg0.data;
1346
1346
  return ret;
1347
1347
  },
1348
- __wbg_debug_46a93995fc6f8820: function(arg0, arg1, arg2, arg3) {
1348
+ __wbg_debug_271c16e6de0bc226: function(arg0, arg1, arg2, arg3) {
1349
1349
  console.debug(arg0, arg1, arg2, arg3);
1350
1350
  },
1351
- __wbg_deleteIndex_0a7a8e99fe536b7c: function() { return handleError(function (arg0, arg1, arg2) {
1351
+ __wbg_deleteIndex_9391b8bace7b0b18: function() { return handleError(function (arg0, arg1, arg2) {
1352
1352
  arg0.deleteIndex(getStringFromWasm0(arg1, arg2));
1353
1353
  }, arguments); },
1354
- __wbg_deleteObjectStore_6f911570c372b5f6: function() { return handleError(function (arg0, arg1, arg2) {
1354
+ __wbg_deleteObjectStore_65401ab024ac08c1: function() { return handleError(function (arg0, arg1, arg2) {
1355
1355
  arg0.deleteObjectStore(getStringFromWasm0(arg1, arg2));
1356
1356
  }, arguments); },
1357
- __wbg_delete_d6d7f750bd9ed2cd: function() { return handleError(function (arg0, arg1) {
1357
+ __wbg_delete_40db93c05c546fb9: function() { return handleError(function (arg0, arg1) {
1358
1358
  const ret = arg0.delete(arg1);
1359
1359
  return ret;
1360
1360
  }, arguments); },
1361
- __wbg_done_57b39ecd9addfe81: function(arg0) {
1361
+ __wbg_done_08ce71ee07e3bd17: function(arg0) {
1362
1362
  const ret = arg0.done;
1363
1363
  return ret;
1364
1364
  },
1365
- __wbg_entries_58c7934c745daac7: function(arg0) {
1365
+ __wbg_entries_e8a20ff8c9757101: function(arg0) {
1366
1366
  const ret = Object.entries(arg0);
1367
1367
  return ret;
1368
1368
  },
1369
- __wbg_error_6afb95c784775817: function() { return handleError(function (arg0) {
1369
+ __wbg_error_1eece6b0039034ce: function(arg0, arg1, arg2, arg3) {
1370
+ console.error(arg0, arg1, arg2, arg3);
1371
+ },
1372
+ __wbg_error_74898554122344a8: function() { return handleError(function (arg0) {
1370
1373
  const ret = arg0.error;
1371
1374
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
1372
1375
  }, arguments); },
1373
- __wbg_error_7534b8e9a36f1ab4: function(arg0, arg1) {
1376
+ __wbg_error_a6fa202b58aa1cd3: function(arg0, arg1) {
1374
1377
  let deferred0_0;
1375
1378
  let deferred0_1;
1376
1379
  try {
@@ -1381,76 +1384,81 @@ function __wbg_get_imports() {
1381
1384
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
1382
1385
  }
1383
1386
  },
1384
- __wbg_error_794d0ffc9d00d5c3: function(arg0, arg1, arg2, arg3) {
1385
- console.error(arg0, arg1, arg2, arg3);
1386
- },
1387
- __wbg_error_c8eaf2faafef0bdd: function(arg0, arg1) {
1387
+ __wbg_error_ba2b2915aeba36d8: function(arg0, arg1) {
1388
1388
  console.error(getStringFromWasm0(arg0, arg1));
1389
1389
  },
1390
- __wbg_fetch_6bbc32f991730587: function(arg0) {
1391
- const ret = fetch(arg0);
1390
+ __wbg_fetch_5550a88cf343aaa9: function(arg0, arg1) {
1391
+ const ret = arg0.fetch(arg1);
1392
1392
  return ret;
1393
1393
  },
1394
- __wbg_fetch_afb6a4b6cacf876d: function(arg0, arg1) {
1395
- const ret = arg0.fetch(arg1);
1394
+ __wbg_fetch_9dad4fe911207b37: function(arg0) {
1395
+ const ret = fetch(arg0);
1396
1396
  return ret;
1397
1397
  },
1398
- __wbg_getRandomValues_1c61fac11405ffdc: function() { return handleError(function (arg0, arg1) {
1398
+ __wbg_getRandomValues_3dda8830c2565714: function() { return handleError(function (arg0, arg1) {
1399
1399
  globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
1400
1400
  }, arguments); },
1401
- __wbg_getRandomValues_71d446877d8b0ad4: function() { return handleError(function (arg0, arg1) {
1401
+ __wbg_getRandomValues_3f44b700395062e5: function() { return handleError(function (arg0, arg1) {
1402
1402
  globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
1403
1403
  }, arguments); },
1404
- __wbg_getRandomValues_b3f15fcbfabb0f8b: function() { return handleError(function (arg0, arg1) {
1404
+ __wbg_getRandomValues_c44a50d8cfdaebeb: function() { return handleError(function (arg0, arg1) {
1405
1405
  arg0.getRandomValues(arg1);
1406
1406
  }, arguments); },
1407
- __wbg_getTime_1e3cd1391c5c3995: function(arg0) {
1407
+ __wbg_getTime_1dad7b5386ddd2d9: function(arg0) {
1408
1408
  const ret = arg0.getTime();
1409
1409
  return ret;
1410
1410
  },
1411
- __wbg_getTimezoneOffset_81776d10a4ec18a8: function(arg0) {
1411
+ __wbg_getTimezoneOffset_639bcf2dde21158b: function(arg0) {
1412
1412
  const ret = arg0.getTimezoneOffset();
1413
1413
  return ret;
1414
1414
  },
1415
- __wbg_get_5e856edb32ac1289: function() { return handleError(function (arg0, arg1) {
1415
+ __wbg_get_326e41e095fb2575: function() { return handleError(function (arg0, arg1) {
1416
+ const ret = Reflect.get(arg0, arg1);
1417
+ return ret;
1418
+ }, arguments); },
1419
+ __wbg_get_3ef1eba1850ade27: function() { return handleError(function (arg0, arg1) {
1420
+ const ret = Reflect.get(arg0, arg1);
1421
+ return ret;
1422
+ }, arguments); },
1423
+ __wbg_get_6ac8c8119f577720: function() { return handleError(function (arg0, arg1) {
1416
1424
  const ret = arg0.get(arg1);
1417
1425
  return ret;
1418
1426
  }, arguments); },
1419
- __wbg_get_626204a85e34f823: function(arg0, arg1, arg2) {
1427
+ __wbg_get_7873e3afa59bad00: function(arg0, arg1, arg2) {
1420
1428
  const ret = arg1[arg2 >>> 0];
1421
1429
  var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
1422
1430
  var len1 = WASM_VECTOR_LEN;
1423
1431
  getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
1424
1432
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
1425
1433
  },
1426
- __wbg_get_9b94d73e6221f75c: function(arg0, arg1) {
1434
+ __wbg_get_a8ee5c45dabc1b3b: function(arg0, arg1) {
1427
1435
  const ret = arg0[arg1 >>> 0];
1428
1436
  return ret;
1429
1437
  },
1430
- __wbg_get_b3ed3ad4be2bc8ac: function() { return handleError(function (arg0, arg1) {
1431
- const ret = Reflect.get(arg0, arg1);
1438
+ __wbg_get_unchecked_329cfe50afab7352: function(arg0, arg1) {
1439
+ const ret = arg0[arg1 >>> 0];
1432
1440
  return ret;
1433
- }, arguments); },
1434
- __wbg_get_with_ref_key_1dc361bd10053bfe: function(arg0, arg1) {
1441
+ },
1442
+ __wbg_get_with_ref_key_6412cf3094599694: function(arg0, arg1) {
1435
1443
  const ret = arg0[arg1];
1436
1444
  return ret;
1437
1445
  },
1438
- __wbg_has_d4e53238966c12b6: function() { return handleError(function (arg0, arg1) {
1446
+ __wbg_has_926ef2ff40b308cf: function() { return handleError(function (arg0, arg1) {
1439
1447
  const ret = Reflect.has(arg0, arg1);
1440
1448
  return ret;
1441
1449
  }, arguments); },
1442
- __wbg_headers_59a2938db9f80985: function(arg0) {
1450
+ __wbg_headers_eb2234545f9ff993: function(arg0) {
1443
1451
  const ret = arg0.headers;
1444
1452
  return ret;
1445
1453
  },
1446
- __wbg_indexNames_e2c333fa9895469f: function(arg0) {
1454
+ __wbg_indexNames_3a9be68017fb9405: function(arg0) {
1447
1455
  const ret = arg0.indexNames;
1448
1456
  return ret;
1449
1457
  },
1450
- __wbg_info_9e602cf10c5c690b: function(arg0, arg1, arg2, arg3) {
1458
+ __wbg_info_0194681687b5ab04: function(arg0, arg1, arg2, arg3) {
1451
1459
  console.info(arg0, arg1, arg2, arg3);
1452
1460
  },
1453
- __wbg_instanceof_ArrayBuffer_c367199e2fa2aa04: function(arg0) {
1461
+ __wbg_instanceof_ArrayBuffer_101e2bf31071a9f6: function(arg0) {
1454
1462
  let result;
1455
1463
  try {
1456
1464
  result = arg0 instanceof ArrayBuffer;
@@ -1460,7 +1468,7 @@ function __wbg_get_imports() {
1460
1468
  const ret = result;
1461
1469
  return ret;
1462
1470
  },
1463
- __wbg_instanceof_Blob_ce92a9ddd729a84a: function(arg0) {
1471
+ __wbg_instanceof_Blob_c91af000f11c2d0b: function(arg0) {
1464
1472
  let result;
1465
1473
  try {
1466
1474
  result = arg0 instanceof Blob;
@@ -1470,7 +1478,7 @@ function __wbg_get_imports() {
1470
1478
  const ret = result;
1471
1479
  return ret;
1472
1480
  },
1473
- __wbg_instanceof_IdbFactory_39d4fb6425cae0a6: function(arg0) {
1481
+ __wbg_instanceof_IdbFactory_efcffbfd9020e4ac: function(arg0) {
1474
1482
  let result;
1475
1483
  try {
1476
1484
  result = arg0 instanceof IDBFactory;
@@ -1480,7 +1488,7 @@ function __wbg_get_imports() {
1480
1488
  const ret = result;
1481
1489
  return ret;
1482
1490
  },
1483
- __wbg_instanceof_Map_53af74335dec57f4: function(arg0) {
1491
+ __wbg_instanceof_Map_f194b366846aca0c: function(arg0) {
1484
1492
  let result;
1485
1493
  try {
1486
1494
  result = arg0 instanceof Map;
@@ -1490,7 +1498,7 @@ function __wbg_get_imports() {
1490
1498
  const ret = result;
1491
1499
  return ret;
1492
1500
  },
1493
- __wbg_instanceof_Response_ee1d54d79ae41977: function(arg0) {
1501
+ __wbg_instanceof_Response_9b4d9fd451e051b1: function(arg0) {
1494
1502
  let result;
1495
1503
  try {
1496
1504
  result = arg0 instanceof Response;
@@ -1500,7 +1508,7 @@ function __wbg_get_imports() {
1500
1508
  const ret = result;
1501
1509
  return ret;
1502
1510
  },
1503
- __wbg_instanceof_Uint8Array_9b9075935c74707c: function(arg0) {
1511
+ __wbg_instanceof_Uint8Array_740438561a5b956d: function(arg0) {
1504
1512
  let result;
1505
1513
  try {
1506
1514
  result = arg0 instanceof Uint8Array;
@@ -1510,77 +1518,81 @@ function __wbg_get_imports() {
1510
1518
  const ret = result;
1511
1519
  return ret;
1512
1520
  },
1513
- __wbg_isArray_d314bb98fcf08331: function(arg0) {
1521
+ __wbg_isArray_33b91feb269ff46e: function(arg0) {
1514
1522
  const ret = Array.isArray(arg0);
1515
1523
  return ret;
1516
1524
  },
1517
- __wbg_isSafeInteger_bfbc7332a9768d2a: function(arg0) {
1525
+ __wbg_isSafeInteger_ecd6a7f9c3e053cd: function(arg0) {
1518
1526
  const ret = Number.isSafeInteger(arg0);
1519
1527
  return ret;
1520
1528
  },
1521
- __wbg_iterator_6ff6560ca1568e55: function() {
1529
+ __wbg_iterator_d8f549ec8fb061b1: function() {
1522
1530
  const ret = Symbol.iterator;
1523
1531
  return ret;
1524
1532
  },
1525
- __wbg_key_c27cb3b734638d81: function() { return handleError(function (arg0) {
1533
+ __wbg_key_581f2698de7f8240: function() { return handleError(function (arg0) {
1526
1534
  const ret = arg0.key;
1527
1535
  return ret;
1528
1536
  }, arguments); },
1529
- __wbg_length_32ed9a279acd054c: function(arg0) {
1537
+ __wbg_length_02c4f6002306a824: function(arg0) {
1530
1538
  const ret = arg0.length;
1531
1539
  return ret;
1532
1540
  },
1533
- __wbg_length_35a7bace40f36eac: function(arg0) {
1541
+ __wbg_length_b3416cf66a5452c8: function(arg0) {
1534
1542
  const ret = arg0.length;
1535
1543
  return ret;
1536
1544
  },
1537
- __wbg_length_4c6eb4059a3635c9: function(arg0) {
1545
+ __wbg_length_ea16607d7b61445b: function(arg0) {
1538
1546
  const ret = arg0.length;
1539
1547
  return ret;
1540
1548
  },
1541
- __wbg_log_24aba2a6d8990b35: function(arg0, arg1, arg2, arg3) {
1549
+ __wbg_log_70972330cfc941dd: function(arg0, arg1, arg2, arg3) {
1542
1550
  console.log(arg0, arg1, arg2, arg3);
1543
1551
  },
1544
- __wbg_msCrypto_d562bbe83e0d4b91: function(arg0) {
1552
+ __wbg_msCrypto_bd5a034af96bcba6: function(arg0) {
1545
1553
  const ret = arg0.msCrypto;
1546
1554
  return ret;
1547
1555
  },
1548
- __wbg_new_057993d5b5e07835: function() { return handleError(function (arg0, arg1) {
1549
- const ret = new WebSocket(getStringFromWasm0(arg0, arg1));
1556
+ __wbg_new_0837727332ac86ba: function() { return handleError(function () {
1557
+ const ret = new Headers();
1550
1558
  return ret;
1551
1559
  }, arguments); },
1552
- __wbg_new_0_73afc35eb544e539: function() {
1560
+ __wbg_new_0_1dcafdf5e786e876: function() {
1553
1561
  const ret = new Date();
1554
1562
  return ret;
1555
1563
  },
1556
- __wbg_new_245cd5c49157e602: function(arg0) {
1557
- const ret = new Date(arg0);
1564
+ __wbg_new_227d7c05414eb861: function() {
1565
+ const ret = new Error();
1558
1566
  return ret;
1559
1567
  },
1560
- __wbg_new_361308b2356cecd0: function() {
1561
- const ret = new Object();
1568
+ __wbg_new_49d5571bd3f0c4d4: function() {
1569
+ const ret = new Map();
1562
1570
  return ret;
1563
1571
  },
1564
- __wbg_new_3eb36ae241fe6f44: function() {
1565
- const ret = new Array();
1572
+ __wbg_new_5f486cdf45a04d78: function(arg0) {
1573
+ const ret = new Uint8Array(arg0);
1566
1574
  return ret;
1567
1575
  },
1568
- __wbg_new_64284bd487f9d239: function() { return handleError(function () {
1569
- const ret = new Headers();
1576
+ __wbg_new_a70fbab9066b301f: function() {
1577
+ const ret = new Array();
1570
1578
  return ret;
1571
- }, arguments); },
1572
- __wbg_new_8a6f238a6ece86ea: function() {
1573
- const ret = new Error();
1579
+ },
1580
+ __wbg_new_ab79df5bd7c26067: function() {
1581
+ const ret = new Object();
1574
1582
  return ret;
1575
1583
  },
1576
- __wbg_new_b5d9e2fb389fef91: function(arg0, arg1) {
1584
+ __wbg_new_c518c60af666645b: function() { return handleError(function () {
1585
+ const ret = new AbortController();
1586
+ return ret;
1587
+ }, arguments); },
1588
+ __wbg_new_d098e265629cd10f: function(arg0, arg1) {
1577
1589
  try {
1578
1590
  var state0 = {a: arg0, b: arg1};
1579
1591
  var cb0 = (arg0, arg1) => {
1580
1592
  const a = state0.a;
1581
1593
  state0.a = 0;
1582
1594
  try {
1583
- return wasm_bindgen__convert__closures_____invoke__h6abaf268b0f3e50a(a, state0.b, arg0, arg1);
1595
+ return wasm_bindgen__convert__closures_____invoke__h0a7adf7d3880a828(a, state0.b, arg0, arg1);
1584
1596
  } finally {
1585
1597
  state0.a = a;
1586
1598
  }
@@ -1591,379 +1603,393 @@ function __wbg_get_imports() {
1591
1603
  state0.a = state0.b = 0;
1592
1604
  }
1593
1605
  },
1594
- __wbg_new_b949e7f56150a5d1: function() { return handleError(function () {
1595
- const ret = new AbortController();
1606
+ __wbg_new_dd50bcc3f60ba434: function() { return handleError(function (arg0, arg1) {
1607
+ const ret = new WebSocket(getStringFromWasm0(arg0, arg1));
1596
1608
  return ret;
1597
1609
  }, arguments); },
1598
- __wbg_new_dca287b076112a51: function() {
1599
- const ret = new Map();
1600
- return ret;
1601
- },
1602
- __wbg_new_dd2b680c8bf6ae29: function(arg0) {
1603
- const ret = new Uint8Array(arg0);
1610
+ __wbg_new_fd94ca5c9639abd2: function(arg0) {
1611
+ const ret = new Date(arg0);
1604
1612
  return ret;
1605
1613
  },
1606
- __wbg_new_from_slice_a3d2629dc1826784: function(arg0, arg1) {
1614
+ __wbg_new_from_slice_22da9388ac046e50: function(arg0, arg1) {
1607
1615
  const ret = new Uint8Array(getArrayU8FromWasm0(arg0, arg1));
1608
1616
  return ret;
1609
1617
  },
1610
- __wbg_new_no_args_1c7c842f08d00ebb: function(arg0, arg1) {
1611
- const ret = new Function(getStringFromWasm0(arg0, arg1));
1618
+ __wbg_new_typed_aaaeaf29cf802876: function(arg0, arg1) {
1619
+ try {
1620
+ var state0 = {a: arg0, b: arg1};
1621
+ var cb0 = (arg0, arg1) => {
1622
+ const a = state0.a;
1623
+ state0.a = 0;
1624
+ try {
1625
+ return wasm_bindgen__convert__closures_____invoke__h0a7adf7d3880a828(a, state0.b, arg0, arg1);
1626
+ } finally {
1627
+ state0.a = a;
1628
+ }
1629
+ };
1630
+ const ret = new Promise(cb0);
1631
+ return ret;
1632
+ } finally {
1633
+ state0.a = state0.b = 0;
1634
+ }
1635
+ },
1636
+ __wbg_new_typed_bccac67128ed885a: function() {
1637
+ const ret = new Array();
1612
1638
  return ret;
1613
1639
  },
1614
- __wbg_new_with_length_a2c39cbe88fd8ff1: function(arg0) {
1640
+ __wbg_new_with_length_825018a1616e9e55: function(arg0) {
1615
1641
  const ret = new Uint8Array(arg0 >>> 0);
1616
1642
  return ret;
1617
1643
  },
1618
- __wbg_new_with_str_and_init_a61cbc6bdef21614: function() { return handleError(function (arg0, arg1, arg2) {
1644
+ __wbg_new_with_str_and_init_b4b54d1a819bc724: function() { return handleError(function (arg0, arg1, arg2) {
1619
1645
  const ret = new Request(getStringFromWasm0(arg0, arg1), arg2);
1620
1646
  return ret;
1621
1647
  }, arguments); },
1622
- __wbg_next_3482f54c49e8af19: function() { return handleError(function (arg0) {
1648
+ __wbg_next_11b99ee6237339e3: function() { return handleError(function (arg0) {
1623
1649
  const ret = arg0.next();
1624
1650
  return ret;
1625
1651
  }, arguments); },
1626
- __wbg_next_418f80d8f5303233: function(arg0) {
1652
+ __wbg_next_e01a967809d1aa68: function(arg0) {
1627
1653
  const ret = arg0.next;
1628
1654
  return ret;
1629
1655
  },
1630
- __wbg_node_e1f24f89a7336c2e: function(arg0) {
1656
+ __wbg_node_84ea875411254db1: function(arg0) {
1631
1657
  const ret = arg0.node;
1632
1658
  return ret;
1633
1659
  },
1634
- __wbg_now_20ea2aaee436b621: function() { return handleError(function () {
1660
+ __wbg_now_16f0c993d5dd6c27: function() {
1635
1661
  const ret = Date.now();
1636
1662
  return ret;
1637
- }, arguments); },
1638
- __wbg_now_71123b9940376874: function(arg0) {
1639
- const ret = arg0.now();
1640
- return ret;
1641
1663
  },
1642
- __wbg_now_a3af9a2f4bbaa4d1: function() {
1664
+ __wbg_now_67c2115a7c146997: function() { return handleError(function () {
1643
1665
  const ret = Date.now();
1644
1666
  return ret;
1667
+ }, arguments); },
1668
+ __wbg_now_6c1d1e978b8b5f6e: function(arg0) {
1669
+ const ret = arg0.now();
1670
+ return ret;
1645
1671
  },
1646
- __wbg_now_ebffdf7e580f210d: function(arg0) {
1672
+ __wbg_now_c6d7a7d35f74f6f1: function(arg0) {
1647
1673
  const ret = arg0.now();
1648
1674
  return ret;
1649
1675
  },
1650
- __wbg_objectStoreNames_d2c5d2377420ad78: function(arg0) {
1676
+ __wbg_objectStoreNames_564985d2e9ae7523: function(arg0) {
1651
1677
  const ret = arg0.objectStoreNames;
1652
1678
  return ret;
1653
1679
  },
1654
- __wbg_objectStore_d56e603390dcc165: function() { return handleError(function (arg0, arg1, arg2) {
1680
+ __wbg_objectStore_f314ab152a5c7bd0: function() { return handleError(function (arg0, arg1, arg2) {
1655
1681
  const ret = arg0.objectStore(getStringFromWasm0(arg1, arg2));
1656
1682
  return ret;
1657
1683
  }, arguments); },
1658
- __wbg_openCursor_0b21622d2de8f313: function() { return handleError(function (arg0, arg1) {
1659
- const ret = arg0.openCursor(arg1);
1660
- return ret;
1661
- }, arguments); },
1662
- __wbg_openCursor_2df325852ae85998: function() { return handleError(function (arg0) {
1684
+ __wbg_openCursor_7f0cc3f660850dc1: function() { return handleError(function (arg0) {
1663
1685
  const ret = arg0.openCursor();
1664
1686
  return ret;
1665
1687
  }, arguments); },
1666
- __wbg_openCursor_73adc695cace4477: function() { return handleError(function (arg0, arg1, arg2) {
1688
+ __wbg_openCursor_92dbb828857828a4: function() { return handleError(function (arg0, arg1, arg2) {
1667
1689
  const ret = arg0.openCursor(arg1, __wbindgen_enum_IdbCursorDirection[arg2]);
1668
1690
  return ret;
1669
1691
  }, arguments); },
1670
- __wbg_open_1b21db8aeca0eea9: function() { return handleError(function (arg0, arg1, arg2) {
1671
- const ret = arg0.open(getStringFromWasm0(arg1, arg2));
1692
+ __wbg_openCursor_d2c404b7a149da6b: function() { return handleError(function (arg0, arg1) {
1693
+ const ret = arg0.openCursor(arg1);
1672
1694
  return ret;
1673
1695
  }, arguments); },
1674
- __wbg_open_82db86fd5b087109: function() { return handleError(function (arg0, arg1, arg2, arg3) {
1696
+ __wbg_open_e7a9d3d6344572f6: function() { return handleError(function (arg0, arg1, arg2, arg3) {
1675
1697
  const ret = arg0.open(getStringFromWasm0(arg1, arg2), arg3 >>> 0);
1676
1698
  return ret;
1677
1699
  }, arguments); },
1678
- __wbg_performance_1a2515c93daf8b0c: function(arg0) {
1700
+ __wbg_open_f3dc09caa3990bc4: function() { return handleError(function (arg0, arg1, arg2) {
1701
+ const ret = arg0.open(getStringFromWasm0(arg1, arg2));
1702
+ return ret;
1703
+ }, arguments); },
1704
+ __wbg_performance_9df3cb88b297e33d: function(arg0) {
1679
1705
  const ret = arg0.performance;
1680
1706
  return ret;
1681
1707
  },
1682
- __wbg_postMessage_2041f4e90af61318: function() { return handleError(function (arg0, arg1) {
1708
+ __wbg_postMessage_564f0071531c08c3: function() { return handleError(function (arg0, arg1) {
1683
1709
  arg0.postMessage(arg1);
1684
1710
  }, arguments); },
1685
- __wbg_process_3975fd6c72f520aa: function(arg0) {
1711
+ __wbg_process_44c7a14e11e9f69e: function(arg0) {
1686
1712
  const ret = arg0.process;
1687
1713
  return ret;
1688
1714
  },
1689
- __wbg_prototypesetcall_bdcdcc5842e4d77d: function(arg0, arg1, arg2) {
1715
+ __wbg_prototypesetcall_d62e5099504357e6: function(arg0, arg1, arg2) {
1690
1716
  Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
1691
1717
  },
1692
- __wbg_push_8ffdcb2063340ba5: function(arg0, arg1) {
1718
+ __wbg_push_e87b0e732085a946: function(arg0, arg1) {
1693
1719
  const ret = arg0.push(arg1);
1694
1720
  return ret;
1695
1721
  },
1696
- __wbg_put_b34701a38436f20a: function() { return handleError(function (arg0, arg1, arg2) {
1697
- const ret = arg0.put(arg1, arg2);
1722
+ __wbg_put_ae369598c083f1f5: function() { return handleError(function (arg0, arg1) {
1723
+ const ret = arg0.put(arg1);
1698
1724
  return ret;
1699
1725
  }, arguments); },
1700
- __wbg_put_c2ea76677a9d9bac: function() { return handleError(function (arg0, arg1) {
1701
- const ret = arg0.put(arg1);
1726
+ __wbg_put_f1673d719f93ce22: function() { return handleError(function (arg0, arg1, arg2) {
1727
+ const ret = arg0.put(arg1, arg2);
1702
1728
  return ret;
1703
1729
  }, arguments); },
1704
- __wbg_queueMicrotask_0aa0a927f78f5d98: function(arg0) {
1730
+ __wbg_queueMicrotask_0c399741342fb10f: function(arg0) {
1705
1731
  const ret = arg0.queueMicrotask;
1706
1732
  return ret;
1707
1733
  },
1708
- __wbg_queueMicrotask_5bb536982f78a56f: function(arg0) {
1734
+ __wbg_queueMicrotask_a082d78ce798393e: function(arg0) {
1709
1735
  queueMicrotask(arg0);
1710
1736
  },
1711
- __wbg_randomFillSync_f8c153b79f285817: function() { return handleError(function (arg0, arg1) {
1737
+ __wbg_randomFillSync_6c25eac9869eb53c: function() { return handleError(function (arg0, arg1) {
1712
1738
  arg0.randomFillSync(arg1);
1713
1739
  }, arguments); },
1714
- __wbg_readyState_1bb73ec7b8a54656: function(arg0) {
1740
+ __wbg_readyState_1f1e7f1bdf9f4d42: function(arg0) {
1715
1741
  const ret = arg0.readyState;
1716
1742
  return ret;
1717
1743
  },
1718
- __wbg_reason_35fce8e55dd90f31: function(arg0, arg1) {
1744
+ __wbg_reason_cbcb9911796c4714: function(arg0, arg1) {
1719
1745
  const ret = arg1.reason;
1720
1746
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
1721
1747
  const len1 = WASM_VECTOR_LEN;
1722
1748
  getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
1723
1749
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
1724
1750
  },
1725
- __wbg_require_b74f47fc2d022fd6: function() { return handleError(function () {
1751
+ __wbg_require_b4edbdcf3e2a1ef0: function() { return handleError(function () {
1726
1752
  const ret = module.require;
1727
1753
  return ret;
1728
1754
  }, arguments); },
1729
- __wbg_resolve_002c4b7d9d8f6b64: function(arg0) {
1755
+ __wbg_resolve_ae8d83246e5bcc12: function(arg0) {
1730
1756
  const ret = Promise.resolve(arg0);
1731
1757
  return ret;
1732
1758
  },
1733
- __wbg_result_233b2d68aae87a05: function() { return handleError(function (arg0) {
1759
+ __wbg_result_c5baa2d3d690a01a: function() { return handleError(function (arg0) {
1734
1760
  const ret = arg0.result;
1735
1761
  return ret;
1736
1762
  }, arguments); },
1737
- __wbg_send_542f95dea2df7994: function() { return handleError(function (arg0, arg1, arg2) {
1738
- arg0.send(getArrayU8FromWasm0(arg1, arg2));
1739
- }, arguments); },
1740
- __wbg_send_bc0336a1b5ce4fb7: function() { return handleError(function (arg0, arg1, arg2) {
1763
+ __wbg_send_4a1dc66e8653e5ed: function() { return handleError(function (arg0, arg1, arg2) {
1741
1764
  arg0.send(getStringFromWasm0(arg1, arg2));
1742
1765
  }, arguments); },
1743
- __wbg_setInterval_def8cfc26a20eec7: function(arg0, arg1) {
1766
+ __wbg_send_d31a693c975dea74: function() { return handleError(function (arg0, arg1, arg2) {
1767
+ arg0.send(getArrayU8FromWasm0(arg1, arg2));
1768
+ }, arguments); },
1769
+ __wbg_setInterval_589c59a1e7427be3: function(arg0, arg1) {
1744
1770
  const ret = globalThis.setInterval(arg0, arg1);
1745
1771
  return ret;
1746
1772
  },
1747
- __wbg_setTimeout_4ec014681668a581: function(arg0, arg1) {
1748
- const ret = setTimeout(arg0, arg1);
1749
- return ret;
1750
- },
1751
- __wbg_setTimeout_c3c682fa1d6caf77: function(arg0, arg1) {
1773
+ __wbg_setTimeout_3b5e32486c12c54e: function(arg0, arg1) {
1752
1774
  globalThis.setTimeout(arg0, arg1);
1753
1775
  },
1754
- __wbg_setTimeout_db2dbaeefb6f39c7: function() { return handleError(function (arg0, arg1) {
1755
- const ret = setTimeout(arg0, arg1);
1776
+ __wbg_setTimeout_53a884cc10ca946c: function() { return handleError(function (arg0, arg1, arg2) {
1777
+ const ret = arg0.setTimeout(arg1, arg2);
1756
1778
  return ret;
1757
1779
  }, arguments); },
1758
- __wbg_setTimeout_efd7c11531df1743: function() { return handleError(function (arg0, arg1, arg2) {
1759
- const ret = arg0.setTimeout(arg1, arg2);
1780
+ __wbg_setTimeout_ef24d2fc3ad97385: function() { return handleError(function (arg0, arg1) {
1781
+ const ret = setTimeout(arg0, arg1);
1760
1782
  return ret;
1761
1783
  }, arguments); },
1762
- __wbg_set_1eb0999cf5d27fc8: function(arg0, arg1, arg2) {
1763
- const ret = arg0.set(arg1, arg2);
1784
+ __wbg_setTimeout_f757f00851f76c42: function(arg0, arg1) {
1785
+ const ret = setTimeout(arg0, arg1);
1764
1786
  return ret;
1765
1787
  },
1766
- __wbg_set_3f1d0b984ed272ed: function(arg0, arg1, arg2) {
1788
+ __wbg_set_282384002438957f: function(arg0, arg1, arg2) {
1789
+ arg0[arg1 >>> 0] = arg2;
1790
+ },
1791
+ __wbg_set_6be42768c690e380: function(arg0, arg1, arg2) {
1767
1792
  arg0[arg1] = arg2;
1768
1793
  },
1769
- __wbg_set_auto_increment_5ef604f4f193fa58: function(arg0, arg1) {
1794
+ __wbg_set_auto_increment_ffc3cd6470763a4c: function(arg0, arg1) {
1770
1795
  arg0.autoIncrement = arg1 !== 0;
1771
1796
  },
1772
- __wbg_set_binaryType_5bbf62e9f705dc1a: function(arg0, arg1) {
1797
+ __wbg_set_bf7251625df30a02: function(arg0, arg1, arg2) {
1798
+ const ret = arg0.set(arg1, arg2);
1799
+ return ret;
1800
+ },
1801
+ __wbg_set_binaryType_3dcf8281ec100a8f: function(arg0, arg1) {
1773
1802
  arg0.binaryType = __wbindgen_enum_BinaryType[arg1];
1774
1803
  },
1775
- __wbg_set_body_9a7e00afe3cfe244: function(arg0, arg1) {
1804
+ __wbg_set_body_a3d856b097dfda04: function(arg0, arg1) {
1776
1805
  arg0.body = arg1;
1777
1806
  },
1778
- __wbg_set_cache_315a3ed773a41543: function(arg0, arg1) {
1807
+ __wbg_set_cache_ec7e430c6056ebda: function(arg0, arg1) {
1779
1808
  arg0.cache = __wbindgen_enum_RequestCache[arg1];
1780
1809
  },
1781
- __wbg_set_credentials_c4a58d2e05ef24fb: function(arg0, arg1) {
1810
+ __wbg_set_credentials_ed63183445882c65: function(arg0, arg1) {
1782
1811
  arg0.credentials = __wbindgen_enum_RequestCredentials[arg1];
1783
1812
  },
1784
- __wbg_set_f43e577aea94465b: function(arg0, arg1, arg2) {
1785
- arg0[arg1 >>> 0] = arg2;
1786
- },
1787
- __wbg_set_headers_cfc5f4b2c1f20549: function(arg0, arg1) {
1813
+ __wbg_set_headers_3c8fecc693b75327: function(arg0, arg1) {
1788
1814
  arg0.headers = arg1;
1789
1815
  },
1790
- __wbg_set_key_path_d4c32b4460a1f7d7: function(arg0, arg1) {
1816
+ __wbg_set_key_path_3c45a8ff0b89e678: function(arg0, arg1) {
1791
1817
  arg0.keyPath = arg1;
1792
1818
  },
1793
- __wbg_set_method_c3e20375f5ae7fac: function(arg0, arg1, arg2) {
1819
+ __wbg_set_method_8c015e8bcafd7be1: function(arg0, arg1, arg2) {
1794
1820
  arg0.method = getStringFromWasm0(arg1, arg2);
1795
1821
  },
1796
- __wbg_set_mode_b13642c312648202: function(arg0, arg1) {
1822
+ __wbg_set_mode_5a87f2c809cf37c2: function(arg0, arg1) {
1797
1823
  arg0.mode = __wbindgen_enum_RequestMode[arg1];
1798
1824
  },
1799
- __wbg_set_multi_entry_1e0edb6570bebc20: function(arg0, arg1) {
1825
+ __wbg_set_multi_entry_38c253febe05d3be: function(arg0, arg1) {
1800
1826
  arg0.multiEntry = arg1 !== 0;
1801
1827
  },
1802
- __wbg_set_onabort_5b85743a64489257: function(arg0, arg1) {
1828
+ __wbg_set_onabort_63885d8d7841a8d5: function(arg0, arg1) {
1803
1829
  arg0.onabort = arg1;
1804
1830
  },
1805
- __wbg_set_onclose_d382f3e2c2b850eb: function(arg0, arg1) {
1831
+ __wbg_set_onclose_8da801226bdd7a7b: function(arg0, arg1) {
1806
1832
  arg0.onclose = arg1;
1807
1833
  },
1808
- __wbg_set_oncomplete_76d4a772a6c8cab6: function(arg0, arg1) {
1834
+ __wbg_set_oncomplete_f31e6dc6d16c1ff8: function(arg0, arg1) {
1809
1835
  arg0.oncomplete = arg1;
1810
1836
  },
1811
- __wbg_set_onerror_377f18bf4569bf85: function(arg0, arg1) {
1837
+ __wbg_set_onerror_8a268cb237177bba: function(arg0, arg1) {
1812
1838
  arg0.onerror = arg1;
1813
1839
  },
1814
- __wbg_set_onerror_d0db7c6491b9399d: function(arg0, arg1) {
1840
+ __wbg_set_onerror_901ca711f94a5bbb: function(arg0, arg1) {
1815
1841
  arg0.onerror = arg1;
1816
1842
  },
1817
- __wbg_set_onerror_dc0e606b09e1792f: function(arg0, arg1) {
1843
+ __wbg_set_onerror_c1ecd6233c533c08: function(arg0, arg1) {
1818
1844
  arg0.onerror = arg1;
1819
1845
  },
1820
- __wbg_set_onmessage_2114aa5f4f53051e: function(arg0, arg1) {
1846
+ __wbg_set_onmessage_6f80ab771bf151aa: function(arg0, arg1) {
1821
1847
  arg0.onmessage = arg1;
1822
1848
  },
1823
- __wbg_set_onopen_b7b52d519d6c0f11: function(arg0, arg1) {
1849
+ __wbg_set_onopen_34e3e24cf9337ddd: function(arg0, arg1) {
1824
1850
  arg0.onopen = arg1;
1825
1851
  },
1826
- __wbg_set_onsuccess_0edec1acb4124784: function(arg0, arg1) {
1852
+ __wbg_set_onsuccess_fca94ded107b64af: function(arg0, arg1) {
1827
1853
  arg0.onsuccess = arg1;
1828
1854
  },
1829
- __wbg_set_onupgradeneeded_c887b74722b6ce77: function(arg0, arg1) {
1855
+ __wbg_set_onupgradeneeded_860ce42184f987e7: function(arg0, arg1) {
1830
1856
  arg0.onupgradeneeded = arg1;
1831
1857
  },
1832
- __wbg_set_signal_f2d3f8599248896d: function(arg0, arg1) {
1858
+ __wbg_set_signal_0cebecb698f25d21: function(arg0, arg1) {
1833
1859
  arg0.signal = arg1;
1834
1860
  },
1835
- __wbg_set_unique_9609afeaaff95e61: function(arg0, arg1) {
1861
+ __wbg_set_unique_a39d85db47f8e025: function(arg0, arg1) {
1836
1862
  arg0.unique = arg1 !== 0;
1837
1863
  },
1838
- __wbg_signal_d1285ecab4ebc5ad: function(arg0) {
1864
+ __wbg_signal_166e1da31adcac18: function(arg0) {
1839
1865
  const ret = arg0.signal;
1840
1866
  return ret;
1841
1867
  },
1842
- __wbg_stack_0ed75d68575b0f3c: function(arg0, arg1) {
1868
+ __wbg_stack_3b0d974bbf31e44f: function(arg0, arg1) {
1843
1869
  const ret = arg1.stack;
1844
1870
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
1845
1871
  const len1 = WASM_VECTOR_LEN;
1846
1872
  getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
1847
1873
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
1848
1874
  },
1849
- __wbg_static_accessor_GLOBAL_12837167ad935116: function() {
1875
+ __wbg_static_accessor_GLOBAL_8adb955bd33fac2f: function() {
1850
1876
  const ret = typeof global === 'undefined' ? null : global;
1851
1877
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
1852
1878
  },
1853
- __wbg_static_accessor_GLOBAL_THIS_e628e89ab3b1c95f: function() {
1879
+ __wbg_static_accessor_GLOBAL_THIS_ad356e0db91c7913: function() {
1854
1880
  const ret = typeof globalThis === 'undefined' ? null : globalThis;
1855
1881
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
1856
1882
  },
1857
- __wbg_static_accessor_SELF_a621d3dfbb60d0ce: function() {
1883
+ __wbg_static_accessor_SELF_f207c857566db248: function() {
1858
1884
  const ret = typeof self === 'undefined' ? null : self;
1859
1885
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
1860
1886
  },
1861
- __wbg_static_accessor_WINDOW_f8727f0cf888e0bd: function() {
1887
+ __wbg_static_accessor_WINDOW_bb9f1ba69d61b386: function() {
1862
1888
  const ret = typeof window === 'undefined' ? null : window;
1863
1889
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
1864
1890
  },
1865
- __wbg_status_89d7e803db911ee7: function(arg0) {
1891
+ __wbg_status_318629ab93a22955: function(arg0) {
1866
1892
  const ret = arg0.status;
1867
1893
  return ret;
1868
1894
  },
1869
- __wbg_stringify_8d1cc6ff383e8bae: function() { return handleError(function (arg0) {
1895
+ __wbg_stringify_5ae93966a84901ac: function() { return handleError(function (arg0) {
1870
1896
  const ret = JSON.stringify(arg0);
1871
1897
  return ret;
1872
1898
  }, arguments); },
1873
- __wbg_subarray_a96e1fef17ed23cb: function(arg0, arg1, arg2) {
1899
+ __wbg_subarray_a068d24e39478a8a: function(arg0, arg1, arg2) {
1874
1900
  const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0);
1875
1901
  return ret;
1876
1902
  },
1877
- __wbg_target_521be630ab05b11e: function(arg0) {
1903
+ __wbg_target_7bc90f314634b37b: function(arg0) {
1878
1904
  const ret = arg0.target;
1879
1905
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
1880
1906
  },
1881
- __wbg_then_0d9fe2c7b1857d32: function(arg0, arg1, arg2) {
1882
- const ret = arg0.then(arg1, arg2);
1907
+ __wbg_then_098abe61755d12f6: function(arg0, arg1) {
1908
+ const ret = arg0.then(arg1);
1883
1909
  return ret;
1884
1910
  },
1885
- __wbg_then_b9e7b3b5f1a9e1b5: function(arg0, arg1) {
1886
- const ret = arg0.then(arg1);
1911
+ __wbg_then_9e335f6dd892bc11: function(arg0, arg1, arg2) {
1912
+ const ret = arg0.then(arg1, arg2);
1887
1913
  return ret;
1888
1914
  },
1889
- __wbg_toString_029ac24421fd7a24: function(arg0) {
1915
+ __wbg_toString_fca8b5e46235cfb4: function(arg0) {
1890
1916
  const ret = arg0.toString();
1891
1917
  return ret;
1892
1918
  },
1893
- __wbg_transaction_5124caf7db668498: function(arg0) {
1894
- const ret = arg0.transaction;
1895
- return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
1896
- },
1897
- __wbg_transaction_c407989db8e62119: function() { return handleError(function (arg0, arg1, arg2) {
1919
+ __wbg_transaction_3223f7c8d0f40129: function() { return handleError(function (arg0, arg1, arg2) {
1898
1920
  const ret = arg0.transaction(arg1, __wbindgen_enum_IdbTransactionMode[arg2]);
1899
1921
  return ret;
1900
1922
  }, arguments); },
1901
- __wbg_url_c484c26b1fbf5126: function(arg0, arg1) {
1923
+ __wbg_transaction_fda57653957fee06: function(arg0) {
1924
+ const ret = arg0.transaction;
1925
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
1926
+ },
1927
+ __wbg_url_778f9516ea867e17: function(arg0, arg1) {
1902
1928
  const ret = arg1.url;
1903
1929
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
1904
1930
  const len1 = WASM_VECTOR_LEN;
1905
1931
  getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
1906
1932
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
1907
1933
  },
1908
- __wbg_url_cb4d34db86c24df9: function(arg0, arg1) {
1934
+ __wbg_url_7fefc1820fba4e0c: function(arg0, arg1) {
1909
1935
  const ret = arg1.url;
1910
1936
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
1911
1937
  const len1 = WASM_VECTOR_LEN;
1912
1938
  getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
1913
1939
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
1914
1940
  },
1915
- __wbg_value_0546255b415e96c1: function(arg0) {
1941
+ __wbg_value_21fc78aab0322612: function(arg0) {
1916
1942
  const ret = arg0.value;
1917
1943
  return ret;
1918
1944
  },
1919
- __wbg_value_30a10f975c5e9af8: function() { return handleError(function (arg0) {
1945
+ __wbg_value_79629bd10d556879: function() { return handleError(function (arg0) {
1920
1946
  const ret = arg0.value;
1921
1947
  return ret;
1922
1948
  }, arguments); },
1923
- __wbg_versions_4e31226f5e8dc909: function(arg0) {
1949
+ __wbg_versions_276b2795b1c6a219: function(arg0) {
1924
1950
  const ret = arg0.versions;
1925
1951
  return ret;
1926
1952
  },
1927
- __wbg_warn_a40b971467b219c7: function(arg0, arg1, arg2, arg3) {
1953
+ __wbg_warn_809cad1bfc2b3a42: function(arg0, arg1, arg2, arg3) {
1928
1954
  console.warn(arg0, arg1, arg2, arg3);
1929
1955
  },
1930
- __wbg_wasClean_a9c77a7100d8534f: function(arg0) {
1956
+ __wbg_wasClean_69f68dc4ed2d2cc7: function(arg0) {
1931
1957
  const ret = arg0.wasClean;
1932
1958
  return ret;
1933
1959
  },
1934
1960
  __wbindgen_cast_0000000000000001: function(arg0, arg1) {
1935
- // Cast intrinsic for `Closure(Closure { dtor_idx: 59, function: Function { arguments: [Externref], shim_idx: 328, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
1936
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h51aac892dc13997d, wasm_bindgen__convert__closures_____invoke__hc7201d82e9552dab);
1961
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 61, function: Function { arguments: [Externref], shim_idx: 666, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
1962
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h2b64577c0d30e7ff, wasm_bindgen__convert__closures_____invoke__h6aec09e193342f93);
1937
1963
  return ret;
1938
1964
  },
1939
1965
  __wbindgen_cast_0000000000000002: function(arg0, arg1) {
1940
- // Cast intrinsic for `Closure(Closure { dtor_idx: 59, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 328, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
1941
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h51aac892dc13997d, wasm_bindgen__convert__closures_____invoke__hc7201d82e9552dab);
1966
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 61, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 322, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
1967
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h2b64577c0d30e7ff, wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6);
1942
1968
  return ret;
1943
1969
  },
1944
1970
  __wbindgen_cast_0000000000000003: function(arg0, arg1) {
1945
- // Cast intrinsic for `Closure(Closure { dtor_idx: 59, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 328, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
1946
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h51aac892dc13997d, wasm_bindgen__convert__closures_____invoke__hc7201d82e9552dab);
1971
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 61, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 322, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
1972
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h2b64577c0d30e7ff, wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6_2);
1947
1973
  return ret;
1948
1974
  },
1949
1975
  __wbindgen_cast_0000000000000004: function(arg0, arg1) {
1950
- // Cast intrinsic for `Closure(Closure { dtor_idx: 59, function: Function { arguments: [], shim_idx: 331, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
1951
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h51aac892dc13997d, wasm_bindgen__convert__closures_____invoke__h135d7136d7f648a6);
1976
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 61, function: Function { arguments: [], shim_idx: 325, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
1977
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h2b64577c0d30e7ff, wasm_bindgen__convert__closures_____invoke__h3af009eb2e384dae);
1952
1978
  return ret;
1953
1979
  },
1954
1980
  __wbindgen_cast_0000000000000005: function(arg0, arg1) {
1955
- // Cast intrinsic for `Closure(Closure { dtor_idx: 59, function: Function { arguments: [], shim_idx: 60, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
1956
- const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h51aac892dc13997d, wasm_bindgen__convert__closures_____invoke__h39afabf71b34096e);
1981
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 61, function: Function { arguments: [], shim_idx: 62, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
1982
+ const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h2b64577c0d30e7ff, wasm_bindgen__convert__closures_____invoke__hf807c24f46a17e5e);
1957
1983
  return ret;
1958
1984
  },
1959
1985
  __wbindgen_cast_0000000000000006: function(arg0, arg1) {
1960
- // Cast intrinsic for `Closure(Closure { dtor_idx: 882, function: Function { arguments: [], shim_idx: 331, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
1961
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__hbe06519e24c1c17d, wasm_bindgen__convert__closures_____invoke__h135d7136d7f648a6);
1986
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 887, function: Function { arguments: [], shim_idx: 325, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
1987
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h56f6a1c416286713, wasm_bindgen__convert__closures_____invoke__h3af009eb2e384dae);
1962
1988
  return ret;
1963
1989
  },
1964
1990
  __wbindgen_cast_0000000000000007: function(arg0, arg1) {
1965
- // Cast intrinsic for `Closure(Closure { dtor_idx: 885, function: Function { arguments: [NamedExternref("Event")], shim_idx: 886, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
1966
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h5f782d91b3951026, wasm_bindgen__convert__closures_____invoke__h8d953eaa28de6843);
1991
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 892, function: Function { arguments: [NamedExternref("Event")], shim_idx: 893, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
1992
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h2681b741ef6c8dcf, wasm_bindgen__convert__closures_____invoke__h5f1e16860b61a77a);
1967
1993
  return ret;
1968
1994
  },
1969
1995
  __wbindgen_cast_0000000000000008: function(arg0) {
@@ -2007,27 +2033,38 @@ function __wbg_get_imports() {
2007
2033
  };
2008
2034
  }
2009
2035
 
2010
- function wasm_bindgen__convert__closures_____invoke__h135d7136d7f648a6(arg0, arg1) {
2011
- wasm.wasm_bindgen__convert__closures_____invoke__h135d7136d7f648a6(arg0, arg1);
2036
+ function wasm_bindgen__convert__closures_____invoke__h3af009eb2e384dae(arg0, arg1) {
2037
+ wasm.wasm_bindgen__convert__closures_____invoke__h3af009eb2e384dae(arg0, arg1);
2038
+ }
2039
+
2040
+ function wasm_bindgen__convert__closures_____invoke__hf807c24f46a17e5e(arg0, arg1) {
2041
+ wasm.wasm_bindgen__convert__closures_____invoke__hf807c24f46a17e5e(arg0, arg1);
2042
+ }
2043
+
2044
+ function wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6(arg0, arg1, arg2) {
2045
+ wasm.wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6(arg0, arg1, arg2);
2012
2046
  }
2013
2047
 
2014
- function wasm_bindgen__convert__closures_____invoke__h39afabf71b34096e(arg0, arg1) {
2015
- wasm.wasm_bindgen__convert__closures_____invoke__h39afabf71b34096e(arg0, arg1);
2048
+ function wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6_2(arg0, arg1, arg2) {
2049
+ wasm.wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6_2(arg0, arg1, arg2);
2016
2050
  }
2017
2051
 
2018
- function wasm_bindgen__convert__closures_____invoke__hc7201d82e9552dab(arg0, arg1, arg2) {
2019
- wasm.wasm_bindgen__convert__closures_____invoke__hc7201d82e9552dab(arg0, arg1, arg2);
2052
+ function wasm_bindgen__convert__closures_____invoke__h6aec09e193342f93(arg0, arg1, arg2) {
2053
+ const ret = wasm.wasm_bindgen__convert__closures_____invoke__h6aec09e193342f93(arg0, arg1, arg2);
2054
+ if (ret[1]) {
2055
+ throw takeFromExternrefTable0(ret[0]);
2056
+ }
2020
2057
  }
2021
2058
 
2022
- function wasm_bindgen__convert__closures_____invoke__h8d953eaa28de6843(arg0, arg1, arg2) {
2023
- const ret = wasm.wasm_bindgen__convert__closures_____invoke__h8d953eaa28de6843(arg0, arg1, arg2);
2059
+ function wasm_bindgen__convert__closures_____invoke__h5f1e16860b61a77a(arg0, arg1, arg2) {
2060
+ const ret = wasm.wasm_bindgen__convert__closures_____invoke__h5f1e16860b61a77a(arg0, arg1, arg2);
2024
2061
  if (ret[1]) {
2025
2062
  throw takeFromExternrefTable0(ret[0]);
2026
2063
  }
2027
2064
  }
2028
2065
 
2029
- function wasm_bindgen__convert__closures_____invoke__h6abaf268b0f3e50a(arg0, arg1, arg2, arg3) {
2030
- wasm.wasm_bindgen__convert__closures_____invoke__h6abaf268b0f3e50a(arg0, arg1, arg2, arg3);
2066
+ function wasm_bindgen__convert__closures_____invoke__h0a7adf7d3880a828(arg0, arg1, arg2, arg3) {
2067
+ wasm.wasm_bindgen__convert__closures_____invoke__h0a7adf7d3880a828(arg0, arg1, arg2, arg3);
2031
2068
  }
2032
2069
 
2033
2070
 
package/index_bg.wasm CHANGED
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitcredit/bcr-ebill-wasm",
3
3
  "type": "module",
4
- "version": "0.5.1",
4
+ "version": "0.5.2",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",