porffor 0.20.1 → 0.20.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/compiler/2c.js +75 -29
- package/compiler/builtins/console.ts +70 -13
- package/compiler/builtins/string_f64.ts +1 -1
- package/compiler/generated_builtins.js +23 -10
- package/compiler/opt.js +0 -94
- package/package.json +1 -1
- package/runner/index.js +1 -1
package/compiler/2c.js
CHANGED
@@ -231,6 +231,20 @@ export default ({ funcs, globals, tags, data, exceptions, pages }) => {
|
|
231
231
|
prependMain.set('argv', `_argc = argc; _argv = argv;`);
|
232
232
|
}
|
233
233
|
|
234
|
+
prepend.set('func decls', funcs.filter(x => x.name !== 'main').map(f => {
|
235
|
+
const returns = f.returns.length > 0;
|
236
|
+
const typedReturns = f.returnType == null;
|
237
|
+
|
238
|
+
const invLocals = inv(f.locals, x => x.idx);
|
239
|
+
for (const x in invLocals) {
|
240
|
+
invLocals[x] = sanitize(invLocals[x]);
|
241
|
+
}
|
242
|
+
|
243
|
+
const shouldInline = false;
|
244
|
+
|
245
|
+
return `${!typedReturns ? (returns ? CValtype[f.returns[0]] : 'void') : 'struct ReturnValue'} ${shouldInline ? 'inline ' : ''}${sanitize(f.name)}(${f.params.map((x, i) => `${CValtype[x]} ${invLocals[i]}`).join(', ')});`;
|
246
|
+
}).join('\n'));
|
247
|
+
|
234
248
|
if (out) out += '\n';
|
235
249
|
|
236
250
|
const line = (str, semi = true) => out += `${str}${semi ? ';' : ''}\n`;
|
@@ -309,11 +323,26 @@ export default ({ funcs, globals, tags, data, exceptions, pages }) => {
|
|
309
323
|
let tmpId = 0;
|
310
324
|
|
311
325
|
const invLocals = inv(f.locals, x => x.idx);
|
312
|
-
|
326
|
+
const invLocalTypes = {};
|
313
327
|
for (const x in invLocals) {
|
328
|
+
invLocalTypes[x] = CValtype[f.locals[invLocals[x]].type];
|
314
329
|
invLocals[x] = sanitize(invLocals[x]);
|
315
330
|
}
|
316
331
|
|
332
|
+
let localTmpId = 0;
|
333
|
+
const localGet = idx => {
|
334
|
+
if (Prefs['2cDirectLocalGet']) {
|
335
|
+
// this just does local.get via the variable name
|
336
|
+
// nice but does not get the value at this moment
|
337
|
+
// so breaks some wasm principles :(
|
338
|
+
vals.push(`${invLocals[i[1]]}`);
|
339
|
+
} else {
|
340
|
+
const id = localTmpId++;
|
341
|
+
line(`const ${invLocalTypes[idx]} _get${id} = ${invLocals[idx]}`);
|
342
|
+
vals.push(`_get${id}`);
|
343
|
+
}
|
344
|
+
};
|
345
|
+
|
317
346
|
const returns = f.returns.length > 0;
|
318
347
|
const typedReturns = f.returnType == null;
|
319
348
|
|
@@ -408,19 +437,22 @@ export default ({ funcs, globals, tags, data, exceptions, pages }) => {
|
|
408
437
|
break;
|
409
438
|
}
|
410
439
|
|
411
|
-
case Opcodes.local_get:
|
412
|
-
|
440
|
+
case Opcodes.local_get: {
|
441
|
+
localGet(i[1]);
|
413
442
|
break;
|
443
|
+
}
|
414
444
|
|
415
445
|
case Opcodes.local_set:
|
416
446
|
line(`${invLocals[i[1]]} = ${removeBrackets(vals.pop())}`);
|
417
447
|
break;
|
418
448
|
|
419
|
-
case Opcodes.local_tee:
|
449
|
+
case Opcodes.local_tee: {
|
420
450
|
line(`${invLocals[i[1]]} = ${removeBrackets(vals.pop())}`);
|
421
|
-
|
451
|
+
localGet(i[1]);
|
452
|
+
|
422
453
|
// vals.push(`((${invLocals[i[1]]} = ${vals.pop()}))`);
|
423
454
|
break;
|
455
|
+
}
|
424
456
|
|
425
457
|
case Opcodes.global_get:
|
426
458
|
vals.push(`${invGlobals[i[1]]}`);
|
@@ -430,11 +462,6 @@ export default ({ funcs, globals, tags, data, exceptions, pages }) => {
|
|
430
462
|
line(`${invGlobals[i[1]]} = ${removeBrackets(vals.pop())}`);
|
431
463
|
break;
|
432
464
|
|
433
|
-
case Opcodes.f64_trunc:
|
434
|
-
// vals.push(`trunc(${vals.pop()})`);
|
435
|
-
vals.push(`(i32)(${removeBrackets(vals.pop())})`); // this is ~10x faster with clang??
|
436
|
-
break;
|
437
|
-
|
438
465
|
case Opcodes.f64_convert_i32_u:
|
439
466
|
case Opcodes.f64_convert_i32_s:
|
440
467
|
case Opcodes.f64_convert_i64_u:
|
@@ -686,6 +713,15 @@ _time_out = _time.tv_nsec / 1000000. + _time.tv_sec * 1000.;`);
|
|
686
713
|
break;
|
687
714
|
}
|
688
715
|
|
716
|
+
case Opcodes.select: {
|
717
|
+
const cond = vals.pop();
|
718
|
+
const b = vals.pop();
|
719
|
+
const a = vals.pop();
|
720
|
+
|
721
|
+
vals.push(`(${cond} ? ${a} : ${b})`);
|
722
|
+
break;
|
723
|
+
}
|
724
|
+
|
689
725
|
case Opcodes.throw: {
|
690
726
|
const id = vals.pop();
|
691
727
|
|
@@ -718,25 +754,35 @@ _time_out = _time.tv_nsec / 1000000. + _time.tv_sec * 1000.;`);
|
|
718
754
|
break;
|
719
755
|
}
|
720
756
|
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
757
|
+
case Opcodes.f64_abs: {
|
758
|
+
const id = tmpId++;
|
759
|
+
line(`const f64 _tmp${id} = ${vals.pop()}`);
|
760
|
+
vals.push(`(_tmp${id} < 0 ? -_tmp${id} : _tmp${id})`);
|
761
|
+
break;
|
762
|
+
}
|
763
|
+
case Opcodes.f64_neg: {
|
764
|
+
vals.push(`(-${vals.pop()})`);
|
765
|
+
break;
|
766
|
+
}
|
727
767
|
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
768
|
+
case Opcodes.f64_ceil:
|
769
|
+
vals.push(`ceil(${vals.pop()})`);
|
770
|
+
includes.set('math.h', true);
|
771
|
+
break;
|
772
|
+
case Opcodes.f64_floor:
|
773
|
+
vals.push(`floor(${vals.pop()})`);
|
774
|
+
includes.set('math.h', true);
|
775
|
+
break;
|
776
|
+
case Opcodes.f64_trunc:
|
777
|
+
// vals.push(`trunc(${vals.pop()})`);
|
778
|
+
// includes.set('math.h', true);
|
779
|
+
|
780
|
+
vals.push(`(i32)(${removeBrackets(vals.pop())})`); // this is ~10x faster with clang??
|
781
|
+
break;
|
782
|
+
case Opcodes.f64_nearest:
|
783
|
+
vals.push(`round(${vals.pop()})`);
|
784
|
+
includes.set('math.h', true);
|
785
|
+
break;
|
740
786
|
|
741
787
|
// case Opcodes.f64_sqrt: {
|
742
788
|
// break;
|
@@ -765,7 +811,7 @@ _time_out = _time.tv_nsec / 1000000. + _time.tv_sec * 1000.;`);
|
|
765
811
|
break;
|
766
812
|
}
|
767
813
|
|
768
|
-
log.warning('2c', `unimplemented op: ${invOpcodes[i[0]]}`);
|
814
|
+
log.warning('2c', `unimplemented op: ${invOpcodes[i[0]]} \x1b[90m(${f.name})`);
|
769
815
|
}
|
770
816
|
|
771
817
|
lastCond = false;
|
@@ -29,6 +29,63 @@ export const __Porffor_printHexDigit = (arg: number) => {
|
|
29
29
|
}
|
30
30
|
};
|
31
31
|
|
32
|
+
export const __Porffor_numberLog = (arg: number) => {
|
33
|
+
print(arg);
|
34
|
+
printStatic('\n');
|
35
|
+
};
|
36
|
+
|
37
|
+
export const __Porffor_miniLog = (arg: any) => {
|
38
|
+
switch (Porffor.rawType(arg)) {
|
39
|
+
case Porffor.TYPES.number:
|
40
|
+
print(arg);
|
41
|
+
break;
|
42
|
+
|
43
|
+
case Porffor.TYPES.boolean:
|
44
|
+
if (arg) {
|
45
|
+
printStatic('true');
|
46
|
+
} else {
|
47
|
+
printStatic('false');
|
48
|
+
}
|
49
|
+
break;
|
50
|
+
|
51
|
+
case Porffor.TYPES.bytestring:
|
52
|
+
case Porffor.TYPES.string:
|
53
|
+
printStatic("'");
|
54
|
+
__Porffor_printString(arg);
|
55
|
+
printStatic("'");
|
56
|
+
break;
|
57
|
+
|
58
|
+
case Porffor.TYPES.array:
|
59
|
+
const arrLen: i32 = arg.length - 1;
|
60
|
+
if (arrLen == -1) {
|
61
|
+
printStatic('[]');
|
62
|
+
} else {
|
63
|
+
printStatic('[ ');
|
64
|
+
for (let i: i32 = 0; i <= arrLen; i++) {
|
65
|
+
__Porffor_miniPrint(arg[i]);
|
66
|
+
if (i != arrLen) printStatic(', ');
|
67
|
+
}
|
68
|
+
printStatic(' ]');
|
69
|
+
}
|
70
|
+
break;
|
71
|
+
|
72
|
+
case Porffor.TYPES.empty:
|
73
|
+
case Porffor.TYPES.undefined:
|
74
|
+
printStatic('undefined');
|
75
|
+
break;
|
76
|
+
|
77
|
+
case Porffor.TYPES.object:
|
78
|
+
if (arg) {
|
79
|
+
printStatic('[Object]');
|
80
|
+
} else {
|
81
|
+
printStatic('null');
|
82
|
+
}
|
83
|
+
break;
|
84
|
+
}
|
85
|
+
|
86
|
+
printStatic('\n');
|
87
|
+
};
|
88
|
+
|
32
89
|
export const __Porffor_print = (arg: any, colors: boolean = true) => {
|
33
90
|
// todo: Symbol.toStringTag could reduce duplication here
|
34
91
|
|
@@ -37,7 +94,7 @@ export const __Porffor_print = (arg: any, colors: boolean = true) => {
|
|
37
94
|
case Porffor.TYPES.number:
|
38
95
|
if (colors) printStatic('\x1b[33m'); // yellow
|
39
96
|
print(arg);
|
40
|
-
if (colors) printStatic('\x1b[
|
97
|
+
if (colors) printStatic('\x1b[0m');
|
41
98
|
return;
|
42
99
|
|
43
100
|
case Porffor.TYPES.boolean:
|
@@ -47,7 +104,7 @@ export const __Porffor_print = (arg: any, colors: boolean = true) => {
|
|
47
104
|
} else {
|
48
105
|
printStatic('false');
|
49
106
|
}
|
50
|
-
if (colors) printStatic('\x1b[
|
107
|
+
if (colors) printStatic('\x1b[0m');
|
51
108
|
return;
|
52
109
|
|
53
110
|
case Porffor.TYPES.bytestring:
|
@@ -58,7 +115,7 @@ export const __Porffor_print = (arg: any, colors: boolean = true) => {
|
|
58
115
|
__Porffor_printString(arg);
|
59
116
|
|
60
117
|
printStatic("'");
|
61
|
-
if (colors) printStatic('\x1b[
|
118
|
+
if (colors) printStatic('\x1b[0m');
|
62
119
|
return;
|
63
120
|
|
64
121
|
case Porffor.TYPES.array:
|
@@ -91,7 +148,7 @@ export const __Porffor_print = (arg: any, colors: boolean = true) => {
|
|
91
148
|
printStatic('null');
|
92
149
|
}
|
93
150
|
|
94
|
-
if (colors) printStatic('\x1b[
|
151
|
+
if (colors) printStatic('\x1b[0m');
|
95
152
|
return;
|
96
153
|
|
97
154
|
case Porffor.TYPES.function:
|
@@ -104,13 +161,13 @@ export const __Porffor_print = (arg: any, colors: boolean = true) => {
|
|
104
161
|
case Porffor.TYPES.date:
|
105
162
|
if (colors) printStatic('\x1b[35m'); // purple
|
106
163
|
__Porffor_printString(__Date_prototype_toISOString(arg));
|
107
|
-
if (colors) printStatic('\x1b[
|
164
|
+
if (colors) printStatic('\x1b[0m');
|
108
165
|
return;
|
109
166
|
|
110
167
|
case Porffor.TYPES.symbol:
|
111
168
|
if (colors) printStatic('\x1b[32m'); // green
|
112
169
|
__Porffor_printString(__Symbol_prototype_toString(arg));
|
113
|
-
if (colors) printStatic('\x1b[
|
170
|
+
if (colors) printStatic('\x1b[0m');
|
114
171
|
return;
|
115
172
|
|
116
173
|
case Porffor.TYPES.uint8array: {
|
@@ -230,7 +287,7 @@ export const __Porffor_print = (arg: any, colors: boolean = true) => {
|
|
230
287
|
|
231
288
|
if (colors) printStatic('\x1b[34m'); // blue
|
232
289
|
printStatic(' [Uint8Contents]');
|
233
|
-
if (colors) printStatic('\x1b[
|
290
|
+
if (colors) printStatic('\x1b[0m');
|
234
291
|
printStatic('): <');
|
235
292
|
|
236
293
|
const buffer = new Uint8Array(arg);
|
@@ -245,7 +302,7 @@ export const __Porffor_print = (arg: any, colors: boolean = true) => {
|
|
245
302
|
printStatic('>,\n byteLength: ');
|
246
303
|
if (colors) printStatic('\x1b[33m'); // yellow
|
247
304
|
print(arg.byteLength);
|
248
|
-
if (colors) printStatic('\x1b[
|
305
|
+
if (colors) printStatic('\x1b[0m');
|
249
306
|
printStatic('\n}');
|
250
307
|
return;
|
251
308
|
}
|
@@ -309,12 +366,12 @@ export const __Porffor_print = (arg: any, colors: boolean = true) => {
|
|
309
366
|
printStatic('WeakRef {}');
|
310
367
|
return;
|
311
368
|
|
312
|
-
case Porffor.TYPES.regexp:
|
313
|
-
|
369
|
+
// case Porffor.TYPES.regexp:
|
370
|
+
// // todo: we currently have no way of getting the source text, so this falls back
|
314
371
|
|
315
|
-
default:
|
316
|
-
|
317
|
-
|
372
|
+
// default:
|
373
|
+
// __Porffor_printString(arg.toString());
|
374
|
+
// return;
|
318
375
|
}
|
319
376
|
};
|
320
377
|
|
@@ -4,7 +4,7 @@ import type {} from './porffor.d.ts';
|
|
4
4
|
// todo: support constructor/string objects properly
|
5
5
|
export const String = function (value: any): bytestring {
|
6
6
|
if (!new.target && Porffor.rawType(value) == Porffor.TYPES.symbol) return __Symbol_prototype_toString(value);
|
7
|
-
return
|
7
|
+
return ecma262.ToString(value);
|
8
8
|
};
|
9
9
|
|
10
10
|
export const __String_fromCharCode = (...codes: any[]): bytestring|string => {
|
@@ -551,11 +551,24 @@ export const BuiltinFuncs = function() {
|
|
551
551
|
returns: [124,127], typedReturns: 1,
|
552
552
|
locals: [124], localNames: ["arg","arg#type","#switch_disc"],
|
553
553
|
};
|
554
|
+
this.__Porffor_numberLog = {
|
555
|
+
wasm: (scope, {}) => [[32,0],[16,0],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
556
|
+
params: [124,127], typedParams: 1,
|
557
|
+
returns: [124,127], typedReturns: 1,
|
558
|
+
locals: [], localNames: ["arg","arg#type"],
|
559
|
+
};
|
560
|
+
this.__Porffor_miniLog = {
|
561
|
+
wasm: (scope, {builtin,internalThrow}) => [[32,0],[32,1],[16, ...builtin('__Porffor_rawType')],[33,2],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,2],[68,0,0,0,0,0,0,240,63],[97],[13,0],[32,2],[68,0,0,0,0,0,0,0,64],[97],[13,1],[32,2],[68,0,0,0,0,0,96,104,64],[97],[13,2],[32,2],[68,0,0,0,0,0,192,80,64],[97],[13,3],[32,2],[68,0,0,0,0,0,0,84,64],[97],[13,4],[32,2],[68,0,0,0,0,0,0,0,0],[97],[13,5],[32,2],[68,0,0,0,0,0,0,96,64],[97],[13,6],[32,2],[68,0,0,0,0,0,0,20,64],[97],[13,7],[11],[32,0],[16,0],[12,7],[11],[32,0],[33,3],[32,1],[33,4],[2,127],[32,4],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,3],[252,3],[40,1,0],[12,1],[11],[32,4],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,3],[252,3],[40,1,0],[12,1],[11],[32,3],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[5],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[11],[12,6],[11],[11],[68,0,0,0,0,0,128,67,64],[16,1],[32,0],[32,1],[16, ...builtin('__Porffor_printString')],[33,5],[26],[68,0,0,0,0,0,128,67,64],[16,1],[12,4],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[34,6],[68,0,0,0,0,0,0,240,191],[97],[4,64],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[5],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,7],[3,64],[32,7],[32,6],[101],[4,64],...internalThrow(scope, 'ReferenceError', `Porffor.miniPrint is not defined`),[68,0,0,0,0,0,0,0,0],[33,19],...internalThrow(scope, 'TypeError', `Porffor.miniPrint is not a function`),[32,7],[32,6],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[32,7],[68,0,0,0,0,0,0,240,63],[160],[33,7],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[11],[12,4],[11],[11],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,89,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,89,64],[16,1],[12,2],[11],[32,0],[33,3],[32,1],[33,4],[2,127],[32,4],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,3],[252,3],[40,1,0],[12,1],[11],[32,4],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,3],[252,3],[40,1,0],[12,1],[11],[32,3],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,192,83,64],[16,1],[68,0,0,0,0,0,128,88,64],[16,1],[68,0,0,0,0,0,128,90,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,192,88,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[5],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[11],[12,1],[11],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
562
|
+
params: [124,127], typedParams: 1,
|
563
|
+
returns: [124,127], typedReturns: 1,
|
564
|
+
locals: [124,124,127,127,124,124,124,124,127,127,124,127,124,127,124,127,127,124], localNames: ["arg","arg#type","#switch_disc","#logicinner_tmp","#typeswitch_tmp","#last_type","arrLen","i","#member_obj","#member_prop","#loadArray_offset","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_func","#indirect_flags","#indirect_callee"],
|
565
|
+
table: 1,
|
566
|
+
};
|
554
567
|
this.__Porffor_print = {
|
555
|
-
wasm: (scope, {builtin,internalThrow}) => [[32,3],[65,128,1],[70],[4,64],[68,0,0,0,0,0,0,240,63],[33,2],[65,2],[33,3],[11],[32,0],[32,1],[16, ...builtin('__Porffor_rawType')],[34,4],[33,5],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,5],[68,0,0,0,0,0,0,240,63],[97],[13,0],[32,5],[68,0,0,0,0,0,0,0,64],[97],[13,1],[32,5],[68,0,0,0,0,0,96,104,64],[97],[13,2],[32,5],[68,0,0,0,0,0,192,80,64],[97],[13,3],[32,5],[68,0,0,0,0,0,0,84,64],[97],[13,4],[32,5],[68,0,0,0,0,0,0,0,0],[97],[13,5],[32,5],[68,0,0,0,0,0,0,96,64],[97],[13,6],[32,5],[68,0,0,0,0,0,0,20,64],[97],[13,7],[32,5],[68,0,0,0,0,0,0,24,64],[97],[13,8],[32,5],[68,0,0,0,0,0,0,50,64],[97],[13,9],[32,5],[68,0,0,0,0,0,0,28,64],[97],[13,10],[32,5],[68,0,0,0,0,0,0,86,64],[97],[13,11],[32,5],[68,0,0,0,0,0,64,86,64],[97],[13,12],[32,5],[68,0,0,0,0,0,128,86,64],[97],[13,13],[32,5],[68,0,0,0,0,0,192,86,64],[97],[13,14],[32,5],[68,0,0,0,0,0,0,87,64],[97],[13,15],[32,5],[68,0,0,0,0,0,64,87,64],[97],[13,16],[32,5],[68,0,0,0,0,0,128,87,64],[97],[13,17],[32,5],[68,0,0,0,0,0,192,87,64],[97],[13,18],[32,5],[68,0,0,0,0,0,0,88,64],[97],[13,19],[32,5],[68,0,0,0,0,0,0,54,64],[97],[13,20],[32,5],[68,0,0,0,0,0,0,53,64],[97],[13,21],[32,5],[68,0,0,0,0,0,0,55,64],[97],[13,22],[32,5],[68,0,0,0,0,0,128,65,64],[97],[13,23],[32,5],[68,0,0,0,0,0,0,52,64],[97],[13,24],[32,5],[68,0,0,0,0,0,0,65,64],[97],[13,25],[32,5],[68,0,0,0,0,0,0,51,64],[97],[13,26],[32,5],[68,0,0,0,0,0,128,64,64],[97],[13,27],[32,5],[68,0,0,0,0,0,0,49,64],[97],[13,28],[12,29],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[32,0],[16,0],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[32,0],[33,6],[32,1],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[5],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,0,73,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,128,67,64],[16,1],[32,0],[32,1],[16, ...builtin('__Porffor_printString')],[33,8],[26],[68,0,0,0,0,0,128,67,64],[16,1],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[34,9],[68,0,0,0,0,0,0,240,191],[97],[4,64],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[5],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,0],[65,1],[54,0,0],[65,0],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,0,0],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,0],[65,1],[54,0,0],[65,0],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,0,0],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,73,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,89,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,89,64],[16,1],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,72,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[33,6],[32,1],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,0,74,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,192,83,64],[16,1],[68,0,0,0,0,0,128,88,64],[16,1],[68,0,0,0,0,0,128,90,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,192,88,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[5],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,72,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,81,64],[16,1],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,192,88,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,16,64],[65,195,1],[34,8],[16, ...builtin('__Porffor_printString')],[33,8],[26],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,128,74,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[32,0],[32,1],[16, ...builtin('__Date_prototype_toISOString')],[34,8],[16, ...builtin('__Porffor_printString')],[33,8],[26],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,0,73,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[32,0],[32,1],[16, ...builtin('__Symbol_prototype_toString')],[34,8],[16, ...builtin('__Porffor_printString')],[33,8],[26],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,64,85,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,76,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,4],[65,1],[54,0,0],[65,128,128,4],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,240,64],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,4],[65,1],[54,0,0],[65,128,128,4],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,240,64],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,64,82,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,76,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,8],[65,1],[54,0,0],[65,128,128,8],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,0,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,8],[65,1],[54,0,0],[65,128,128,8],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,0,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,64,85,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,76,64],[16,1],[68,0,0,0,0,0,192,80,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[68,0,0,0,0,0,0,92,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,89,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,12],[65,1],[54,0,0],[65,128,128,12],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,8,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,12],[65,1],[54,0,0],[65,128,128,12],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,8,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,64,85,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,128,72,64],[16,1],[68,0,0,0,0,0,0,75,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,16],[65,1],[54,0,0],[65,128,128,16],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,16,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,16],[65,1],[54,0,0],[65,128,128,16],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,16,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,64,82,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,128,72,64],[16,1],[68,0,0,0,0,0,0,75,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,20],[65,1],[54,0,0],[65,128,128,20],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,20,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,20],[65,1],[54,0,0],[65,128,128,20],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,20,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,64,85,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,0,73,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,24],[65,1],[54,0,0],[65,128,128,24],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,24,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,24],[65,1],[54,0,0],[65,128,128,24],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,24,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,64,82,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,0,73,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,28],[65,1],[54,0,0],[65,128,128,28],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,28,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,28],[65,1],[54,0,0],[65,128,128,28],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,28,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,128,81,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,0,73,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,32],[65,1],[54,0,0],[65,128,128,32],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,32,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,32],[65,1],[54,0,0],[65,128,128,32],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,32,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,128,81,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,75,64],[16,1],[68,0,0,0,0,0,0,74,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,36],[65,1],[54,0,0],[65,128,128,36],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,34,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,36],[65,1],[54,0,0],[65,128,128,36],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,34,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[11],[32,4],[68,0,0,0,0,0,0,54,64],[97],[4,64],[68,0,0,0,0,0,192,84,64],[16,1],[68,0,0,0,0,0,0,90,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,89,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,128,80,64],[16,1],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[5],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,128,80,64],[16,1],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,94,64],[16,1],[68,0,0,0,0,0,0,36,64],[16,1],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,0,74,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,64,85,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,76,64],[16,1],[68,0,0,0,0,0,192,80,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,78,64],[16,1],[65,1],[32,0],[32,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('Uint8Array')],[33,15],[34,14],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,16],[65,1],[33,17],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,16],[101],[4,64],[2,64],[68,0,0,0,0,0,0,36,65],[33,18],[32,14],[33,11],[32,10],[33,12],[32,15],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,15],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,40],[65,1],[54,0,0],[65,128,128,40],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,36,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,40],[65,1],[54,0,0],[65,128,128,40],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,36,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[32,8],[33,19],[32,18],[68,0,0,0,0,0,0,110,64],[16, ...builtin('f64_&')],[68,0,0,0,0,0,0,48,64],[163],[65,1],[16, ...builtin('__Porffor_printHexDigit')],[33,8],[26],[32,18],[68,0,0,0,0,0,0,46,64],[16, ...builtin('f64_&')],[65,1],[16, ...builtin('__Porffor_printHexDigit')],[33,8],[26],[32,10],[32,16],[98],[4,64],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,79,64],[16,1],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,83,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,192,89,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,90,64],[16,1],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[32,1],[33,7],[2,124],[32,7],[65,21],[70],[4,64,"TYPESWITCH|ArrayBuffer"],[32,0],[32,1],[16, ...builtin('__ArrayBuffer_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,22],[70],[4,64,"TYPESWITCH|SharedArrayBuffer"],[32,0],[32,1],[16, ...builtin('__SharedArrayBuffer_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,23],[70],[4,64,"TYPESWITCH|DataView"],[32,0],[32,1],[16, ...builtin('__DataView_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,0],[32,1],[16, ...builtin('__Uint8Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,0],[32,1],[16, ...builtin('__Int8Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,0],[32,1],[16, ...builtin('__Uint8ClampedArray_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,0],[32,1],[16, ...builtin('__Uint16Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,0],[32,1],[16, ...builtin('__Int16Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,0],[32,1],[16, ...builtin('__Uint32Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,0],[32,1],[16, ...builtin('__Int32Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,0],[32,1],[16, ...builtin('__Float32Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,0],[32,1],[16, ...builtin('__Float64Array_prototype_byteLength$get')],[33,8],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,8],[11,"TYPESWITCH_end"],[16,0],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,64,95,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[68,0,0,0,0,0,0,81,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,128,85,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,192,93,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,94,64],[16,1],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,83,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,192,89,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,90,64],[16,1],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,1],[33,7],[2,124],[32,7],[65,21],[70],[4,64,"TYPESWITCH|ArrayBuffer"],[32,0],[32,1],[16, ...builtin('__ArrayBuffer_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,22],[70],[4,64,"TYPESWITCH|SharedArrayBuffer"],[32,0],[32,1],[16, ...builtin('__SharedArrayBuffer_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,23],[70],[4,64,"TYPESWITCH|DataView"],[32,0],[32,1],[16, ...builtin('__DataView_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,0],[32,1],[16, ...builtin('__Uint8Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,0],[32,1],[16, ...builtin('__Int8Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,0],[32,1],[16, ...builtin('__Uint8ClampedArray_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,0],[32,1],[16, ...builtin('__Uint16Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,0],[32,1],[16, ...builtin('__Int16Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,0],[32,1],[16, ...builtin('__Uint32Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,0],[32,1],[16, ...builtin('__Int32Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,0],[32,1],[16, ...builtin('__Float32Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,0],[32,1],[16, ...builtin('__Float64Array_prototype_byteLength$get')],[33,8],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,8],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,192,83,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,1],[33,7],[2,124],[32,7],[65,23],[70],[4,64,"TYPESWITCH|DataView"],[32,0],[32,1],[16, ...builtin('__DataView_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,0],[32,1],[16, ...builtin('__Uint8Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,0],[32,1],[16, ...builtin('__Int8Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,0],[32,1],[16, ...builtin('__Uint8ClampedArray_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,0],[32,1],[16, ...builtin('__Uint16Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,0],[32,1],[16, ...builtin('__Int16Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,0],[32,1],[16, ...builtin('__Uint32Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,0],[32,1],[16, ...builtin('__Int32Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,0],[32,1],[16, ...builtin('__Float32Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,0],[32,1],[16, ...builtin('__Float64Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,8],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,88,64],[16,1],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,1],[33,7],[2,124],[32,7],[65,23],[70],[4,64,"TYPESWITCH|DataView"],[32,0],[32,1],[16, ...builtin('__DataView_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,0],[32,1],[16, ...builtin('__Uint8Array_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,0],[32,1],[16, ...builtin('__Int8Array_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,0],[32,1],[16, ...builtin('__Uint8ClampedArray_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,0],[32,1],[16, ...builtin('__Uint16Array_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,0],[32,1],[16, ...builtin('__Int16Array_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,0],[32,1],[16, ...builtin('__Uint32Array_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,0],[32,1],[16, ...builtin('__Int32Array_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,0],[32,1],[16, ...builtin('__Float32Array_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,0],[32,1],[16, ...builtin('__Float64Array_prototype_buffer$get')],[33,8],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,8],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,64,95,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[11],[32,4],[68,0,0,0,0,0,128,65,64],[97],[4,64],[68,0,0,0,0,0,192,85,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,192,90,64],[16,1],[68,0,0,0,0,0,64,83,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,92,64],[16,1],[5],[68,0,0,0,0,0,64,83,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,92,64],[16,1],[11],[68,0,0,0,0,0,0,68,64],[16,1],[32,0],[32,1],[16, ...builtin('__Map_prototype_keys')],[33,21],[34,20],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[34,22],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,94,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,22],[99],[4,64],[2,64],[68,0,0,0,0,0,0,38,65],[33,23],[32,20],[33,11],[32,10],[33,12],[32,21],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,21],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,44],[65,1],[54,0,0],[65,128,128,44],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,38,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,44],[65,1],[54,0,0],[65,128,128,44],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,38,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[32,8],[33,24],[32,23],[32,24],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('__Porffor_print')],[33,8],[26],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,78,64],[16,1],[68,0,0,0,0,0,0,79,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,0],[32,1],[32,23],[32,24],[16, ...builtin('__Map_prototype_get')],[34,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,22],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,95,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[11],[32,4],[68,0,0,0,0,0,0,65,64],[97],[4,64],[68,0,0,0,0,0,192,85,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,192,90,64],[16,1],[68,0,0,0,0,0,192,84,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[5],[68,0,0,0,0,0,192,84,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[11],[68,0,0,0,0,0,0,68,64],[16,1],[32,0],[32,1],[16, ...builtin('__Set_prototype_values')],[33,26],[34,25],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[34,27],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,94,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,27],[101],[4,64],[2,64],[32,25],[33,11],[32,10],[33,12],[32,26],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,26],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,48],[65,1],[54,0,0],[65,128,128,48],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,40,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,48],[65,1],[54,0,0],[65,128,128,48],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,40,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,27],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,95,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[68,0,0,0,0,0,192,85,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,192,90,64],[16,1],[68,0,0,0,0,0,128,84,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,94,64],[16,1],[68,0,0,0,0,0,64,95,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[11],[32,0],[33,28],[32,1],[34,29],[33,7],[2,124],[32,7],[65,1],[70],[4,64,"TYPESWITCH|Number"],[32,28],[32,29],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('__Number_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,2],[70],[4,64,"TYPESWITCH|Boolean"],[32,28],[32,29],[16, ...builtin('__Boolean_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,28],[32,29],[16, ...builtin('__Object_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,28],[32,29],[16, ...builtin('__Function_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,7],[70],[4,64,"TYPESWITCH|Symbol"],[32,28],[32,29],[16, ...builtin('__Symbol_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,18],[70],[4,64,"TYPESWITCH|Date"],[32,28],[32,29],[16, ...builtin('__Date_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,28],[32,29],[16, ...builtin('__Set_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,20],[70],[4,64,"TYPESWITCH|Map"],[32,28],[32,29],[16, ...builtin('__Map_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,33],[70],[4,64,"TYPESWITCH|WeakRef"],[32,28],[32,29],[16, ...builtin('__WeakRef_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,34],[70],[4,64,"TYPESWITCH|WeakSet"],[32,28],[32,29],[16, ...builtin('__WeakSet_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,35],[70],[4,64,"TYPESWITCH|WeakMap"],[32,28],[32,29],[16, ...builtin('__WeakMap_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,28],[252,2],[32,29],[16, ...builtin('__String_prototype_toString')],[33,8],[183],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,28],[32,29],[16, ...builtin('__Array_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,28],[32,29],[16, ...builtin('__Uint8Array_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,28],[32,29],[16, ...builtin('__Int8Array_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,28],[32,29],[16, ...builtin('__Uint8ClampedArray_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,28],[32,29],[16, ...builtin('__Uint16Array_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,28],[32,29],[16, ...builtin('__Int16Array_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,28],[32,29],[16, ...builtin('__Uint32Array_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,28],[32,29],[16, ...builtin('__Int32Array_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,28],[32,29],[16, ...builtin('__Float32Array_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,28],[32,29],[16, ...builtin('__Float64Array_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,28],[252,2],[32,29],[16, ...builtin('__ByteString_prototype_toString')],[33,8],[183],[12,1],[11],...internalThrow(scope, 'TypeError', `'toString' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[32,8],[16, ...builtin('__Porffor_printString')],[33,8],[26],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
568
|
+
wasm: (scope, {builtin,internalThrow}) => [[32,3],[65,128,1],[70],[4,64],[68,0,0,0,0,0,0,240,63],[33,2],[65,2],[33,3],[11],[32,0],[32,1],[16, ...builtin('__Porffor_rawType')],[34,4],[33,5],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,5],[68,0,0,0,0,0,0,240,63],[97],[13,0],[32,5],[68,0,0,0,0,0,0,0,64],[97],[13,1],[32,5],[68,0,0,0,0,0,96,104,64],[97],[13,2],[32,5],[68,0,0,0,0,0,192,80,64],[97],[13,3],[32,5],[68,0,0,0,0,0,0,84,64],[97],[13,4],[32,5],[68,0,0,0,0,0,0,0,0],[97],[13,5],[32,5],[68,0,0,0,0,0,0,96,64],[97],[13,6],[32,5],[68,0,0,0,0,0,0,20,64],[97],[13,7],[32,5],[68,0,0,0,0,0,0,24,64],[97],[13,8],[32,5],[68,0,0,0,0,0,0,50,64],[97],[13,9],[32,5],[68,0,0,0,0,0,0,28,64],[97],[13,10],[32,5],[68,0,0,0,0,0,0,86,64],[97],[13,11],[32,5],[68,0,0,0,0,0,64,86,64],[97],[13,12],[32,5],[68,0,0,0,0,0,128,86,64],[97],[13,13],[32,5],[68,0,0,0,0,0,192,86,64],[97],[13,14],[32,5],[68,0,0,0,0,0,0,87,64],[97],[13,15],[32,5],[68,0,0,0,0,0,64,87,64],[97],[13,16],[32,5],[68,0,0,0,0,0,128,87,64],[97],[13,17],[32,5],[68,0,0,0,0,0,192,87,64],[97],[13,18],[32,5],[68,0,0,0,0,0,0,88,64],[97],[13,19],[32,5],[68,0,0,0,0,0,0,54,64],[97],[13,20],[32,5],[68,0,0,0,0,0,0,53,64],[97],[13,21],[32,5],[68,0,0,0,0,0,0,55,64],[97],[13,22],[32,5],[68,0,0,0,0,0,128,65,64],[97],[13,23],[32,5],[68,0,0,0,0,0,0,52,64],[97],[13,24],[32,5],[68,0,0,0,0,0,0,65,64],[97],[13,25],[32,5],[68,0,0,0,0,0,0,51,64],[97],[13,26],[32,5],[68,0,0,0,0,0,128,64,64],[97],[13,27],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[32,0],[16,0],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,72,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[32,0],[33,6],[32,1],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[5],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,72,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,0,73,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,128,67,64],[16,1],[32,0],[32,1],[16, ...builtin('__Porffor_printString')],[33,8],[26],[68,0,0,0,0,0,128,67,64],[16,1],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,72,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[34,9],[68,0,0,0,0,0,0,240,191],[97],[4,64],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[5],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,0],[65,1],[54,0,0],[65,0],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,0,0],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,0],[65,1],[54,0,0],[65,0],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,0,0],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,73,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,89,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,89,64],[16,1],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,72,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[33,6],[32,1],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,0,74,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,192,83,64],[16,1],[68,0,0,0,0,0,128,88,64],[16,1],[68,0,0,0,0,0,128,90,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,192,88,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[5],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,72,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,72,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,81,64],[16,1],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,192,88,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,240,64],[65,195,1],[34,8],[16, ...builtin('__Porffor_printString')],[33,8],[26],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,128,74,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[32,0],[32,1],[16, ...builtin('__Date_prototype_toISOString')],[34,8],[16, ...builtin('__Porffor_printString')],[33,8],[26],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,72,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,0,73,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[32,0],[32,1],[16, ...builtin('__Symbol_prototype_toString')],[34,8],[16, ...builtin('__Porffor_printString')],[33,8],[26],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,72,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,64,85,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,76,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,8],[65,1],[54,0,0],[65,128,128,8],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,0,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,8],[65,1],[54,0,0],[65,128,128,8],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,0,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,64,82,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,76,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,12],[65,1],[54,0,0],[65,128,128,12],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,8,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,12],[65,1],[54,0,0],[65,128,128,12],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,8,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,64,85,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,76,64],[16,1],[68,0,0,0,0,0,192,80,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[68,0,0,0,0,0,0,92,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,89,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,16],[65,1],[54,0,0],[65,128,128,16],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,16,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,16],[65,1],[54,0,0],[65,128,128,16],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,16,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,64,85,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,128,72,64],[16,1],[68,0,0,0,0,0,0,75,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,20],[65,1],[54,0,0],[65,128,128,20],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,20,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,20],[65,1],[54,0,0],[65,128,128,20],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,20,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,64,82,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,128,72,64],[16,1],[68,0,0,0,0,0,0,75,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,24],[65,1],[54,0,0],[65,128,128,24],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,24,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,24],[65,1],[54,0,0],[65,128,128,24],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,24,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,64,85,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,0,73,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,28],[65,1],[54,0,0],[65,128,128,28],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,28,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,28],[65,1],[54,0,0],[65,128,128,28],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,28,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,64,82,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,0,73,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,32],[65,1],[54,0,0],[65,128,128,32],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,32,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,32],[65,1],[54,0,0],[65,128,128,32],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,32,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,128,81,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,0,73,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,36],[65,1],[54,0,0],[65,128,128,36],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,34,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,36],[65,1],[54,0,0],[65,128,128,36],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,34,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,128,81,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,75,64],[16,1],[68,0,0,0,0,0,0,74,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,40],[65,1],[54,0,0],[65,128,128,40],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,36,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,40],[65,1],[54,0,0],[65,128,128,40],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,36,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[11],[32,4],[68,0,0,0,0,0,0,54,64],[97],[4,64],[68,0,0,0,0,0,192,84,64],[16,1],[68,0,0,0,0,0,0,90,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,89,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,128,80,64],[16,1],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[5],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,128,80,64],[16,1],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,94,64],[16,1],[68,0,0,0,0,0,0,36,64],[16,1],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,0,74,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,64,85,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,76,64],[16,1],[68,0,0,0,0,0,192,80,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,72,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,78,64],[16,1],[65,1],[32,0],[32,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('Uint8Array')],[33,15],[34,14],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,16],[65,1],[33,17],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,16],[101],[4,64],[2,64],[68,0,0,0,0,0,0,38,65],[33,18],[32,14],[33,11],[32,10],[33,12],[32,15],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,15],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,44],[65,1],[54,0,0],[65,128,128,44],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,38,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,44],[65,1],[54,0,0],[65,128,128,44],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,38,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[32,8],[33,19],[32,18],[68,0,0,0,0,0,0,110,64],[16, ...builtin('f64_&')],[68,0,0,0,0,0,0,48,64],[163],[65,1],[16, ...builtin('__Porffor_printHexDigit')],[33,8],[26],[32,18],[68,0,0,0,0,0,0,46,64],[16, ...builtin('f64_&')],[65,1],[16, ...builtin('__Porffor_printHexDigit')],[33,8],[26],[32,10],[32,16],[98],[4,64],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,79,64],[16,1],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,83,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,192,89,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,90,64],[16,1],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[32,1],[33,7],[2,124],[32,7],[65,21],[70],[4,64,"TYPESWITCH|ArrayBuffer"],[32,0],[32,1],[16, ...builtin('__ArrayBuffer_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,22],[70],[4,64,"TYPESWITCH|SharedArrayBuffer"],[32,0],[32,1],[16, ...builtin('__SharedArrayBuffer_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,23],[70],[4,64,"TYPESWITCH|DataView"],[32,0],[32,1],[16, ...builtin('__DataView_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,0],[32,1],[16, ...builtin('__Uint8Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,0],[32,1],[16, ...builtin('__Int8Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,0],[32,1],[16, ...builtin('__Uint8ClampedArray_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,0],[32,1],[16, ...builtin('__Uint16Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,0],[32,1],[16, ...builtin('__Int16Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,0],[32,1],[16, ...builtin('__Uint32Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,0],[32,1],[16, ...builtin('__Int32Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,0],[32,1],[16, ...builtin('__Float32Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,0],[32,1],[16, ...builtin('__Float64Array_prototype_byteLength$get')],[33,8],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,8],[11,"TYPESWITCH_end"],[16,0],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,72,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,64,95,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[68,0,0,0,0,0,0,81,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,128,85,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,192,93,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,94,64],[16,1],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,83,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,192,89,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,90,64],[16,1],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,1],[33,7],[2,124],[32,7],[65,21],[70],[4,64,"TYPESWITCH|ArrayBuffer"],[32,0],[32,1],[16, ...builtin('__ArrayBuffer_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,22],[70],[4,64,"TYPESWITCH|SharedArrayBuffer"],[32,0],[32,1],[16, ...builtin('__SharedArrayBuffer_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,23],[70],[4,64,"TYPESWITCH|DataView"],[32,0],[32,1],[16, ...builtin('__DataView_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,0],[32,1],[16, ...builtin('__Uint8Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,0],[32,1],[16, ...builtin('__Int8Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,0],[32,1],[16, ...builtin('__Uint8ClampedArray_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,0],[32,1],[16, ...builtin('__Uint16Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,0],[32,1],[16, ...builtin('__Int16Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,0],[32,1],[16, ...builtin('__Uint32Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,0],[32,1],[16, ...builtin('__Int32Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,0],[32,1],[16, ...builtin('__Float32Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,0],[32,1],[16, ...builtin('__Float64Array_prototype_byteLength$get')],[33,8],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,8],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,192,83,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,1],[33,7],[2,124],[32,7],[65,23],[70],[4,64,"TYPESWITCH|DataView"],[32,0],[32,1],[16, ...builtin('__DataView_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,0],[32,1],[16, ...builtin('__Uint8Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,0],[32,1],[16, ...builtin('__Int8Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,0],[32,1],[16, ...builtin('__Uint8ClampedArray_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,0],[32,1],[16, ...builtin('__Uint16Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,0],[32,1],[16, ...builtin('__Int16Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,0],[32,1],[16, ...builtin('__Uint32Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,0],[32,1],[16, ...builtin('__Int32Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,0],[32,1],[16, ...builtin('__Float32Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,0],[32,1],[16, ...builtin('__Float64Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,8],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,88,64],[16,1],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,1],[33,7],[2,124],[32,7],[65,23],[70],[4,64,"TYPESWITCH|DataView"],[32,0],[32,1],[16, ...builtin('__DataView_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,0],[32,1],[16, ...builtin('__Uint8Array_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,0],[32,1],[16, ...builtin('__Int8Array_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,0],[32,1],[16, ...builtin('__Uint8ClampedArray_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,0],[32,1],[16, ...builtin('__Uint16Array_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,0],[32,1],[16, ...builtin('__Int16Array_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,0],[32,1],[16, ...builtin('__Uint32Array_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,0],[32,1],[16, ...builtin('__Int32Array_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,0],[32,1],[16, ...builtin('__Float32Array_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,0],[32,1],[16, ...builtin('__Float64Array_prototype_buffer$get')],[33,8],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,8],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,64,95,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[11],[32,4],[68,0,0,0,0,0,128,65,64],[97],[4,64],[68,0,0,0,0,0,192,85,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,192,90,64],[16,1],[68,0,0,0,0,0,64,83,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,92,64],[16,1],[5],[68,0,0,0,0,0,64,83,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,92,64],[16,1],[11],[68,0,0,0,0,0,0,68,64],[16,1],[32,0],[32,1],[16, ...builtin('__Map_prototype_keys')],[33,21],[34,20],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[34,22],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,94,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,22],[99],[4,64],[2,64],[68,0,0,0,0,0,0,40,65],[33,23],[32,20],[33,11],[32,10],[33,12],[32,21],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,21],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,48],[65,1],[54,0,0],[65,128,128,48],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,40,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,48],[65,1],[54,0,0],[65,128,128,48],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,40,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[32,8],[33,24],[32,23],[32,24],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('__Porffor_print')],[33,8],[26],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,78,64],[16,1],[68,0,0,0,0,0,0,79,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,0],[32,1],[32,23],[32,24],[16, ...builtin('__Map_prototype_get')],[34,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,22],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,95,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[11],[32,4],[68,0,0,0,0,0,0,65,64],[97],[4,64],[68,0,0,0,0,0,192,85,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,192,90,64],[16,1],[68,0,0,0,0,0,192,84,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[5],[68,0,0,0,0,0,192,84,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[11],[68,0,0,0,0,0,0,68,64],[16,1],[32,0],[32,1],[16, ...builtin('__Set_prototype_values')],[33,26],[34,25],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[34,27],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,94,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,27],[101],[4,64],[2,64],[32,25],[33,11],[32,10],[33,12],[32,26],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,26],[32,12],[65,1],[16, ...builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,52],[65,1],[54,0,0],[65,128,128,52],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,42,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,52],[65,1],[54,0,0],[65,128,128,52],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,42,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, ...builtin('__Porffor_print')],[33,8],[26],[32,10],[32,27],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,95,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[68,0,0,0,0,0,192,85,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,192,90,64],[16,1],[68,0,0,0,0,0,128,84,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,94,64],[16,1],[68,0,0,0,0,0,64,95,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
556
569
|
params: [124,127,124,127], typedParams: 1,
|
557
570
|
returns: [124,127], typedReturns: 1,
|
558
|
-
locals: [124,124,124,127,127,124,124,124,124,127,124,127,124,127,124,127,124,127,124,124,127,124,127,124
|
571
|
+
locals: [124,124,124,127,127,124,124,124,124,127,124,127,124,127,124,127,124,127,124,124,127,124,127,124], localNames: ["arg","arg#type","colors","colors#type","t","#switch_disc","#logicinner_tmp","#typeswitch_tmp","#last_type","arrLen","i","#member_obj","#member_prop","#loadArray_offset","buffer","buffer#type","bufferLen","bufferLen#type","ele","ele#type","map","map#type","mapLen","key","key#type","set","set#type","setLen"],
|
559
572
|
data: [[0,[3,0,0,0,97,114,103]]],
|
560
573
|
};
|
561
574
|
this.__Porffor_consoleIndent = {
|
@@ -641,17 +654,17 @@ export const BuiltinFuncs = function() {
|
|
641
654
|
hasRestArgument: 1,
|
642
655
|
};
|
643
656
|
this.__Porffor_dirObject = {
|
644
|
-
wasm: (scope, {builtin,internalThrow}) => [[32,0],[32,1],[16, ...builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,20,64],[98],[34,8],[69],[4,127],[32,4],[68,0,0,0,0,0,0,0,0],[97],[65,2],[33,9],[5],[32,8],[65,2],[33,9],[11],[4,64],[32,0],[32,1],[32,2],[65,2],[16, ...builtin('__Porffor_print')],[33,9],[26],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[68,0,0,0,0,0,192,94,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,0],[32,1],[16, ...builtin('__Map_prototype_keys')],[33,11],[34,10],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,12],[65,1],[33,13],[68,0,0,0,0,0,0,0,0],[33,14],[65,1],[33,15],[3,64],[32,14],[32,12],[101],[4,64],[2,64],[68,0,0,0,0,0,0,
|
657
|
+
wasm: (scope, {builtin,internalThrow}) => [[32,0],[32,1],[16, ...builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,20,64],[98],[34,8],[69],[4,127],[32,4],[68,0,0,0,0,0,0,0,0],[97],[65,2],[33,9],[5],[32,8],[65,2],[33,9],[11],[4,64],[32,0],[32,1],[32,2],[65,2],[16, ...builtin('__Porffor_print')],[33,9],[26],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[68,0,0,0,0,0,192,94,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,0],[32,1],[16, ...builtin('__Map_prototype_keys')],[33,11],[34,10],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,12],[65,1],[33,13],[68,0,0,0,0,0,0,0,0],[33,14],[65,1],[33,15],[3,64],[32,14],[32,12],[101],[4,64],[2,64],[68,0,0,0,0,0,0,44,65],[33,16],[32,10],[33,18],[32,14],[33,19],[32,11],[33,21],[2,124],[32,21],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,18],[32,11],[32,19],[32,15],[16, ...builtin('__Map_prototype_get')],[33,9],[12,1],[11],[32,21],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,56],[65,1],[54,0,0],[65,128,128,56],[32,19],[252,3],[65,2],[108],[32,18],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,44,65],[65,195,0],[33,9],[12,1],[11],[32,21],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,19],[252,3],[65,9],[108],[32,18],[252,3],[106],[34,20],[43,0,4],[32,20],[45,0,12],[33,9],[12,1],[11],[32,21],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,18],[252,3],[40,0,4],[32,19],[252,3],[106],[45,0,4],[184],[65,1],[33,9],[12,1],[11],[32,21],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,18],[252,3],[40,0,4],[32,19],[252,3],[106],[44,0,4],[183],[65,1],[33,9],[12,1],[11],[32,21],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,18],[252,3],[40,0,4],[32,19],[252,3],[106],[45,0,4],[184],[65,1],[33,9],[12,1],[11],[32,21],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,18],[252,3],[40,0,4],[32,19],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,9],[12,1],[11],[32,21],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,18],[252,3],[40,0,4],[32,19],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,9],[12,1],[11],[32,21],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,18],[252,3],[40,0,4],[32,19],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,9],[12,1],[11],[32,21],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,18],[252,3],[40,0,4],[32,19],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,9],[12,1],[11],[32,21],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,18],[252,3],[40,0,4],[32,19],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,9],[12,1],[11],[32,21],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,18],[252,3],[40,0,4],[32,19],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,9],[12,1],[11],[32,21],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,56],[65,1],[54,0,0],[65,128,128,56],[32,19],[252,3],[32,18],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,44,65],[65,195,1],[33,9],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[32,9],[33,17],[32,16],[32,17],[16, ...builtin('__Porffor_consolePrint')],[33,9],[26],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,0],[32,1],[32,16],[32,17],[16, ...builtin('__Map_prototype_get')],[33,23],[34,22],[32,23],[32,2],[65,2],[32,4],[68,0,0,0,0,0,0,240,63],[161],[65,1],[32,6],[65,2],[16, ...builtin('__Porffor_dirObject')],[33,9],[26],[2,127,"string_only"],[32,14],[34,24,"string_only"],[32,12],[34,25,"string_only"],[32,15,"string_only|start"],[65,195,1],[70],[32,13],[65,195,1],[70],[113],[4,64],[32,24],[252,3],[34,26],[32,25],[252,3],[34,28],[71],[4,127],[32,26],[40,0,0],[34,27],[32,28],[40,0,0],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,29],[32,27],[33,30],[3,64],[32,29],[32,26],[106],[45,0,4],[32,29],[32,28],[106],[45,0,4],[71],[4,64],[65,0],[12,2],[11],[32,29],[65,1],[106],[34,29],[32,30],[72],[13,0],[11],[65,1],[5],[65,1],[11],[69],[12,1],[11],[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[32,13],[65,195,0],[70],[32,13],[65,195,1],[70],[114],[114],[4,64],[32,24],[252,3],[34,26],[32,25],[252,3],[34,28],[71],[4,127],[32,26],[40,0,0],[34,27],[32,28],[40,0,0],[32,15],[65,195,1],[70],[4,64],[32,26],[32,27],[16, ...builtin('__Porffor_bytestringToString')],[33,26],[11],[32,13],[65,195,1],[70],[4,64],[32,28],[32,28],[40,0,0],[16, ...builtin('__Porffor_bytestringToString')],[33,28],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,29],[32,27],[65,2],[108],[33,30],[3,64],[32,29],[32,26],[106],[47,0,4],[32,29],[32,28],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,29],[65,2],[106],[34,29],[32,30],[72],[13,0],[11],[65,1],[5],[65,1],[11],[69],[12,1],[11,"string_only|end"],[98],[11,"string_only"],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[11],[11],[32,14],[68,0,0,0,0,0,0,240,63],[160],[33,14],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,95,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
645
658
|
params: [124,127,124,127,124,127,124,127], typedParams: 1,
|
646
659
|
returns: [124,127], typedReturns: 1,
|
647
660
|
locals: [127,127,124,127,124,127,124,127,124,127,124,124,127,127,124,127,124,124,127,127,127,127,127], localNames: ["obj","obj#type","colors","colors#type","depth","depth#type","showHidden","showHidden#type","logictmpi","#last_type","keys","keys#type","keysLen","keysLen#type","i","i#type","key","key#type","#member_obj","#member_prop","#loadArray_offset","#typeswitch_tmp","value","value#type","__tmpop_left","__tmpop_right","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end"],
|
648
661
|
};
|
649
662
|
this.__console_dir = {
|
650
|
-
wasm: (scope, {builtin,internalThrow}) => [[68,0,0,0,0,0,0,240,63],[33,4],[68,0,0,0,0,0,0,0,64],[33,5],[68,0,0,0,0,0,0,0,0],[33,6],[32,2],[33,7],[32,3],[33,8],[2,127],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,7],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,2],[33,9],[68,0,0,0,0,0,0,
|
663
|
+
wasm: (scope, {builtin,internalThrow}) => [[68,0,0,0,0,0,0,240,63],[33,4],[68,0,0,0,0,0,0,0,64],[33,5],[68,0,0,0,0,0,0,0,0],[33,6],[32,2],[33,7],[32,3],[33,8],[2,127],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,7],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,2],[33,9],[68,0,0,0,0,0,0,48,65],[33,10],[32,3],[33,8],[2,124],[32,8],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,9],[32,3],[32,10],[65,195,1],[16, ...builtin('__Map_prototype_get')],[33,12],[12,1],[11],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,60],[65,1],[54,0,0],[65,128,128,60],[32,10],[252,3],[65,2],[108],[32,9],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,46,65],[65,195,0],[33,12],[12,1],[11],[32,8],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,10],[252,3],[65,9],[108],[32,9],[252,3],[106],[34,11],[43,0,4],[32,11],[45,0,12],[33,12],[12,1],[11],[32,8],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[45,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[44,0,4],[183],[65,1],[33,12],[12,1],[11],[32,8],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[45,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,12],[12,1],[11],[32,8],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,12],[12,1],[11],[32,8],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,12],[12,1],[11],[32,8],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,12],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,60],[65,1],[54,0,0],[65,128,128,60],[32,10],[252,3],[32,9],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,46,65],[65,195,1],[33,12],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,4],[32,2],[33,9],[68,0,0,0,0,0,0,50,65],[33,10],[32,3],[33,8],[2,124],[32,8],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,9],[32,3],[32,10],[65,195,1],[16, ...builtin('__Map_prototype_get')],[33,12],[12,1],[11],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,196,0],[65,1],[54,0,0],[65,128,128,196,0],[32,10],[252,3],[65,2],[108],[32,9],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,49,65],[65,195,0],[33,12],[12,1],[11],[32,8],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,10],[252,3],[65,9],[108],[32,9],[252,3],[106],[34,11],[43,0,4],[32,11],[45,0,12],[33,12],[12,1],[11],[32,8],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[45,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[44,0,4],[183],[65,1],[33,12],[12,1],[11],[32,8],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[45,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,12],[12,1],[11],[32,8],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,12],[12,1],[11],[32,8],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,12],[12,1],[11],[32,8],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,12],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,196,0],[65,1],[54,0,0],[65,128,128,196,0],[32,10],[252,3],[32,9],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,49,65],[65,195,1],[33,12],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,5],[32,2],[33,9],[68,0,0,0,0,0,0,52,65],[33,10],[32,3],[33,8],[2,124],[32,8],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,9],[32,3],[32,10],[65,195,1],[16, ...builtin('__Map_prototype_get')],[33,12],[12,1],[11],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,204,0],[65,1],[54,0,0],[65,128,128,204,0],[32,10],[252,3],[65,2],[108],[32,9],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,51,65],[65,195,0],[33,12],[12,1],[11],[32,8],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,10],[252,3],[65,9],[108],[32,9],[252,3],[106],[34,11],[43,0,4],[32,11],[45,0,12],[33,12],[12,1],[11],[32,8],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[45,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[44,0,4],[183],[65,1],[33,12],[12,1],[11],[32,8],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[45,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,12],[12,1],[11],[32,8],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,12],[12,1],[11],[32,8],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,12],[12,1],[11],[32,8],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,12],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,204,0],[65,1],[54,0,0],[65,128,128,204,0],[32,10],[252,3],[32,9],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,51,65],[65,195,1],[33,12],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,6],[11],[16, ...builtin('__Porffor_consoleIndent')],[33,12],[26],[32,0],[32,1],[32,4],[65,2],[32,5],[65,1],[32,6],[65,2],[16, ...builtin('__Porffor_dirObject')],[33,12],[26],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
651
664
|
params: [124,127,124,127], typedParams: 1,
|
652
665
|
returns: [124,127], typedReturns: 1,
|
653
666
|
locals: [124,124,124,124,127,124,124,127,127], localNames: ["obj","obj#type","options","options#type","colors","depth","showHidden","#logicinner_tmp","#typeswitch_tmp","#member_obj","#member_prop","#loadArray_offset","#last_type"],
|
654
|
-
data: [[0,[6,0,0,0,99,111,108,111,114,115]],[
|
667
|
+
data: [[0,[6,0,0,0,99,111,108,111,114,115]],[1179648,[5,0,0,0,100,101,112,116,104]],[1310720,[10,0,0,0,115,104,111,119,72,105,100,100,101,110]]],
|
655
668
|
};
|
656
669
|
this.__console_dirxml = {
|
657
670
|
wasm: (scope, {builtin}) => [[32,0],[32,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('__console_dir')],[34,2],[15]],
|
@@ -660,7 +673,7 @@ export const BuiltinFuncs = function() {
|
|
660
673
|
locals: [127], localNames: ["obj","obj#type","#last_type"],
|
661
674
|
};
|
662
675
|
this.__console_count = {
|
663
|
-
wasm: (scope, {glbl,builtin,internalThrow}) => [[32,0],[34,2],[33,3],[32,1],[33,4],[2,127],[32,4],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,3],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,4],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[68,0,0,0,0,0,0,
|
676
|
+
wasm: (scope, {glbl,builtin,internalThrow}) => [[32,0],[34,2],[33,3],[32,1],[33,4],[2,127],[32,4],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,3],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,4],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[68,0,0,0,0,0,0,53,65],[34,0],[65,195,1],[33,5],[5],[32,2],[32,1],[33,5],[11],[32,0],[32,5],[33,1],[26],[26],...glbl(35, 'countMap', 124),[33,8],...glbl(35, 'countMap#type', 127),[34,9],[33,4],[2,124],[32,4],[65,20],[70],[4,64,"TYPESWITCH|Map"],[32,8],[32,9],[32,0],[32,1],[16, ...builtin('__Map_prototype_get')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'get' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[34,2],[33,3],[32,5],[33,4],[2,127],[32,4],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,3],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,4],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[68,0,0,0,0,0,0,0,0],[65,1],[33,5],[5],[32,2],[32,5],[33,5],[11],[68,0,0,0,0,0,0,240,63],[160],[33,6],[65,1],[33,7],...glbl(35, 'countMap', 124),[33,8],...glbl(35, 'countMap#type', 127),[34,9],[33,4],[2,124],[32,4],[65,20],[70],[4,64,"TYPESWITCH|Map"],[32,8],[32,9],[32,0],[32,1],[32,6],[32,7],[16, ...builtin('__Map_prototype_set')],[33,5],[12,1],[11],[32,4],[65,35],[70],[4,64,"TYPESWITCH|WeakMap"],[32,8],[32,9],[32,0],[32,1],[32,6],[32,7],[16, ...builtin('__WeakMap_prototype_set')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'set' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[16, ...builtin('__Porffor_consoleIndent')],[33,5],[26],[32,0],[32,1],[16, ...builtin('__Porffor_consolePrint')],[33,5],[26],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,6],[16,0],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
664
677
|
params: [124,127], typedParams: 1,
|
665
678
|
returns: [124,127], typedReturns: 1,
|
666
679
|
locals: [124,124,127,127,124,127,124,127], localNames: ["label","label#type","logictmp","#logicinner_tmp","#typeswitch_tmp","#last_type","val","val#type","#proto_target","#proto_target#type"],
|
@@ -668,7 +681,7 @@ export const BuiltinFuncs = function() {
|
|
668
681
|
data: [[0,[7,0,0,0,100,101,102,97,117,108,116]]],
|
669
682
|
};
|
670
683
|
this.__console_countReset = {
|
671
|
-
wasm: (scope, {glbl,builtin,internalThrow}) => [[32,0],[34,2],[33,3],[32,1],[33,4],[2,127],[32,4],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,3],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,4],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[68,0,0,0,0,0,0,
|
684
|
+
wasm: (scope, {glbl,builtin,internalThrow}) => [[32,0],[34,2],[33,3],[32,1],[33,4],[2,127],[32,4],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,3],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,4],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[68,0,0,0,0,0,0,54,65],[34,0],[65,195,1],[33,5],[5],[32,2],[32,1],[33,5],[11],[32,0],[32,5],[33,1],[26],[26],...glbl(35, 'countMap', 124),[33,6],...glbl(35, 'countMap#type', 127),[34,7],[33,4],[2,124],[32,4],[65,20],[70],[4,64,"TYPESWITCH|Map"],[32,6],[32,7],[32,0],[32,1],[68,0,0,0,0,0,0,240,191],[65,1],[16, ...builtin('__Map_prototype_set')],[33,5],[12,1],[11],[32,4],[65,35],[70],[4,64,"TYPESWITCH|WeakMap"],[32,6],[32,7],[32,0],[32,1],[68,0,0,0,0,0,0,240,191],[65,1],[16, ...builtin('__WeakMap_prototype_set')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'set' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[32,0],[32,1],[16, ...builtin('__console_count')],[33,5],[26],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
672
685
|
params: [124,127], typedParams: 1,
|
673
686
|
returns: [124,127], typedReturns: 1,
|
674
687
|
locals: [124,124,127,127,124,127], localNames: ["label","label#type","logictmp","#logicinner_tmp","#typeswitch_tmp","#last_type","#proto_target","#proto_target#type"],
|
@@ -676,7 +689,7 @@ export const BuiltinFuncs = function() {
|
|
676
689
|
data: [[0,[7,0,0,0,100,101,102,97,117,108,116]]],
|
677
690
|
};
|
678
691
|
this.__console_time = {
|
679
|
-
wasm: (scope, {glbl,builtin,internalThrow}) => [[32,0],[34,2],[33,3],[32,1],[33,4],[2,127],[32,4],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,3],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,4],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[68,0,0,0,0,0,0,
|
692
|
+
wasm: (scope, {glbl,builtin,internalThrow}) => [[32,0],[34,2],[33,3],[32,1],[33,4],[2,127],[32,4],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,3],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,4],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[68,0,0,0,0,0,0,55,65],[34,0],[65,195,1],[33,5],[5],[32,2],[32,1],[33,5],[11],[32,0],[32,5],[33,1],[26],[26],...glbl(35, 'timeMap', 124),[33,6],...glbl(35, 'timeMap#type', 127),[34,7],[33,4],[2,124],[32,4],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,6],[32,7],[32,0],[32,1],[16, ...builtin('__Set_prototype_has')],[33,5],[12,1],[11],[32,4],[65,20],[70],[4,64,"TYPESWITCH|Map"],[32,6],[32,7],[32,0],[32,1],[16, ...builtin('__Map_prototype_has')],[33,5],[12,1],[11],[32,4],[65,34],[70],[4,64,"TYPESWITCH|WeakSet"],[32,6],[32,7],[32,0],[32,1],[16, ...builtin('__WeakSet_prototype_has')],[33,5],[12,1],[11],[32,4],[65,35],[70],[4,64,"TYPESWITCH|WeakMap"],[32,6],[32,7],[32,0],[32,1],[16, ...builtin('__WeakMap_prototype_has')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'has' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,3],[32,5],[33,4],[2,127],[32,4],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,3],[252,3],[40,1,0],[12,1],[11],[32,4],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,3],[252,3],[40,1,0],[12,1],[11],[32,3],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,192,85,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,192,89,64],[16,1],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,85,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,67,64],[16,1],[32,0],[32,1],[16, ...builtin('__Porffor_consolePrint')],[33,5],[26],[68,0,0,0,0,0,128,67,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,89,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,94,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,88,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,71,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,36,64],[16,1],[11],...glbl(35, 'timeMap', 124),[33,6],...glbl(35, 'timeMap#type', 127),[34,7],[33,4],[2,124],[32,4],[65,20],[70],[4,64,"TYPESWITCH|Map"],[32,6],[32,7],[32,0],[32,1],[16, ...builtin('__performance_now')],[65,1],[16, ...builtin('__Map_prototype_set')],[33,5],[12,1],[11],[32,4],[65,35],[70],[4,64,"TYPESWITCH|WeakMap"],[32,6],[32,7],[32,0],[32,1],[16, ...builtin('__performance_now')],[65,1],[16, ...builtin('__WeakMap_prototype_set')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'set' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
680
693
|
params: [124,127], typedParams: 1,
|
681
694
|
returns: [124,127], typedReturns: 1,
|
682
695
|
locals: [124,124,127,127,124,127], localNames: ["label","label#type","logictmp","#logicinner_tmp","#typeswitch_tmp","#last_type","#proto_target","#proto_target#type"],
|
@@ -684,7 +697,7 @@ export const BuiltinFuncs = function() {
|
|
684
697
|
data: [[0,[7,0,0,0,100,101,102,97,117,108,116]]],
|
685
698
|
};
|
686
699
|
this.__console_timeLog = {
|
687
|
-
wasm: (scope, {glbl,builtin,internalThrow}) => [[32,0],[34,2],[33,3],[32,1],[33,4],[2,127],[32,4],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,3],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,4],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[68,0,0,0,0,0,0,
|
700
|
+
wasm: (scope, {glbl,builtin,internalThrow}) => [[32,0],[34,2],[33,3],[32,1],[33,4],[2,127],[32,4],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,3],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,4],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[68,0,0,0,0,0,0,56,65],[34,0],[65,195,1],[33,5],[5],[32,2],[32,1],[33,5],[11],[32,0],[32,5],[33,1],[26],[26],[16, ...builtin('__Porffor_consoleIndent')],[33,5],[26],...glbl(35, 'timeMap', 124),[33,8],...glbl(35, 'timeMap#type', 127),[34,9],[33,4],[2,124],[32,4],[65,20],[70],[4,64,"TYPESWITCH|Map"],[32,8],[32,9],[32,0],[32,1],[16, ...builtin('__Map_prototype_get')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'get' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,6],[32,5],[33,7],[32,6],[33,3],[32,7],[33,4],[2,124],[32,4],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,3],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,4],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,3],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,3],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[68,0,0,0,0,0,0,85,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,67,64],[16,1],[32,0],[32,1],[16, ...builtin('__Porffor_consolePrint')],[33,5],[26],[68,0,0,0,0,0,128,67,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,89,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,94,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[32,1],[16, ...builtin('__Porffor_consolePrint')],[33,5],[26],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[16, ...builtin('__performance_now')],[32,6],[161],[16,0],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
688
701
|
params: [124,127], typedParams: 1,
|
689
702
|
returns: [124,127], typedReturns: 1,
|
690
703
|
locals: [124,124,127,127,124,127,124,127], localNames: ["label","label#type","logictmp","#logicinner_tmp","#typeswitch_tmp","#last_type","val","val#type","#proto_target","#proto_target#type"],
|
@@ -692,7 +705,7 @@ export const BuiltinFuncs = function() {
|
|
692
705
|
data: [[0,[7,0,0,0,100,101,102,97,117,108,116]]],
|
693
706
|
};
|
694
707
|
this.__console_timeEnd = {
|
695
|
-
wasm: (scope, {glbl,builtin,internalThrow}) => [[32,0],[34,2],[33,3],[32,1],[33,4],[2,127],[32,4],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,3],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,4],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[68,0,0,0,0,0,0,
|
708
|
+
wasm: (scope, {glbl,builtin,internalThrow}) => [[32,0],[34,2],[33,3],[32,1],[33,4],[2,127],[32,4],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,3],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,4],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[68,0,0,0,0,0,0,57,65],[34,0],[65,195,1],[33,5],[5],[32,2],[32,1],[33,5],[11],[32,0],[32,5],[33,1],[26],[26],[32,0],[32,1],[16, ...builtin('__console_timeLog')],[33,5],[26],...glbl(35, 'timeMap', 124),[33,6],...glbl(35, 'timeMap#type', 127),[34,7],[33,4],[2,124],[32,4],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,6],[32,7],[32,0],[32,1],[16, ...builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,4],[65,20],[70],[4,64,"TYPESWITCH|Map"],[32,6],[32,7],[32,0],[32,1],[16, ...builtin('__Map_prototype_delete')],[33,5],[12,1],[11],[32,4],[65,34],[70],[4,64,"TYPESWITCH|WeakSet"],[32,6],[32,7],[32,0],[32,1],[16, ...builtin('__WeakSet_prototype_delete')],[33,5],[12,1],[11],[32,4],[65,35],[70],[4,64,"TYPESWITCH|WeakMap"],[32,6],[32,7],[32,0],[32,1],[16, ...builtin('__WeakMap_prototype_delete')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'delete' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
696
709
|
params: [124,127], typedParams: 1,
|
697
710
|
returns: [124,127], typedReturns: 1,
|
698
711
|
locals: [124,124,127,127,124,127], localNames: ["label","label#type","logictmp","#logicinner_tmp","#typeswitch_tmp","#last_type","#proto_target","#proto_target#type"],
|
package/compiler/opt.js
CHANGED
@@ -4,14 +4,6 @@ import { read_signedLEB128, read_ieee754_binary64 } from './encoding.js';
|
|
4
4
|
import { log } from './log.js';
|
5
5
|
import Prefs from './prefs.js';
|
6
6
|
|
7
|
-
const performWasmOp = (op, a, b) => {
|
8
|
-
switch (op) {
|
9
|
-
case Opcodes.add: return a + b;
|
10
|
-
case Opcodes.sub: return a - b;
|
11
|
-
case Opcodes.mul: return a * b;
|
12
|
-
}
|
13
|
-
};
|
14
|
-
|
15
7
|
export default (funcs, globals, pages, tags, exceptions) => {
|
16
8
|
const optLevel = parseInt(process.argv.find(x => x.startsWith('-O'))?.[2] ?? 1);
|
17
9
|
if (optLevel === 0) return;
|
@@ -114,21 +106,12 @@ export default (funcs, globals, pages, tags, exceptions) => {
|
|
114
106
|
while (runs > 0) {
|
115
107
|
runs--;
|
116
108
|
|
117
|
-
let getCount = {}, setCount = {};
|
118
|
-
for (const x in f.locals) {
|
119
|
-
getCount[f.locals[x].idx] = 0;
|
120
|
-
setCount[f.locals[x].idx] = 0;
|
121
|
-
}
|
122
|
-
|
123
109
|
// main pass
|
124
110
|
for (let i = 0; i < wasm.length; i++) {
|
125
111
|
let inst = wasm[i];
|
126
112
|
inst = [ ...inst ];
|
127
113
|
wasm[i] = inst;
|
128
114
|
|
129
|
-
if (inst[0] === Opcodes.local_get) getCount[inst[1]]++;
|
130
|
-
if (inst[0] === Opcodes.local_set || inst[0] === Opcodes.local_tee) setCount[inst[1]]++;
|
131
|
-
|
132
115
|
// if (inst[0] === Opcodes.throw) {
|
133
116
|
// tagUse[inst[1]]++;
|
134
117
|
|
@@ -267,7 +250,6 @@ export default (funcs, globals, pages, tags, exceptions) => {
|
|
267
250
|
lastInst[0] = Opcodes.local_tee; // replace last inst opcode (set -> tee)
|
268
251
|
wasm.splice(i, 1); // remove this inst (get)
|
269
252
|
|
270
|
-
getCount[inst[1]]--;
|
271
253
|
i--;
|
272
254
|
// if (Prefs.optLog) log('opt', `consolidated set, get -> tee`);
|
273
255
|
continue;
|
@@ -280,8 +262,6 @@ export default (funcs, globals, pages, tags, exceptions) => {
|
|
280
262
|
// -->
|
281
263
|
//
|
282
264
|
|
283
|
-
getCount[lastInst[1]]--;
|
284
|
-
|
285
265
|
wasm.splice(i - 1, 2); // remove this inst and last
|
286
266
|
i -= 2;
|
287
267
|
continue;
|
@@ -294,8 +274,6 @@ export default (funcs, globals, pages, tags, exceptions) => {
|
|
294
274
|
// -->
|
295
275
|
// local.set 0
|
296
276
|
|
297
|
-
getCount[lastInst[1]]--;
|
298
|
-
|
299
277
|
lastInst[0] = Opcodes.local_set; // change last op
|
300
278
|
|
301
279
|
wasm.splice(i, 1); // remove this inst
|
@@ -427,78 +405,6 @@ export default (funcs, globals, pages, tags, exceptions) => {
|
|
427
405
|
continue;
|
428
406
|
}
|
429
407
|
}
|
430
|
-
|
431
|
-
if (optLevel < 2) continue;
|
432
|
-
|
433
|
-
if (Prefs.optLog) log('opt', `get counts: ${Object.keys(f.locals).map(x => `${x} (${f.locals[x].idx}): ${getCount[f.locals[x].idx]}`).join(', ')}`);
|
434
|
-
|
435
|
-
// remove unneeded var: remove pass
|
436
|
-
// locals only got once. we don't need to worry about sets/else as these are only candidates and we will check for matching set + get insts in wasm
|
437
|
-
let unneededCandidates = Object.keys(getCount).filter(x => getCount[x] === 0 || (getCount[x] === 1 && setCount[x] === 0)).map(x => parseInt(x));
|
438
|
-
if (Prefs.optLog) log('opt', `found unneeded locals candidates: ${unneededCandidates.join(', ')} (${unneededCandidates.length}/${Object.keys(getCount).length})`);
|
439
|
-
|
440
|
-
// note: disabled for now due to instability
|
441
|
-
if (unneededCandidates.length > 0 && false) for (let i = 0; i < wasm.length; i++) {
|
442
|
-
if (i < 1) continue;
|
443
|
-
|
444
|
-
const inst = wasm[i];
|
445
|
-
const lastInst = wasm[i - 1];
|
446
|
-
|
447
|
-
if (lastInst[1] === inst[1] && lastInst[0] === Opcodes.local_set && inst[0] === Opcodes.local_get && unneededCandidates.includes(inst[1])) {
|
448
|
-
// local.set N
|
449
|
-
// local.get N
|
450
|
-
// -->
|
451
|
-
// <nothing>
|
452
|
-
|
453
|
-
wasm.splice(i - 1, 2); // remove insts
|
454
|
-
i -= 2;
|
455
|
-
delete f.locals[Object.keys(f.locals)[inst[1]]]; // remove from locals
|
456
|
-
if (Prefs.optLog) log('opt', `removed redundant local (get set ${inst[1]})`);
|
457
|
-
}
|
458
|
-
|
459
|
-
if (inst[0] === Opcodes.local_tee && unneededCandidates.includes(inst[1])) {
|
460
|
-
// local.tee N
|
461
|
-
// -->
|
462
|
-
// <nothing>
|
463
|
-
|
464
|
-
wasm.splice(i, 1); // remove inst
|
465
|
-
i--;
|
466
|
-
|
467
|
-
const localName = Object.keys(f.locals)[inst[1]];
|
468
|
-
const removedIdx = f.locals[localName].idx;
|
469
|
-
delete f.locals[localName]; // remove from locals
|
470
|
-
|
471
|
-
// fix locals index for locals after
|
472
|
-
for (const x in f.locals) {
|
473
|
-
const local = f.locals[x];
|
474
|
-
if (local.idx > removedIdx) local.idx--;
|
475
|
-
}
|
476
|
-
|
477
|
-
for (const inst of wasm) {
|
478
|
-
if ((inst[0] === Opcodes.local_get || inst[0] === Opcodes.local_set || inst[0] === Opcodes.local_tee) && inst[1] > removedIdx) inst[1]--;
|
479
|
-
}
|
480
|
-
|
481
|
-
unneededCandidates.splice(unneededCandidates.indexOf(inst[1]), 1);
|
482
|
-
unneededCandidates = unneededCandidates.map(x => x > removedIdx ? (x - 1) : x);
|
483
|
-
|
484
|
-
if (Prefs.optLog) log('opt', `removed redundant local ${localName} (tee ${inst[1]})`);
|
485
|
-
}
|
486
|
-
}
|
487
|
-
|
488
|
-
const useCount = {};
|
489
|
-
for (const x in f.locals) useCount[f.locals[x].idx] = 0;
|
490
|
-
|
491
|
-
const localIdxs = Object.values(f.locals).map(x => x.idx);
|
492
|
-
// remove unused locals (cleanup)
|
493
|
-
for (const x in useCount) {
|
494
|
-
if (useCount[x] === 0) {
|
495
|
-
const name = Object.keys(f.locals)[localIdxs.indexOf(parseInt(x))];
|
496
|
-
if (Prefs.optLog) log('opt', `removed internal local ${x} (${name})`);
|
497
|
-
delete f.locals[name];
|
498
|
-
}
|
499
|
-
}
|
500
|
-
|
501
|
-
if (Prefs.optLog) log('opt', `final use counts: ${Object.keys(f.locals).map(x => `${x} (${f.locals[x].idx}): ${useCount[f.locals[x].idx]}`).join(', ')}`);
|
502
408
|
}
|
503
409
|
}
|
504
410
|
|
package/package.json
CHANGED