@xmtp/wasm-bindings 1.10.0-dev.a2bdd0a → 1.10.0-dev.ae5ffba
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/dist/bindings_wasm.d.ts +145 -109
- package/dist/bindings_wasm.js +399 -351
- package/dist/bindings_wasm_bg.wasm +0 -0
- package/dist/bindings_wasm_bg.wasm.d.ts +113 -108
- package/package.json +1 -1
package/dist/bindings_wasm.js
CHANGED
|
@@ -524,12 +524,13 @@ export class Client {
|
|
|
524
524
|
}
|
|
525
525
|
/**
|
|
526
526
|
* @param {SignatureRequestHandle} signatureRequest
|
|
527
|
+
* @param {WasmVisibilityConfirmationOptions | null} [visibilityConfirmationOptions]
|
|
527
528
|
* @returns {Promise<void>}
|
|
528
529
|
*/
|
|
529
|
-
registerIdentity(signatureRequest) {
|
|
530
|
+
registerIdentity(signatureRequest, visibilityConfirmationOptions) {
|
|
530
531
|
_assertClass(signatureRequest, SignatureRequestHandle);
|
|
531
532
|
var ptr0 = signatureRequest.__destroy_into_raw();
|
|
532
|
-
const ret = wasm.client_registerIdentity(this.__wbg_ptr, ptr0);
|
|
533
|
+
const ret = wasm.client_registerIdentity(this.__wbg_ptr, ptr0, isLikeNone(visibilityConfirmationOptions) ? 0 : addToExternrefTable0(visibilityConfirmationOptions));
|
|
533
534
|
return ret;
|
|
534
535
|
}
|
|
535
536
|
/**
|
|
@@ -599,6 +600,20 @@ export class Client {
|
|
|
599
600
|
throw takeFromExternrefTable0(ret[0]);
|
|
600
601
|
}
|
|
601
602
|
}
|
|
603
|
+
/**
|
|
604
|
+
* Wait until this client's registration is visible on the network.
|
|
605
|
+
*
|
|
606
|
+
* For V3 clients (no cursor stored) this falls back to checking
|
|
607
|
+
* `isRegistered`. For D14n clients it polls each node directly and
|
|
608
|
+
* returns once a quorum confirms both the identity-update and
|
|
609
|
+
* key-package envelopes are visible.
|
|
610
|
+
* @param {WasmVisibilityConfirmationOptions | null} [options]
|
|
611
|
+
* @returns {Promise<void>}
|
|
612
|
+
*/
|
|
613
|
+
waitForRegistrationVisible(options) {
|
|
614
|
+
const ret = wasm.client_waitForRegistrationVisible(this.__wbg_ptr, isLikeNone(options) ? 0 : addToExternrefTable0(options));
|
|
615
|
+
return ret;
|
|
616
|
+
}
|
|
602
617
|
}
|
|
603
618
|
if (Symbol.dispose) Client.prototype[Symbol.dispose] = Client.prototype.free;
|
|
604
619
|
|
|
@@ -2956,96 +2971,96 @@ export function verifySignedWithPublicKey(signatureText, signatureBytes, publicK
|
|
|
2956
2971
|
function __wbg_get_imports() {
|
|
2957
2972
|
const import0 = {
|
|
2958
2973
|
__proto__: null,
|
|
2959
|
-
|
|
2974
|
+
__wbg_Deno_d54bf9e1c1375dc6: function(arg0) {
|
|
2960
2975
|
const ret = arg0.Deno;
|
|
2961
2976
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2962
2977
|
},
|
|
2963
|
-
|
|
2978
|
+
__wbg_Error_83742b46f01ce22d: function(arg0, arg1) {
|
|
2964
2979
|
const ret = Error(getStringFromWasm0(arg0, arg1));
|
|
2965
2980
|
return ret;
|
|
2966
2981
|
},
|
|
2967
|
-
|
|
2982
|
+
__wbg_Number_a5a435bd7bbec835: function(arg0) {
|
|
2968
2983
|
const ret = Number(arg0);
|
|
2969
2984
|
return ret;
|
|
2970
2985
|
},
|
|
2971
|
-
|
|
2986
|
+
__wbg_String_8564e559799eccda: function(arg0, arg1) {
|
|
2972
2987
|
const ret = String(arg1);
|
|
2973
2988
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2974
2989
|
const len1 = WASM_VECTOR_LEN;
|
|
2975
2990
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2976
2991
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2977
2992
|
},
|
|
2978
|
-
|
|
2993
|
+
__wbg_String_e7b531075cd5ce86: function(arg0, arg1) {
|
|
2979
2994
|
const ret = String(arg1);
|
|
2980
2995
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2981
2996
|
const len1 = WASM_VECTOR_LEN;
|
|
2982
2997
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2983
2998
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2984
2999
|
},
|
|
2985
|
-
|
|
3000
|
+
__wbg___wbg_test_output_writeln_34f10cba65c3d2e9: function(arg0) {
|
|
2986
3001
|
__wbg_test_output_writeln(arg0);
|
|
2987
3002
|
},
|
|
2988
|
-
|
|
3003
|
+
__wbg___wbgtest_og_console_log_0eaefd0ba66f70be: function(arg0, arg1) {
|
|
2989
3004
|
__wbgtest_og_console_log(getStringFromWasm0(arg0, arg1));
|
|
2990
3005
|
},
|
|
2991
|
-
|
|
3006
|
+
__wbg___wbindgen_bigint_get_as_i64_447a76b5c6ef7bda: function(arg0, arg1) {
|
|
2992
3007
|
const v = arg1;
|
|
2993
3008
|
const ret = typeof(v) === 'bigint' ? v : undefined;
|
|
2994
3009
|
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
2995
3010
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
2996
3011
|
},
|
|
2997
|
-
|
|
3012
|
+
__wbg___wbindgen_boolean_get_c0f3f60bac5a78d1: function(arg0) {
|
|
2998
3013
|
const v = arg0;
|
|
2999
3014
|
const ret = typeof(v) === 'boolean' ? v : undefined;
|
|
3000
3015
|
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
3001
3016
|
},
|
|
3002
|
-
|
|
3017
|
+
__wbg___wbindgen_debug_string_5398f5bb970e0daa: function(arg0, arg1) {
|
|
3003
3018
|
const ret = debugString(arg1);
|
|
3004
3019
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3005
3020
|
const len1 = WASM_VECTOR_LEN;
|
|
3006
3021
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3007
3022
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3008
3023
|
},
|
|
3009
|
-
|
|
3024
|
+
__wbg___wbindgen_in_41dbb8413020e076: function(arg0, arg1) {
|
|
3010
3025
|
const ret = arg0 in arg1;
|
|
3011
3026
|
return ret;
|
|
3012
3027
|
},
|
|
3013
|
-
|
|
3028
|
+
__wbg___wbindgen_is_bigint_e2141d4f045b7eda: function(arg0) {
|
|
3014
3029
|
const ret = typeof(arg0) === 'bigint';
|
|
3015
3030
|
return ret;
|
|
3016
3031
|
},
|
|
3017
|
-
|
|
3032
|
+
__wbg___wbindgen_is_function_3c846841762788c1: function(arg0) {
|
|
3018
3033
|
const ret = typeof(arg0) === 'function';
|
|
3019
3034
|
return ret;
|
|
3020
3035
|
},
|
|
3021
|
-
|
|
3036
|
+
__wbg___wbindgen_is_object_781bc9f159099513: function(arg0) {
|
|
3022
3037
|
const val = arg0;
|
|
3023
3038
|
const ret = typeof(val) === 'object' && val !== null;
|
|
3024
3039
|
return ret;
|
|
3025
3040
|
},
|
|
3026
|
-
|
|
3041
|
+
__wbg___wbindgen_is_string_7ef6b97b02428fae: function(arg0) {
|
|
3027
3042
|
const ret = typeof(arg0) === 'string';
|
|
3028
3043
|
return ret;
|
|
3029
3044
|
},
|
|
3030
|
-
|
|
3045
|
+
__wbg___wbindgen_is_undefined_52709e72fb9f179c: function(arg0) {
|
|
3031
3046
|
const ret = arg0 === undefined;
|
|
3032
3047
|
return ret;
|
|
3033
3048
|
},
|
|
3034
|
-
|
|
3049
|
+
__wbg___wbindgen_jsval_eq_ee31bfad3e536463: function(arg0, arg1) {
|
|
3035
3050
|
const ret = arg0 === arg1;
|
|
3036
3051
|
return ret;
|
|
3037
3052
|
},
|
|
3038
|
-
|
|
3053
|
+
__wbg___wbindgen_jsval_loose_eq_5bcc3bed3c69e72b: function(arg0, arg1) {
|
|
3039
3054
|
const ret = arg0 == arg1;
|
|
3040
3055
|
return ret;
|
|
3041
3056
|
},
|
|
3042
|
-
|
|
3057
|
+
__wbg___wbindgen_number_get_34bb9d9dcfa21373: function(arg0, arg1) {
|
|
3043
3058
|
const obj = arg1;
|
|
3044
3059
|
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
3045
3060
|
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
3046
3061
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
3047
3062
|
},
|
|
3048
|
-
|
|
3063
|
+
__wbg___wbindgen_string_get_395e606bd0ee4427: function(arg0, arg1) {
|
|
3049
3064
|
const obj = arg1;
|
|
3050
3065
|
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
3051
3066
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
@@ -3053,80 +3068,84 @@ function __wbg_get_imports() {
|
|
|
3053
3068
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3054
3069
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3055
3070
|
},
|
|
3056
|
-
|
|
3071
|
+
__wbg___wbindgen_throw_6ddd609b62940d55: function(arg0, arg1) {
|
|
3057
3072
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
3058
3073
|
},
|
|
3059
|
-
|
|
3074
|
+
__wbg___wbindgen_try_into_number_aab92f8d9dc246ab: function(arg0) {
|
|
3060
3075
|
let result;
|
|
3061
3076
|
try { result = +arg0 } catch (e) { result = e }
|
|
3062
3077
|
const ret = result;
|
|
3063
3078
|
return ret;
|
|
3064
3079
|
},
|
|
3065
|
-
|
|
3080
|
+
__wbg__wbg_cb_unref_6b5b6b8576d35cb1: function(arg0) {
|
|
3066
3081
|
arg0._wbg_cb_unref();
|
|
3067
3082
|
},
|
|
3068
|
-
|
|
3083
|
+
__wbg_abort_5ef96933660780b7: function(arg0) {
|
|
3069
3084
|
arg0.abort();
|
|
3070
3085
|
},
|
|
3071
|
-
|
|
3086
|
+
__wbg_abort_6479c2d794ebf2ee: function(arg0, arg1) {
|
|
3072
3087
|
arg0.abort(arg1);
|
|
3073
3088
|
},
|
|
3074
|
-
|
|
3089
|
+
__wbg_append_608dfb635ee8998f: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
3075
3090
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
3076
3091
|
}, arguments); },
|
|
3077
|
-
|
|
3092
|
+
__wbg_arrayBuffer_eb8e9ca620af2a19: function() { return handleError(function (arg0) {
|
|
3078
3093
|
const ret = arg0.arrayBuffer();
|
|
3079
3094
|
return ret;
|
|
3080
3095
|
}, arguments); },
|
|
3081
|
-
|
|
3096
|
+
__wbg_body_ac1dad652946e6da: function(arg0) {
|
|
3082
3097
|
const ret = arg0.body;
|
|
3083
3098
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3084
3099
|
},
|
|
3085
|
-
|
|
3100
|
+
__wbg_buffer_60b8043cd926067d: function(arg0) {
|
|
3086
3101
|
const ret = arg0.buffer;
|
|
3087
3102
|
return ret;
|
|
3088
3103
|
},
|
|
3089
|
-
|
|
3104
|
+
__wbg_byobRequest_6342e5f2b232c0f9: function(arg0) {
|
|
3090
3105
|
const ret = arg0.byobRequest;
|
|
3091
3106
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3092
3107
|
},
|
|
3093
|
-
|
|
3108
|
+
__wbg_byteLength_607b856aa6c5a508: function(arg0) {
|
|
3094
3109
|
const ret = arg0.byteLength;
|
|
3095
3110
|
return ret;
|
|
3096
3111
|
},
|
|
3097
|
-
|
|
3112
|
+
__wbg_byteOffset_b26b63681c83856c: function(arg0) {
|
|
3098
3113
|
const ret = arg0.byteOffset;
|
|
3099
3114
|
return ret;
|
|
3100
3115
|
},
|
|
3101
|
-
|
|
3102
|
-
const ret = arg0.call(arg1);
|
|
3116
|
+
__wbg_call_2d781c1f4d5c0ef8: function() { return handleError(function (arg0, arg1, arg2) {
|
|
3117
|
+
const ret = arg0.call(arg1, arg2);
|
|
3103
3118
|
return ret;
|
|
3104
3119
|
}, arguments); },
|
|
3105
|
-
|
|
3106
|
-
const ret = arg0.call(arg1
|
|
3120
|
+
__wbg_call_e133b57c9155d22c: function() { return handleError(function (arg0, arg1) {
|
|
3121
|
+
const ret = arg0.call(arg1);
|
|
3107
3122
|
return ret;
|
|
3108
3123
|
}, arguments); },
|
|
3109
|
-
|
|
3124
|
+
__wbg_cancel_79b3bea07a1028e7: function(arg0) {
|
|
3110
3125
|
const ret = arg0.cancel();
|
|
3111
3126
|
return ret;
|
|
3112
3127
|
},
|
|
3113
|
-
|
|
3128
|
+
__wbg_catch_d7ed0375ab6532a5: function(arg0, arg1) {
|
|
3114
3129
|
const ret = arg0.catch(arg1);
|
|
3115
3130
|
return ret;
|
|
3116
3131
|
},
|
|
3117
|
-
|
|
3132
|
+
__wbg_clearInterval_16e8cbbce92291d0: function(arg0) {
|
|
3118
3133
|
const ret = clearInterval(arg0);
|
|
3119
3134
|
return ret;
|
|
3120
3135
|
},
|
|
3121
|
-
|
|
3136
|
+
__wbg_clearTimeout_113b1cde814ec762: function(arg0) {
|
|
3137
|
+
const ret = clearTimeout(arg0);
|
|
3138
|
+
return ret;
|
|
3139
|
+
},
|
|
3140
|
+
__wbg_clearTimeout_1d1b13f4034f30ca: function(arg0) {
|
|
3122
3141
|
const ret = clearTimeout(arg0);
|
|
3123
3142
|
return ret;
|
|
3124
3143
|
},
|
|
3125
|
-
|
|
3144
|
+
__wbg_clearTimeout_2256f1e7b94ef517: function(arg0) {
|
|
3126
3145
|
const ret = clearTimeout(arg0);
|
|
3127
3146
|
return ret;
|
|
3128
3147
|
},
|
|
3129
|
-
|
|
3148
|
+
__wbg_clearTimeout_6b8d9a38b9263d65: function(arg0) {
|
|
3130
3149
|
const ret = clearTimeout(arg0);
|
|
3131
3150
|
return ret;
|
|
3132
3151
|
},
|
|
@@ -3134,20 +3153,20 @@ function __wbg_get_imports() {
|
|
|
3134
3153
|
const ret = Client.__wrap(arg0);
|
|
3135
3154
|
return ret;
|
|
3136
3155
|
},
|
|
3137
|
-
|
|
3156
|
+
__wbg_close_690d36108c557337: function() { return handleError(function (arg0) {
|
|
3138
3157
|
arg0.close();
|
|
3139
3158
|
}, arguments); },
|
|
3140
|
-
|
|
3141
|
-
arg0.close();
|
|
3142
|
-
},
|
|
3143
|
-
__wbg_close_a79afee31de55b36: function() { return handleError(function (arg0) {
|
|
3159
|
+
__wbg_close_737b4b1fbc658540: function() { return handleError(function (arg0) {
|
|
3144
3160
|
arg0.close();
|
|
3145
3161
|
}, arguments); },
|
|
3146
|
-
|
|
3162
|
+
__wbg_close_bea86eef0f71dd9b: function(arg0) {
|
|
3163
|
+
arg0.close();
|
|
3164
|
+
},
|
|
3165
|
+
__wbg_code_bc4dde4d67926010: function(arg0) {
|
|
3147
3166
|
const ret = arg0.code;
|
|
3148
3167
|
return ret;
|
|
3149
3168
|
},
|
|
3150
|
-
|
|
3169
|
+
__wbg_constructor_a0e17f62c53312ec: function(arg0) {
|
|
3151
3170
|
const ret = arg0.constructor;
|
|
3152
3171
|
return ret;
|
|
3153
3172
|
},
|
|
@@ -3159,40 +3178,56 @@ function __wbg_get_imports() {
|
|
|
3159
3178
|
const ret = ConversationListItem.__wrap(arg0);
|
|
3160
3179
|
return ret;
|
|
3161
3180
|
},
|
|
3162
|
-
|
|
3181
|
+
__wbg_createSyncAccessHandle_b7143219a305a2ce: function(arg0) {
|
|
3163
3182
|
const ret = arg0.createSyncAccessHandle();
|
|
3164
3183
|
return ret;
|
|
3165
3184
|
},
|
|
3166
|
-
|
|
3185
|
+
__wbg_create_e9e35ffcb49d7084: function(arg0) {
|
|
3167
3186
|
const ret = Object.create(arg0);
|
|
3168
3187
|
return ret;
|
|
3169
3188
|
},
|
|
3170
|
-
|
|
3189
|
+
__wbg_crypto_38df2bab126b63dc: function(arg0) {
|
|
3171
3190
|
const ret = arg0.crypto;
|
|
3172
3191
|
return ret;
|
|
3173
3192
|
},
|
|
3174
|
-
|
|
3193
|
+
__wbg_debug_271c16e6de0bc226: function(arg0, arg1, arg2, arg3) {
|
|
3175
3194
|
console.debug(arg0, arg1, arg2, arg3);
|
|
3176
3195
|
},
|
|
3177
|
-
|
|
3196
|
+
__wbg_debug_4b9b1a2d5972be57: function(arg0) {
|
|
3178
3197
|
console.debug(arg0);
|
|
3179
3198
|
},
|
|
3180
|
-
|
|
3199
|
+
__wbg_done_08ce71ee07e3bd17: function(arg0) {
|
|
3181
3200
|
const ret = arg0.done;
|
|
3182
3201
|
return ret;
|
|
3183
3202
|
},
|
|
3184
|
-
|
|
3203
|
+
__wbg_enqueue_ec3552838b4b7fbf: function() { return handleError(function (arg0, arg1) {
|
|
3185
3204
|
arg0.enqueue(arg1);
|
|
3186
3205
|
}, arguments); },
|
|
3187
|
-
|
|
3206
|
+
__wbg_entries_310f5926c32b5bcb: function(arg0) {
|
|
3207
|
+
const ret = arg0.entries();
|
|
3208
|
+
return ret;
|
|
3209
|
+
},
|
|
3210
|
+
__wbg_entries_5b8fe91cea59610e: function(arg0) {
|
|
3188
3211
|
const ret = arg0.entries();
|
|
3189
3212
|
return ret;
|
|
3190
3213
|
},
|
|
3191
|
-
|
|
3214
|
+
__wbg_entries_e8a20ff8c9757101: function(arg0) {
|
|
3192
3215
|
const ret = Object.entries(arg0);
|
|
3193
3216
|
return ret;
|
|
3194
3217
|
},
|
|
3195
|
-
|
|
3218
|
+
__wbg_error_1eece6b0039034ce: function(arg0, arg1, arg2, arg3) {
|
|
3219
|
+
console.error(arg0, arg1, arg2, arg3);
|
|
3220
|
+
},
|
|
3221
|
+
__wbg_error_7aabf7ad5c35cfbb: function(arg0, arg1) {
|
|
3222
|
+
console.error(getStringFromWasm0(arg0, arg1));
|
|
3223
|
+
},
|
|
3224
|
+
__wbg_error_7af4a02e10118b81: function(arg0, arg1) {
|
|
3225
|
+
console.error(getStringFromWasm0(arg0, arg1));
|
|
3226
|
+
},
|
|
3227
|
+
__wbg_error_8d9a8e04cd1d3588: function(arg0) {
|
|
3228
|
+
console.error(arg0);
|
|
3229
|
+
},
|
|
3230
|
+
__wbg_error_a6fa202b58aa1cd3: function(arg0, arg1) {
|
|
3196
3231
|
let deferred0_0;
|
|
3197
3232
|
let deferred0_1;
|
|
3198
3233
|
try {
|
|
@@ -3203,49 +3238,41 @@ function __wbg_get_imports() {
|
|
|
3203
3238
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
3204
3239
|
}
|
|
3205
3240
|
},
|
|
3206
|
-
|
|
3207
|
-
console.error(arg0, arg1, arg2, arg3);
|
|
3208
|
-
},
|
|
3209
|
-
__wbg_error_9a7fe3f932034cde: function(arg0) {
|
|
3210
|
-
console.error(arg0);
|
|
3211
|
-
},
|
|
3212
|
-
__wbg_error_ba0ecc4c5be76ff7: function(arg0, arg1) {
|
|
3213
|
-
console.error(getStringFromWasm0(arg0, arg1));
|
|
3214
|
-
},
|
|
3215
|
-
__wbg_error_e98c298703cffa97: function(arg0, arg1) {
|
|
3216
|
-
console.error(getStringFromWasm0(arg0, arg1));
|
|
3217
|
-
},
|
|
3218
|
-
__wbg_fetch_53eef7df7b439a49: function(arg0, arg1) {
|
|
3241
|
+
__wbg_fetch_010aa16f24b763bc: function(arg0, arg1) {
|
|
3219
3242
|
const ret = fetch(arg0, arg1);
|
|
3220
3243
|
return ret;
|
|
3221
3244
|
},
|
|
3222
|
-
|
|
3245
|
+
__wbg_fetch_43b2f110608a59ff: function(arg0) {
|
|
3223
3246
|
const ret = fetch(arg0);
|
|
3224
3247
|
return ret;
|
|
3225
3248
|
},
|
|
3226
|
-
|
|
3249
|
+
__wbg_fetch_5550a88cf343aaa9: function(arg0, arg1) {
|
|
3227
3250
|
const ret = arg0.fetch(arg1);
|
|
3228
3251
|
return ret;
|
|
3229
3252
|
},
|
|
3230
|
-
|
|
3253
|
+
__wbg_fetch_9dad4fe911207b37: function(arg0) {
|
|
3254
|
+
const ret = fetch(arg0);
|
|
3255
|
+
return ret;
|
|
3256
|
+
},
|
|
3257
|
+
__wbg_fetch_d77cded604d729e9: function(arg0, arg1, arg2) {
|
|
3231
3258
|
const ret = arg0.fetch(arg1, arg2);
|
|
3232
3259
|
return ret;
|
|
3233
3260
|
},
|
|
3234
|
-
|
|
3261
|
+
__wbg_fill_8c98ef3fd18c2e5c: function(arg0, arg1, arg2, arg3) {
|
|
3235
3262
|
const ret = arg0.fill(arg1, arg2 >>> 0, arg3 >>> 0);
|
|
3236
3263
|
return ret;
|
|
3237
3264
|
},
|
|
3238
|
-
|
|
3265
|
+
__wbg_flush_1eca046e0ff7c399: function() { return handleError(function (arg0) {
|
|
3239
3266
|
arg0.flush();
|
|
3240
3267
|
}, arguments); },
|
|
3241
|
-
|
|
3268
|
+
__wbg_forEach_a2c08d9c3cc0524c: function(arg0, arg1, arg2) {
|
|
3242
3269
|
try {
|
|
3243
3270
|
var state0 = {a: arg1, b: arg2};
|
|
3244
3271
|
var cb0 = (arg0, arg1, arg2) => {
|
|
3245
3272
|
const a = state0.a;
|
|
3246
3273
|
state0.a = 0;
|
|
3247
3274
|
try {
|
|
3248
|
-
return
|
|
3275
|
+
return wasm_bindgen__convert__closures_____invoke__h463fcf847e24a8b9(a, state0.b, arg0, arg1, arg2);
|
|
3249
3276
|
} finally {
|
|
3250
3277
|
state0.a = a;
|
|
3251
3278
|
}
|
|
@@ -3255,125 +3282,133 @@ function __wbg_get_imports() {
|
|
|
3255
3282
|
state0.a = state0.b = 0;
|
|
3256
3283
|
}
|
|
3257
3284
|
},
|
|
3258
|
-
|
|
3285
|
+
__wbg_from_4bdf88943703fd48: function(arg0) {
|
|
3259
3286
|
const ret = Array.from(arg0);
|
|
3260
3287
|
return ret;
|
|
3261
3288
|
},
|
|
3262
|
-
|
|
3289
|
+
__wbg_getDate_fbf9a2247e954082: function(arg0) {
|
|
3263
3290
|
const ret = arg0.getDate();
|
|
3264
3291
|
return ret;
|
|
3265
3292
|
},
|
|
3266
|
-
|
|
3293
|
+
__wbg_getDay_2287a9ab7ef27b82: function(arg0) {
|
|
3267
3294
|
const ret = arg0.getDay();
|
|
3268
3295
|
return ret;
|
|
3269
3296
|
},
|
|
3270
|
-
|
|
3297
|
+
__wbg_getDirectoryHandle_5f0ee1df58525717: function(arg0, arg1, arg2, arg3) {
|
|
3271
3298
|
const ret = arg0.getDirectoryHandle(getStringFromWasm0(arg1, arg2), arg3);
|
|
3272
3299
|
return ret;
|
|
3273
3300
|
},
|
|
3274
|
-
|
|
3301
|
+
__wbg_getDirectory_2406d369de179ff0: function(arg0) {
|
|
3275
3302
|
const ret = arg0.getDirectory();
|
|
3276
3303
|
return ret;
|
|
3277
3304
|
},
|
|
3278
|
-
|
|
3305
|
+
__wbg_getElementById_c7ce907969867235: function(arg0, arg1, arg2) {
|
|
3279
3306
|
const ret = arg0.getElementById(getStringFromWasm0(arg1, arg2));
|
|
3280
3307
|
return ret;
|
|
3281
3308
|
},
|
|
3282
|
-
|
|
3309
|
+
__wbg_getFileHandle_b85805519dc63efa: function(arg0, arg1, arg2, arg3) {
|
|
3283
3310
|
const ret = arg0.getFileHandle(getStringFromWasm0(arg1, arg2), arg3);
|
|
3284
3311
|
return ret;
|
|
3285
3312
|
},
|
|
3286
|
-
|
|
3313
|
+
__wbg_getFullYear_f6d84c054eee1543: function(arg0) {
|
|
3287
3314
|
const ret = arg0.getFullYear();
|
|
3288
3315
|
return ret;
|
|
3289
3316
|
},
|
|
3290
|
-
|
|
3317
|
+
__wbg_getHours_391d39cf9970a985: function(arg0) {
|
|
3291
3318
|
const ret = arg0.getHours();
|
|
3292
3319
|
return ret;
|
|
3293
3320
|
},
|
|
3294
|
-
|
|
3321
|
+
__wbg_getMinutes_c6b51adde167b27d: function(arg0) {
|
|
3295
3322
|
const ret = arg0.getMinutes();
|
|
3296
3323
|
return ret;
|
|
3297
3324
|
},
|
|
3298
|
-
|
|
3325
|
+
__wbg_getMonth_884df91d4880455c: function(arg0) {
|
|
3299
3326
|
const ret = arg0.getMonth();
|
|
3300
3327
|
return ret;
|
|
3301
3328
|
},
|
|
3302
|
-
|
|
3329
|
+
__wbg_getRandomValues_3f44b700395062e5: function() { return handleError(function (arg0, arg1) {
|
|
3303
3330
|
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
|
3304
3331
|
}, arguments); },
|
|
3305
|
-
|
|
3332
|
+
__wbg_getRandomValues_76dfc69825c9c552: function() { return handleError(function (arg0, arg1) {
|
|
3306
3333
|
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
|
3307
3334
|
}, arguments); },
|
|
3308
|
-
|
|
3335
|
+
__wbg_getRandomValues_c44a50d8cfdaebeb: function() { return handleError(function (arg0, arg1) {
|
|
3309
3336
|
arg0.getRandomValues(arg1);
|
|
3310
3337
|
}, arguments); },
|
|
3311
|
-
|
|
3338
|
+
__wbg_getRandomValues_e17307db78dbd90b: function() { return handleError(function (arg0, arg1) {
|
|
3312
3339
|
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
|
3313
3340
|
}, arguments); },
|
|
3314
|
-
|
|
3341
|
+
__wbg_getReader_9facd4f899beac89: function() { return handleError(function (arg0) {
|
|
3315
3342
|
const ret = arg0.getReader();
|
|
3316
3343
|
return ret;
|
|
3317
3344
|
}, arguments); },
|
|
3318
|
-
|
|
3345
|
+
__wbg_getSeconds_53838367bdfd2269: function(arg0) {
|
|
3319
3346
|
const ret = arg0.getSeconds();
|
|
3320
3347
|
return ret;
|
|
3321
3348
|
},
|
|
3322
|
-
|
|
3349
|
+
__wbg_getSize_0a16c5e2524d34aa: function() { return handleError(function (arg0) {
|
|
3323
3350
|
const ret = arg0.getSize();
|
|
3324
3351
|
return ret;
|
|
3325
3352
|
}, arguments); },
|
|
3326
|
-
|
|
3353
|
+
__wbg_getTime_1dad7b5386ddd2d9: function(arg0) {
|
|
3327
3354
|
const ret = arg0.getTime();
|
|
3328
3355
|
return ret;
|
|
3329
3356
|
},
|
|
3330
|
-
|
|
3357
|
+
__wbg_getTimezoneOffset_639bcf2dde21158b: function(arg0) {
|
|
3331
3358
|
const ret = arg0.getTimezoneOffset();
|
|
3332
3359
|
return ret;
|
|
3333
3360
|
},
|
|
3334
|
-
|
|
3361
|
+
__wbg_getUint32_d3eb02a67faa790e: function(arg0, arg1) {
|
|
3335
3362
|
const ret = arg0.getUint32(arg1 >>> 0);
|
|
3336
3363
|
return ret;
|
|
3337
3364
|
},
|
|
3338
|
-
|
|
3339
|
-
const ret = arg0
|
|
3365
|
+
__wbg_get_326e41e095fb2575: function() { return handleError(function (arg0, arg1) {
|
|
3366
|
+
const ret = Reflect.get(arg0, arg1);
|
|
3340
3367
|
return ret;
|
|
3341
|
-
},
|
|
3342
|
-
|
|
3368
|
+
}, arguments); },
|
|
3369
|
+
__wbg_get_3ef1eba1850ade27: function() { return handleError(function (arg0, arg1) {
|
|
3343
3370
|
const ret = Reflect.get(arg0, arg1);
|
|
3344
3371
|
return ret;
|
|
3345
3372
|
}, arguments); },
|
|
3346
|
-
|
|
3373
|
+
__wbg_get_a8ee5c45dabc1b3b: function(arg0, arg1) {
|
|
3374
|
+
const ret = arg0[arg1 >>> 0];
|
|
3375
|
+
return ret;
|
|
3376
|
+
},
|
|
3377
|
+
__wbg_get_done_d0ab690f8df5501f: function(arg0) {
|
|
3347
3378
|
const ret = arg0.done;
|
|
3348
3379
|
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
3349
3380
|
},
|
|
3350
|
-
|
|
3381
|
+
__wbg_get_index_87179971b8d350e4: function(arg0, arg1) {
|
|
3382
|
+
const ret = arg0[arg1 >>> 0];
|
|
3383
|
+
return ret;
|
|
3384
|
+
},
|
|
3385
|
+
__wbg_get_unchecked_329cfe50afab7352: function(arg0, arg1) {
|
|
3351
3386
|
const ret = arg0[arg1 >>> 0];
|
|
3352
3387
|
return ret;
|
|
3353
3388
|
},
|
|
3354
|
-
|
|
3389
|
+
__wbg_get_value_548ae6adf5a174e4: function(arg0) {
|
|
3355
3390
|
const ret = arg0.value;
|
|
3356
3391
|
return ret;
|
|
3357
3392
|
},
|
|
3358
|
-
|
|
3393
|
+
__wbg_get_with_ref_key_6412cf3094599694: function(arg0, arg1) {
|
|
3359
3394
|
const ret = arg0[arg1];
|
|
3360
3395
|
return ret;
|
|
3361
3396
|
},
|
|
3362
|
-
|
|
3397
|
+
__wbg_has_926ef2ff40b308cf: function() { return handleError(function (arg0, arg1) {
|
|
3363
3398
|
const ret = Reflect.has(arg0, arg1);
|
|
3364
3399
|
return ret;
|
|
3365
3400
|
}, arguments); },
|
|
3366
|
-
|
|
3401
|
+
__wbg_headers_eb2234545f9ff993: function(arg0) {
|
|
3367
3402
|
const ret = arg0.headers;
|
|
3368
3403
|
return ret;
|
|
3369
3404
|
},
|
|
3370
|
-
|
|
3371
|
-
console.info(arg0);
|
|
3372
|
-
},
|
|
3373
|
-
__wbg_info_9e602cf10c5c690b: function(arg0, arg1, arg2, arg3) {
|
|
3405
|
+
__wbg_info_0194681687b5ab04: function(arg0, arg1, arg2, arg3) {
|
|
3374
3406
|
console.info(arg0, arg1, arg2, arg3);
|
|
3375
3407
|
},
|
|
3376
|
-
|
|
3408
|
+
__wbg_info_7d4e223bb1a7e671: function(arg0) {
|
|
3409
|
+
console.info(arg0);
|
|
3410
|
+
},
|
|
3411
|
+
__wbg_instanceof_ArrayBuffer_101e2bf31071a9f6: function(arg0) {
|
|
3377
3412
|
let result;
|
|
3378
3413
|
try {
|
|
3379
3414
|
result = arg0 instanceof ArrayBuffer;
|
|
@@ -3383,7 +3418,7 @@ function __wbg_get_imports() {
|
|
|
3383
3418
|
const ret = result;
|
|
3384
3419
|
return ret;
|
|
3385
3420
|
},
|
|
3386
|
-
|
|
3421
|
+
__wbg_instanceof_DomException_2bdcf7791a2d7d09: function(arg0) {
|
|
3387
3422
|
let result;
|
|
3388
3423
|
try {
|
|
3389
3424
|
result = arg0 instanceof DOMException;
|
|
@@ -3393,7 +3428,7 @@ function __wbg_get_imports() {
|
|
|
3393
3428
|
const ret = result;
|
|
3394
3429
|
return ret;
|
|
3395
3430
|
},
|
|
3396
|
-
|
|
3431
|
+
__wbg_instanceof_Map_f194b366846aca0c: function(arg0) {
|
|
3397
3432
|
let result;
|
|
3398
3433
|
try {
|
|
3399
3434
|
result = arg0 instanceof Map;
|
|
@@ -3403,7 +3438,7 @@ function __wbg_get_imports() {
|
|
|
3403
3438
|
const ret = result;
|
|
3404
3439
|
return ret;
|
|
3405
3440
|
},
|
|
3406
|
-
|
|
3441
|
+
__wbg_instanceof_Response_9b4d9fd451e051b1: function(arg0) {
|
|
3407
3442
|
let result;
|
|
3408
3443
|
try {
|
|
3409
3444
|
result = arg0 instanceof Response;
|
|
@@ -3413,7 +3448,7 @@ function __wbg_get_imports() {
|
|
|
3413
3448
|
const ret = result;
|
|
3414
3449
|
return ret;
|
|
3415
3450
|
},
|
|
3416
|
-
|
|
3451
|
+
__wbg_instanceof_Uint8Array_740438561a5b956d: function(arg0) {
|
|
3417
3452
|
let result;
|
|
3418
3453
|
try {
|
|
3419
3454
|
result = arg0 instanceof Uint8Array;
|
|
@@ -3423,7 +3458,7 @@ function __wbg_get_imports() {
|
|
|
3423
3458
|
const ret = result;
|
|
3424
3459
|
return ret;
|
|
3425
3460
|
},
|
|
3426
|
-
|
|
3461
|
+
__wbg_instanceof_WorkerGlobalScope_de6976d00cb213c6: function(arg0) {
|
|
3427
3462
|
let result;
|
|
3428
3463
|
try {
|
|
3429
3464
|
result = arg0 instanceof WorkerGlobalScope;
|
|
@@ -3433,122 +3468,138 @@ function __wbg_get_imports() {
|
|
|
3433
3468
|
const ret = result;
|
|
3434
3469
|
return ret;
|
|
3435
3470
|
},
|
|
3436
|
-
|
|
3471
|
+
__wbg_isArray_33b91feb269ff46e: function(arg0) {
|
|
3437
3472
|
const ret = Array.isArray(arg0);
|
|
3438
3473
|
return ret;
|
|
3439
3474
|
},
|
|
3440
|
-
|
|
3475
|
+
__wbg_isSafeInteger_ecd6a7f9c3e053cd: function(arg0) {
|
|
3441
3476
|
const ret = Number.isSafeInteger(arg0);
|
|
3442
3477
|
return ret;
|
|
3443
3478
|
},
|
|
3444
|
-
|
|
3479
|
+
__wbg_iterator_d8f549ec8fb061b1: function() {
|
|
3445
3480
|
const ret = Symbol.iterator;
|
|
3446
3481
|
return ret;
|
|
3447
3482
|
},
|
|
3448
|
-
|
|
3449
|
-
const ret = arg0.length;
|
|
3450
|
-
return ret;
|
|
3451
|
-
},
|
|
3452
|
-
__wbg_length_35a7bace40f36eac: function(arg0) {
|
|
3483
|
+
__wbg_length_b3416cf66a5452c8: function(arg0) {
|
|
3453
3484
|
const ret = arg0.length;
|
|
3454
3485
|
return ret;
|
|
3455
3486
|
},
|
|
3456
|
-
|
|
3487
|
+
__wbg_length_ea16607d7b61445b: function(arg0) {
|
|
3457
3488
|
const ret = arg0.length;
|
|
3458
3489
|
return ret;
|
|
3459
3490
|
},
|
|
3460
|
-
|
|
3491
|
+
__wbg_log_ba47e422fd2aea35: function(arg0, arg1) {
|
|
3461
3492
|
console.log(getStringFromWasm0(arg0, arg1));
|
|
3462
3493
|
},
|
|
3463
|
-
|
|
3494
|
+
__wbg_mark_310e9a031ccc84ff: function() { return handleError(function (arg0, arg1, arg2) {
|
|
3464
3495
|
arg0.mark(getStringFromWasm0(arg1, arg2));
|
|
3465
3496
|
}, arguments); },
|
|
3466
|
-
|
|
3497
|
+
__wbg_mark_742962d66a858cc5: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
3467
3498
|
arg0.mark(getStringFromWasm0(arg1, arg2), arg3);
|
|
3468
3499
|
}, arguments); },
|
|
3469
|
-
|
|
3500
|
+
__wbg_measure_54743279e77e77bb: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
3470
3501
|
arg0.measure(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4), getStringFromWasm0(arg5, arg6));
|
|
3471
3502
|
}, arguments); },
|
|
3472
|
-
|
|
3503
|
+
__wbg_measure_cd1f7667d5f5517d: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
3473
3504
|
arg0.measure(getStringFromWasm0(arg1, arg2), arg3);
|
|
3474
3505
|
}, arguments); },
|
|
3475
|
-
|
|
3506
|
+
__wbg_message_00d63f20c41713dd: function(arg0) {
|
|
3507
|
+
const ret = arg0.message;
|
|
3508
|
+
return ret;
|
|
3509
|
+
},
|
|
3510
|
+
__wbg_message_e959edc81e4b6cb7: function(arg0, arg1) {
|
|
3476
3511
|
const ret = arg1.message;
|
|
3477
3512
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3478
3513
|
const len1 = WASM_VECTOR_LEN;
|
|
3479
3514
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3480
3515
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3481
3516
|
},
|
|
3482
|
-
|
|
3483
|
-
const ret = arg0.message;
|
|
3484
|
-
return ret;
|
|
3485
|
-
},
|
|
3486
|
-
__wbg_msCrypto_a61aeb35a24c1329: function(arg0) {
|
|
3517
|
+
__wbg_msCrypto_bd5a034af96bcba6: function(arg0) {
|
|
3487
3518
|
const ret = arg0.msCrypto;
|
|
3488
3519
|
return ret;
|
|
3489
3520
|
},
|
|
3490
|
-
|
|
3521
|
+
__wbg_name_7a3bbd030d0afa16: function(arg0, arg1) {
|
|
3491
3522
|
const ret = arg1.name;
|
|
3492
3523
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3493
3524
|
const len1 = WASM_VECTOR_LEN;
|
|
3494
3525
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3495
3526
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3496
3527
|
},
|
|
3497
|
-
|
|
3528
|
+
__wbg_name_a0434ee983d3c204: function(arg0, arg1) {
|
|
3498
3529
|
const ret = arg1.name;
|
|
3499
3530
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3500
3531
|
const len1 = WASM_VECTOR_LEN;
|
|
3501
3532
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3502
3533
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3503
3534
|
},
|
|
3504
|
-
|
|
3535
|
+
__wbg_name_ecf53d5e050a495d: function(arg0) {
|
|
3505
3536
|
const ret = arg0.name;
|
|
3506
3537
|
return ret;
|
|
3507
3538
|
},
|
|
3508
|
-
|
|
3539
|
+
__wbg_navigator_583ffd4fc14c0f7a: function(arg0) {
|
|
3509
3540
|
const ret = arg0.navigator;
|
|
3510
3541
|
return ret;
|
|
3511
3542
|
},
|
|
3512
|
-
|
|
3543
|
+
__wbg_new_0837727332ac86ba: function() { return handleError(function () {
|
|
3544
|
+
const ret = new Headers();
|
|
3545
|
+
return ret;
|
|
3546
|
+
}, arguments); },
|
|
3547
|
+
__wbg_new_0_1dcafdf5e786e876: function() {
|
|
3513
3548
|
const ret = new Date();
|
|
3514
3549
|
return ret;
|
|
3515
3550
|
},
|
|
3516
|
-
|
|
3517
|
-
const ret = new
|
|
3551
|
+
__wbg_new_227d7c05414eb861: function() {
|
|
3552
|
+
const ret = new Error();
|
|
3518
3553
|
return ret;
|
|
3519
3554
|
},
|
|
3520
|
-
|
|
3521
|
-
const ret = new
|
|
3555
|
+
__wbg_new_3b89a8aabb976b21: function() {
|
|
3556
|
+
const ret = new Error();
|
|
3522
3557
|
return ret;
|
|
3523
3558
|
},
|
|
3524
|
-
|
|
3525
|
-
const ret = new
|
|
3559
|
+
__wbg_new_49d5571bd3f0c4d4: function() {
|
|
3560
|
+
const ret = new Map();
|
|
3561
|
+
return ret;
|
|
3562
|
+
},
|
|
3563
|
+
__wbg_new_5f486cdf45a04d78: function(arg0) {
|
|
3564
|
+
const ret = new Uint8Array(arg0);
|
|
3526
3565
|
return ret;
|
|
3527
3566
|
},
|
|
3528
|
-
|
|
3567
|
+
__wbg_new_94350226ad30c16b: function(arg0, arg1, arg2) {
|
|
3568
|
+
const ret = new DataView(arg0, arg1 >>> 0, arg2 >>> 0);
|
|
3569
|
+
return ret;
|
|
3570
|
+
},
|
|
3571
|
+
__wbg_new_a70fbab9066b301f: function() {
|
|
3529
3572
|
const ret = new Array();
|
|
3530
3573
|
return ret;
|
|
3531
3574
|
},
|
|
3532
|
-
|
|
3533
|
-
const ret = new
|
|
3575
|
+
__wbg_new_ab79df5bd7c26067: function() {
|
|
3576
|
+
const ret = new Object();
|
|
3577
|
+
return ret;
|
|
3578
|
+
},
|
|
3579
|
+
__wbg_new_c518c60af666645b: function() { return handleError(function () {
|
|
3580
|
+
const ret = new AbortController();
|
|
3534
3581
|
return ret;
|
|
3535
3582
|
}, arguments); },
|
|
3536
|
-
|
|
3583
|
+
__wbg_new_d15cb560a6a0e5f0: function(arg0, arg1) {
|
|
3537
3584
|
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
3538
3585
|
return ret;
|
|
3539
3586
|
},
|
|
3540
|
-
|
|
3541
|
-
const ret = new
|
|
3587
|
+
__wbg_new_fd94ca5c9639abd2: function(arg0) {
|
|
3588
|
+
const ret = new Date(arg0);
|
|
3589
|
+
return ret;
|
|
3590
|
+
},
|
|
3591
|
+
__wbg_new_from_slice_22da9388ac046e50: function(arg0, arg1) {
|
|
3592
|
+
const ret = new Uint8Array(getArrayU8FromWasm0(arg0, arg1));
|
|
3542
3593
|
return ret;
|
|
3543
3594
|
},
|
|
3544
|
-
|
|
3595
|
+
__wbg_new_typed_aaaeaf29cf802876: function(arg0, arg1) {
|
|
3545
3596
|
try {
|
|
3546
3597
|
var state0 = {a: arg0, b: arg1};
|
|
3547
3598
|
var cb0 = (arg0, arg1) => {
|
|
3548
3599
|
const a = state0.a;
|
|
3549
3600
|
state0.a = 0;
|
|
3550
3601
|
try {
|
|
3551
|
-
return
|
|
3602
|
+
return wasm_bindgen__convert__closures_____invoke__h4387b2ade76fdfcf(a, state0.b, arg0, arg1);
|
|
3552
3603
|
} finally {
|
|
3553
3604
|
state0.a = a;
|
|
3554
3605
|
}
|
|
@@ -3559,263 +3610,247 @@ function __wbg_get_imports() {
|
|
|
3559
3610
|
state0.a = state0.b = 0;
|
|
3560
3611
|
}
|
|
3561
3612
|
},
|
|
3562
|
-
|
|
3563
|
-
const ret = new
|
|
3564
|
-
return ret;
|
|
3565
|
-
}, arguments); },
|
|
3566
|
-
__wbg_new_dca287b076112a51: function() {
|
|
3567
|
-
const ret = new Map();
|
|
3568
|
-
return ret;
|
|
3569
|
-
},
|
|
3570
|
-
__wbg_new_dd2b680c8bf6ae29: function(arg0) {
|
|
3571
|
-
const ret = new Uint8Array(arg0);
|
|
3572
|
-
return ret;
|
|
3573
|
-
},
|
|
3574
|
-
__wbg_new_f0796def86e99471: function() {
|
|
3575
|
-
const ret = new Error();
|
|
3576
|
-
return ret;
|
|
3577
|
-
},
|
|
3578
|
-
__wbg_new_from_slice_a3d2629dc1826784: function(arg0, arg1) {
|
|
3579
|
-
const ret = new Uint8Array(getArrayU8FromWasm0(arg0, arg1));
|
|
3580
|
-
return ret;
|
|
3581
|
-
},
|
|
3582
|
-
__wbg_new_no_args_1c7c842f08d00ebb: function(arg0, arg1) {
|
|
3583
|
-
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
3613
|
+
__wbg_new_typed_bccac67128ed885a: function() {
|
|
3614
|
+
const ret = new Array();
|
|
3584
3615
|
return ret;
|
|
3585
3616
|
},
|
|
3586
|
-
|
|
3617
|
+
__wbg_new_with_byte_offset_and_length_b2ec5bf7b2f35743: function(arg0, arg1, arg2) {
|
|
3587
3618
|
const ret = new Uint8Array(arg0, arg1 >>> 0, arg2 >>> 0);
|
|
3588
3619
|
return ret;
|
|
3589
3620
|
},
|
|
3590
|
-
|
|
3621
|
+
__wbg_new_with_into_underlying_source_fd904252f385f59c: function(arg0, arg1) {
|
|
3591
3622
|
const ret = new ReadableStream(IntoUnderlyingSource.__wrap(arg0), arg1);
|
|
3592
3623
|
return ret;
|
|
3593
3624
|
},
|
|
3594
|
-
|
|
3625
|
+
__wbg_new_with_length_825018a1616e9e55: function(arg0) {
|
|
3595
3626
|
const ret = new Uint8Array(arg0 >>> 0);
|
|
3596
3627
|
return ret;
|
|
3597
3628
|
},
|
|
3598
|
-
|
|
3629
|
+
__wbg_new_with_str_and_init_b4b54d1a819bc724: function() { return handleError(function (arg0, arg1, arg2) {
|
|
3599
3630
|
const ret = new Request(getStringFromWasm0(arg0, arg1), arg2);
|
|
3600
3631
|
return ret;
|
|
3601
3632
|
}, arguments); },
|
|
3602
|
-
|
|
3633
|
+
__wbg_new_with_year_month_day_82496ee7686a68d8: function(arg0, arg1, arg2) {
|
|
3603
3634
|
const ret = new Date(arg0 >>> 0, arg1, arg2);
|
|
3604
3635
|
return ret;
|
|
3605
3636
|
},
|
|
3606
|
-
|
|
3637
|
+
__wbg_next_11b99ee6237339e3: function() { return handleError(function (arg0) {
|
|
3607
3638
|
const ret = arg0.next();
|
|
3608
3639
|
return ret;
|
|
3609
3640
|
}, arguments); },
|
|
3610
|
-
|
|
3611
|
-
const ret = arg0.next();
|
|
3612
|
-
return ret;
|
|
3613
|
-
}, arguments); },
|
|
3614
|
-
__wbg_next_418f80d8f5303233: function(arg0) {
|
|
3641
|
+
__wbg_next_e01a967809d1aa68: function(arg0) {
|
|
3615
3642
|
const ret = arg0.next;
|
|
3616
3643
|
return ret;
|
|
3617
3644
|
},
|
|
3618
|
-
|
|
3645
|
+
__wbg_next_eca3bb2f1a45eec9: function() { return handleError(function (arg0) {
|
|
3646
|
+
const ret = arg0.next();
|
|
3647
|
+
return ret;
|
|
3648
|
+
}, arguments); },
|
|
3649
|
+
__wbg_node_84ea875411254db1: function(arg0) {
|
|
3619
3650
|
const ret = arg0.node;
|
|
3620
3651
|
return ret;
|
|
3621
3652
|
},
|
|
3622
|
-
|
|
3623
|
-
const ret =
|
|
3653
|
+
__wbg_now_16f0c993d5dd6c27: function() {
|
|
3654
|
+
const ret = Date.now();
|
|
3624
3655
|
return ret;
|
|
3625
3656
|
},
|
|
3626
|
-
|
|
3657
|
+
__wbg_now_bededbf0fc26550a: function(arg0) {
|
|
3627
3658
|
const ret = arg0.now();
|
|
3628
3659
|
return ret;
|
|
3629
3660
|
},
|
|
3630
|
-
|
|
3631
|
-
const ret =
|
|
3661
|
+
__wbg_now_e7c6795a7f81e10f: function(arg0) {
|
|
3662
|
+
const ret = arg0.now();
|
|
3632
3663
|
return ret;
|
|
3633
3664
|
},
|
|
3634
|
-
|
|
3665
|
+
__wbg_on_auth_required_b34a0f8ae9d6d2b5: function() { return handleError(function (arg0) {
|
|
3635
3666
|
const ret = arg0.on_auth_required();
|
|
3636
3667
|
return ret;
|
|
3637
3668
|
}, arguments); },
|
|
3638
|
-
|
|
3669
|
+
__wbg_on_close_dba5da4a30d27671: function(arg0) {
|
|
3639
3670
|
arg0.on_close();
|
|
3640
3671
|
},
|
|
3641
|
-
|
|
3672
|
+
__wbg_on_consent_update_03abb81e13df5f2d: function(arg0, arg1) {
|
|
3642
3673
|
arg0.on_consent_update(arg1);
|
|
3643
3674
|
},
|
|
3644
|
-
|
|
3675
|
+
__wbg_on_conversation_1503a194876f041c: function(arg0, arg1) {
|
|
3645
3676
|
arg0.on_conversation(Conversation.__wrap(arg1));
|
|
3646
3677
|
},
|
|
3647
|
-
|
|
3678
|
+
__wbg_on_error_5af11569cd6c9c30: function(arg0, arg1) {
|
|
3648
3679
|
arg0.on_error(arg1);
|
|
3649
3680
|
},
|
|
3650
|
-
|
|
3681
|
+
__wbg_on_message_5465522cfd3618a6: function(arg0, arg1) {
|
|
3651
3682
|
arg0.on_message(arg1);
|
|
3652
3683
|
},
|
|
3653
|
-
|
|
3684
|
+
__wbg_on_message_deleted_d1618107df33900b: function(arg0, arg1) {
|
|
3654
3685
|
arg0.on_message_deleted(arg1);
|
|
3655
3686
|
},
|
|
3656
|
-
|
|
3687
|
+
__wbg_on_user_preference_update_e533c0546fdfc6f9: function(arg0, arg1, arg2) {
|
|
3657
3688
|
var v0 = getArrayJsValueFromWasm0(arg1, arg2).slice();
|
|
3658
3689
|
wasm.__wbindgen_free(arg1, arg2 * 4, 4);
|
|
3659
3690
|
arg0.on_user_preference_update(v0);
|
|
3660
3691
|
},
|
|
3661
|
-
|
|
3662
|
-
const ret =
|
|
3692
|
+
__wbg_performance_3fcf6e32a7e1ed0a: function(arg0) {
|
|
3693
|
+
const ret = arg0.performance;
|
|
3663
3694
|
return ret;
|
|
3664
3695
|
},
|
|
3665
|
-
|
|
3666
|
-
const ret =
|
|
3696
|
+
__wbg_performance_757310249566272b: function() {
|
|
3697
|
+
const ret = globalThis.performance;
|
|
3667
3698
|
return ret;
|
|
3668
3699
|
},
|
|
3669
|
-
|
|
3700
|
+
__wbg_performance_b046e73c47617524: function(arg0) {
|
|
3670
3701
|
const ret = arg0.performance;
|
|
3671
3702
|
return ret;
|
|
3672
3703
|
},
|
|
3673
|
-
|
|
3704
|
+
__wbg_postMessage_564f0071531c08c3: function() { return handleError(function (arg0, arg1) {
|
|
3674
3705
|
arg0.postMessage(arg1);
|
|
3675
3706
|
}, arguments); },
|
|
3676
|
-
|
|
3707
|
+
__wbg_process_44c7a14e11e9f69e: function(arg0) {
|
|
3677
3708
|
const ret = arg0.process;
|
|
3678
3709
|
return ret;
|
|
3679
3710
|
},
|
|
3680
|
-
|
|
3711
|
+
__wbg_prototypesetcall_d62e5099504357e6: function(arg0, arg1, arg2) {
|
|
3681
3712
|
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
|
|
3682
3713
|
},
|
|
3683
|
-
|
|
3714
|
+
__wbg_push_e87b0e732085a946: function(arg0, arg1) {
|
|
3684
3715
|
const ret = arg0.push(arg1);
|
|
3685
3716
|
return ret;
|
|
3686
3717
|
},
|
|
3687
|
-
|
|
3718
|
+
__wbg_queueMicrotask_0c399741342fb10f: function(arg0) {
|
|
3688
3719
|
const ret = arg0.queueMicrotask;
|
|
3689
3720
|
return ret;
|
|
3690
3721
|
},
|
|
3691
|
-
|
|
3722
|
+
__wbg_queueMicrotask_a082d78ce798393e: function(arg0) {
|
|
3692
3723
|
queueMicrotask(arg0);
|
|
3693
3724
|
},
|
|
3694
|
-
|
|
3725
|
+
__wbg_randomFillSync_6c25eac9869eb53c: function() { return handleError(function (arg0, arg1) {
|
|
3695
3726
|
arg0.randomFillSync(arg1);
|
|
3696
3727
|
}, arguments); },
|
|
3697
|
-
|
|
3728
|
+
__wbg_random_5bb86cae65a45bf6: function() {
|
|
3698
3729
|
const ret = Math.random();
|
|
3699
3730
|
return ret;
|
|
3700
3731
|
},
|
|
3701
|
-
|
|
3702
|
-
const ret = arg0.read(arg1, arg2);
|
|
3732
|
+
__wbg_read_0285869b4fd131af: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
3733
|
+
const ret = arg0.read(getArrayU8FromWasm0(arg1, arg2), arg3);
|
|
3703
3734
|
return ret;
|
|
3704
3735
|
}, arguments); },
|
|
3705
|
-
|
|
3736
|
+
__wbg_read_7f593a961a7f80ed: function(arg0) {
|
|
3706
3737
|
const ret = arg0.read();
|
|
3707
3738
|
return ret;
|
|
3708
3739
|
},
|
|
3709
|
-
|
|
3710
|
-
const ret = arg0.read(
|
|
3740
|
+
__wbg_read_f0bbcacfbadb350b: function() { return handleError(function (arg0, arg1, arg2) {
|
|
3741
|
+
const ret = arg0.read(arg1, arg2);
|
|
3711
3742
|
return ret;
|
|
3712
3743
|
}, arguments); },
|
|
3713
|
-
|
|
3744
|
+
__wbg_releaseLock_ef7766a5da654ff8: function(arg0) {
|
|
3714
3745
|
arg0.releaseLock();
|
|
3715
3746
|
},
|
|
3716
|
-
|
|
3747
|
+
__wbg_require_b4edbdcf3e2a1ef0: function() { return handleError(function () {
|
|
3717
3748
|
const ret = module.require;
|
|
3718
3749
|
return ret;
|
|
3719
3750
|
}, arguments); },
|
|
3720
|
-
|
|
3751
|
+
__wbg_resolve_ae8d83246e5bcc12: function(arg0) {
|
|
3721
3752
|
const ret = Promise.resolve(arg0);
|
|
3722
3753
|
return ret;
|
|
3723
3754
|
},
|
|
3724
|
-
|
|
3755
|
+
__wbg_respond_e286ee502e7cf7e4: function() { return handleError(function (arg0, arg1) {
|
|
3725
3756
|
arg0.respond(arg1 >>> 0);
|
|
3726
3757
|
}, arguments); },
|
|
3727
|
-
|
|
3758
|
+
__wbg_self_81ecf3f64cd5499b: function(arg0) {
|
|
3728
3759
|
const ret = arg0.self;
|
|
3729
3760
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3730
3761
|
},
|
|
3731
|
-
|
|
3762
|
+
__wbg_setInterval_84b64f01452a246e: function() { return handleError(function (arg0, arg1) {
|
|
3732
3763
|
const ret = setInterval(arg0, arg1);
|
|
3733
3764
|
return ret;
|
|
3734
3765
|
}, arguments); },
|
|
3735
|
-
|
|
3766
|
+
__wbg_setTimeout_a3127d9f29a851c3: function(arg0, arg1) {
|
|
3736
3767
|
const ret = setTimeout(arg0, arg1);
|
|
3737
3768
|
return ret;
|
|
3738
3769
|
},
|
|
3739
|
-
|
|
3770
|
+
__wbg_setTimeout_b188b3bcc8977c7d: function(arg0, arg1) {
|
|
3740
3771
|
const ret = setTimeout(arg0, arg1);
|
|
3741
3772
|
return ret;
|
|
3742
3773
|
},
|
|
3743
|
-
|
|
3774
|
+
__wbg_setTimeout_ef24d2fc3ad97385: function() { return handleError(function (arg0, arg1) {
|
|
3744
3775
|
const ret = setTimeout(arg0, arg1);
|
|
3745
3776
|
return ret;
|
|
3746
3777
|
}, arguments); },
|
|
3747
|
-
|
|
3778
|
+
__wbg_setTimeout_f757f00851f76c42: function(arg0, arg1) {
|
|
3779
|
+
const ret = setTimeout(arg0, arg1);
|
|
3780
|
+
return ret;
|
|
3781
|
+
},
|
|
3782
|
+
__wbg_setUint32_f5040a0d9acfdee0: function(arg0, arg1, arg2) {
|
|
3748
3783
|
arg0.setUint32(arg1 >>> 0, arg2 >>> 0);
|
|
3749
3784
|
},
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
return ret;
|
|
3785
|
+
__wbg_set_282384002438957f: function(arg0, arg1, arg2) {
|
|
3786
|
+
arg0[arg1 >>> 0] = arg2;
|
|
3753
3787
|
},
|
|
3754
|
-
|
|
3788
|
+
__wbg_set_6be42768c690e380: function(arg0, arg1, arg2) {
|
|
3755
3789
|
arg0[arg1] = arg2;
|
|
3756
3790
|
},
|
|
3757
|
-
|
|
3791
|
+
__wbg_set_7eaa4f96924fd6b3: function() { return handleError(function (arg0, arg1, arg2) {
|
|
3758
3792
|
const ret = Reflect.set(arg0, arg1, arg2);
|
|
3759
3793
|
return ret;
|
|
3760
3794
|
}, arguments); },
|
|
3761
|
-
|
|
3795
|
+
__wbg_set_8c0b3ffcf05d61c2: function(arg0, arg1, arg2) {
|
|
3796
|
+
arg0.set(getArrayU8FromWasm0(arg1, arg2));
|
|
3797
|
+
},
|
|
3798
|
+
__wbg_set_at_e227be75df7f9abf: function(arg0, arg1) {
|
|
3762
3799
|
arg0.at = arg1;
|
|
3763
3800
|
},
|
|
3764
|
-
|
|
3801
|
+
__wbg_set_bf7251625df30a02: function(arg0, arg1, arg2) {
|
|
3802
|
+
const ret = arg0.set(arg1, arg2);
|
|
3803
|
+
return ret;
|
|
3804
|
+
},
|
|
3805
|
+
__wbg_set_body_a3d856b097dfda04: function(arg0, arg1) {
|
|
3765
3806
|
arg0.body = arg1;
|
|
3766
3807
|
},
|
|
3767
|
-
|
|
3808
|
+
__wbg_set_cache_ec7e430c6056ebda: function(arg0, arg1) {
|
|
3768
3809
|
arg0.cache = __wbindgen_enum_RequestCache[arg1];
|
|
3769
3810
|
},
|
|
3770
|
-
|
|
3771
|
-
arg0.set(getArrayU8FromWasm0(arg1, arg2));
|
|
3772
|
-
},
|
|
3773
|
-
__wbg_set_create_1f902c5936adde7d: function(arg0, arg1) {
|
|
3811
|
+
__wbg_set_create_1bebf2add702f8d5: function(arg0, arg1) {
|
|
3774
3812
|
arg0.create = arg1 !== 0;
|
|
3775
3813
|
},
|
|
3776
|
-
|
|
3814
|
+
__wbg_set_create_ef897736206a6f05: function(arg0, arg1) {
|
|
3777
3815
|
arg0.create = arg1 !== 0;
|
|
3778
3816
|
},
|
|
3779
|
-
|
|
3817
|
+
__wbg_set_credentials_ed63183445882c65: function(arg0, arg1) {
|
|
3780
3818
|
arg0.credentials = __wbindgen_enum_RequestCredentials[arg1];
|
|
3781
3819
|
},
|
|
3782
|
-
|
|
3820
|
+
__wbg_set_e09648bea3f1af1e: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
3783
3821
|
arg0.set(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
3784
3822
|
}, arguments); },
|
|
3785
|
-
|
|
3786
|
-
arg0[arg1 >>> 0] = arg2;
|
|
3787
|
-
},
|
|
3788
|
-
__wbg_set_headers_cfc5f4b2c1f20549: function(arg0, arg1) {
|
|
3823
|
+
__wbg_set_headers_3c8fecc693b75327: function(arg0, arg1) {
|
|
3789
3824
|
arg0.headers = arg1;
|
|
3790
3825
|
},
|
|
3791
|
-
|
|
3826
|
+
__wbg_set_high_water_mark_1ac059fa0566c2fc: function(arg0, arg1) {
|
|
3792
3827
|
arg0.highWaterMark = arg1;
|
|
3793
3828
|
},
|
|
3794
|
-
|
|
3829
|
+
__wbg_set_integrity_6e605069e31cef0a: function(arg0, arg1, arg2) {
|
|
3795
3830
|
arg0.integrity = getStringFromWasm0(arg1, arg2);
|
|
3796
3831
|
},
|
|
3797
|
-
|
|
3832
|
+
__wbg_set_method_8c015e8bcafd7be1: function(arg0, arg1, arg2) {
|
|
3798
3833
|
arg0.method = getStringFromWasm0(arg1, arg2);
|
|
3799
3834
|
},
|
|
3800
|
-
|
|
3835
|
+
__wbg_set_mode_5a87f2c809cf37c2: function(arg0, arg1) {
|
|
3801
3836
|
arg0.mode = __wbindgen_enum_RequestMode[arg1];
|
|
3802
3837
|
},
|
|
3803
|
-
|
|
3838
|
+
__wbg_set_redirect_c7b340412376b11a: function(arg0, arg1) {
|
|
3804
3839
|
arg0.redirect = __wbindgen_enum_RequestRedirect[arg1];
|
|
3805
3840
|
},
|
|
3806
|
-
|
|
3841
|
+
__wbg_set_referrer_4f2f273104bee6d0: function(arg0, arg1, arg2) {
|
|
3807
3842
|
arg0.referrer = getStringFromWasm0(arg1, arg2);
|
|
3808
3843
|
},
|
|
3809
|
-
|
|
3844
|
+
__wbg_set_referrer_policy_3cea8b6e31a9e636: function(arg0, arg1) {
|
|
3810
3845
|
arg0.referrerPolicy = __wbindgen_enum_ReferrerPolicy[arg1];
|
|
3811
3846
|
},
|
|
3812
|
-
|
|
3847
|
+
__wbg_set_signal_0cebecb698f25d21: function(arg0, arg1) {
|
|
3813
3848
|
arg0.signal = arg1;
|
|
3814
3849
|
},
|
|
3815
|
-
|
|
3850
|
+
__wbg_set_text_content_53a918c21c5b6d7b: function(arg0, arg1, arg2) {
|
|
3816
3851
|
arg0.textContent = getStringFromWasm0(arg1, arg2);
|
|
3817
3852
|
},
|
|
3818
|
-
|
|
3853
|
+
__wbg_signal_166e1da31adcac18: function(arg0) {
|
|
3819
3854
|
const ret = arg0.signal;
|
|
3820
3855
|
return ret;
|
|
3821
3856
|
},
|
|
@@ -3823,222 +3858,224 @@ function __wbg_get_imports() {
|
|
|
3823
3858
|
const ret = SignatureRequestHandle.__wrap(arg0);
|
|
3824
3859
|
return ret;
|
|
3825
3860
|
},
|
|
3826
|
-
|
|
3827
|
-
const ret = arg0.slice(arg1 >>> 0, arg2 >>> 0);
|
|
3828
|
-
return ret;
|
|
3829
|
-
},
|
|
3830
|
-
__wbg_stack_0ed75d68575b0f3c: function(arg0, arg1) {
|
|
3861
|
+
__wbg_stack_3b0d974bbf31e44f: function(arg0, arg1) {
|
|
3831
3862
|
const ret = arg1.stack;
|
|
3832
3863
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3833
3864
|
const len1 = WASM_VECTOR_LEN;
|
|
3834
3865
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3835
3866
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3836
3867
|
},
|
|
3837
|
-
|
|
3838
|
-
const ret =
|
|
3839
|
-
|
|
3868
|
+
__wbg_stack_4937ea091ccee211: function(arg0, arg1) {
|
|
3869
|
+
const ret = arg1.stack;
|
|
3870
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3871
|
+
const len1 = WASM_VECTOR_LEN;
|
|
3872
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3873
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3840
3874
|
},
|
|
3841
|
-
|
|
3875
|
+
__wbg_stack_7d0113fc30ab59f5: function(arg0, arg1) {
|
|
3842
3876
|
const ret = arg1.stack;
|
|
3843
3877
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3844
3878
|
var len1 = WASM_VECTOR_LEN;
|
|
3845
3879
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3846
3880
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3847
3881
|
},
|
|
3848
|
-
|
|
3882
|
+
__wbg_stack_c5219bcda5d316b0: function(arg0) {
|
|
3849
3883
|
const ret = arg0.stack;
|
|
3850
3884
|
return ret;
|
|
3851
3885
|
},
|
|
3852
|
-
|
|
3853
|
-
const ret =
|
|
3854
|
-
|
|
3855
|
-
const len1 = WASM_VECTOR_LEN;
|
|
3856
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3857
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3886
|
+
__wbg_stack_f43e5bf3710666bf: function(arg0) {
|
|
3887
|
+
const ret = arg0.stack;
|
|
3888
|
+
return ret;
|
|
3858
3889
|
},
|
|
3859
|
-
|
|
3890
|
+
__wbg_static_accessor_DOCUMENT_5687ccb6ab0b4b55: function() {
|
|
3860
3891
|
const ret = document;
|
|
3861
3892
|
return ret;
|
|
3862
3893
|
},
|
|
3863
|
-
|
|
3894
|
+
__wbg_static_accessor_GLOBAL_8adb955bd33fac2f: function() {
|
|
3864
3895
|
const ret = typeof global === 'undefined' ? null : global;
|
|
3865
3896
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3866
3897
|
},
|
|
3867
|
-
|
|
3898
|
+
__wbg_static_accessor_GLOBAL_THIS_ad356e0db91c7913: function() {
|
|
3868
3899
|
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
|
3869
3900
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3870
3901
|
},
|
|
3871
|
-
|
|
3902
|
+
__wbg_static_accessor_SELF_f207c857566db248: function() {
|
|
3872
3903
|
const ret = typeof self === 'undefined' ? null : self;
|
|
3873
3904
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3874
3905
|
},
|
|
3875
|
-
|
|
3906
|
+
__wbg_static_accessor_WINDOW_bb9f1ba69d61b386: function() {
|
|
3876
3907
|
const ret = typeof window === 'undefined' ? null : window;
|
|
3877
3908
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3878
3909
|
},
|
|
3879
|
-
|
|
3910
|
+
__wbg_status_318629ab93a22955: function(arg0) {
|
|
3880
3911
|
const ret = arg0.status;
|
|
3881
3912
|
return ret;
|
|
3882
3913
|
},
|
|
3883
|
-
|
|
3914
|
+
__wbg_storage_8d917976d6753ee0: function(arg0) {
|
|
3884
3915
|
const ret = arg0.storage;
|
|
3885
3916
|
return ret;
|
|
3886
3917
|
},
|
|
3887
|
-
|
|
3918
|
+
__wbg_stringify_5ae93966a84901ac: function() { return handleError(function (arg0) {
|
|
3888
3919
|
const ret = JSON.stringify(arg0);
|
|
3889
3920
|
return ret;
|
|
3890
3921
|
}, arguments); },
|
|
3891
|
-
|
|
3922
|
+
__wbg_subarray_a068d24e39478a8a: function(arg0, arg1, arg2) {
|
|
3892
3923
|
const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0);
|
|
3893
3924
|
return ret;
|
|
3894
3925
|
},
|
|
3895
|
-
|
|
3926
|
+
__wbg_text_372f5b91442c50f9: function() { return handleError(function (arg0) {
|
|
3896
3927
|
const ret = arg0.text();
|
|
3897
3928
|
return ret;
|
|
3898
3929
|
}, arguments); },
|
|
3899
|
-
|
|
3930
|
+
__wbg_text_content_d8e042bed66aa8bd: function(arg0, arg1) {
|
|
3900
3931
|
const ret = arg1.textContent;
|
|
3901
3932
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3902
3933
|
const len1 = WASM_VECTOR_LEN;
|
|
3903
3934
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3904
3935
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3905
3936
|
},
|
|
3906
|
-
|
|
3907
|
-
const ret = arg0.then(arg1
|
|
3937
|
+
__wbg_then_098abe61755d12f6: function(arg0, arg1) {
|
|
3938
|
+
const ret = arg0.then(arg1);
|
|
3908
3939
|
return ret;
|
|
3909
3940
|
},
|
|
3910
|
-
|
|
3911
|
-
const ret = arg0.then(arg1);
|
|
3941
|
+
__wbg_then_9e335f6dd892bc11: function(arg0, arg1, arg2) {
|
|
3942
|
+
const ret = arg0.then(arg1, arg2);
|
|
3912
3943
|
return ret;
|
|
3913
3944
|
},
|
|
3914
|
-
|
|
3915
|
-
const ret = arg0.toString(
|
|
3945
|
+
__wbg_toString_3272fa0dfd05dd87: function(arg0) {
|
|
3946
|
+
const ret = arg0.toString();
|
|
3916
3947
|
return ret;
|
|
3917
|
-
},
|
|
3918
|
-
|
|
3948
|
+
},
|
|
3949
|
+
__wbg_toString_5d57325a72a29da1: function() { return handleError(function (arg0, arg1) {
|
|
3919
3950
|
const ret = arg1.toString();
|
|
3920
3951
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3921
3952
|
const len1 = WASM_VECTOR_LEN;
|
|
3922
3953
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3923
3954
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3924
3955
|
}, arguments); },
|
|
3925
|
-
|
|
3926
|
-
const ret = arg0.toString();
|
|
3927
|
-
return ret;
|
|
3928
|
-
},
|
|
3929
|
-
__wbg_truncate_ce7c4fbc0eec97a1: function() { return handleError(function (arg0, arg1) {
|
|
3956
|
+
__wbg_truncate_af8ac1613ab66393: function() { return handleError(function (arg0, arg1) {
|
|
3930
3957
|
arg0.truncate(arg1);
|
|
3931
3958
|
}, arguments); },
|
|
3932
|
-
|
|
3959
|
+
__wbg_truncate_c40d347b5bd45c12: function() { return handleError(function (arg0, arg1) {
|
|
3933
3960
|
arg0.truncate(arg1 >>> 0);
|
|
3934
3961
|
}, arguments); },
|
|
3935
|
-
|
|
3962
|
+
__wbg_url_7fefc1820fba4e0c: function(arg0, arg1) {
|
|
3936
3963
|
const ret = arg1.url;
|
|
3937
3964
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3938
3965
|
const len1 = WASM_VECTOR_LEN;
|
|
3939
3966
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3940
3967
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3941
3968
|
},
|
|
3942
|
-
|
|
3969
|
+
__wbg_value_21fc78aab0322612: function(arg0) {
|
|
3943
3970
|
const ret = arg0.value;
|
|
3944
3971
|
return ret;
|
|
3945
3972
|
},
|
|
3946
|
-
|
|
3973
|
+
__wbg_versions_276b2795b1c6a219: function(arg0) {
|
|
3947
3974
|
const ret = arg0.versions;
|
|
3948
3975
|
return ret;
|
|
3949
3976
|
},
|
|
3950
|
-
|
|
3977
|
+
__wbg_view_f68a712e7315f8b2: function(arg0) {
|
|
3951
3978
|
const ret = arg0.view;
|
|
3952
3979
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3953
3980
|
},
|
|
3954
|
-
|
|
3955
|
-
console.warn(arg0, arg1, arg2, arg3);
|
|
3956
|
-
},
|
|
3957
|
-
__wbg_warn_f7ae1b2e66ccb930: function(arg0) {
|
|
3981
|
+
__wbg_warn_69424c2d92a2fa73: function(arg0) {
|
|
3958
3982
|
console.warn(arg0);
|
|
3959
3983
|
},
|
|
3960
|
-
|
|
3961
|
-
|
|
3984
|
+
__wbg_warn_809cad1bfc2b3a42: function(arg0, arg1, arg2, arg3) {
|
|
3985
|
+
console.warn(arg0, arg1, arg2, arg3);
|
|
3986
|
+
},
|
|
3987
|
+
__wbg_write_3bcdc311a9e138ff: function() { return handleError(function (arg0, arg1, arg2) {
|
|
3988
|
+
const ret = arg0.write(arg1, arg2);
|
|
3962
3989
|
return ret;
|
|
3963
3990
|
}, arguments); },
|
|
3964
|
-
|
|
3965
|
-
const ret = arg0.write(arg1, arg2);
|
|
3991
|
+
__wbg_write_57c477a82b886339: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
3992
|
+
const ret = arg0.write(getArrayU8FromWasm0(arg1, arg2), arg3);
|
|
3966
3993
|
return ret;
|
|
3967
3994
|
}, arguments); },
|
|
3968
3995
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
3969
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3970
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3996
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 4878, function: Function { arguments: [], shim_idx: 4879, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3997
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h0d08380207e9a9d9, wasm_bindgen__convert__closures_____invoke__hd0dc2e5511ed29f1);
|
|
3971
3998
|
return ret;
|
|
3972
3999
|
},
|
|
3973
4000
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
3974
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3975
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4001
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 7347, function: Function { arguments: [], shim_idx: 7345, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4002
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__ha966834d05fa118a, wasm_bindgen__convert__closures_____invoke__h51cd27c89e2d87ba);
|
|
3976
4003
|
return ret;
|
|
3977
4004
|
},
|
|
3978
4005
|
__wbindgen_cast_0000000000000003: function(arg0, arg1) {
|
|
3979
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3980
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4006
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 7417, function: Function { arguments: [Externref], shim_idx: 7419, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4007
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__hfb5fb7686997db4b, wasm_bindgen__convert__closures_____invoke__h140f53b38323e9be);
|
|
3981
4008
|
return ret;
|
|
3982
4009
|
},
|
|
3983
4010
|
__wbindgen_cast_0000000000000004: function(arg0, arg1) {
|
|
3984
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3985
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4011
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 7612, function: Function { arguments: [], shim_idx: 7613, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4012
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h7209b1fb7810f3a7, wasm_bindgen__convert__closures_____invoke__hbb4e335ca4c3b929);
|
|
4013
|
+
return ret;
|
|
4014
|
+
},
|
|
4015
|
+
__wbindgen_cast_0000000000000005: function(arg0, arg1) {
|
|
4016
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 8609, function: Function { arguments: [], shim_idx: 8610, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4017
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h032c7eb75ae4b8e8, wasm_bindgen__convert__closures_____invoke__ha56bcea43cbb87ac);
|
|
4018
|
+
return ret;
|
|
4019
|
+
},
|
|
4020
|
+
__wbindgen_cast_0000000000000006: function(arg0, arg1) {
|
|
4021
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 9064, function: Function { arguments: [Externref], shim_idx: 9213, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
4022
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__hf7fa66330d0f3282, wasm_bindgen__convert__closures_____invoke__h8bed00622ec861bf);
|
|
3986
4023
|
return ret;
|
|
3987
4024
|
},
|
|
3988
|
-
|
|
4025
|
+
__wbindgen_cast_0000000000000007: function(arg0) {
|
|
3989
4026
|
// Cast intrinsic for `F64 -> Externref`.
|
|
3990
4027
|
const ret = arg0;
|
|
3991
4028
|
return ret;
|
|
3992
4029
|
},
|
|
3993
|
-
|
|
4030
|
+
__wbindgen_cast_0000000000000008: function(arg0) {
|
|
3994
4031
|
// Cast intrinsic for `I64 -> Externref`.
|
|
3995
4032
|
const ret = arg0;
|
|
3996
4033
|
return ret;
|
|
3997
4034
|
},
|
|
3998
|
-
|
|
4035
|
+
__wbindgen_cast_0000000000000009: function(arg0, arg1) {
|
|
3999
4036
|
// Cast intrinsic for `Ref(Slice(U8)) -> NamedExternref("Uint8Array")`.
|
|
4000
4037
|
const ret = getArrayU8FromWasm0(arg0, arg1);
|
|
4001
4038
|
return ret;
|
|
4002
4039
|
},
|
|
4003
|
-
|
|
4040
|
+
__wbindgen_cast_000000000000000a: function(arg0, arg1) {
|
|
4004
4041
|
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
4005
4042
|
const ret = getStringFromWasm0(arg0, arg1);
|
|
4006
4043
|
return ret;
|
|
4007
4044
|
},
|
|
4008
|
-
|
|
4045
|
+
__wbindgen_cast_000000000000000b: function(arg0) {
|
|
4009
4046
|
// Cast intrinsic for `U64 -> Externref`.
|
|
4010
4047
|
const ret = BigInt.asUintN(64, arg0);
|
|
4011
4048
|
return ret;
|
|
4012
4049
|
},
|
|
4013
|
-
|
|
4050
|
+
__wbindgen_cast_000000000000000c: function(arg0, arg1) {
|
|
4014
4051
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
4015
4052
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
4016
4053
|
// Cast intrinsic for `Vector(NamedExternref("Conversation")) -> Externref`.
|
|
4017
4054
|
const ret = v0;
|
|
4018
4055
|
return ret;
|
|
4019
4056
|
},
|
|
4020
|
-
|
|
4057
|
+
__wbindgen_cast_000000000000000d: function(arg0, arg1) {
|
|
4021
4058
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
4022
4059
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
4023
4060
|
// Cast intrinsic for `Vector(NamedExternref("DecodedMessage")) -> Externref`.
|
|
4024
4061
|
const ret = v0;
|
|
4025
4062
|
return ret;
|
|
4026
4063
|
},
|
|
4027
|
-
|
|
4064
|
+
__wbindgen_cast_000000000000000e: function(arg0, arg1) {
|
|
4028
4065
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
4029
4066
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
4030
4067
|
// Cast intrinsic for `Vector(NamedExternref("InboxState")) -> Externref`.
|
|
4031
4068
|
const ret = v0;
|
|
4032
4069
|
return ret;
|
|
4033
4070
|
},
|
|
4034
|
-
|
|
4071
|
+
__wbindgen_cast_000000000000000f: function(arg0, arg1) {
|
|
4035
4072
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
4036
4073
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
4037
4074
|
// Cast intrinsic for `Vector(NamedExternref("Message")) -> Externref`.
|
|
4038
4075
|
const ret = v0;
|
|
4039
4076
|
return ret;
|
|
4040
4077
|
},
|
|
4041
|
-
|
|
4078
|
+
__wbindgen_cast_0000000000000010: function(arg0, arg1) {
|
|
4042
4079
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
4043
4080
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
4044
4081
|
// Cast intrinsic for `Vector(NamedExternref("string")) -> Externref`.
|
|
@@ -4061,28 +4098,39 @@ function __wbg_get_imports() {
|
|
|
4061
4098
|
};
|
|
4062
4099
|
}
|
|
4063
4100
|
|
|
4064
|
-
function
|
|
4065
|
-
wasm.
|
|
4101
|
+
function wasm_bindgen__convert__closures_____invoke__hd0dc2e5511ed29f1(arg0, arg1) {
|
|
4102
|
+
wasm.wasm_bindgen__convert__closures_____invoke__hd0dc2e5511ed29f1(arg0, arg1);
|
|
4103
|
+
}
|
|
4104
|
+
|
|
4105
|
+
function wasm_bindgen__convert__closures_____invoke__h51cd27c89e2d87ba(arg0, arg1) {
|
|
4106
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h51cd27c89e2d87ba(arg0, arg1);
|
|
4107
|
+
}
|
|
4108
|
+
|
|
4109
|
+
function wasm_bindgen__convert__closures_____invoke__hbb4e335ca4c3b929(arg0, arg1) {
|
|
4110
|
+
wasm.wasm_bindgen__convert__closures_____invoke__hbb4e335ca4c3b929(arg0, arg1);
|
|
4066
4111
|
}
|
|
4067
4112
|
|
|
4068
|
-
function
|
|
4069
|
-
wasm.
|
|
4113
|
+
function wasm_bindgen__convert__closures_____invoke__ha56bcea43cbb87ac(arg0, arg1) {
|
|
4114
|
+
wasm.wasm_bindgen__convert__closures_____invoke__ha56bcea43cbb87ac(arg0, arg1);
|
|
4070
4115
|
}
|
|
4071
4116
|
|
|
4072
|
-
function
|
|
4073
|
-
wasm.
|
|
4117
|
+
function wasm_bindgen__convert__closures_____invoke__h140f53b38323e9be(arg0, arg1, arg2) {
|
|
4118
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h140f53b38323e9be(arg0, arg1, arg2);
|
|
4074
4119
|
}
|
|
4075
4120
|
|
|
4076
|
-
function
|
|
4077
|
-
wasm.
|
|
4121
|
+
function wasm_bindgen__convert__closures_____invoke__h8bed00622ec861bf(arg0, arg1, arg2) {
|
|
4122
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__h8bed00622ec861bf(arg0, arg1, arg2);
|
|
4123
|
+
if (ret[1]) {
|
|
4124
|
+
throw takeFromExternrefTable0(ret[0]);
|
|
4125
|
+
}
|
|
4078
4126
|
}
|
|
4079
4127
|
|
|
4080
|
-
function
|
|
4081
|
-
wasm.
|
|
4128
|
+
function wasm_bindgen__convert__closures_____invoke__h4387b2ade76fdfcf(arg0, arg1, arg2, arg3) {
|
|
4129
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h4387b2ade76fdfcf(arg0, arg1, arg2, arg3);
|
|
4082
4130
|
}
|
|
4083
4131
|
|
|
4084
|
-
function
|
|
4085
|
-
wasm.
|
|
4132
|
+
function wasm_bindgen__convert__closures_____invoke__h463fcf847e24a8b9(arg0, arg1, arg2, arg3, arg4) {
|
|
4133
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h463fcf847e24a8b9(arg0, arg1, arg2, arg3, arg4);
|
|
4086
4134
|
}
|
|
4087
4135
|
|
|
4088
4136
|
|
|
@@ -4114,6 +4162,9 @@ const BackendBuilderFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
|
4114
4162
|
const ClientFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4115
4163
|
? { register: () => {}, unregister: () => {} }
|
|
4116
4164
|
: new FinalizationRegistry(ptr => wasm.__wbg_client_free(ptr >>> 0, 1));
|
|
4165
|
+
const WasmBindgenTestContextFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4166
|
+
? { register: () => {}, unregister: () => {} }
|
|
4167
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_wasmbindgentestcontext_free(ptr >>> 0, 1));
|
|
4117
4168
|
const ConversationFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4118
4169
|
? { register: () => {}, unregister: () => {} }
|
|
4119
4170
|
: new FinalizationRegistry(ptr => wasm.__wbg_conversation_free(ptr >>> 0, 1));
|
|
@@ -4141,9 +4192,6 @@ const SignatureRequestHandleFinalization = (typeof FinalizationRegistry === 'und
|
|
|
4141
4192
|
const StreamCloserFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4142
4193
|
? { register: () => {}, unregister: () => {} }
|
|
4143
4194
|
: new FinalizationRegistry(ptr => wasm.__wbg_streamcloser_free(ptr >>> 0, 1));
|
|
4144
|
-
const WasmBindgenTestContextFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4145
|
-
? { register: () => {}, unregister: () => {} }
|
|
4146
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_wasmbindgentestcontext_free(ptr >>> 0, 1));
|
|
4147
4195
|
|
|
4148
4196
|
function addToExternrefTable0(obj) {
|
|
4149
4197
|
const idx = wasm.__externref_table_alloc();
|