porffor 0.40.5 → 0.41.0
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.
@@ -38,7 +38,7 @@ export const __ecma262_IsPromise = (x: any): boolean => {
|
|
38
38
|
// https://tc39.es/ecma262/#sec-fulfillpromise
|
39
39
|
export const __ecma262_FulfillPromise = (promise: any[], value: any): void => {
|
40
40
|
// 1. Assert: The value of promise.[[PromiseState]] is pending.
|
41
|
-
|
41
|
+
if (promise[1] != 0) return;
|
42
42
|
|
43
43
|
// 2. Let reactions be promise.[[PromiseFulfillReactions]].
|
44
44
|
const reactions: any[] = promise[2]; // fulfillReactions
|
@@ -65,7 +65,7 @@ export const __ecma262_FulfillPromise = (promise: any[], value: any): void => {
|
|
65
65
|
// https://tc39.es/ecma262/#sec-rejectpromise
|
66
66
|
export const __ecma262_RejectPromise = (promise: any[], reason: any): void => {
|
67
67
|
// 1. Assert: The value of promise.[[PromiseState]] is pending.
|
68
|
-
|
68
|
+
if (promise[1] != 0) return;
|
69
69
|
|
70
70
|
// 2. Let reactions be promise.[[PromiseRejectReactions]].
|
71
71
|
const reactions: any[] = promise[3]; // rejectReactions
|
@@ -411,6 +411,57 @@ export const __Promise_allSettled = (promises: any): Promise => {
|
|
411
411
|
});
|
412
412
|
};
|
413
413
|
|
414
|
+
export const __Promise_any = (promises: any): Promise => {
|
415
|
+
// todo: use new AggregateError(_allOut, msg) instead of new AggregateError(msg) when supported
|
416
|
+
_allPromises = promises;
|
417
|
+
|
418
|
+
return new Promise((res, rej) => {
|
419
|
+
_allRes = res, _allRej = rej;
|
420
|
+
|
421
|
+
const arr: any[] = Porffor.allocate();
|
422
|
+
_allOut = arr; // list of rejections
|
423
|
+
_allLen = 0;
|
424
|
+
|
425
|
+
for (const x of _allPromises) {
|
426
|
+
_allLen++;
|
427
|
+
if (__ecma262_IsPromise(x)) {
|
428
|
+
x.then(r => {
|
429
|
+
_allRes(r);
|
430
|
+
}, r => {
|
431
|
+
if (Porffor.array.fastPush(_allOut, r) == _allLen) _allRes(new AggregateError());
|
432
|
+
});
|
433
|
+
} else {
|
434
|
+
return _allRes(x);
|
435
|
+
}
|
436
|
+
}
|
437
|
+
|
438
|
+
if (_allLen == 0) {
|
439
|
+
// empty iterable: immediately reject
|
440
|
+
_allRej(new AggregateError());
|
441
|
+
}
|
442
|
+
});
|
443
|
+
};
|
444
|
+
|
445
|
+
export const __Promise_race = (promises: any): Promise => {
|
446
|
+
_allPromises = promises;
|
447
|
+
|
448
|
+
return new Promise((res, rej) => {
|
449
|
+
_allRes = res, _allRej = rej;
|
450
|
+
|
451
|
+
for (const x of _allPromises) {
|
452
|
+
if (__ecma262_IsPromise(x)) {
|
453
|
+
x.then(r => {
|
454
|
+
_allRes(r);
|
455
|
+
}, r => {
|
456
|
+
_allRej(r);
|
457
|
+
});
|
458
|
+
} else {
|
459
|
+
return _allRes(x);
|
460
|
+
}
|
461
|
+
}
|
462
|
+
});
|
463
|
+
};
|
464
|
+
|
414
465
|
|
415
466
|
export const __Promise_prototype_toString = (_this: any) => {
|
416
467
|
const str: bytestring = '[object Promise]';
|
@@ -244,6 +244,10 @@ export default function({ builtinFuncs }, Prefs) {
|
|
244
244
|
object('Reflect', autoFuncs('Reflect'));
|
245
245
|
object('Object', autoFuncs('Object'));
|
246
246
|
object('JSON', autoFuncs('JSON'));
|
247
|
+
object('Promise', autoFuncs('Promise'));
|
248
|
+
object('Array', autoFuncs('Array'));
|
249
|
+
object('Symbol', autoFuncs('Symbol'));
|
250
|
+
object('Date', autoFuncs('Date'));
|
247
251
|
|
248
252
|
|
249
253
|
// these technically not spec compliant as it should be classes or non-enumerable but eh
|
@@ -2043,15 +2043,15 @@ params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
|
2043
2043
|
locals:[],localNames:["x","x#type"],
|
2044
2044
|
};
|
2045
2045
|
this.__ecma262_FulfillPromise = {
|
2046
|
-
wasm:(_,{builtin})=>[[32,0],[33,5],[68,2],[34,
|
2046
|
+
wasm:(_,{builtin})=>[[32,0],[33,4],[68,1],[34,5],[252,3],[65,9],[108],[32,4],[252,3],[106],[34,7],[43,0,4],[32,7],[45,0,12],[33,6],[68,0],[98],[4,64],[68,0],[65,128,1],[15],[11],[32,0],[33,4],[68,2],[34,5],[252,3],[65,9],[108],[32,4],[252,3],[106],[34,7],[43,0,4],[32,7],[45,0,12],[33,6],[33,8],[32,0],[33,4],[68,0],[33,11],[32,4],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[32,2],[34,9],[57,0,4],[32,10],[32,3],[58,0,12],[32,0],[33,4],[68,2],[33,11],[32,4],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[68,0],[34,9],[57,0,4],[32,10],[65,128,1],[58,0,12],[32,0],[33,4],[68,3],[33,11],[32,4],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[68,0],[34,9],[57,0,4],[32,10],[65,128,1],[58,0,12],[32,0],[33,4],[68,1],[33,11],[32,4],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[68,1],[34,9],[57,0,4],[32,10],[65,1],[58,0,12],[32,8],[65,208,0],[32,2],[32,3],[16,builtin('__ecma262_TriggerPromiseReactions')],[33,6],[26],[68,0],[65,128,1],[15]],
|
2047
2047
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
2048
|
-
locals:[124,124,
|
2048
|
+
locals:[124,124,127,127,124,124,127,124],localNames:["promise","promise#type","value","value#type","#member_obj","#member_prop","#last_type","#loadArray_offset","reactions","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
|
2049
2049
|
usedTypes:[80],
|
2050
2050
|
};
|
2051
2051
|
this.__ecma262_RejectPromise = {
|
2052
|
-
wasm:(_,{builtin})=>[[32,0],[33,
|
2052
|
+
wasm:(_,{builtin})=>[[32,0],[33,4],[68,1],[34,5],[252,3],[65,9],[108],[32,4],[252,3],[106],[34,7],[43,0,4],[32,7],[45,0,12],[33,6],[68,0],[98],[4,64],[68,0],[65,128,1],[15],[11],[32,0],[33,4],[68,3],[34,5],[252,3],[65,9],[108],[32,4],[252,3],[106],[34,7],[43,0,4],[32,7],[45,0,12],[33,6],[33,8],[32,0],[33,4],[68,0],[33,11],[32,4],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[32,2],[34,9],[57,0,4],[32,10],[32,3],[58,0,12],[32,0],[33,4],[68,2],[33,11],[32,4],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[68,0],[34,9],[57,0,4],[32,10],[65,128,1],[58,0,12],[32,0],[33,4],[68,3],[33,11],[32,4],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[68,0],[34,9],[57,0,4],[32,10],[65,128,1],[58,0,12],[32,0],[33,4],[68,1],[33,11],[32,4],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[68,2],[34,9],[57,0,4],[32,10],[65,1],[58,0,12],[32,8],[65,208,0],[32,2],[32,3],[16,builtin('__ecma262_TriggerPromiseReactions')],[33,6],[26],[68,0],[65,128,1],[15]],
|
2053
2053
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
2054
|
-
locals:[124,124,
|
2054
|
+
locals:[124,124,127,127,124,124,127,124],localNames:["promise","promise#type","reason","reason#type","#member_obj","#member_prop","#last_type","#loadArray_offset","reactions","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
|
2055
2055
|
usedTypes:[80],
|
2056
2056
|
};
|
2057
2057
|
this.__Porffor_promise_noop = {
|
@@ -2215,6 +2215,62 @@ locals:[127,124,127,124,127,124,127,124,127,124,127,127,127,124,127],localNames:
|
|
2215
2215
|
globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
|
2216
2216
|
table:1,
|
2217
2217
|
};
|
2218
|
+
this.__Promise_any = {
|
2219
|
+
wasm:(_,{glbl,builtin,funcRef})=>[[32,0],...glbl(36,'_allPromises',124),...glbl(35,'_allPromises',124),[32,1],...glbl(36,'_allPromises#type',127),[26],[68,21],[65,6],[68,0],[65,7],...funcRef('#anonymous_11'),[65,6],[16,builtin('Promise')],[34,2],[15]],
|
2220
|
+
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
2221
|
+
locals:[127],localNames:["promises","promises#type","#last_type"],
|
2222
|
+
globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
|
2223
|
+
};
|
2224
|
+
this['#anonymous_11'] = {
|
2225
|
+
wasm:(_,{t,glbl,builtin,funcRef,internalThrow})=>[[32,0],...glbl(36,'_allRes',124),...glbl(35,'_allRes',124),[32,1],...glbl(36,'_allRes#type',127),[26],[32,2],...glbl(36,'_allRej',124),...glbl(35,'_allRej',124),[32,3],...glbl(36,'_allRej#type',127),[26],[16,builtin('__Porffor_allocate')],[183],[34,4],...glbl(36,'_allOut',124),...glbl(35,'_allOut',124),[65,208,0],...glbl(36,'_allOut#type',127),[26],[68,0],...glbl(36,'_allLen',124),...glbl(35,'_allLen',124),[65,1],...glbl(36,'_allLen#type',127),[26],...glbl(35,'_allPromises',124),[252,3],[33,5],...glbl(35,'_allPromises#type',127),[33,8],[65,0],[33,7],[32,8],[65,208,0],[70],[32,8],[65,19],[70],[114],[32,8],[65,195,0],[70],[114],[32,8],[65,195,1],[70],[114],[32,8],[65,216,0],[78],[32,8],[65,224,0],[76],[113],[114],[69],[4,64],...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[32,5],[40,1,0],[34,6],[4,64],[32,8],[33,15],[2,64],...t([19],()=>[[32,15],[65,19],[70],[4,64],[3,64],[32,5],[43,0,4],[33,9],[32,5],[45,0,12],[33,10],[32,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,5],[65,9],[106],[33,5],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([67],()=>[[32,15],[65,195,0],[70],[4,64],[65,195,0],[33,10],[16,builtin('__Porffor_allocate')],[34,31],[65,1],[54,0,0],[3,64],[32,31],[32,5],[47,0,4],[59,0,4],[32,31],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,5],[65,2],[106],[33,5],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([80],()=>[[32,15],[65,208,0],[70],[4,64],[3,64],[32,5],[43,0,4],[33,9],[32,5],[45,0,12],[33,10],[32,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,5],[65,9],[106],[33,5],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([88],()=>[[32,15],[65,216,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([89],()=>[[32,15],[65,217,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[106],[44,0,4],[183],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([90],()=>[[32,15],[65,218,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([91],()=>[[32,15],[65,219,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[47,0,4],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([92],()=>[[32,15],[65,220,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[46,0,4],[183],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([93],()=>[[32,15],[65,221,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([94],()=>[[32,15],[65,222,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[183],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([95],()=>[[32,15],[65,223,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[42,0,4],[187],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([96],()=>[[32,15],[65,224,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,8],[108],[106],[43,0,4],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([195],()=>[[32,15],[65,195,1],[70],[4,64],[65,195,1],[33,10],[16,builtin('__Porffor_allocate')],[34,31],[65,1],[54,0,0],[3,64],[32,31],[32,5],[32,7],[106],[45,0,4],[58,0,4],[32,31],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[11],...glbl(35,'_allLen',124),[68,0],[97],[4,64],...glbl(35,'_allRej',124),[33,30],...glbl(35,'_allRej#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[68,43],[65,6],[68,0],[65,7],[68,0],[65,128,1],[16,builtin('AggregateError')],[34,13],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRej is not a function`),[68,0],[11],[26],[11],[68,0],[65,128,1],[15]],
|
2226
|
+
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
2227
|
+
locals:[124,127,127,127,127,124,127,124,127,127,124,127,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,127],localNames:["res","res#type","rej","rej#type","arr","#forof_base_pointer0","#forof_length0","#forof_counter0","#forof_itertype0","#forof_tmp0","#forof_tmp0#type","x","x#type","#last_type","#logicinner_tmp","#typeswitch_tmp1","#proto_target","#proto_target#type","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#forof_allocd"],
|
2228
|
+
usedTypes:[80,67,195],
|
2229
|
+
globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
|
2230
|
+
table:1,
|
2231
|
+
};
|
2232
|
+
this['#anonymous_12'] = {
|
2233
|
+
wasm:(_,{t,glbl,internalThrow})=>[...glbl(35,'_allRes',124),[33,15],...glbl(35,'_allRes#type',127),[33,16],[2,124],...t([6],()=>[[32,16],[65,6],[70],[4,64],[32,0],[32,1],[33,2],[33,3],[68,0],[65,128,1],[33,4],[33,5],[68,0],[65,128,1],[33,6],[33,7],[68,0],[65,128,1],[33,8],[33,9],[68,0],[65,128,1],[33,10],[33,11],[32,15],[252,3],[34,12],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,13],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,12],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,12],[17,2,0,"no_type_return"],[5],[32,12],[17,0,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,12],[17,2,0],[26],[5],[32,12],[17,0,0],[26],[11],[11],[12,5],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,12],[17,3,0,"no_type_return"],[5],[32,3],[32,2],[32,12],[17,1,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,12],[17,3,0],[26],[5],[32,3],[32,2],[32,12],[17,1,0],[26],[11],[11],[12,4],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,12],[17,4,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,12],[17,2,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,12],[17,4,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,12],[17,2,0],[26],[11],[11],[12,3],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,5,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,3,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,5,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,3,0],[26],[11],[11],[12,2],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,6,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,4,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,6,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,4,0],[26],[11],[11],[12,1],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,7,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,5,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,7,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,5,0],[26],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[26],[68,0],[65,128,1],[15]],
|
2234
|
+
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
2235
|
+
locals:[127,124,127,124,127,124,127,124,127,124,127,127,127,124,127],localNames:["r","r#type","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#last_type","#indirect_callee","#typeswitch_tmp2"],
|
2236
|
+
globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
|
2237
|
+
table:1,
|
2238
|
+
};
|
2239
|
+
this['#anonymous_13'] = {
|
2240
|
+
wasm:(_,{t,glbl,builtin,internalThrow})=>[[2,127],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,0],[32,1],[16,builtin('__Porffor_array_fastPush')],[33,2],[34,3],...glbl(35,'_allLen',124),[34,4],[32,2],[65,128,1],[114],[65,195,1],[70],...glbl(35,'_allLen#type',127),[65,128,1],[114],[65,195,1],[70],[114],[4,64],[32,3],[32,2],[32,4],...glbl(35,'_allLen#type',127),[16,builtin('__Porffor_compareStrings')],[26],[252,3],[12,1],[11],[97],[11],[4,64],...glbl(35,'_allRes',124),[33,17],...glbl(35,'_allRes#type',127),[33,18],[2,124],...t([6],()=>[[32,18],[65,6],[70],[4,64],[68,43],[65,6],[68,0],[65,7],[68,0],[65,128,1],[16,builtin('AggregateError')],[34,2],[33,5],[33,6],[68,0],[65,128,1],[33,7],[33,8],[68,0],[65,128,1],[33,9],[33,10],[68,0],[65,128,1],[33,11],[33,12],[68,0],[65,128,1],[33,13],[33,14],[32,17],[252,3],[34,15],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,16],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,15],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[17,2,0,"no_type_return"],[5],[32,15],[17,0,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[17,2,0],[33,2],[5],[32,15],[17,0,0],[33,2],[11],[11],[12,5],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,15],[17,3,0,"no_type_return"],[5],[32,6],[32,5],[32,15],[17,1,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,15],[17,3,0],[33,2],[5],[32,6],[32,5],[32,15],[17,1,0],[33,2],[11],[11],[12,4],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,15],[17,4,0,"no_type_return"],[5],[32,6],[32,5],[32,8],[32,7],[32,15],[17,2,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,15],[17,4,0],[33,2],[5],[32,6],[32,5],[32,8],[32,7],[32,15],[17,2,0],[33,2],[11],[11],[12,3],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,15],[17,5,0,"no_type_return"],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,15],[17,3,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,15],[17,5,0],[33,2],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,15],[17,3,0],[33,2],[11],[11],[12,2],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,15],[17,6,0,"no_type_return"],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,15],[17,4,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,15],[17,6,0],[33,2],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,15],[17,4,0],[33,2],[11],[11],[12,1],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,14],[32,13],[32,15],[17,7,0,"no_type_return"],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,14],[32,13],[32,15],[17,5,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,14],[32,13],[32,15],[17,7,0],[33,2],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,14],[32,13],[32,15],[17,5,0],[33,2],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[26],[11],[68,0],[65,128,1],[15]],
|
2241
|
+
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
2242
|
+
locals:[127,124,124,127,124,127,124,127,124,127,124,127,124,127,127,124,127],localNames:["r","r#type","#last_type","__tmpop_left","__tmpop_right","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#typeswitch_tmp2"],
|
2243
|
+
globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
|
2244
|
+
table:1,
|
2245
|
+
};
|
2246
|
+
this.__Promise_race = {
|
2247
|
+
wasm:(_,{glbl,builtin,funcRef})=>[[32,0],...glbl(36,'_allPromises',124),...glbl(35,'_allPromises',124),[32,1],...glbl(36,'_allPromises#type',127),[26],[68,21],[65,6],[68,0],[65,7],...funcRef('#anonymous_14'),[65,6],[16,builtin('Promise')],[34,2],[15]],
|
2248
|
+
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
2249
|
+
locals:[127],localNames:["promises","promises#type","#last_type"],
|
2250
|
+
globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
|
2251
|
+
};
|
2252
|
+
this['#anonymous_14'] = {
|
2253
|
+
wasm:(_,{t,glbl,builtin,funcRef,internalThrow})=>[[32,0],...glbl(36,'_allRes',124),...glbl(35,'_allRes',124),[32,1],...glbl(36,'_allRes#type',127),[26],[32,2],...glbl(36,'_allRej',124),...glbl(35,'_allRej',124),[32,3],...glbl(36,'_allRej#type',127),[26],...glbl(35,'_allPromises',124),[252,3],[33,4],...glbl(35,'_allPromises#type',127),[33,7],[65,0],[33,6],[32,7],[65,208,0],[70],[32,7],[65,19],[70],[114],[32,7],[65,195,0],[70],[114],[32,7],[65,195,1],[70],[114],[32,7],[65,216,0],[78],[32,7],[65,224,0],[76],[113],[114],[69],[4,64],...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[32,4],[40,1,0],[34,5],[4,64],[32,7],[33,14],[2,64],...t([19],()=>[[32,14],[65,19],[70],[4,64],[3,64],[32,4],[43,0,4],[33,8],[32,4],[45,0,12],[33,9],[32,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,4],[65,9],[106],[33,4],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([67],()=>[[32,14],[65,195,0],[70],[4,64],[65,195,0],[33,9],[16,builtin('__Porffor_allocate')],[34,30],[65,1],[54,0,0],[3,64],[32,30],[32,4],[47,0,4],[59,0,4],[32,30],[184],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,4],[65,2],[106],[33,4],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([80],()=>[[32,14],[65,208,0],[70],[4,64],[3,64],[32,4],[43,0,4],[33,8],[32,4],[45,0,12],[33,9],[32,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,4],[65,9],[106],[33,4],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([88],()=>[[32,14],[65,216,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[106],[45,0,4],[184],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([89],()=>[[32,14],[65,217,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[106],[44,0,4],[183],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([90],()=>[[32,14],[65,218,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[106],[45,0,4],[184],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([91],()=>[[32,14],[65,219,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[65,2],[108],[106],[47,0,4],[184],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([92],()=>[[32,14],[65,220,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[65,2],[108],[106],[46,0,4],[183],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([93],()=>[[32,14],[65,221,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[65,4],[108],[106],[40,0,4],[184],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([94],()=>[[32,14],[65,222,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[65,4],[108],[106],[40,0,4],[183],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([95],()=>[[32,14],[65,223,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[65,4],[108],[106],[42,0,4],[187],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([96],()=>[[32,14],[65,224,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[65,8],[108],[106],[43,0,4],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([195],()=>[[32,14],[65,195,1],[70],[4,64],[65,195,1],[33,9],[16,builtin('__Porffor_allocate')],[34,30],[65,1],[54,0,0],[3,64],[32,30],[32,4],[32,6],[106],[45,0,4],[58,0,4],[32,30],[184],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[11],[68,0],[65,128,1],[15]],
|
2254
|
+
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
2255
|
+
locals:[127,127,127,127,124,127,124,127,127,124,127,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,127],localNames:["res","res#type","rej","rej#type","#forof_base_pointer0","#forof_length0","#forof_counter0","#forof_itertype0","#forof_tmp0","#forof_tmp0#type","x","x#type","#last_type","#logicinner_tmp","#typeswitch_tmp1","#proto_target","#proto_target#type","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#forof_allocd"],
|
2256
|
+
usedTypes:[67,195],
|
2257
|
+
globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
|
2258
|
+
table:1,
|
2259
|
+
};
|
2260
|
+
this['#anonymous_15'] = {
|
2261
|
+
wasm:(_,{t,glbl,internalThrow})=>[...glbl(35,'_allRes',124),[33,15],...glbl(35,'_allRes#type',127),[33,16],[2,124],...t([6],()=>[[32,16],[65,6],[70],[4,64],[32,0],[32,1],[33,2],[33,3],[68,0],[65,128,1],[33,4],[33,5],[68,0],[65,128,1],[33,6],[33,7],[68,0],[65,128,1],[33,8],[33,9],[68,0],[65,128,1],[33,10],[33,11],[32,15],[252,3],[34,12],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,13],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,12],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,12],[17,2,0,"no_type_return"],[5],[32,12],[17,0,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,12],[17,2,0],[26],[5],[32,12],[17,0,0],[26],[11],[11],[12,5],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,12],[17,3,0,"no_type_return"],[5],[32,3],[32,2],[32,12],[17,1,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,12],[17,3,0],[26],[5],[32,3],[32,2],[32,12],[17,1,0],[26],[11],[11],[12,4],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,12],[17,4,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,12],[17,2,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,12],[17,4,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,12],[17,2,0],[26],[11],[11],[12,3],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,5,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,3,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,5,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,3,0],[26],[11],[11],[12,2],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,6,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,4,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,6,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,4,0],[26],[11],[11],[12,1],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,7,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,5,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,7,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,5,0],[26],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[26],[68,0],[65,128,1],[15]],
|
2262
|
+
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
2263
|
+
locals:[127,124,127,124,127,124,127,124,127,124,127,127,127,124,127],localNames:["r","r#type","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#last_type","#indirect_callee","#typeswitch_tmp2"],
|
2264
|
+
globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
|
2265
|
+
table:1,
|
2266
|
+
};
|
2267
|
+
this['#anonymous_16'] = {
|
2268
|
+
wasm:(_,{t,glbl,internalThrow})=>[...glbl(35,'_allRej',124),[33,15],...glbl(35,'_allRej#type',127),[33,16],[2,124],...t([6],()=>[[32,16],[65,6],[70],[4,64],[32,0],[32,1],[33,2],[33,3],[68,0],[65,128,1],[33,4],[33,5],[68,0],[65,128,1],[33,6],[33,7],[68,0],[65,128,1],[33,8],[33,9],[68,0],[65,128,1],[33,10],[33,11],[32,15],[252,3],[34,12],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,13],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,12],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,12],[17,2,0,"no_type_return"],[5],[32,12],[17,0,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,12],[17,2,0],[26],[5],[32,12],[17,0,0],[26],[11],[11],[12,5],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,12],[17,3,0,"no_type_return"],[5],[32,3],[32,2],[32,12],[17,1,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,12],[17,3,0],[26],[5],[32,3],[32,2],[32,12],[17,1,0],[26],[11],[11],[12,4],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,12],[17,4,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,12],[17,2,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,12],[17,4,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,12],[17,2,0],[26],[11],[11],[12,3],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,5,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,3,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,5,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,3,0],[26],[11],[11],[12,2],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,6,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,4,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,6,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,4,0],[26],[11],[11],[12,1],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,7,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,5,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,7,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,5,0],[26],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRej is not a function`),[68,0],[11],[26],[68,0],[65,128,1],[15]],
|
2269
|
+
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
2270
|
+
locals:[127,124,127,124,127,124,127,124,127,124,127,127,127,124,127],localNames:["r","r#type","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#last_type","#indirect_callee","#typeswitch_tmp2"],
|
2271
|
+
globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
|
2272
|
+
table:1,
|
2273
|
+
};
|
2218
2274
|
this.__Promise_prototype_toString = {
|
2219
2275
|
wasm:(_,{allocPage})=>[...number(allocPage(_,'bytestring: __Promise_prototype_toString/str','i8'),124),[34,2],[65,195,1],[15]],
|
2220
2276
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
@@ -2969,13 +3025,13 @@ usedTypes:[88],
|
|
2969
3025
|
table:1,
|
2970
3026
|
};
|
2971
3027
|
this.__Uint8Array_prototype_sort = {
|
2972
|
-
wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#
|
3028
|
+
wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_17'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[45,0,4],[184],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[45,0,4],[184],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[106],[32,12],[34,32],[252,3],[58,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[106],[32,6],[34,32],[252,3],[58,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,216,0],[15]],
|
2973
3029
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
2974
3030
|
locals:[124,124,124,127,124,124,127,124,124,127,124,124,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,127,124,127,124],localNames:["_this","_this#type","callbackFn","callbackFn#type","len","i","x","x#type","#member_obj","#member_prop","#last_type","j","y","y#type","xt","yt","v","logictmpi","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#typeswitch_tmp1","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
|
2975
3031
|
usedTypes:[88],
|
2976
3032
|
table:1,
|
2977
3033
|
};
|
2978
|
-
this['#
|
3034
|
+
this['#anonymous_17'] = {
|
2979
3035
|
wasm:(_,{t,builtin})=>[[32,0],[32,1],[16,builtin('__ecma262_ToString')],[34,6],[33,5],[33,4],[32,2],[32,3],[16,builtin('__ecma262_ToString')],[34,6],[33,8],[33,7],[32,4],[32,5],[32,7],[32,8],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,-1],[65,1],[15],[11],[32,7],[32,8],[32,4],[32,5],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,1],[65,1],[15],[11],[68,0],[65,1],[15]],
|
2980
3036
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
2981
3037
|
locals:[124,127,127,124,127,124,127],localNames:["x","x#type","y","y#type","xString","xString#type","#last_type","yString","yString#type","#logicinner_tmp","#typeswitch_tmp1"],
|
@@ -3193,13 +3249,13 @@ usedTypes:[89],
|
|
3193
3249
|
table:1,
|
3194
3250
|
};
|
3195
3251
|
this.__Int8Array_prototype_sort = {
|
3196
|
-
wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#
|
3252
|
+
wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_18'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[44,0,4],[183],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[44,0,4],[183],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[106],[32,12],[34,32],[252,2],[58,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[106],[32,6],[34,32],[252,2],[58,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,217,0],[15]],
|
3197
3253
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
3198
3254
|
locals:[124,124,124,127,124,124,127,124,124,127,124,124,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,127,124,127,124],localNames:["_this","_this#type","callbackFn","callbackFn#type","len","i","x","x#type","#member_obj","#member_prop","#last_type","j","y","y#type","xt","yt","v","logictmpi","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#typeswitch_tmp1","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
|
3199
3255
|
usedTypes:[89],
|
3200
3256
|
table:1,
|
3201
3257
|
};
|
3202
|
-
this['#
|
3258
|
+
this['#anonymous_18'] = {
|
3203
3259
|
wasm:(_,{t,builtin})=>[[32,0],[32,1],[16,builtin('__ecma262_ToString')],[34,6],[33,5],[33,4],[32,2],[32,3],[16,builtin('__ecma262_ToString')],[34,6],[33,8],[33,7],[32,4],[32,5],[32,7],[32,8],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,-1],[65,1],[15],[11],[32,7],[32,8],[32,4],[32,5],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,1],[65,1],[15],[11],[68,0],[65,1],[15]],
|
3204
3260
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
3205
3261
|
locals:[124,127,127,124,127,124,127],localNames:["x","x#type","y","y#type","xString","xString#type","#last_type","yString","yString#type","#logicinner_tmp","#typeswitch_tmp1"],
|
@@ -3417,13 +3473,13 @@ usedTypes:[90],
|
|
3417
3473
|
table:1,
|
3418
3474
|
};
|
3419
3475
|
this.__Uint8ClampedArray_prototype_sort = {
|
3420
|
-
wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#
|
3476
|
+
wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_19'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[45,0,4],[184],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[45,0,4],[184],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[106],[32,12],[34,32],[68,0],[165],[68,255],[164],[252,3],[58,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[106],[32,6],[34,32],[68,0],[165],[68,255],[164],[252,3],[58,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,218,0],[15]],
|
3421
3477
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
3422
3478
|
locals:[124,124,124,127,124,124,127,124,124,127,124,124,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,127,124,127,124],localNames:["_this","_this#type","callbackFn","callbackFn#type","len","i","x","x#type","#member_obj","#member_prop","#last_type","j","y","y#type","xt","yt","v","logictmpi","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#typeswitch_tmp1","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
|
3423
3479
|
usedTypes:[90],
|
3424
3480
|
table:1,
|
3425
3481
|
};
|
3426
|
-
this['#
|
3482
|
+
this['#anonymous_19'] = {
|
3427
3483
|
wasm:(_,{t,builtin})=>[[32,0],[32,1],[16,builtin('__ecma262_ToString')],[34,6],[33,5],[33,4],[32,2],[32,3],[16,builtin('__ecma262_ToString')],[34,6],[33,8],[33,7],[32,4],[32,5],[32,7],[32,8],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,-1],[65,1],[15],[11],[32,7],[32,8],[32,4],[32,5],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,1],[65,1],[15],[11],[68,0],[65,1],[15]],
|
3428
3484
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
3429
3485
|
locals:[124,127,127,124,127,124,127],localNames:["x","x#type","y","y#type","xString","xString#type","#last_type","yString","yString#type","#logicinner_tmp","#typeswitch_tmp1"],
|
@@ -3641,13 +3697,13 @@ usedTypes:[91],
|
|
3641
3697
|
table:1,
|
3642
3698
|
};
|
3643
3699
|
this.__Uint16Array_prototype_sort = {
|
3644
|
-
wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#
|
3700
|
+
wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_20'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,2],[108],[106],[32,12],[34,32],[252,3],[59,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,2],[108],[106],[32,6],[34,32],[252,3],[59,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,219,0],[15]],
|
3645
3701
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
3646
3702
|
locals:[124,124,124,127,124,124,127,124,124,127,124,124,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,127,124,127,124],localNames:["_this","_this#type","callbackFn","callbackFn#type","len","i","x","x#type","#member_obj","#member_prop","#last_type","j","y","y#type","xt","yt","v","logictmpi","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#typeswitch_tmp1","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
|
3647
3703
|
usedTypes:[91],
|
3648
3704
|
table:1,
|
3649
3705
|
};
|
3650
|
-
this['#
|
3706
|
+
this['#anonymous_20'] = {
|
3651
3707
|
wasm:(_,{t,builtin})=>[[32,0],[32,1],[16,builtin('__ecma262_ToString')],[34,6],[33,5],[33,4],[32,2],[32,3],[16,builtin('__ecma262_ToString')],[34,6],[33,8],[33,7],[32,4],[32,5],[32,7],[32,8],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,-1],[65,1],[15],[11],[32,7],[32,8],[32,4],[32,5],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,1],[65,1],[15],[11],[68,0],[65,1],[15]],
|
3652
3708
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
3653
3709
|
locals:[124,127,127,124,127,124,127],localNames:["x","x#type","y","y#type","xString","xString#type","#last_type","yString","yString#type","#logicinner_tmp","#typeswitch_tmp1"],
|
@@ -3865,13 +3921,13 @@ usedTypes:[92],
|
|
3865
3921
|
table:1,
|
3866
3922
|
};
|
3867
3923
|
this.__Int16Array_prototype_sort = {
|
3868
|
-
wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#
|
3924
|
+
wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_21'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,2],[108],[106],[32,12],[34,32],[252,2],[59,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,2],[108],[106],[32,6],[34,32],[252,2],[59,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,220,0],[15]],
|
3869
3925
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
3870
3926
|
locals:[124,124,124,127,124,124,127,124,124,127,124,124,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,127,124,127,124],localNames:["_this","_this#type","callbackFn","callbackFn#type","len","i","x","x#type","#member_obj","#member_prop","#last_type","j","y","y#type","xt","yt","v","logictmpi","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#typeswitch_tmp1","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
|
3871
3927
|
usedTypes:[92],
|
3872
3928
|
table:1,
|
3873
3929
|
};
|
3874
|
-
this['#
|
3930
|
+
this['#anonymous_21'] = {
|
3875
3931
|
wasm:(_,{t,builtin})=>[[32,0],[32,1],[16,builtin('__ecma262_ToString')],[34,6],[33,5],[33,4],[32,2],[32,3],[16,builtin('__ecma262_ToString')],[34,6],[33,8],[33,7],[32,4],[32,5],[32,7],[32,8],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,-1],[65,1],[15],[11],[32,7],[32,8],[32,4],[32,5],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,1],[65,1],[15],[11],[68,0],[65,1],[15]],
|
3876
3932
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
3877
3933
|
locals:[124,127,127,124,127,124,127],localNames:["x","x#type","y","y#type","xString","xString#type","#last_type","yString","yString#type","#logicinner_tmp","#typeswitch_tmp1"],
|
@@ -4089,13 +4145,13 @@ usedTypes:[93],
|
|
4089
4145
|
table:1,
|
4090
4146
|
};
|
4091
4147
|
this.__Uint32Array_prototype_sort = {
|
4092
|
-
wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#
|
4148
|
+
wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_22'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,4],[108],[106],[32,12],[34,32],[252,3],[54,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,4],[108],[106],[32,6],[34,32],[252,3],[54,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,221,0],[15]],
|
4093
4149
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
4094
4150
|
locals:[124,124,124,127,124,124,127,124,124,127,124,124,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,127,124,127,124],localNames:["_this","_this#type","callbackFn","callbackFn#type","len","i","x","x#type","#member_obj","#member_prop","#last_type","j","y","y#type","xt","yt","v","logictmpi","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#typeswitch_tmp1","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
|
4095
4151
|
usedTypes:[93],
|
4096
4152
|
table:1,
|
4097
4153
|
};
|
4098
|
-
this['#
|
4154
|
+
this['#anonymous_22'] = {
|
4099
4155
|
wasm:(_,{t,builtin})=>[[32,0],[32,1],[16,builtin('__ecma262_ToString')],[34,6],[33,5],[33,4],[32,2],[32,3],[16,builtin('__ecma262_ToString')],[34,6],[33,8],[33,7],[32,4],[32,5],[32,7],[32,8],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,-1],[65,1],[15],[11],[32,7],[32,8],[32,4],[32,5],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,1],[65,1],[15],[11],[68,0],[65,1],[15]],
|
4100
4156
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
4101
4157
|
locals:[124,127,127,124,127,124,127],localNames:["x","x#type","y","y#type","xString","xString#type","#last_type","yString","yString#type","#logicinner_tmp","#typeswitch_tmp1"],
|
@@ -4313,13 +4369,13 @@ usedTypes:[94],
|
|
4313
4369
|
table:1,
|
4314
4370
|
};
|
4315
4371
|
this.__Int32Array_prototype_sort = {
|
4316
|
-
wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#
|
4372
|
+
wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_23'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,4],[108],[106],[32,12],[34,32],[252,2],[54,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,4],[108],[106],[32,6],[34,32],[252,2],[54,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,222,0],[15]],
|
4317
4373
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
4318
4374
|
locals:[124,124,124,127,124,124,127,124,124,127,124,124,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,127,124,127,124],localNames:["_this","_this#type","callbackFn","callbackFn#type","len","i","x","x#type","#member_obj","#member_prop","#last_type","j","y","y#type","xt","yt","v","logictmpi","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#typeswitch_tmp1","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
|
4319
4375
|
usedTypes:[94],
|
4320
4376
|
table:1,
|
4321
4377
|
};
|
4322
|
-
this['#
|
4378
|
+
this['#anonymous_23'] = {
|
4323
4379
|
wasm:(_,{t,builtin})=>[[32,0],[32,1],[16,builtin('__ecma262_ToString')],[34,6],[33,5],[33,4],[32,2],[32,3],[16,builtin('__ecma262_ToString')],[34,6],[33,8],[33,7],[32,4],[32,5],[32,7],[32,8],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,-1],[65,1],[15],[11],[32,7],[32,8],[32,4],[32,5],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,1],[65,1],[15],[11],[68,0],[65,1],[15]],
|
4324
4380
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
4325
4381
|
locals:[124,127,127,124,127,124,127],localNames:["x","x#type","y","y#type","xString","xString#type","#last_type","yString","yString#type","#logicinner_tmp","#typeswitch_tmp1"],
|
@@ -4537,13 +4593,13 @@ usedTypes:[95],
|
|
4537
4593
|
table:1,
|
4538
4594
|
};
|
4539
4595
|
this.__Float32Array_prototype_sort = {
|
4540
|
-
wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#
|
4596
|
+
wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_24'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,4],[108],[106],[32,12],[34,32],[182],[56,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,4],[108],[106],[32,6],[34,32],[182],[56,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,223,0],[15]],
|
4541
4597
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
4542
4598
|
locals:[124,124,124,127,124,124,127,124,124,127,124,124,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,127,124,127,124],localNames:["_this","_this#type","callbackFn","callbackFn#type","len","i","x","x#type","#member_obj","#member_prop","#last_type","j","y","y#type","xt","yt","v","logictmpi","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#typeswitch_tmp1","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
|
4543
4599
|
usedTypes:[95],
|
4544
4600
|
table:1,
|
4545
4601
|
};
|
4546
|
-
this['#
|
4602
|
+
this['#anonymous_24'] = {
|
4547
4603
|
wasm:(_,{t,builtin})=>[[32,0],[32,1],[16,builtin('__ecma262_ToString')],[34,6],[33,5],[33,4],[32,2],[32,3],[16,builtin('__ecma262_ToString')],[34,6],[33,8],[33,7],[32,4],[32,5],[32,7],[32,8],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,-1],[65,1],[15],[11],[32,7],[32,8],[32,4],[32,5],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,1],[65,1],[15],[11],[68,0],[65,1],[15]],
|
4548
4604
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
4549
4605
|
locals:[124,127,127,124,127,124,127],localNames:["x","x#type","y","y#type","xString","xString#type","#last_type","yString","yString#type","#logicinner_tmp","#typeswitch_tmp1"],
|
@@ -4761,13 +4817,13 @@ usedTypes:[96],
|
|
4761
4817
|
table:1,
|
4762
4818
|
};
|
4763
4819
|
this.__Float64Array_prototype_sort = {
|
4764
|
-
wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#
|
4820
|
+
wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_25'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,8],[108],[106],[32,12],[34,32],[57,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,8],[108],[106],[32,6],[34,32],[57,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,224,0],[15]],
|
4765
4821
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
4766
4822
|
locals:[124,124,124,127,124,124,127,124,124,127,124,124,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,127,124,127,124],localNames:["_this","_this#type","callbackFn","callbackFn#type","len","i","x","x#type","#member_obj","#member_prop","#last_type","j","y","y#type","xt","yt","v","logictmpi","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#typeswitch_tmp1","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
|
4767
4823
|
usedTypes:[96],
|
4768
4824
|
table:1,
|
4769
4825
|
};
|
4770
|
-
this['#
|
4826
|
+
this['#anonymous_25'] = {
|
4771
4827
|
wasm:(_,{t,builtin})=>[[32,0],[32,1],[16,builtin('__ecma262_ToString')],[34,6],[33,5],[33,4],[32,2],[32,3],[16,builtin('__ecma262_ToString')],[34,6],[33,8],[33,7],[32,4],[32,5],[32,7],[32,8],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,-1],[65,1],[15],[11],[32,7],[32,8],[32,4],[32,5],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,1],[65,1],[15],[11],[68,0],[65,1],[15]],
|
4772
4828
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
4773
4829
|
locals:[124,127,127,124,127,124,127],localNames:["x","x#type","y","y#type","xString","xString#type","#last_type","yString","yString#type","#logicinner_tmp","#typeswitch_tmp1"],
|
package/compiler/codegen.js
CHANGED
@@ -3738,7 +3738,7 @@ const generateAssign = (scope, decl, _global, _name, valueUnused = false) => {
|
|
3738
3738
|
const ifIdentifierErrors = (scope, decl) => {
|
3739
3739
|
if (decl.type === 'Identifier') {
|
3740
3740
|
const out = generate(scope, decl);
|
3741
|
-
if (out[1]) return true;
|
3741
|
+
if (out[0][0] === null && typeof out[0][1] === 'function') return true;
|
3742
3742
|
}
|
3743
3743
|
|
3744
3744
|
return false;
|
@@ -3814,16 +3814,14 @@ const generateUnary = (scope, decl) => {
|
|
3814
3814
|
let toReturn = true, toGenerate = true;
|
3815
3815
|
|
3816
3816
|
if (decl.argument.type === 'Identifier') {
|
3817
|
-
const out = generate(scope, decl.argument);
|
3818
|
-
|
3819
3817
|
// if ReferenceError (undeclared var), ignore and return true. otherwise false
|
3820
|
-
if (
|
3821
|
-
// exists
|
3822
|
-
toReturn = false;
|
3823
|
-
} else {
|
3818
|
+
if (ifIdentifierErrors(scope, decl.argument)) {
|
3824
3819
|
// does not exist (2 ops from throw)
|
3825
3820
|
toReturn = true;
|
3826
3821
|
toGenerate = false;
|
3822
|
+
} else {
|
3823
|
+
// exists
|
3824
|
+
toReturn = false;
|
3827
3825
|
}
|
3828
3826
|
}
|
3829
3827
|
|
package/package.json
CHANGED