porffor 0.60.12 → 0.60.13
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/builtins/regexp.ts +56 -15
- package/compiler/builtins_precompiled.js +25 -3
- package/compiler/precompile.js +1 -1
- package/foo.js +1 -40
- package/package.json +1 -1
- package/runtime/index.js +1 -1
@@ -994,9 +994,8 @@ export const __Porffor_regex_interpret = (regexp: RegExp, input: i32, isTest: bo
|
|
994
994
|
lastIndex = Porffor.wasm.i32.load16_u(regexp, 0, 8);
|
995
995
|
}
|
996
996
|
|
997
|
-
|
998
|
-
const
|
999
|
-
const captures: i32[] = Porffor.allocateBytes(6144);
|
997
|
+
const backtrackStack: i32[] = [];
|
998
|
+
const captures: i32[] = [];
|
1000
999
|
|
1001
1000
|
for (let i: i32 = lastIndex; i <= inputLen; i++) {
|
1002
1001
|
backtrackStack.length = 0;
|
@@ -1055,7 +1054,6 @@ export const __Porffor_regex_interpret = (regexp: RegExp, input: i32, isTest: bo
|
|
1055
1054
|
|
1056
1055
|
if (op == 0x01) { // single
|
1057
1056
|
if (sp >= inputLen) {
|
1058
|
-
// Porffor.log(`single: oob`);
|
1059
1057
|
backtrack = true;
|
1060
1058
|
} else {
|
1061
1059
|
let c1: i32 = Porffor.wasm.i32.load8_u(pc, 0, 1);
|
@@ -1065,11 +1063,9 @@ export const __Porffor_regex_interpret = (regexp: RegExp, input: i32, isTest: bo
|
|
1065
1063
|
if (c2 >= 97 && c2 <= 122) c2 -= 32;
|
1066
1064
|
}
|
1067
1065
|
if (c1 == c2) {
|
1068
|
-
// Porffor.log(`single: matched ${c1}`);
|
1069
1066
|
pc += 2;
|
1070
1067
|
sp += 1;
|
1071
1068
|
} else {
|
1072
|
-
// Porffor.log(`single: failed, expected ${c1}, got ${c2}`);
|
1073
1069
|
backtrack = true;
|
1074
1070
|
}
|
1075
1071
|
}
|
@@ -1281,7 +1277,6 @@ export const __Porffor_regex_interpret = (regexp: RegExp, input: i32, isTest: bo
|
|
1281
1277
|
const lookaheadEndPc = pc + jumpOffset + 3;
|
1282
1278
|
const savedSp = sp; // Save current string position
|
1283
1279
|
|
1284
|
-
|
1285
1280
|
// Use fork to test the lookahead pattern
|
1286
1281
|
Porffor.array.fastPushI32(backtrackStack, lookaheadEndPc); // Continue point after lookahead
|
1287
1282
|
Porffor.array.fastPushI32(backtrackStack, savedSp); // Restore original sp
|
@@ -1310,7 +1305,6 @@ export const __Porffor_regex_interpret = (regexp: RegExp, input: i32, isTest: bo
|
|
1310
1305
|
const capIndex = Porffor.wasm.i32.load8_u(pc, 0, 1);
|
1311
1306
|
const arrIndex = capIndex + 255; // + 255 offset for temp start, as it could never end properly
|
1312
1307
|
captures[arrIndex] = sp;
|
1313
|
-
// Porffor.log(`startCapture: captures[${arrIndex}] = ${sp} | captures.length = ${captures.length}`);
|
1314
1308
|
pc += 2;
|
1315
1309
|
} else if (op == 0x31) { // end capture
|
1316
1310
|
const capIndex = Porffor.wasm.i32.load8_u(pc, 0, 1);
|
@@ -1318,7 +1312,6 @@ export const __Porffor_regex_interpret = (regexp: RegExp, input: i32, isTest: bo
|
|
1318
1312
|
while (captures.length <= arrIndex) Porffor.array.fastPushI32(captures, -1);
|
1319
1313
|
captures[arrIndex - 1] = captures[capIndex + 255];
|
1320
1314
|
captures[arrIndex] = sp;
|
1321
|
-
// Porffor.log(`endCapture: captures[${arrIndex}] = ${sp} | captures.length = ${captures.length}`);
|
1322
1315
|
pc += 2;
|
1323
1316
|
} else { // unknown op
|
1324
1317
|
backtrack = true;
|
@@ -1327,7 +1320,6 @@ export const __Porffor_regex_interpret = (regexp: RegExp, input: i32, isTest: bo
|
|
1327
1320
|
if (backtrack) {
|
1328
1321
|
if (backtrackStack.length == 0) break;
|
1329
1322
|
|
1330
|
-
|
1331
1323
|
// Check if we're backtracking from a lookahead
|
1332
1324
|
if (backtrackStack.length >= 4) {
|
1333
1325
|
const marker = backtrackStack[backtrackStack.length - 1];
|
@@ -1355,11 +1347,9 @@ export const __Porffor_regex_interpret = (regexp: RegExp, input: i32, isTest: bo
|
|
1355
1347
|
}
|
1356
1348
|
|
1357
1349
|
// Normal backtracking
|
1358
|
-
// Porffor.log(`backtrack! before: captures.length = ${captures.length}, sp = ${sp}, pc = ${pc}`);
|
1359
1350
|
captures.length = Porffor.array.fastPopI32(backtrackStack);
|
1360
1351
|
sp = Porffor.array.fastPopI32(backtrackStack);
|
1361
1352
|
pc = Porffor.array.fastPopI32(backtrackStack);
|
1362
|
-
// Porffor.log(`backtrack! after: captures.length = ${captures.length}, sp = ${sp}, pc = ${pc}`);
|
1363
1353
|
}
|
1364
1354
|
}
|
1365
1355
|
|
@@ -1532,12 +1522,63 @@ export const __RegExp_prototype_test = (_this: RegExp, input: any) => {
|
|
1532
1522
|
return __Porffor_regex_interpret(_this, input, true);
|
1533
1523
|
};
|
1534
1524
|
|
1535
|
-
|
1525
|
+
|
1526
|
+
export const __Porffor_regex_match = (regexp: any, input: any) => {
|
1536
1527
|
if (Porffor.type(regexp) !== Porffor.TYPES.regexp) regexp = new RegExp(regexp);
|
1537
|
-
|
1528
|
+
if (Porffor.type(input) !== Porffor.TYPES.bytestring) input = ecma262.ToString(input);
|
1529
|
+
|
1530
|
+
if (__RegExp_prototype_global$get(regexp)) {
|
1531
|
+
// global should return all matches as just complete string result
|
1532
|
+
const result: any[] = Porffor.allocateBytes(4096);
|
1533
|
+
let match: any;
|
1534
|
+
while (match = __Porffor_regex_interpret(regexp, input, false)) {
|
1535
|
+
// read ourselves as we are in i32 space
|
1536
|
+
Porffor.wasm`
|
1537
|
+
local.get ${result}
|
1538
|
+
f64.convert_i32_u
|
1539
|
+
local.get ${result+1}
|
1540
|
+
|
1541
|
+
local.get ${match}
|
1542
|
+
f64.load 0 4
|
1543
|
+
local.get ${match}
|
1544
|
+
i32.load8_u 0 12
|
1545
|
+
|
1546
|
+
call __Porffor_array_fastPush`;
|
1547
|
+
}
|
1548
|
+
return result;
|
1549
|
+
}
|
1550
|
+
|
1551
|
+
return __Porffor_regex_interpret(regexp, input, false);
|
1552
|
+
};
|
1553
|
+
|
1554
|
+
export const __String_prototype_match = (_this: string, regexp: any) => {
|
1555
|
+
return __Porffor_regex_match(regexp, _this);
|
1538
1556
|
};
|
1539
1557
|
|
1540
1558
|
export const __ByteString_prototype_match = (_this: bytestring, regexp: any) => {
|
1559
|
+
return __Porffor_regex_match(regexp, _this);
|
1560
|
+
};
|
1561
|
+
|
1562
|
+
|
1563
|
+
// todo: use actual iterator not array
|
1564
|
+
export const __Porffor_regex_matchAll = (regexp: any, input: any) => {
|
1541
1565
|
if (Porffor.type(regexp) !== Porffor.TYPES.regexp) regexp = new RegExp(regexp);
|
1542
|
-
|
1566
|
+
if (Porffor.type(input) !== Porffor.TYPES.bytestring) input = ecma262.ToString(input);
|
1567
|
+
|
1568
|
+
if (!__RegExp_prototype_global$get(regexp)) throw new TypeError('matchAll used with non-global RegExp');
|
1569
|
+
|
1570
|
+
const result: any[] = Porffor.allocateBytes(4096);
|
1571
|
+
let match: any;
|
1572
|
+
while (match = __Porffor_regex_interpret(regexp, input, false)) {
|
1573
|
+
Porffor.array.fastPush(result, match);
|
1574
|
+
}
|
1575
|
+
return result;
|
1576
|
+
};
|
1577
|
+
|
1578
|
+
export const __String_prototype_matchAll = (_this: string, regexp: any) => {
|
1579
|
+
return __Porffor_regex_matchAll(regexp, _this);
|
1580
|
+
};
|
1581
|
+
|
1582
|
+
export const __ByteString_prototype_matchAll = (_this: bytestring, regexp: any) => {
|
1583
|
+
return __Porffor_regex_matchAll(regexp, _this);
|
1543
1584
|
};
|
@@ -2819,7 +2819,7 @@ locals:[127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,
|
|
2819
2819
|
usesTag:1
|
2820
2820
|
}
|
2821
2821
|
x.__Porffor_regex_interpret={
|
2822
|
-
wasm:(_,{i32ify,t,makeString,builtin})=>eval("[[32,0],[65,10],[106],[33,6],[32,0],[47,0,4],[33,7],[32,0],[47,0,6],[33,8],[32,7],[65,2],[113],[65,0],[71],[33,9],[32,7],[65,4],[113],[65,0],[71],[33,10],[32,7],[65,8],[113],[65,0],[71],[33,11],[32,7],[65,1],[113],[65,0],[71],[33,12],[32,7],[65,32],[113],[65,0],[71],[33,13],[32,2],[40,0,0],[33,14],[65,0],[33,15],[32,12],[34,16],[69],[4,127],[32,13],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,0],[47,0,8],[33,15],[11],[16,builtin('__Porffor_allocate')],[33,20],[65,6144],[16,builtin('__Porffor_allocateBytes')],[33,21],[32,15],[33,22],[3,64],[32,22],[32,14],[76],[4,64],[2,64],[32,20],[65,0],[54,1,0],[32,21],[65,0],[54,1,0],[32,6],[33,23],[32,22],[33,24],[65,0],[33,25],[65,-1],[33,26],[3,64],[65,1],[4,64],[32,23],[45,0,0],[34,27],[65,16],[70],[4,64],[32,20],[40,1,0],[65,4],[78],[4,64],[32,20],[40,1,0],[65,1],[107],[33,31],[32,20],[33,30],[32,31],[65,5],[108],[32,30],[106],[34,32],[40,0,4],[32,32],[45,0,8],[34,17],[33,29],[34,28],[65,-2000],[70],[34,16],[69],[4,127],[32,28],[65,-3000],[70],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,28],[65,-2000],[70],[33,33],[65,2],[33,34],[32,20],[65,72],[16,builtin('__Porffor_array_fastPopI32')],[33,35],[65,1],[33,36],[32,20],[65,72],[16,builtin('__Porffor_array_fastPopI32')],[33,37],[65,1],[33,38],[32,20],[65,72],[16,builtin('__Porffor_array_fastPopI32')],[33,39],[65,1],[33,40],[32,20],[65,72],[16,builtin('__Porffor_array_fastPopI32')],[33,41],[65,1],[33,42],[32,39],[33,24],[32,21],[32,37],[54,1,0],[32,33],[4,64],[65,0],[33,25],[12,4],[26],[5],[32,41],[33,23],[12,5],[26],[11],[5],[65,1],[33,25],[32,24],[33,26],[12,3],[26],[11],[5],[65,1],[33,25],[32,24],[33,26],[12,2],[26],[11],[11],[65,0],[33,43],[32,27],[65,1],[70],[4,64],[32,24],[32,14],[78],[4,64],[65,1],[33,43],[5],[32,23],[45,0,1],[33,44],[32,2],[32,24],[106],[45,0,4],[33,45],[32,9],[4,64],[32,44],[65,97],[78],[34,16],[4,127],[32,44],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,44],[65,32],[107],[33,44],[11],[32,45],[65,97],[78],[34,16],[4,127],[32,45],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,45],[65,32],[107],[33,45],[11],[11],[32,44],[32,45],[70],[4,64],[32,23],[65,2],[106],[33,23],[32,24],[65,1],[106],[33,24],[5],[65,1],[33,43],[11],[11],[5],[32,27],[65,2],[70],[34,16],[69],[4,127],[32,27],[65,3],[70],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,24],[32,14],[78],[4,64],[65,1],[33,43],[5],[32,2],[32,24],[106],[45,0,4],[33,46],[32,23],[65,1],[106],[33,47],[65,0],[33,48],[3,64],[65,1],[4,64],[32,47],[45,0,0],[34,28],[65,255],[70],[4,64],[12,1],[26],[11],[32,28],[69],[4,64],[32,47],[45,0,1],[33,49],[32,47],[45,0,2],[33,50],[32,46],[33,51],[32,9],[4,64],[32,49],[65,97],[78],[34,16],[4,127],[32,49],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,49],[65,32],[107],[33,49],[11],[32,50],[65,97],[78],[34,16],[4,127],[32,50],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,50],[65,32],[107],[33,50],[11],[32,51],[65,97],[78],[34,16],[4,127],[32,51],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,51],[65,32],[107],[33,51],[11],[11],[32,51],[32,49],[78],[34,16],[4,127],[32,51],[32,50],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[65,1],[33,48],[12,2],[26],[11],[32,47],[65,3],[106],[33,47],[5],[32,28],[65,1],[70],[4,64],[32,47],[45,0,1],[33,44],[32,46],[33,45],[32,9],[4,64],[32,44],[65,97],[78],[34,16],[4,127],[32,44],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,44],[65,32],[107],[33,44],[11],[32,45],[65,97],[78],[34,16],[4,127],[32,45],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,45],[65,32],[107],[33,45],[11],[11],[32,44],[32,45],[70],[4,64],[65,1],[33,48],[12,3],[26],[11],[32,47],[65,2],[106],[33,47],[5],[32,28],[65,2],[70],[4,64],[32,47],[45,0,1],[33,52],[65,0],[33,53],[32,52],[65,1],[70],[4,64],[32,46],[65,48],[78],[34,16],[4,127],[32,46],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,53],[5],[32,52],[65,2],[70],[4,64],[32,46],[65,48],[78],[34,16],[4,127],[32,46],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[33,53],[5],[32,52],[65,3],[70],[4,64],[32,46],[65,32],[70],[32,46],[65,9],[70],[114],[32,46],[65,10],[70],[114],[32,46],[65,13],[70],[114],[32,46],[65,11],[70],[114],[32,46],[65,12],[70],[114],[33,53],[5],[32,52],[65,4],[70],[4,64],[32,46],[65,32],[70],[32,46],[65,9],[70],[114],[32,46],[65,10],[70],[114],[32,46],[65,13],[70],[114],[32,46],[65,11],[70],[114],[32,46],[65,12],[70],[114],[69],[33,53],[5],[32,52],[65,5],[70],[4,64],[32,46],[65,65],[78],[34,16],[4,127],[32,46],[65,90],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,97],[78],[34,16],[4,127],[32,46],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,17],[33,17],[5],[32,16],[32,17],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,48],[78],[34,16],[4,127],[32,46],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,17],[33,17],[5],[32,16],[32,17],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,95],[70],[65,2],[33,17],[5],[32,16],[32,17],[33,17],[11],[33,53],[5],[32,52],[65,6],[70],[4,64],[32,46],[65,65],[78],[34,16],[4,127],[32,46],[65,90],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,97],[78],[34,16],[4,127],[32,46],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,17],[33,17],[5],[32,16],[32,17],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,48],[78],[34,16],[4,127],[32,46],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,17],[33,17],[5],[32,16],[32,17],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,95],[70],[65,2],[33,17],[5],[32,16],[32,17],[33,17],[11],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[33,53],[11],[11],[11],[11],[11],[11],[32,53],[4,64],[65,1],[33,48],[12,4],[26],[11],[32,47],[65,2],[106],[33,47],[11],[11],[11],[12,1],[11],[11],[32,27],[65,3],[70],[4,64],[32,48],[69],[33,48],[11],[32,48],[4,64],[3,64],[32,47],[45,0,0],[65,255],[71],[4,64],[32,47],[45,0,0],[34,28],[69],[4,64],[32,47],[65,3],[106],[33,47],[5],[32,28],[65,1],[70],[4,64],[32,47],[65,2],[106],[33,47],[5],[32,28],[65,2],[70],[4,64],[32,47],[65,2],[106],[33,47],[11],[11],[11],[12,1],[11],[11],[32,47],[65,1],[106],[33,23],[32,24],[65,1],[106],[33,24],[5],[65,1],[33,43],[11],[11],[5],[32,27],[65,4],[70],[4,64],[32,24],[32,14],[78],[4,64],[65,1],[33,43],[5],[32,23],[45,0,1],[33,52],[32,2],[32,24],[106],[45,0,4],[33,46],[65,0],[33,53],[32,52],[65,1],[70],[4,64],[32,46],[65,48],[78],[34,16],[4,127],[32,46],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,53],[5],[32,52],[65,2],[70],[4,64],[32,46],[65,48],[78],[34,16],[4,127],[32,46],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[33,53],[5],[32,52],[65,3],[70],[4,64],[32,46],[65,32],[70],[32,46],[65,9],[70],[114],[32,46],[65,10],[70],[114],[32,46],[65,13],[70],[114],[32,46],[65,11],[70],[114],[32,46],[65,12],[70],[114],[33,53],[5],[32,52],[65,4],[70],[4,64],[32,46],[65,32],[70],[32,46],[65,9],[70],[114],[32,46],[65,10],[70],[114],[32,46],[65,13],[70],[114],[32,46],[65,11],[70],[114],[32,46],[65,12],[70],[114],[69],[33,53],[5],[32,52],[65,5],[70],[4,64],[32,46],[65,65],[78],[34,16],[4,127],[32,46],[65,90],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,97],[78],[34,16],[4,127],[32,46],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,17],[33,17],[5],[32,16],[32,17],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,48],[78],[34,16],[4,127],[32,46],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,17],[33,17],[5],[32,16],[32,17],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,95],[70],[65,2],[33,17],[5],[32,16],[32,17],[33,17],[11],[33,53],[5],[32,52],[65,6],[70],[4,64],[32,46],[65,65],[78],[34,16],[4,127],[32,46],[65,90],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,97],[78],[34,16],[4,127],[32,46],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,17],[33,17],[5],[32,16],[32,17],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,48],[78],[34,16],[4,127],[32,46],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,17],[33,17],[5],[32,16],[32,17],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,95],[70],[65,2],[33,17],[5],[32,16],[32,17],[33,17],[11],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[33,53],[11],[11],[11],[11],[11],[11],[32,53],[4,64],[32,23],[65,2],[106],[33,23],[32,24],[65,1],[106],[33,24],[5],[65,1],[33,43],[11],[11],[5],[32,27],[65,5],[70],[4,64],[32,24],[69],[34,16],[69],[4,127],[32,10],[34,16],[4,127],[32,24],[65,0],[74],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[34,16],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,127],[32,2],[32,24],[106],[45,0,3],[65,10],[70],[65,2],[33,17],[5],[32,16],[32,17],[33,17],[11],[32,17],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,23],[65,1],[106],[33,23],[5],[65,1],[33,43],[11],[5],[32,27],[65,6],[70],[4,64],[32,24],[32,14],[70],[34,16],[69],[4,127],[32,10],[34,16],[4,127],[32,24],[32,14],[72],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[34,16],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,127],[32,2],[32,24],[106],[45,0,4],[65,10],[70],[65,2],[33,17],[5],[32,16],[32,17],[33,17],[11],[32,17],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,23],[65,1],[106],[33,23],[5],[65,1],[33,43],[11],[5],[32,27],[65,7],[70],[4,64],[65,0],[33,55],[32,24],[65,0],[74],[4,64],[32,2],[32,24],[106],[45,0,3],[34,56],[65,65],[78],[34,16],[4,127],[32,56],[65,90],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,56],[65,97],[78],[34,16],[4,127],[32,56],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[114],[32,56],[65,48],[78],[34,16],[4,127],[32,56],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[114],[32,56],[65,95],[70],[114],[33,55],[11],[65,0],[33,57],[32,24],[32,14],[72],[4,64],[32,2],[32,24],[106],[45,0,4],[34,58],[65,65],[78],[34,16],[4,127],[32,58],[65,90],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,58],[65,97],[78],[34,16],[4,127],[32,58],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[114],[32,58],[65,48],[78],[34,16],[4,127],[32,58],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[114],[32,58],[65,95],[70],[114],[33,57],[11],[32,55],[32,57],[71],[4,64],[32,23],[65,1],[106],[33,23],[5],[65,1],[33,43],[11],[5],[32,27],[65,8],[70],[4,64],[65,0],[33,55],[32,24],[65,0],[74],[4,64],[32,2],[32,24],[106],[45,0,3],[34,56],[65,65],[78],[34,16],[4,127],[32,56],[65,90],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,56],[65,97],[78],[34,16],[4,127],[32,56],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[114],[32,56],[65,48],[78],[34,16],[4,127],[32,56],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[114],[32,56],[65,95],[70],[114],[33,55],[11],[65,0],[33,57],[32,24],[32,14],[72],[4,64],[32,2],[32,24],[106],[45,0,4],[34,58],[65,65],[78],[34,16],[4,127],[32,58],[65,90],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,58],[65,97],[78],[34,16],[4,127],[32,58],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[114],[32,58],[65,48],[78],[34,16],[4,127],[32,58],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[114],[32,58],[65,95],[70],[114],[33,57],[11],[32,55],[32,57],[70],[4,64],[32,23],[65,1],[106],[33,23],[5],[65,1],[33,43],[11],[5],[32,27],[65,9],[70],[4,64],[32,24],[32,14],[78],[34,16],[69],[4,127],[32,11],[69],[34,16],[4,127],[32,2],[32,24],[106],[45,0,4],[65,10],[70],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,17],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[65,1],[33,43],[5],[32,23],[65,1],[106],[33,23],[32,24],[65,1],[106],[33,24],[11],[5],[32,27],[65,10],[70],[4,64],[32,23],[45,0,1],[33,59],[65,1],[33,60],[32,59],[65,1],[107],[65,2],[108],[33,61],[65,1],[33,62],[32,61],[65,1],[106],[32,21],[40,1,0],[78],[4,64],[32,23],[65,2],[106],[33,23],[5],[32,61],[33,66],[32,21],[33,65],[32,66],[65,5],[108],[32,65],[106],[34,32],[40,0,4],[32,32],[45,0,8],[34,17],[33,64],[33,63],[32,61],[65,1],[106],[33,70],[32,21],[33,69],[32,70],[65,5],[108],[32,69],[106],[34,32],[40,0,4],[32,32],[45,0,8],[34,17],[33,68],[33,67],[32,63],[65,-1],[70],[34,16],[69],[4,127],[32,67],[65,-1],[70],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,23],[65,2],[106],[33,23],[5],[32,67],[32,63],[107],[33,71],[65,1],[33,72],[32,24],[32,71],[106],[32,14],[74],[4,64],[65,1],[33,43],[5],[65,1],[33,73],[65,2],[33,74],[65,0],[33,75],[65,1],[33,76],[3,64],[32,75],[32,71],[72],[4,64],[2,64],[32,2],[32,63],[106],[32,75],[106],[45,0,4],[33,44],[32,2],[32,24],[106],[32,75],[106],[45,0,4],[33,45],[32,9],[4,64],[32,44],[65,97],[78],[34,16],[4,127],[32,44],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,44],[65,32],[107],[33,44],[11],[32,45],[65,97],[78],[34,16],[4,127],[32,45],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,45],[65,32],[107],[33,45],[11],[11],[32,44],[32,45],[71],[4,64],[65,0],[33,73],[65,2],[33,74],[12,2],[26],[11],[11],[32,75],[65,1],[106],[33,75],[12,1],[11],[11],[32,73],[4,64],[32,24],[32,71],[106],[33,24],[32,23],[65,2],[106],[33,23],[5],[65,1],[33,43],[11],[11],[11],[11],[5],[32,27],[65,11],[70],[34,16],[69],[4,127],[32,27],[65,12],[70],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,23],[46,0,1],[33,77],[65,1],[33,78],[32,23],[32,77],[106],[65,3],[106],[33,41],[65,1],[33,42],[32,24],[33,39],[65,1],[33,40],[32,20],[65,72],[32,41],[65,1],[16,builtin('__Porffor_array_fastPushI32')],[26],[32,20],[65,72],[32,39],[65,1],[16,builtin('__Porffor_array_fastPushI32')],[26],[32,20],[65,72],[32,21],[40,1,0],[65,1],[16,builtin('__Porffor_array_fastPushI32')],[26],[32,27],[65,12],[70],[4,64],[32,20],[65,72],[65,-2000],[65,1],[16,builtin('__Porffor_array_fastPushI32')],[26],[5],[32,20],[65,72],[65,-3000],[65,1],[16,builtin('__Porffor_array_fastPushI32')],[26],[11],[32,23],[65,3],[106],[33,23],[5],[32,27],[65,32],[70],[4,64],[32,23],[32,23],[46,0,1],[106],[33,23],[5],[32,27],[65,33],[70],[4,64],[32,23],[46,0,1],[33,79],[65,1],[33,80],[32,23],[46,0,3],[33,81],[65,1],[33,82],[32,20],[65,72],[32,23],[32,81],[106],[65,1],[16,builtin('__Porffor_array_fastPushI32')],[26],[32,20],[65,72],[32,24],[65,1],[16,builtin('__Porffor_array_fastPushI32')],[26],[32,20],[65,72],[32,21],[40,1,0],[65,1],[16,builtin('__Porffor_array_fastPushI32')],[26],[32,23],[32,79],[106],[33,23],[5],[32,27],[65,48],[70],[4,64],[32,23],[45,0,1],[33,59],[65,1],[33,60],[32,59],[65,255],[106],[33,61],[65,1],[33,62],[32,21],[33,84],[32,61],[33,85],[32,84],[32,85],[65,5],[108],[106],[34,83],[32,24],[54,0,4],[32,83],[65,1],[58,0,8],[32,23],[65,2],[106],[33,23],[5],[32,27],[65,49],[70],[4,64],[32,23],[45,0,1],[33,59],[65,1],[33,60],[32,59],[65,1],[107],[65,2],[108],[65,1],[106],[33,61],[65,1],[33,62],[3,64],[32,21],[40,1,0],[32,61],[76],[4,64],[32,21],[65,72],[65,-1],[65,1],[16,builtin('__Porffor_array_fastPushI32')],[26],[12,1],[11],[11],[32,21],[33,86],[32,61],[65,1],[107],[33,87],[32,86],[32,87],[65,5],[108],[106],[34,83],[32,59],[65,255],[106],[33,89],[32,21],[33,88],[32,89],[65,5],[108],[32,88],[106],[34,32],[40,0,4],[32,32],[45,0,8],[33,17],[54,0,4],[32,83],[32,17],[58,0,8],[32,21],[33,90],[32,61],[33,91],[32,90],[32,91],[65,5],[108],[106],[34,83],[32,24],[54,0,4],[32,83],[65,1],[58,0,8],[32,23],[65,2],[106],[33,23],[5],[65,1],[33,43],[11],[11],[11],[11],[11],[11],[11],[11],[11],[11],[11],[11],[11],[11],[32,43],[4,64],[32,20],[40,1,0],[69],[4,64],[12,2],[26],[11],[32,20],[40,1,0],[65,4],[78],[4,64],[32,20],[40,1,0],[65,1],[107],[33,93],[32,20],[33,92],[32,93],[65,5],[108],[32,92],[106],[34,32],[40,0,4],[32,32],[45,0,8],[34,17],[33,29],[34,28],[65,-2000],[70],[34,16],[69],[4,127],[32,28],[65,-3000],[70],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,28],[65,-2000],[70],[33,33],[65,2],[33,34],[32,20],[65,72],[16,builtin('__Porffor_array_fastPopI32')],[33,35],[65,1],[33,36],[32,20],[65,72],[16,builtin('__Porffor_array_fastPopI32')],[33,37],[65,1],[33,38],[32,20],[65,72],[16,builtin('__Porffor_array_fastPopI32')],[33,39],[65,1],[33,40],[32,20],[65,72],[16,builtin('__Porffor_array_fastPopI32')],[33,41],[65,1],[33,42],[32,39],[33,24],[32,21],[32,37],[54,1,0],[32,33],[4,64],[32,41],[33,23],[65,0],[33,43],[5],[65,1],[33,43],[11],[12,4],[26],[11],[11],[32,21],[32,20],[65,72],[16,builtin('__Porffor_array_fastPopI32')],[54,1,0],[32,20],[65,72],[16,builtin('__Porffor_array_fastPopI32')],[33,24],[32,20],[65,72],[16,builtin('__Porffor_array_fastPopI32')],[33,23],[11],[12,1],[11],[11],[32,25],[4,64],[32,4],[4,64],[65,1],[65,2],[15],[26],[11],[32,22],[33,94],[32,12],[34,16],[69],[4,127],[32,13],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,0],[32,26],[59,0,8],[11],[65,4096],[16,builtin('__Porffor_allocateBytes')],[34,95],[183],[65,72],[32,2],[65,1],[32,94],[65,1],[32,26],[65,1],[16,builtin('__ByteString_prototype_substring')],[33,17],[183],[32,17],[16,builtin('__Porffor_array_fastPush')],[252,2],[26],[65,0],[33,75],[65,1],[33,76],[3,64],[32,75],[32,8],[72],[4,64],[2,64],[32,75],[65,2],[108],[33,96],[65,1],[33,97],[32,96],[65,1],[106],[32,21],[40,1,0],[72],[4,64],[32,96],[33,99],[32,21],[33,98],[32,99],[65,5],[108],[32,98],[106],[34,32],[40,0,4],[32,32],[45,0,8],[34,17],[33,64],[33,63],[32,96],[65,1],[106],[33,101],[32,21],[33,100],[32,101],[65,5],[108],[32,100],[106],[34,32],[40,0,4],[32,32],[45,0,8],[34,17],[33,68],[33,67],[32,63],[65,-1],[71],[34,16],[4,127],[32,67],[65,-1],[71],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,95],[183],[65,72],[32,2],[65,1],[32,63],[32,64],[32,67],[32,68],[16,builtin('__ByteString_prototype_substring')],[33,17],[183],[32,17],[16,builtin('__Porffor_array_fastPush')],[252,2],[26],[5],[32,95],[183],[65,72],[65,0],[183],[65,0],[16,builtin('__Porffor_array_fastPush')],[252,2],[26],[11],[5],[32,95],[183],[65,72],[65,0],[183],[65,0],[16,builtin('__Porffor_array_fastPush')],[252,2],[26],[11],[11],[32,75],[65,1],[106],[33,75],[12,1],[11],[11],[32,95],[33,102],...i32ify(makeString(_,\"index\",1)),[33,103],[32,102],[65,72],[32,103],[65,195],[32,94],[183],[65,1],[65,1641275797],[65,1],[16,builtin('__Porffor_object_set_withHash')],[26],[26],[32,95],[33,104],...i32ify(makeString(_,\"input\",1)),[33,105],[32,104],[65,72],[32,105],[65,195],[32,2],[183],[65,195],[65,941935221],[65,1],[16,builtin('__Porffor_object_set_withHash')],[26],[26],[32,95],[65,72],[15],[26],[11],[32,13],[4,64],[32,0],[65,0],[59,0,8],[32,4],[4,64],[65,0],[65,2],[15],[26],[11],[65,0],[65,7],[15],[26],[11],[11],[32,22],[65,1],[106],[33,22],[12,1],[11],[11],[32,12],[34,16],[69],[4,127],[32,13],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11],[32,18],[11],[4,64],[32,0],[65,0],[59,0,8],[11],[32,4],[4,64],[65,0],[65,2],[15],[26],[11],[65,0],[65,7],[15]]"),
|
2822
|
+
wasm:(_,{i32ify,t,allocPage,makeString,builtin})=>eval("[[32,0],[65,10],[106],[33,6],[32,0],[47,0,4],[33,7],[32,0],[47,0,6],[33,8],[32,7],[65,2],[113],[65,0],[71],[33,9],[32,7],[65,4],[113],[65,0],[71],[33,10],[32,7],[65,8],[113],[65,0],[71],[33,11],[32,7],[65,1],[113],[65,0],[71],[33,12],[32,7],[65,32],[113],[65,0],[71],[33,13],[32,2],[40,0,0],[33,14],[65,0],[33,15],[32,12],[34,16],[69],[4,127],[32,13],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,0],[47,0,8],[33,15],[11],[65,allocPage(_,'regexp.ts/__Porffor_regex_interpret/backtrackStack')],[33,20],[65,allocPage(_,'regexp.ts/__Porffor_regex_interpret/captures')],[33,21],[32,15],[33,22],[3,64],[32,22],[32,14],[76],[4,64],[2,64],[32,20],[65,0],[54,1,0],[32,21],[65,0],[54,1,0],[32,6],[33,23],[32,22],[33,24],[65,0],[33,25],[65,-1],[33,26],[3,64],[65,1],[4,64],[32,23],[45,0,0],[34,27],[65,16],[70],[4,64],[32,20],[40,1,0],[65,4],[78],[4,64],[32,20],[40,1,0],[65,1],[107],[33,31],[32,20],[33,30],[32,31],[65,5],[108],[32,30],[106],[34,32],[40,0,4],[32,32],[45,0,8],[34,17],[33,29],[34,28],[65,-2000],[70],[34,16],[69],[4,127],[32,28],[65,-3000],[70],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,28],[65,-2000],[70],[33,33],[65,2],[33,34],[32,20],[65,72],[16,builtin('__Porffor_array_fastPopI32')],[33,35],[65,1],[33,36],[32,20],[65,72],[16,builtin('__Porffor_array_fastPopI32')],[33,37],[65,1],[33,38],[32,20],[65,72],[16,builtin('__Porffor_array_fastPopI32')],[33,39],[65,1],[33,40],[32,20],[65,72],[16,builtin('__Porffor_array_fastPopI32')],[33,41],[65,1],[33,42],[32,39],[33,24],[32,21],[32,37],[54,1,0],[32,33],[4,64],[65,0],[33,25],[12,4],[26],[5],[32,41],[33,23],[12,5],[26],[11],[5],[65,1],[33,25],[32,24],[33,26],[12,3],[26],[11],[5],[65,1],[33,25],[32,24],[33,26],[12,2],[26],[11],[11],[65,0],[33,43],[32,27],[65,1],[70],[4,64],[32,24],[32,14],[78],[4,64],[65,1],[33,43],[5],[32,23],[45,0,1],[33,44],[32,2],[32,24],[106],[45,0,4],[33,45],[32,9],[4,64],[32,44],[65,97],[78],[34,16],[4,127],[32,44],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,44],[65,32],[107],[33,44],[11],[32,45],[65,97],[78],[34,16],[4,127],[32,45],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,45],[65,32],[107],[33,45],[11],[11],[32,44],[32,45],[70],[4,64],[32,23],[65,2],[106],[33,23],[32,24],[65,1],[106],[33,24],[5],[65,1],[33,43],[11],[11],[5],[32,27],[65,2],[70],[34,16],[69],[4,127],[32,27],[65,3],[70],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,24],[32,14],[78],[4,64],[65,1],[33,43],[5],[32,2],[32,24],[106],[45,0,4],[33,46],[32,23],[65,1],[106],[33,47],[65,0],[33,48],[3,64],[65,1],[4,64],[32,47],[45,0,0],[34,28],[65,255],[70],[4,64],[12,1],[26],[11],[32,28],[69],[4,64],[32,47],[45,0,1],[33,49],[32,47],[45,0,2],[33,50],[32,46],[33,51],[32,9],[4,64],[32,49],[65,97],[78],[34,16],[4,127],[32,49],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,49],[65,32],[107],[33,49],[11],[32,50],[65,97],[78],[34,16],[4,127],[32,50],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,50],[65,32],[107],[33,50],[11],[32,51],[65,97],[78],[34,16],[4,127],[32,51],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,51],[65,32],[107],[33,51],[11],[11],[32,51],[32,49],[78],[34,16],[4,127],[32,51],[32,50],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[65,1],[33,48],[12,2],[26],[11],[32,47],[65,3],[106],[33,47],[5],[32,28],[65,1],[70],[4,64],[32,47],[45,0,1],[33,44],[32,46],[33,45],[32,9],[4,64],[32,44],[65,97],[78],[34,16],[4,127],[32,44],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,44],[65,32],[107],[33,44],[11],[32,45],[65,97],[78],[34,16],[4,127],[32,45],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,45],[65,32],[107],[33,45],[11],[11],[32,44],[32,45],[70],[4,64],[65,1],[33,48],[12,3],[26],[11],[32,47],[65,2],[106],[33,47],[5],[32,28],[65,2],[70],[4,64],[32,47],[45,0,1],[33,52],[65,0],[33,53],[32,52],[65,1],[70],[4,64],[32,46],[65,48],[78],[34,16],[4,127],[32,46],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,53],[5],[32,52],[65,2],[70],[4,64],[32,46],[65,48],[78],[34,16],[4,127],[32,46],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[33,53],[5],[32,52],[65,3],[70],[4,64],[32,46],[65,32],[70],[32,46],[65,9],[70],[114],[32,46],[65,10],[70],[114],[32,46],[65,13],[70],[114],[32,46],[65,11],[70],[114],[32,46],[65,12],[70],[114],[33,53],[5],[32,52],[65,4],[70],[4,64],[32,46],[65,32],[70],[32,46],[65,9],[70],[114],[32,46],[65,10],[70],[114],[32,46],[65,13],[70],[114],[32,46],[65,11],[70],[114],[32,46],[65,12],[70],[114],[69],[33,53],[5],[32,52],[65,5],[70],[4,64],[32,46],[65,65],[78],[34,16],[4,127],[32,46],[65,90],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,97],[78],[34,16],[4,127],[32,46],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,17],[33,17],[5],[32,16],[32,17],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,48],[78],[34,16],[4,127],[32,46],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,17],[33,17],[5],[32,16],[32,17],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,95],[70],[65,2],[33,17],[5],[32,16],[32,17],[33,17],[11],[33,53],[5],[32,52],[65,6],[70],[4,64],[32,46],[65,65],[78],[34,16],[4,127],[32,46],[65,90],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,97],[78],[34,16],[4,127],[32,46],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,17],[33,17],[5],[32,16],[32,17],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,48],[78],[34,16],[4,127],[32,46],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,17],[33,17],[5],[32,16],[32,17],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,95],[70],[65,2],[33,17],[5],[32,16],[32,17],[33,17],[11],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[33,53],[11],[11],[11],[11],[11],[11],[32,53],[4,64],[65,1],[33,48],[12,4],[26],[11],[32,47],[65,2],[106],[33,47],[11],[11],[11],[12,1],[11],[11],[32,27],[65,3],[70],[4,64],[32,48],[69],[33,48],[11],[32,48],[4,64],[3,64],[32,47],[45,0,0],[65,255],[71],[4,64],[32,47],[45,0,0],[34,28],[69],[4,64],[32,47],[65,3],[106],[33,47],[5],[32,28],[65,1],[70],[4,64],[32,47],[65,2],[106],[33,47],[5],[32,28],[65,2],[70],[4,64],[32,47],[65,2],[106],[33,47],[11],[11],[11],[12,1],[11],[11],[32,47],[65,1],[106],[33,23],[32,24],[65,1],[106],[33,24],[5],[65,1],[33,43],[11],[11],[5],[32,27],[65,4],[70],[4,64],[32,24],[32,14],[78],[4,64],[65,1],[33,43],[5],[32,23],[45,0,1],[33,52],[32,2],[32,24],[106],[45,0,4],[33,46],[65,0],[33,53],[32,52],[65,1],[70],[4,64],[32,46],[65,48],[78],[34,16],[4,127],[32,46],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,53],[5],[32,52],[65,2],[70],[4,64],[32,46],[65,48],[78],[34,16],[4,127],[32,46],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[33,53],[5],[32,52],[65,3],[70],[4,64],[32,46],[65,32],[70],[32,46],[65,9],[70],[114],[32,46],[65,10],[70],[114],[32,46],[65,13],[70],[114],[32,46],[65,11],[70],[114],[32,46],[65,12],[70],[114],[33,53],[5],[32,52],[65,4],[70],[4,64],[32,46],[65,32],[70],[32,46],[65,9],[70],[114],[32,46],[65,10],[70],[114],[32,46],[65,13],[70],[114],[32,46],[65,11],[70],[114],[32,46],[65,12],[70],[114],[69],[33,53],[5],[32,52],[65,5],[70],[4,64],[32,46],[65,65],[78],[34,16],[4,127],[32,46],[65,90],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,97],[78],[34,16],[4,127],[32,46],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,17],[33,17],[5],[32,16],[32,17],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,48],[78],[34,16],[4,127],[32,46],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,17],[33,17],[5],[32,16],[32,17],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,95],[70],[65,2],[33,17],[5],[32,16],[32,17],[33,17],[11],[33,53],[5],[32,52],[65,6],[70],[4,64],[32,46],[65,65],[78],[34,16],[4,127],[32,46],[65,90],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,97],[78],[34,16],[4,127],[32,46],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,17],[33,17],[5],[32,16],[32,17],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,48],[78],[34,16],[4,127],[32,46],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,17],[33,17],[5],[32,16],[32,17],[33,17],[11],[34,16],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[4,127],[32,46],[65,95],[70],[65,2],[33,17],[5],[32,16],[32,17],[33,17],[11],[33,54],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,54],[40,1,0],[69],[12,1],[11]]),[32,54],[69],[11],[33,53],[11],[11],[11],[11],[11],[11],[32,53],[4,64],[32,23],[65,2],[106],[33,23],[32,24],[65,1],[106],[33,24],[5],[65,1],[33,43],[11],[11],[5],[32,27],[65,5],[70],[4,64],[32,24],[69],[34,16],[69],[4,127],[32,10],[34,16],[4,127],[32,24],[65,0],[74],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[34,16],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,127],[32,2],[32,24],[106],[45,0,3],[65,10],[70],[65,2],[33,17],[5],[32,16],[32,17],[33,17],[11],[32,17],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,23],[65,1],[106],[33,23],[5],[65,1],[33,43],[11],[5],[32,27],[65,6],[70],[4,64],[32,24],[32,14],[70],[34,16],[69],[4,127],[32,10],[34,16],[4,127],[32,24],[32,14],[72],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[34,16],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,127],[32,2],[32,24],[106],[45,0,4],[65,10],[70],[65,2],[33,17],[5],[32,16],[32,17],[33,17],[11],[32,17],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,23],[65,1],[106],[33,23],[5],[65,1],[33,43],[11],[5],[32,27],[65,7],[70],[4,64],[65,0],[33,55],[32,24],[65,0],[74],[4,64],[32,2],[32,24],[106],[45,0,3],[34,56],[65,65],[78],[34,16],[4,127],[32,56],[65,90],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,56],[65,97],[78],[34,16],[4,127],[32,56],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[114],[32,56],[65,48],[78],[34,16],[4,127],[32,56],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[114],[32,56],[65,95],[70],[114],[33,55],[11],[65,0],[33,57],[32,24],[32,14],[72],[4,64],[32,2],[32,24],[106],[45,0,4],[34,58],[65,65],[78],[34,16],[4,127],[32,58],[65,90],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,58],[65,97],[78],[34,16],[4,127],[32,58],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[114],[32,58],[65,48],[78],[34,16],[4,127],[32,58],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[114],[32,58],[65,95],[70],[114],[33,57],[11],[32,55],[32,57],[71],[4,64],[32,23],[65,1],[106],[33,23],[5],[65,1],[33,43],[11],[5],[32,27],[65,8],[70],[4,64],[65,0],[33,55],[32,24],[65,0],[74],[4,64],[32,2],[32,24],[106],[45,0,3],[34,56],[65,65],[78],[34,16],[4,127],[32,56],[65,90],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,56],[65,97],[78],[34,16],[4,127],[32,56],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[114],[32,56],[65,48],[78],[34,16],[4,127],[32,56],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[114],[32,56],[65,95],[70],[114],[33,55],[11],[65,0],[33,57],[32,24],[32,14],[72],[4,64],[32,2],[32,24],[106],[45,0,4],[34,58],[65,65],[78],[34,16],[4,127],[32,58],[65,90],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,58],[65,97],[78],[34,16],[4,127],[32,58],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[114],[32,58],[65,48],[78],[34,16],[4,127],[32,58],[65,57],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[114],[32,58],[65,95],[70],[114],[33,57],[11],[32,55],[32,57],[70],[4,64],[32,23],[65,1],[106],[33,23],[5],[65,1],[33,43],[11],[5],[32,27],[65,9],[70],[4,64],[32,24],[32,14],[78],[34,16],[69],[4,127],[32,11],[69],[34,16],[4,127],[32,2],[32,24],[106],[45,0,4],[65,10],[70],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[32,17],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[65,1],[33,43],[5],[32,23],[65,1],[106],[33,23],[32,24],[65,1],[106],[33,24],[11],[5],[32,27],[65,10],[70],[4,64],[32,23],[45,0,1],[33,59],[65,1],[33,60],[32,59],[65,1],[107],[65,2],[108],[33,61],[65,1],[33,62],[32,61],[65,1],[106],[32,21],[40,1,0],[78],[4,64],[32,23],[65,2],[106],[33,23],[5],[32,61],[33,66],[32,21],[33,65],[32,66],[65,5],[108],[32,65],[106],[34,32],[40,0,4],[32,32],[45,0,8],[34,17],[33,64],[33,63],[32,61],[65,1],[106],[33,70],[32,21],[33,69],[32,70],[65,5],[108],[32,69],[106],[34,32],[40,0,4],[32,32],[45,0,8],[34,17],[33,68],[33,67],[32,63],[65,-1],[70],[34,16],[69],[4,127],[32,67],[65,-1],[70],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,23],[65,2],[106],[33,23],[5],[32,67],[32,63],[107],[33,71],[65,1],[33,72],[32,24],[32,71],[106],[32,14],[74],[4,64],[65,1],[33,43],[5],[65,1],[33,73],[65,2],[33,74],[65,0],[33,75],[65,1],[33,76],[3,64],[32,75],[32,71],[72],[4,64],[2,64],[32,2],[32,63],[106],[32,75],[106],[45,0,4],[33,44],[32,2],[32,24],[106],[32,75],[106],[45,0,4],[33,45],[32,9],[4,64],[32,44],[65,97],[78],[34,16],[4,127],[32,44],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,44],[65,32],[107],[33,44],[11],[32,45],[65,97],[78],[34,16],[4,127],[32,45],[65,122],[76],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,45],[65,32],[107],[33,45],[11],[11],[32,44],[32,45],[71],[4,64],[65,0],[33,73],[65,2],[33,74],[12,2],[26],[11],[11],[32,75],[65,1],[106],[33,75],[12,1],[11],[11],[32,73],[4,64],[32,24],[32,71],[106],[33,24],[32,23],[65,2],[106],[33,23],[5],[65,1],[33,43],[11],[11],[11],[11],[5],[32,27],[65,11],[70],[34,16],[69],[4,127],[32,27],[65,12],[70],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,23],[46,0,1],[33,77],[65,1],[33,78],[32,23],[32,77],[106],[65,3],[106],[33,41],[65,1],[33,42],[32,24],[33,39],[65,1],[33,40],[32,20],[65,72],[32,41],[65,1],[16,builtin('__Porffor_array_fastPushI32')],[26],[32,20],[65,72],[32,39],[65,1],[16,builtin('__Porffor_array_fastPushI32')],[26],[32,20],[65,72],[32,21],[40,1,0],[65,1],[16,builtin('__Porffor_array_fastPushI32')],[26],[32,27],[65,12],[70],[4,64],[32,20],[65,72],[65,-2000],[65,1],[16,builtin('__Porffor_array_fastPushI32')],[26],[5],[32,20],[65,72],[65,-3000],[65,1],[16,builtin('__Porffor_array_fastPushI32')],[26],[11],[32,23],[65,3],[106],[33,23],[5],[32,27],[65,32],[70],[4,64],[32,23],[32,23],[46,0,1],[106],[33,23],[5],[32,27],[65,33],[70],[4,64],[32,23],[46,0,1],[33,79],[65,1],[33,80],[32,23],[46,0,3],[33,81],[65,1],[33,82],[32,20],[65,72],[32,23],[32,81],[106],[65,1],[16,builtin('__Porffor_array_fastPushI32')],[26],[32,20],[65,72],[32,24],[65,1],[16,builtin('__Porffor_array_fastPushI32')],[26],[32,20],[65,72],[32,21],[40,1,0],[65,1],[16,builtin('__Porffor_array_fastPushI32')],[26],[32,23],[32,79],[106],[33,23],[5],[32,27],[65,48],[70],[4,64],[32,23],[45,0,1],[33,59],[65,1],[33,60],[32,59],[65,255],[106],[33,61],[65,1],[33,62],[32,21],[33,84],[32,61],[33,85],[32,84],[32,85],[65,5],[108],[106],[34,83],[32,24],[54,0,4],[32,83],[65,1],[58,0,8],[32,23],[65,2],[106],[33,23],[5],[32,27],[65,49],[70],[4,64],[32,23],[45,0,1],[33,59],[65,1],[33,60],[32,59],[65,1],[107],[65,2],[108],[65,1],[106],[33,61],[65,1],[33,62],[3,64],[32,21],[40,1,0],[32,61],[76],[4,64],[32,21],[65,72],[65,-1],[65,1],[16,builtin('__Porffor_array_fastPushI32')],[26],[12,1],[11],[11],[32,21],[33,86],[32,61],[65,1],[107],[33,87],[32,86],[32,87],[65,5],[108],[106],[34,83],[32,59],[65,255],[106],[33,89],[32,21],[33,88],[32,89],[65,5],[108],[32,88],[106],[34,32],[40,0,4],[32,32],[45,0,8],[33,17],[54,0,4],[32,83],[32,17],[58,0,8],[32,21],[33,90],[32,61],[33,91],[32,90],[32,91],[65,5],[108],[106],[34,83],[32,24],[54,0,4],[32,83],[65,1],[58,0,8],[32,23],[65,2],[106],[33,23],[5],[65,1],[33,43],[11],[11],[11],[11],[11],[11],[11],[11],[11],[11],[11],[11],[11],[11],[32,43],[4,64],[32,20],[40,1,0],[69],[4,64],[12,2],[26],[11],[32,20],[40,1,0],[65,4],[78],[4,64],[32,20],[40,1,0],[65,1],[107],[33,93],[32,20],[33,92],[32,93],[65,5],[108],[32,92],[106],[34,32],[40,0,4],[32,32],[45,0,8],[34,17],[33,29],[34,28],[65,-2000],[70],[34,16],[69],[4,127],[32,28],[65,-3000],[70],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,28],[65,-2000],[70],[33,33],[65,2],[33,34],[32,20],[65,72],[16,builtin('__Porffor_array_fastPopI32')],[33,35],[65,1],[33,36],[32,20],[65,72],[16,builtin('__Porffor_array_fastPopI32')],[33,37],[65,1],[33,38],[32,20],[65,72],[16,builtin('__Porffor_array_fastPopI32')],[33,39],[65,1],[33,40],[32,20],[65,72],[16,builtin('__Porffor_array_fastPopI32')],[33,41],[65,1],[33,42],[32,39],[33,24],[32,21],[32,37],[54,1,0],[32,33],[4,64],[32,41],[33,23],[65,0],[33,43],[5],[65,1],[33,43],[11],[12,4],[26],[11],[11],[32,21],[32,20],[65,72],[16,builtin('__Porffor_array_fastPopI32')],[54,1,0],[32,20],[65,72],[16,builtin('__Porffor_array_fastPopI32')],[33,24],[32,20],[65,72],[16,builtin('__Porffor_array_fastPopI32')],[33,23],[11],[12,1],[11],[11],[32,25],[4,64],[32,4],[4,64],[65,1],[65,2],[15],[26],[11],[32,22],[33,94],[32,12],[34,16],[69],[4,127],[32,13],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,0],[32,26],[59,0,8],[11],[65,4096],[16,builtin('__Porffor_allocateBytes')],[34,95],[183],[65,72],[32,2],[65,1],[32,94],[65,1],[32,26],[65,1],[16,builtin('__ByteString_prototype_substring')],[33,17],[183],[32,17],[16,builtin('__Porffor_array_fastPush')],[252,2],[26],[65,0],[33,75],[65,1],[33,76],[3,64],[32,75],[32,8],[72],[4,64],[2,64],[32,75],[65,2],[108],[33,96],[65,1],[33,97],[32,96],[65,1],[106],[32,21],[40,1,0],[72],[4,64],[32,96],[33,99],[32,21],[33,98],[32,99],[65,5],[108],[32,98],[106],[34,32],[40,0,4],[32,32],[45,0,8],[34,17],[33,64],[33,63],[32,96],[65,1],[106],[33,101],[32,21],[33,100],[32,101],[65,5],[108],[32,100],[106],[34,32],[40,0,4],[32,32],[45,0,8],[34,17],[33,68],[33,67],[32,63],[65,-1],[71],[34,16],[4,127],[32,67],[65,-1],[71],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],...t([67,195],()=>[[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11]]),[32,18],[11],[4,64],[32,95],[183],[65,72],[32,2],[65,1],[32,63],[32,64],[32,67],[32,68],[16,builtin('__ByteString_prototype_substring')],[33,17],[183],[32,17],[16,builtin('__Porffor_array_fastPush')],[252,2],[26],[5],[32,95],[183],[65,72],[65,0],[183],[65,0],[16,builtin('__Porffor_array_fastPush')],[252,2],[26],[11],[5],[32,95],[183],[65,72],[65,0],[183],[65,0],[16,builtin('__Porffor_array_fastPush')],[252,2],[26],[11],[11],[32,75],[65,1],[106],[33,75],[12,1],[11],[11],[32,95],[33,102],...i32ify(makeString(_,\"index\",1)),[33,103],[32,102],[65,72],[32,103],[65,195],[32,94],[183],[65,1],[65,1641275797],[65,1],[16,builtin('__Porffor_object_set_withHash')],[26],[26],[32,95],[33,104],...i32ify(makeString(_,\"input\",1)),[33,105],[32,104],[65,72],[32,105],[65,195],[32,2],[183],[65,195],[65,941935221],[65,1],[16,builtin('__Porffor_object_set_withHash')],[26],[26],[32,95],[65,72],[15],[26],[11],[32,13],[4,64],[32,0],[65,0],[59,0,8],[32,4],[4,64],[65,0],[65,2],[15],[26],[11],[65,0],[65,7],[15],[26],[11],[11],[32,22],[65,1],[106],[33,22],[12,1],[11],[11],[32,12],[34,16],[69],[4,127],[32,13],[65,2],[33,17],[5],[32,16],[65,2],[33,17],[11],[33,18],[32,17],[33,19],[2,127],[32,19],[65,67],[70],[32,19],[65,195],[70],[114],[4,64],[32,18],[40,1,0],[12,1],[11],[32,18],[11],[4,64],[32,0],[65,0],[59,0,8],[11],[32,4],[4,64],[65,0],[65,2],[15],[26],[11],[65,0],[65,7],[15]]"),
|
2823
2823
|
params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],jsLength:3,
|
2824
2824
|
locals:[127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127],localNames:["regexp","regexp#type","input","input#type","isTest","isTest#type","bcBase","flags","totalCaptures","ignoreCase","multiline","dotAll","global","sticky","inputLen","lastIndex","logictmp","#last_type","#logicinner_tmp_int","#typeswitch_tmp1","backtrackStack","captures","i","pc","sp","matched","finalSp","op","marker","marker#type","#member_obj_364","#member_prop_364","#loadArray_offset","isNegative","isNegative#type","savedMarker","savedMarker#type","savedCapturesLen","savedCapturesLen#type","savedSp","savedSp#type","lookaheadEndPc","lookaheadEndPc#type","backtrack","c1","c2","char","classPc","charInClass","from","to","cCheck","classId","isMatch","#logicinner_tmp","prevIsWord","prevChar","nextIsWord","nextChar","capIndex","capIndex#type","arrIndex","arrIndex#type","capStart","capStart#type","#member_obj_365","#member_prop_365","capEnd","capEnd#type","#member_obj_366","#member_prop_366","capLen","capLen#type","matches","matches#type","k","k#type","jumpOffset","jumpOffset#type","branch1Offset","branch1Offset#type","branch2Offset","branch2Offset#type","#member_setter_ptr_tmp","#member_obj_367","#member_prop_367","#member_obj_368","#member_prop_368","#member_obj_369","#member_prop_369","#member_obj_370","#member_prop_370","#member_obj_371","#member_prop_371","matchStart","result","arrIdx","arrIdx#type","#member_obj_372","#member_prop_372","#member_obj_373","#member_prop_373","#member_obj_374","#member_prop_374","#member_obj_375","#member_prop_375"]
|
2825
2825
|
}
|
@@ -2900,14 +2900,36 @@ wasm:(_,{builtin})=>eval("[[32,3],[65,195],[71],[4,64],[32,2],[183],[32,3],[16,b
|
|
2900
2900
|
params:[127,127,127,127],typedParams:1,returns:[127,127],jsLength:1,
|
2901
2901
|
locals:[127],localNames:["_this","_this#type","input","input#type","#last_type"]
|
2902
2902
|
}
|
2903
|
+
x.__Porffor_regex_match={
|
2904
|
+
wasm:(_,{t,builtin})=>eval("[[32,1],[65,9],[71],[4,64],[65,25],[65,6],[65,0],[65,7],[32,0],[32,1],[65,0],[65,0],[16,builtin('RegExp')],[33,0],[65,9],[33,1],[11],[32,3],[65,195],[71],[4,64],[32,2],[183],[32,3],[16,builtin('__ecma262_ToString')],[33,4],[252,2],[33,2],[32,4],[33,3],[11],[32,0],[32,1],[16,builtin('__RegExp_prototype_global$get')],[33,4],[33,5],[32,4],[33,6],[2,127],...t([67,195],()=>[[32,6],[65,67],[70],[32,6],[65,195],[70],[114],[4,64],[32,5],[40,1,0],[12,1],[11]]),[32,5],[11],[4,64],[65,4096],[16,builtin('__Porffor_allocateBytes')],[33,7],[3,64],[32,0],[32,1],[32,2],[32,3],[65,0],[65,2],[16,builtin('__Porffor_regex_interpret')],[34,4],[33,9],[34,8],[4,64],[32,7],[184],[32,8],[32,8],[43,0,4],[32,8],[45,0,12],[16,builtin('__Porffor_array_fastPush')],[12,1],[11],[11],[32,7],[65,72],[15],[26],[11],[32,0],[32,1],[32,2],[32,3],[65,0],[65,2],[16,builtin('__Porffor_regex_interpret')],[34,4],[15]]"),
|
2905
|
+
params:[127,127,127,127],typedParams:1,returns:[127,127],jsLength:2,
|
2906
|
+
locals:[127,127,127,127,127,127],localNames:["regexp","regexp#type","input","input#type","#last_type","#logicinner_tmp_int","#typeswitch_tmp1","result","match","match#type"]
|
2907
|
+
}
|
2908
|
+
x.__Porffor_regex_matchAll={
|
2909
|
+
wasm:(_,{t,builtin,internalThrow})=>eval("[[32,1],[65,9],[71],[4,64],[65,25],[65,6],[65,0],[65,7],[32,0],[32,1],[65,0],[65,0],[16,builtin('RegExp')],[33,0],[65,9],[33,1],[11],[32,3],[65,195],[71],[4,64],[32,2],[183],[32,3],[16,builtin('__ecma262_ToString')],[33,4],[252,2],[33,2],[32,4],[33,3],[11],[32,0],[32,1],[16,builtin('__RegExp_prototype_global$get')],[33,4],[33,5],[32,4],[33,6],[2,127],...t([67,195],()=>[[32,6],[65,67],[70],[32,6],[65,195],[70],[114],[4,64],[32,5],[40,1,0],[69],[12,1],[11]]),[32,5],[69],[11],[4,64],...internalThrow(_,'TypeError',`matchAll used with non-global RegExp`),[26],[11],[65,4096],[16,builtin('__Porffor_allocateBytes')],[33,7],[3,64],[32,0],[32,1],[32,2],[32,3],[65,0],[65,2],[16,builtin('__Porffor_regex_interpret')],[34,4],[33,9],[34,8],[4,64],[32,7],[183],[65,72],[32,8],[183],[32,9],[16,builtin('__Porffor_array_fastPush')],[252,2],[26],[12,1],[11],[11],[32,7],[65,72],[15]]"),
|
2910
|
+
params:[127,127,127,127],typedParams:1,returns:[127,127],jsLength:2,
|
2911
|
+
locals:[127,127,127,127,127,127],localNames:["regexp","regexp#type","input","input#type","#last_type","#logicinner_tmp","#typeswitch_tmp1","result","match","match#type"],
|
2912
|
+
usesTag:1
|
2913
|
+
}
|
2903
2914
|
x.__String_prototype_match={
|
2904
|
-
wasm:(_,{builtin,internalThrow})=>eval("[[32,1],[65,67],[71],[4,64],[32,1],[69],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.match expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,
|
2915
|
+
wasm:(_,{builtin,internalThrow})=>eval("[[32,1],[65,67],[71],[4,64],[32,1],[69],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.match expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,2],[32,3],[32,0],[65,67],[16,builtin('__Porffor_regex_match')],[34,4],[15]]"),
|
2905
2916
|
params:[127,127,127,127],typedParams:1,returns:[127,127],jsLength:1,
|
2906
2917
|
locals:[127],localNames:["_this","_this#type","regexp","regexp#type","#last_type"],
|
2907
2918
|
usesTag:1
|
2908
2919
|
}
|
2909
2920
|
x.__ByteString_prototype_match={
|
2910
|
-
wasm:(_,{builtin})=>eval("[[32,
|
2921
|
+
wasm:(_,{builtin})=>eval("[[32,2],[32,3],[32,0],[65,195],[16,builtin('__Porffor_regex_match')],[34,4],[15]]"),
|
2922
|
+
params:[127,127,127,127],typedParams:1,returns:[127,127],jsLength:1,
|
2923
|
+
locals:[127],localNames:["_this","_this#type","regexp","regexp#type","#last_type"]
|
2924
|
+
}
|
2925
|
+
x.__String_prototype_matchAll={
|
2926
|
+
wasm:(_,{builtin,internalThrow})=>eval("[[32,1],[65,67],[71],[4,64],[32,1],[69],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.matchAll expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,2],[32,3],[32,0],[65,67],[16,builtin('__Porffor_regex_matchAll')],[34,4],[15]]"),
|
2927
|
+
params:[127,127,127,127],typedParams:1,returns:[127,127],jsLength:1,
|
2928
|
+
locals:[127],localNames:["_this","_this#type","regexp","regexp#type","#last_type"],
|
2929
|
+
usesTag:1
|
2930
|
+
}
|
2931
|
+
x.__ByteString_prototype_matchAll={
|
2932
|
+
wasm:(_,{builtin})=>eval("[[32,2],[32,3],[32,0],[65,195],[16,builtin('__Porffor_regex_matchAll')],[34,4],[15]]"),
|
2911
2933
|
params:[127,127,127,127],typedParams:1,returns:[127,127],jsLength:1,
|
2912
2934
|
locals:[127],localNames:["_this","_this#type","regexp","regexp#type","#last_type"]
|
2913
2935
|
}
|
package/compiler/precompile.js
CHANGED
@@ -245,7 +245,7 @@ ${funcs.map(x => {
|
|
245
245
|
if (Number.isNaN(v) || v === Infinity || v === -Infinity) return v.toString();
|
246
246
|
return v;
|
247
247
|
})
|
248
|
-
.replace(/\["alloc","(.*?)",(.*?)\]/g, (_, reason, valtype) => `[${valtype === Valtype.i32 ? Opcodes.i32_const : Opcodes.f64_const},allocPage(_,'${reason}')]`)
|
248
|
+
.replace(/\["alloc","(.*?)",(.*?)\]/g, (_, reason, valtype) => `[${+valtype === Valtype.i32 ? Opcodes.i32_const : Opcodes.f64_const},allocPage(_,'${reason}')]`)
|
249
249
|
.replace(/\["global",(.*?),"(.*?)",(.*?)\]/g, (_, opcode, name, valtype) => `...glbl(${opcode},'${name}',${valtype})`)
|
250
250
|
.replace(/\"local","(.*?)",(.*?)\]/g, (_, name, valtype) => `loc('${name}',${valtype})]`)
|
251
251
|
.replace(/\[16,"(.*?)"]/g, (_, name) => `[16,builtin('${name}')]`)
|
package/foo.js
CHANGED
@@ -1,40 +1 @@
|
|
1
|
-
|
2
|
-
// // Object.defineProperty(Function.prototype, "prop", {
|
3
|
-
// // value: 1001,
|
4
|
-
// // writable: false,
|
5
|
-
// // enumerable: false,
|
6
|
-
// // configurable: true
|
7
|
-
// // });
|
8
|
-
// var funObj = function() {};
|
9
|
-
// // console.log(Function.prototype.hasOwnProperty);
|
10
|
-
// // console.log(Function.prototype.hasOwnProperty === Object.prototype.hasOwnProperty);
|
11
|
-
// // console.log(Object.getPrototypeOf(funObj) === Function.prototype);
|
12
|
-
// // console.log(Object.getPrototypeOf(Object.getPrototypeOf(funObj)) === Object.prototype);
|
13
|
-
// console.log(funObj.hasOwnProperty);
|
14
|
-
|
15
|
-
// // console.log(funObj.hasOwnProperty("prop"), false, 'funObj.hasOwnProperty("prop")');
|
16
|
-
|
17
|
-
var FACTORY = function() {
|
18
|
-
this.aproperty = 1;
|
19
|
-
};
|
20
|
-
|
21
|
-
var instance = new FACTORY;
|
22
|
-
|
23
|
-
console.log(instance.__proto__ == FACTORY.prototype);
|
24
|
-
console.log(instance.__proto__.__proto__ == Object.prototype);
|
25
|
-
console.log(instance.hasOwnProperty);
|
26
|
-
console.log(instance.__proto__.hasOwnProperty);
|
27
|
-
console.log(instance.__proto__.__proto__.hasOwnProperty);
|
28
|
-
console.log()
|
29
|
-
|
30
|
-
console.log(
|
31
|
-
typeof Object.prototype.hasOwnProperty,
|
32
|
-
"function",
|
33
|
-
'The value of `typeof Object.prototype.hasOwnProperty` is expected to be "function"'
|
34
|
-
);
|
35
|
-
|
36
|
-
console.log(
|
37
|
-
typeof instance.hasOwnProperty,
|
38
|
-
"function",
|
39
|
-
'The value of `typeof instance.hasOwnProperty` is expected to be "function"'
|
40
|
-
);
|
1
|
+
console.log([...'abc azc anc'.matchAll(/a[a-z]c/g)]);
|
package/package.json
CHANGED