summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bin/wasm.js53891
-rwxr-xr-xbuild.sh2
-rw-r--r--src/wasm-js.cpp6
3 files changed, 27028 insertions, 26871 deletions
diff --git a/bin/wasm.js b/bin/wasm.js
index c3a8e598d..7a38ea3ba 100644
--- a/bin/wasm.js
+++ b/bin/wasm.js
@@ -32,15 +32,13 @@ if (Module["ENVIRONMENT"]) {
ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER;
}
if (ENVIRONMENT_IS_NODE) {
- if (!Module["print"]) Module["print"] = function print(x) {
- process["stdout"].write(x + "\n");
- };
- if (!Module["printErr"]) Module["printErr"] = function printErr(x) {
- process["stderr"].write(x + "\n");
- };
- var nodeFS = require("fs");
- var nodePath = require("path");
+ if (!Module["print"]) Module["print"] = console.log;
+ if (!Module["printErr"]) Module["printErr"] = console.warn;
+ var nodeFS;
+ var nodePath;
Module["read"] = function read(filename, binary) {
+ if (!nodeFS) nodeFS = require("fs");
+ if (!nodePath) nodePath = require("path");
filename = nodePath["normalize"](filename);
var ret = nodeFS["readFileSync"](filename);
if (!ret && filename != nodePath["resolve"](filename)) {
@@ -110,6 +108,20 @@ if (ENVIRONMENT_IS_NODE) {
xhr.send(null);
return xhr.responseText;
};
+ Module["readAsync"] = function readAsync(url, onload, onerror) {
+ var xhr = new XMLHttpRequest;
+ xhr.open("GET", url, true);
+ xhr.responseType = "arraybuffer";
+ xhr.onload = function xhr_onload() {
+ if (xhr.status == 200 || xhr.status == 0 && xhr.response) {
+ onload(xhr.response);
+ } else {
+ onerror();
+ }
+ };
+ xhr.onerror = onerror;
+ xhr.send(null);
+ };
if (typeof arguments != "undefined") {
Module["arguments"] = arguments;
}
@@ -118,7 +130,7 @@ if (ENVIRONMENT_IS_NODE) {
console.log(x);
};
if (!Module["printErr"]) Module["printErr"] = function printErr(x) {
- console.log(x);
+ console.warn(x);
};
} else {
var TRY_USE_DUMP = false;
@@ -320,7 +332,6 @@ function assert(condition, text) {
abort("Assertion failed: " + text);
}
}
-var globalScope = this;
function getCFunc(ident) {
var func = Module["_" + ident];
if (!func) {
@@ -733,85 +744,6 @@ function lengthBytesUTF8(str) {
return len;
}
Module["lengthBytesUTF8"] = lengthBytesUTF8;
-function UTF16ToString(ptr) {
- var i = 0;
- var str = "";
- while (1) {
- var codeUnit = HEAP16[ptr + i * 2 >> 1];
- if (codeUnit == 0) return str;
- ++i;
- str += String.fromCharCode(codeUnit);
- }
-}
-Module["UTF16ToString"] = UTF16ToString;
-function stringToUTF16(str, outPtr, maxBytesToWrite) {
- if (maxBytesToWrite === undefined) {
- maxBytesToWrite = 2147483647;
- }
- if (maxBytesToWrite < 2) return 0;
- maxBytesToWrite -= 2;
- var startPtr = outPtr;
- var numCharsToWrite = maxBytesToWrite < str.length * 2 ? maxBytesToWrite / 2 : str.length;
- for (var i = 0; i < numCharsToWrite; ++i) {
- var codeUnit = str.charCodeAt(i);
- HEAP16[outPtr >> 1] = codeUnit;
- outPtr += 2;
- }
- HEAP16[outPtr >> 1] = 0;
- return outPtr - startPtr;
-}
-Module["stringToUTF16"] = stringToUTF16;
-function lengthBytesUTF16(str) {
- return str.length * 2;
-}
-Module["lengthBytesUTF16"] = lengthBytesUTF16;
-function UTF32ToString(ptr) {
- var i = 0;
- var str = "";
- while (1) {
- var utf32 = HEAP32[ptr + i * 4 >> 2];
- if (utf32 == 0) return str;
- ++i;
- if (utf32 >= 65536) {
- var ch = utf32 - 65536;
- str += String.fromCharCode(55296 | ch >> 10, 56320 | ch & 1023);
- } else {
- str += String.fromCharCode(utf32);
- }
- }
-}
-Module["UTF32ToString"] = UTF32ToString;
-function stringToUTF32(str, outPtr, maxBytesToWrite) {
- if (maxBytesToWrite === undefined) {
- maxBytesToWrite = 2147483647;
- }
- if (maxBytesToWrite < 4) return 0;
- var startPtr = outPtr;
- var endPtr = startPtr + maxBytesToWrite - 4;
- for (var i = 0; i < str.length; ++i) {
- var codeUnit = str.charCodeAt(i);
- if (codeUnit >= 55296 && codeUnit <= 57343) {
- var trailSurrogate = str.charCodeAt(++i);
- codeUnit = 65536 + ((codeUnit & 1023) << 10) | trailSurrogate & 1023;
- }
- HEAP32[outPtr >> 2] = codeUnit;
- outPtr += 4;
- if (outPtr + 4 > endPtr) break;
- }
- HEAP32[outPtr >> 2] = 0;
- return outPtr - startPtr;
-}
-Module["stringToUTF32"] = stringToUTF32;
-function lengthBytesUTF32(str) {
- var len = 0;
- for (var i = 0; i < str.length; ++i) {
- var codeUnit = str.charCodeAt(i);
- if (codeUnit >= 55296 && codeUnit <= 57343) ++i;
- len += 4;
- }
- return len;
-}
-Module["lengthBytesUTF32"] = lengthBytesUTF32;
function demangle(func) {
var hasLibcxxabi = !!Module["___cxa_demangle"];
if (hasLibcxxabi) {
@@ -823,173 +755,16 @@ function demangle(func) {
if (getValue(status, "i32") === 0 && ret) {
return Pointer_stringify(ret);
}
- } catch (e) {} finally {
+ } catch (e) {
+ return func;
+ } finally {
if (buf) _free(buf);
if (status) _free(status);
if (ret) _free(ret);
}
}
- var i = 3;
- var basicTypes = {
- "v": "void",
- "b": "bool",
- "c": "char",
- "s": "short",
- "i": "int",
- "l": "long",
- "f": "float",
- "d": "double",
- "w": "wchar_t",
- "a": "signed char",
- "h": "unsigned char",
- "t": "unsigned short",
- "j": "unsigned int",
- "m": "unsigned long",
- "x": "long long",
- "y": "unsigned long long",
- "z": "..."
- };
- var subs = [];
- var first = true;
- function dump(x) {
- if (x) Module.print(x);
- Module.print(func);
- var pre = "";
- for (var a = 0; a < i; a++) pre += " ";
- Module.print(pre + "^");
- }
- function parseNested() {
- i++;
- if (func[i] === "K") i++;
- var parts = [];
- while (func[i] !== "E") {
- if (func[i] === "S") {
- i++;
- var next = func.indexOf("_", i);
- var num = func.substring(i, next) || 0;
- parts.push(subs[num] || "?");
- i = next + 1;
- continue;
- }
- if (func[i] === "C") {
- parts.push(parts[parts.length - 1]);
- i += 2;
- continue;
- }
- var size = parseInt(func.substr(i));
- var pre = size.toString().length;
- if (!size || !pre) {
- i--;
- break;
- }
- var curr = func.substr(i + pre, size);
- parts.push(curr);
- subs.push(curr);
- i += pre + size;
- }
- i++;
- return parts;
- }
- function parse(rawList, limit, allowVoid) {
- limit = limit || Infinity;
- var ret = "", list = [];
- function flushList() {
- return "(" + list.join(", ") + ")";
- }
- var name;
- if (func[i] === "N") {
- name = parseNested().join("::");
- limit--;
- if (limit === 0) return rawList ? [ name ] : name;
- } else {
- if (func[i] === "K" || first && func[i] === "L") i++;
- var size = parseInt(func.substr(i));
- if (size) {
- var pre = size.toString().length;
- name = func.substr(i + pre, size);
- i += pre + size;
- }
- }
- first = false;
- if (func[i] === "I") {
- i++;
- var iList = parse(true);
- var iRet = parse(true, 1, true);
- ret += iRet[0] + " " + name + "<" + iList.join(", ") + ">";
- } else {
- ret = name;
- }
- paramLoop : while (i < func.length && limit-- > 0) {
- var c = func[i++];
- if (c in basicTypes) {
- list.push(basicTypes[c]);
- } else {
- switch (c) {
- case "P":
- list.push(parse(true, 1, true)[0] + "*");
- break;
- case "R":
- list.push(parse(true, 1, true)[0] + "&");
- break;
- case "L":
- {
- i++;
- var end = func.indexOf("E", i);
- var size = end - i;
- list.push(func.substr(i, size));
- i += size + 2;
- break;
- }
- case "A":
- {
- var size = parseInt(func.substr(i));
- i += size.toString().length;
- if (func[i] !== "_") throw "?";
- i++;
- list.push(parse(true, 1, true)[0] + " [" + size + "]");
- break;
- }
- case "E":
- break paramLoop;
- default:
- ret += "?" + c;
- break paramLoop;
- }
- }
- }
- if (!allowVoid && list.length === 1 && list[0] === "void") list = [];
- if (rawList) {
- if (ret) {
- list.push(ret + "?");
- }
- return list;
- } else {
- return ret + flushList();
- }
- }
- var parsed = func;
- try {
- if (func == "Object._main" || func == "_main") {
- return "main()";
- }
- if (typeof func === "number") func = Pointer_stringify(func);
- if (func[0] !== "_") return func;
- if (func[1] !== "_") return func;
- if (func[2] !== "Z") return func;
- switch (func[3]) {
- case "n":
- return "operator new()";
- case "d":
- return "operator delete()";
- }
- parsed = parse();
- } catch (e) {
- parsed += "?";
- }
- if (parsed.indexOf("?") >= 0 && !hasLibcxxabi) {
- Runtime.warnOnce("warning: a problem occurred in builtin C++ name demangling; build with -s DEMANGLE_SUPPORT=1 to link in libcxxabi demangling");
- }
- return parsed;
+ Runtime.warnOnce("warning: build with -s DEMANGLE_SUPPORT=1 to link in libcxxabi demangling");
+ return func;
}
function demangleAll(text) {
return text.replace(/__Z[\w\d_]+/g, (function(x) {
@@ -1060,7 +835,6 @@ if (!Module["reallocBuffer"]) Module["reallocBuffer"] = (function(size) {
return ret;
});
function enlargeMemory() {
- var OLD_TOTAL_MEMORY = TOTAL_MEMORY;
var LIMIT = Math.pow(2, 31);
if (DYNAMICTOP >= LIMIT) return false;
while (TOTAL_MEMORY <= DYNAMICTOP) {
@@ -1242,22 +1016,6 @@ function writeAsciiToMemory(str, buffer, dontAddNull) {
if (!dontAddNull) HEAP8[buffer >> 0] = 0;
}
Module["writeAsciiToMemory"] = writeAsciiToMemory;
-function unSign(value, bits, ignore) {
- if (value >= 0) {
- return value;
- }
- return bits <= 32 ? 2 * Math.abs(1 << bits - 1) + value : Math.pow(2, bits) + value;
-}
-function reSign(value, bits, ignore) {
- if (value <= 0) {
- return value;
- }
- var half = bits <= 32 ? Math.abs(1 << bits - 1) : Math.pow(2, bits - 1);
- if (value >= half && (bits <= 32 || value > half)) {
- value = -2 * half + value;
- }
- return value;
-}
if (!Math["imul"] || Math["imul"](4294967295, 5) !== -5) Math["imul"] = function imul(a, b) {
var ah = a >>> 16;
var al = a & 65535;
@@ -1325,7 +1083,6 @@ function removeRunDependency(id) {
Module["removeRunDependency"] = removeRunDependency;
Module["preloadedImages"] = {};
Module["preloadedAudios"] = {};
-var memoryInitializer = null;
var ASM_CONSTS = [ (function() {
{
return Module["providedTotalMemory"];
@@ -1496,7 +1253,7 @@ function _emscripten_asm_const_id(code, a0) {
return ASM_CONSTS[code](a0);
}
STATIC_BASE = 8;
-STATICTOP = STATIC_BASE + 44992;
+STATICTOP = STATIC_BASE + 46464;
__ATINIT__.push({
func: (function() {
__GLOBAL__I_000101();
@@ -1519,6 +1276,10 @@ __ATINIT__.push({
})
}, {
func: (function() {
+ __GLOBAL__sub_I_PostEmscripten_cpp();
+ })
+}, {
+ func: (function() {
__GLOBAL__sub_I_SimplifyLocals_cpp();
})
}, {
@@ -1538,28 +1299,12 @@ __ATINIT__.push({
__GLOBAL__sub_I_iostream_cpp();
})
});
-allocate([ 212, 42, 0, 0, 186, 58, 0, 0, 252, 42, 0, 0, 105, 58, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 28, 58, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 226, 57, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 88, 60, 0, 0, 252, 42, 0, 0, 223, 59, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 106, 59, 0, 0, 72, 0, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 8, 59, 0, 0, 88, 0, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 206, 60, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 20, 61, 0, 0, 64, 4, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 55, 63, 0, 0, 24, 9, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 126, 64, 0, 0, 252, 42, 0, 0, 30, 64, 0, 0, 168, 0, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 8, 69, 0, 0, 252, 42, 0, 0, 227, 68, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 86, 76, 0, 0, 252, 42, 0, 0, 217, 75, 0, 0, 216, 0, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 220, 80, 0, 0, 252, 42, 0, 0, 88, 80, 0, 0, 240, 0, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 160, 84, 0, 0, 212, 42, 0, 0, 98, 85, 0, 0, 252, 42, 0, 0, 221, 84, 0, 0, 16, 1, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 185, 85, 0, 0, 252, 42, 0, 0, 246, 85, 0, 0, 16, 1, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 123, 86, 0, 0, 212, 42, 0, 0, 170, 91, 0, 0, 252, 42, 0, 0, 93, 91, 0, 0, 72, 1, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 244, 91, 0, 0, 252, 42, 0, 0, 132, 92, 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 251, 92, 0, 0, 252, 42, 0, 0, 41, 93, 0, 0, 144, 1, 0, 0, 0, 0, 0, 0, 60, 43, 0, 0, 62, 93, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 176, 1, 0, 0, 2, 0, 0, 0, 184, 1, 0, 0, 2, 4, 0, 0, 212, 42, 0, 0, 120, 93, 0, 0, 252, 42, 0, 0, 133, 93, 0, 0, 200, 1, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 173, 93, 0, 0, 216, 1, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 217, 93, 0, 0, 252, 42, 0, 0, 2, 94, 0, 0, 240, 1, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 61, 94, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 143, 94, 0, 0, 212, 42, 0, 0, 222, 94, 0, 0, 252, 42, 0, 0, 97, 95, 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 220, 95, 0, 0, 48, 2, 0, 0, 0, 0, 0, 0, 60, 43, 0, 0, 245, 95, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 176, 1, 0, 0, 2, 0, 0, 0, 80, 2, 0, 0, 2, 4, 0, 0, 252, 42, 0, 0, 51, 96, 0, 0, 96, 2, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 95, 96, 0, 0, 112, 2, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 143, 96, 0, 0, 252, 42, 0, 0, 188, 96, 0, 0, 136, 2, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 251, 96, 0, 0, 152, 2, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 81, 97, 0, 0, 212, 42, 0, 0, 184, 97, 0, 0, 252, 42, 0, 0, 64, 98, 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 189, 98, 0, 0, 200, 2, 0, 0, 0, 0, 0, 0, 60, 43, 0, 0, 216, 98, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 176, 1, 0, 0, 2, 0, 0, 0, 232, 2, 0, 0, 2, 4, 0, 0, 252, 42, 0, 0, 24, 99, 0, 0, 248, 2, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 70, 99, 0, 0, 8, 3, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 120, 99, 0, 0, 252, 42, 0, 0, 167, 99, 0, 0, 32, 3, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 232, 99, 0, 0, 48, 3, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 64, 100, 0, 0, 212, 42, 0, 0, 149, 100, 0, 0, 252, 42, 0, 0, 14, 101, 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 136, 101, 0, 0, 96, 3, 0, 0, 0, 0, 0, 0, 60, 43, 0, 0, 160, 101, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 176, 1, 0, 0, 2, 0, 0, 0, 128, 3, 0, 0, 2, 4, 0, 0, 252, 42, 0, 0, 221, 101, 0, 0, 144, 3, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 8, 102, 0, 0, 160, 3, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 55, 102, 0, 0, 252, 42, 0, 0, 129, 102, 0, 0, 184, 3, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 191, 102, 0, 0, 200, 3, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 20, 103, 0, 0, 212, 42, 0, 0, 113, 103, 0, 0, 252, 42, 0, 0, 86, 118, 0, 0, 64, 4, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 148, 118, 0, 0, 64, 4, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 173, 118, 0, 0, 72, 4, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 197, 118, 0, 0, 72, 4, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 130, 119, 0, 0, 40, 4, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 172, 119, 0, 0, 252, 42, 0, 0, 190, 119, 0, 0, 40, 4, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 232, 119, 0, 0, 212, 42, 0, 0, 25, 120, 0, 0, 60, 43, 0, 0, 74, 120, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 24, 4, 0, 0, 3, 244, 255, 255, 60, 43, 0, 0, 121, 120, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 48, 4, 0, 0, 3, 244, 255, 255, 60, 43, 0, 0, 168, 120, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 24, 4, 0, 0, 3, 244, 255, 255, 60, 43, 0, 0, 215, 120, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 48, 4, 0, 0, 3, 244, 255, 255, 252, 42, 0, 0, 6, 121, 0, 0, 192, 4, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 26, 121, 0, 0, 16, 9, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 48, 121, 0, 0, 192, 4, 0, 0, 0, 0, 0, 0, 60, 43, 0, 0, 68, 121, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 60, 43, 0, 0, 136, 121, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 24, 5, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 158, 121, 0, 0, 60, 43, 0, 0, 221, 121, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 64, 5, 0, 0, 0, 0, 0, 0, 60, 43, 0, 0, 33, 122, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 24, 5, 0, 0, 0, 0, 0, 0, 60, 43, 0, 0, 55, 122, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 120, 5, 0, 0, 0, 0, 0, 0, 60, 43, 0, 0, 123, 122, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 144, 5, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 145, 122, 0, 0, 60, 43, 0, 0, 184, 122, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 184, 5, 0, 0, 0, 0, 0, 0, 60, 43, 0, 0, 252, 122, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 144, 5, 0, 0, 0, 0, 0, 0, 60, 43, 0, 0, 18, 123, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 248, 5, 0, 0, 2, 0, 0, 0, 0, 6, 0, 0, 0, 8, 0, 0, 212, 42, 0, 0, 87, 123, 0, 0, 212, 42, 0, 0, 106, 123, 0, 0, 60, 43, 0, 0, 204, 124, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 248, 5, 0, 0, 2, 0, 0, 0, 48, 6, 0, 0, 0, 8, 0, 0, 212, 42, 0, 0, 17, 125, 0, 0, 60, 43, 0, 0, 51, 125, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 88, 6, 0, 0, 0, 8, 0, 0, 212, 42, 0, 0, 120, 125, 0, 0, 60, 43, 0, 0, 141, 125, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 88, 6, 0, 0, 0, 8, 0, 0, 60, 43, 0, 0, 210, 125, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 160, 6, 0, 0, 2, 0, 0, 0, 212, 42, 0, 0, 238, 125, 0, 0, 60, 43, 0, 0, 3, 126, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 160, 6, 0, 0, 2, 0, 0, 0, 60, 43, 0, 0, 31, 126, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 160, 6, 0, 0, 2, 0, 0, 0, 60, 43, 0, 0, 59, 126, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 160, 6, 0, 0, 2, 0, 0, 0, 60, 43, 0, 0, 87, 126, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 40, 7, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 157, 126, 0, 0, 60, 43, 0, 0, 197, 126, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 80, 7, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 11, 127, 0, 0, 60, 43, 0, 0, 47, 127, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 120, 7, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 117, 127, 0, 0, 60, 43, 0, 0, 148, 127, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 160, 7, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 218, 127, 0, 0, 60, 43, 0, 0, 243, 127, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 200, 7, 0, 0, 2, 0, 0, 0, 212, 42, 0, 0, 8, 128, 0, 0, 60, 43, 0, 0, 32, 128, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 200, 7, 0, 0, 2, 0, 0, 0, 252, 42, 0, 0, 53, 128, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 60, 43, 0, 0, 87, 128, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 32, 8, 0, 0, 2, 0, 0, 0, 212, 42, 0, 0, 122, 128, 0, 0, 252, 42, 0, 0, 145, 128, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 60, 43, 0, 0, 180, 128, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 32, 8, 0, 0, 2, 0, 0, 0, 60, 43, 0, 0, 214, 128, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 32, 8, 0, 0, 2, 0, 0, 0, 60, 43, 0, 0, 248, 128, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 32, 8, 0, 0, 2, 0, 0, 0, 252, 42, 0, 0, 27, 129, 0, 0, 192, 4, 0, 0, 0, 0, 0, 0, 60, 43, 0, 0, 49, 129, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 200, 8, 0, 0, 2, 0, 0, 0, 212, 42, 0, 0, 67, 129, 0, 0, 60, 43, 0, 0, 88, 129, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 2, 0, 0, 0, 200, 8, 0, 0, 2, 0, 0, 0, 252, 42, 0, 0, 106, 129, 0, 0, 192, 4, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 127, 129, 0, 0, 192, 4, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 83, 130, 0, 0, 212, 42, 0, 0, 121, 131, 0, 0, 252, 42, 0, 0, 87, 131, 0, 0, 64, 9, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 4, 131, 0, 0, 32, 9, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 41, 131, 0, 0, 80, 9, 0, 0, 0, 0, 0, 0, 212, 42, 0, 0, 74, 131, 0, 0, 252, 42, 0, 0, 63, 132, 0, 0, 24, 9, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 142, 132, 0, 0, 64, 9, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 106, 132, 0, 0, 104, 9, 0, 0, 0, 0, 0, 0, 252, 42, 0, 0, 176, 132, 0, 0, 32, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 104, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 0, 120, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 196, 255, 255, 255, 196, 255, 255, 255, 120, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 220, 9, 0, 0, 20, 10, 0, 0, 40, 10, 0, 0, 240, 9, 0, 0, 60, 0, 0, 0, 0, 0, 0, 0, 80, 4, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 196, 255, 255, 255, 196, 255, 255, 255, 80, 4, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 136, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 7, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 152, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 176, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 200, 0, 0, 0, 8, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 1, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 224, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 190, 159, 0, 0, 166, 163, 0, 0, 0, 0, 0, 0, 248, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 6, 0, 0, 0, 10, 0, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 24, 1, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 8, 0, 0, 0, 11, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 48, 1, 0, 0, 25, 0, 0, 0, 29, 0, 0, 0, 10, 0, 0, 0, 12, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 80, 1, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 36, 0, 0, 0, 7, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 104, 1, 0, 0, 37, 0, 0, 0, 38, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 39, 0, 0, 0, 40, 0, 0, 0, 15, 0, 0, 0, 8, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 128, 1, 0, 0, 41, 0, 0, 0, 42, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 252, 255, 255, 255, 128, 1, 0, 0, 43, 0, 0, 0, 44, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 224, 1, 0, 0, 45, 0, 0, 0, 46, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 16, 2, 0, 0, 37, 0, 0, 0, 47, 0, 0, 0, 17, 0, 0, 0, 21, 0, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 18, 0, 0, 0, 9, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 32, 2, 0, 0, 50, 0, 0, 0, 51, 0, 0, 0, 2, 0, 0, 0, 5, 0, 0, 0, 4, 0, 0, 0, 252, 255, 255, 255, 32, 2, 0, 0, 52, 0, 0, 0, 53, 0, 0, 0, 22, 0, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 120, 2, 0, 0, 54, 0, 0, 0, 55, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 168, 2, 0, 0, 37, 0, 0, 0, 56, 0, 0, 0, 20, 0, 0, 0, 28, 0, 0, 0, 57, 0, 0, 0, 58, 0, 0, 0, 21, 0, 0, 0, 10, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 184, 2, 0, 0, 59, 0, 0, 0, 60, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 4, 0, 0, 0, 252, 255, 255, 255, 184, 2, 0, 0, 61, 0, 0, 0, 62, 0, 0, 0, 29, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 16, 3, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 64, 3, 0, 0, 37, 0, 0, 0, 65, 0, 0, 0, 23, 0, 0, 0, 35, 0, 0, 0, 66, 0, 0, 0, 67, 0, 0, 0, 24, 0, 0, 0, 11, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 80, 3, 0, 0, 68, 0, 0, 0, 69, 0, 0, 0, 2, 0, 0, 0, 7, 0, 0, 0, 4, 0, 0, 0, 252, 255, 255, 255, 80, 3, 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 168, 3, 0, 0, 72, 0, 0, 0, 73, 0, 0, 0, 39, 0, 0, 0, 40, 0, 0, 0, 41, 0, 0, 0, 172, 103, 0, 0, 190, 103, 0, 0, 136, 13, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 163, 167, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 252, 13, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 7, 0, 0, 0, 171, 171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 255, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 112, 14, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 7, 0, 0, 0, 179, 171, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 255, 255, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 112, 14, 0, 0, 2, 0, 0, 192, 3, 0, 0, 192, 4, 0, 0, 192, 5, 0, 0, 192, 6, 0, 0, 192, 7, 0, 0, 192, 8, 0, 0, 192, 9, 0, 0, 192, 10, 0, 0, 192, 11, 0, 0, 192, 12, 0, 0, 192, 13, 0, 0, 192, 14, 0, 0, 192, 15, 0, 0, 192, 16, 0, 0, 192, 17, 0, 0, 192, 18, 0, 0, 192, 19, 0, 0, 192, 20, 0, 0, 192, 21, 0, 0, 192, 22, 0, 0, 192, 23, 0, 0, 192, 24, 0, 0, 192, 25, 0, 0, 192, 26, 0, 0, 192, 27, 0, 0, 192, 28, 0, 0, 192, 29, 0, 0, 192, 30, 0, 0, 192, 31, 0, 0, 192, 0, 0, 0, 179, 1, 0, 0, 195, 2, 0, 0, 195, 3, 0, 0, 195, 4, 0, 0, 195, 5, 0, 0, 195, 6, 0, 0, 195, 7, 0, 0, 195, 8, 0, 0, 195, 9, 0, 0, 195, 10, 0, 0, 195, 11, 0, 0, 195, 12, 0, 0, 195, 13, 0, 0, 211, 14, 0, 0, 195, 15, 0, 0, 195, 0, 0, 12, 187, 1, 0, 12, 195, 2, 0, 12, 195, 3, 0, 12, 195, 4, 0, 12, 211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 255, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 100, 0, 0, 0, 232, 3, 0, 0, 16, 39, 0, 0, 160, 134, 1, 0, 64, 66, 15, 0, 128, 150, 152, 0, 0, 225, 245, 5, 68, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, 38, 0, 0, 0, 39, 0, 0, 0, 40, 0, 0, 0, 41, 0, 0, 0, 42, 0, 0, 0, 43, 0, 0, 0, 44, 0, 0, 0, 45, 0, 0, 0, 46, 0, 0, 0, 47, 0, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 50, 0, 0, 0, 51, 0, 0, 0, 52, 0, 0, 0, 53, 0, 0, 0, 54, 0, 0, 0, 55, 0, 0, 0, 56, 0, 0, 0, 57, 0, 0, 0, 58, 0, 0, 0, 59, 0, 0, 0, 60, 0, 0, 0, 61, 0, 0, 0, 62, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 97, 0, 0, 0, 98, 0, 0, 0, 99, 0, 0, 0, 100, 0, 0, 0, 101, 0, 0, 0, 102, 0, 0, 0, 103, 0, 0, 0, 104, 0, 0, 0, 105, 0, 0, 0, 106, 0, 0, 0, 107, 0, 0, 0, 108, 0, 0, 0, 109, 0, 0, 0, 110, 0, 0, 0, 111, 0, 0, 0, 112, 0, 0, 0, 113, 0, 0, 0, 114, 0, 0, 0, 115, 0, 0, 0, 116, 0, 0, 0, 117, 0, 0, 0, 118, 0, 0, 0, 119, 0, 0, 0, 120, 0, 0, 0, 121, 0, 0, 0, 122, 0, 0, 0, 91, 0, 0, 0, 92, 0, 0, 0, 93, 0, 0, 0, 94, 0, 0, 0, 95, 0, 0, 0, 96, 0, 0, 0, 97, 0, 0, 0, 98, 0, 0, 0, 99, 0, 0, 0, 100, 0, 0, 0, 101, 0, 0, 0, 102, 0, 0, 0, 103, 0, 0, 0, 104, 0, 0, 0, 105, 0, 0, 0, 106, 0, 0, 0, 107, 0, 0, 0, 108, 0, 0, 0, 109, 0, 0, 0, 110, 0, 0, 0, 111, 0, 0, 0, 112, 0, 0, 0, 113, 0, 0, 0, 114, 0, 0, 0, 115, 0, 0, 0, 116, 0, 0, 0, 117, 0, 0, 0, 118, 0, 0, 0, 119, 0, 0, 0, 120, 0, 0, 0, 121, 0, 0, 0, 122, 0, 0, 0, 123, 0, 0, 0, 124, 0, 0, 0, 125, 0, 0, 0, 126, 0, 0, 0, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 44, 0, 0, 76, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, 38, 0, 0, 0, 39, 0, 0, 0, 40, 0, 0, 0, 41, 0, 0, 0, 42, 0, 0, 0, 43, 0, 0, 0, 44, 0, 0, 0, 45, 0, 0, 0, 46, 0, 0, 0, 47, 0, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 50, 0, 0, 0, 51, 0, 0, 0, 52, 0, 0, 0, 53, 0, 0, 0, 54, 0, 0, 0, 55, 0, 0, 0, 56, 0, 0, 0, 57, 0, 0, 0, 58, 0, 0, 0, 59, 0, 0, 0, 60, 0, 0, 0, 61, 0, 0, 0, 62, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 65, 0, 0, 0, 66, 0, 0, 0, 67, 0, 0, 0, 68, 0, 0, 0, 69, 0, 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 72, 0, 0, 0, 73, 0, 0, 0, 74, 0, 0, 0, 75, 0, 0, 0, 76, 0, 0, 0, 77, 0, 0, 0, 78, 0, 0, 0, 79, 0, 0, 0, 80, 0, 0, 0, 81, 0, 0, 0, 82, 0, 0, 0, 83, 0, 0, 0, 84, 0, 0, 0, 85, 0, 0, 0, 86, 0, 0, 0, 87, 0, 0, 0, 88, 0, 0, 0, 89, 0, 0, 0, 90, 0, 0, 0, 91, 0, 0, 0, 92, 0, 0, 0, 93, 0, 0, 0, 94, 0, 0, 0, 95, 0, 0, 0, 96, 0, 0, 0, 65, 0, 0, 0, 66, 0, 0, 0, 67, 0, 0, 0, 68, 0, 0, 0, 69, 0, 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 72, 0, 0, 0, 73, 0, 0, 0, 74, 0, 0, 0, 75, 0, 0, 0, 76, 0, 0, 0, 77, 0, 0, 0, 78, 0, 0, 0, 79, 0, 0, 0, 80, 0, 0, 0, 81, 0, 0, 0, 82, 0, 0, 0, 83, 0, 0, 0, 84, 0, 0, 0, 85, 0, 0, 0, 86, 0, 0, 0, 87, 0, 0, 0, 88, 0, 0, 0, 89, 0, 0, 0, 90, 0, 0, 0, 123, 0, 0, 0, 124, 0, 0, 0, 125, 0, 0, 0, 126, 0, 0, 0, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216, 3, 0, 0, 74, 0, 0, 0, 75, 0, 0, 0, 42, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 5, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 12, 0, 0, 0, 3, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 232, 3, 0, 0, 74, 0, 0, 0, 76, 0, 0, 0, 43, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 5, 0, 0, 0, 29, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 30, 0, 0, 0, 4, 0, 0, 0, 14, 0, 0, 0, 11, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 248, 3, 0, 0, 77, 0, 0, 0, 78, 0, 0, 0, 44, 0, 0, 0, 12, 0, 0, 0, 3, 0, 0, 0, 6, 0, 0, 0, 31, 0, 0, 0, 32, 0, 0, 0, 13, 0, 0, 0, 33, 0, 0, 0, 34, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 8, 4, 0, 0, 77, 0, 0, 0, 79, 0, 0, 0, 45, 0, 0, 0, 12, 0, 0, 0, 3, 0, 0, 0, 6, 0, 0, 0, 35, 0, 0, 0, 32, 0, 0, 0, 13, 0, 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, 18, 0, 0, 0, 15, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 5, 0, 0, 0, 7, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 17, 0, 0, 0, 19, 0, 0, 0, 23, 0, 0, 0, 29, 0, 0, 0, 31, 0, 0, 0, 37, 0, 0, 0, 41, 0, 0, 0, 43, 0, 0, 0, 47, 0, 0, 0, 53, 0, 0, 0, 59, 0, 0, 0, 61, 0, 0, 0, 67, 0, 0, 0, 71, 0, 0, 0, 73, 0, 0, 0, 79, 0, 0, 0, 83, 0, 0, 0, 89, 0, 0, 0, 97, 0, 0, 0, 101, 0, 0, 0, 103, 0, 0, 0, 107, 0, 0, 0, 109, 0, 0, 0, 113, 0, 0, 0, 127, 0, 0, 0, 131, 0, 0, 0, 137, 0, 0, 0, 139, 0, 0, 0, 149, 0, 0, 0, 151, 0, 0, 0, 157, 0, 0, 0, 163, 0, 0, 0, 167, 0, 0, 0, 173, 0, 0, 0, 179, 0, 0, 0, 181, 0, 0, 0, 191, 0, 0, 0, 193, 0, 0, 0, 197, 0, 0, 0, 199, 0, 0, 0, 211, 0, 0, 0, 1, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 17, 0, 0, 0, 19, 0, 0, 0, 23, 0, 0, 0, 29, 0, 0, 0, 31, 0, 0, 0, 37, 0, 0, 0, 41, 0, 0, 0, 43, 0, 0, 0, 47, 0, 0, 0, 53, 0, 0, 0, 59, 0, 0, 0, 61, 0, 0, 0, 67, 0, 0, 0, 71, 0, 0, 0, 73, 0, 0, 0, 79, 0, 0, 0, 83, 0, 0, 0, 89, 0, 0, 0, 97, 0, 0, 0, 101, 0, 0, 0, 103, 0, 0, 0, 107, 0, 0, 0, 109, 0, 0, 0, 113, 0, 0, 0, 121, 0, 0, 0, 127, 0, 0, 0, 131, 0, 0, 0, 137, 0, 0, 0, 139, 0, 0, 0, 143, 0, 0, 0, 149, 0, 0, 0, 151, 0, 0, 0, 157, 0, 0, 0, 163, 0, 0, 0, 167, 0, 0, 0, 169, 0, 0, 0, 173, 0, 0, 0, 179, 0, 0, 0, 181, 0, 0, 0, 187, 0, 0, 0, 191, 0, 0, 0, 193, 0, 0, 0, 197, 0, 0, 0, 199, 0, 0, 0, 209, 0, 0, 0, 0, 0, 0, 0, 40, 4, 0, 0, 80, 0, 0, 0, 81, 0, 0, 0, 0, 0, 0, 0, 64, 4, 0, 0, 74, 0, 0, 0, 82, 0, 0, 0, 7, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 5, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 30, 0, 0, 0, 4, 0, 0, 0, 14, 0, 0, 0, 3, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 72, 4, 0, 0, 77, 0, 0, 0, 83, 0, 0, 0, 46, 0, 0, 0, 12, 0, 0, 0, 3, 0, 0, 0, 6, 0, 0, 0, 31, 0, 0, 0, 32, 0, 0, 0, 13, 0, 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, 18, 0, 0, 0, 14, 0, 0, 0, 17, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 80, 4, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 248, 255, 255, 255, 248, 255, 255, 255, 80, 4, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 104, 4, 0, 0, 84, 0, 0, 0, 85, 0, 0, 0, 248, 255, 255, 255, 248, 255, 255, 255, 104, 4, 0, 0, 86, 0, 0, 0, 87, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 128, 4, 0, 0, 88, 0, 0, 0, 89, 0, 0, 0, 252, 255, 255, 255, 252, 255, 255, 255, 128, 4, 0, 0, 90, 0, 0, 0, 91, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 152, 4, 0, 0, 92, 0, 0, 0, 93, 0, 0, 0, 252, 255, 255, 255, 252, 255, 255, 255, 152, 4, 0, 0, 94, 0, 0, 0, 95, 0, 0, 0, 0, 0, 0, 0, 176, 4, 0, 0, 96, 0, 0, 0, 97, 0, 0, 0, 98, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 208, 4, 0, 0, 99, 0, 0, 0, 100, 0, 0, 0, 98, 0, 0, 0, 2, 0, 0, 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 224, 4, 0, 0, 101, 0, 0, 0, 102, 0, 0, 0, 98, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 32, 5, 0, 0, 103, 0, 0, 0, 104, 0, 0, 0, 98, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 88, 5, 0, 0, 105, 0, 0, 0, 106, 0, 0, 0, 98, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 23, 0, 0, 0, 5, 0, 0, 0, 24, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 152, 5, 0, 0, 107, 0, 0, 0, 108, 0, 0, 0, 98, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 25, 0, 0, 0, 9, 0, 0, 0, 26, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 208, 5, 0, 0, 109, 0, 0, 0, 110, 0, 0, 0, 98, 0, 0, 0, 38, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 1, 0, 0, 0, 248, 255, 255, 255, 208, 5, 0, 0, 39, 0, 0, 0, 40, 0, 0, 0, 41, 0, 0, 0, 42, 0, 0, 0, 43, 0, 0, 0, 44, 0, 0, 0, 45, 0, 0, 0, 0, 0, 0, 0, 8, 6, 0, 0, 111, 0, 0, 0, 112, 0, 0, 0, 98, 0, 0, 0, 46, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 36, 0, 0, 0, 2, 0, 0, 0, 248, 255, 255, 255, 8, 6, 0, 0, 47, 0, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 50, 0, 0, 0, 51, 0, 0, 0, 52, 0, 0, 0, 53, 0, 0, 0, 37, 0, 0, 0, 72, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 77, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 83, 0, 0, 0, 37, 0, 0, 0, 109, 0, 0, 0, 47, 0, 0, 0, 37, 0, 0, 0, 100, 0, 0, 0, 47, 0, 0, 0, 37, 0, 0, 0, 121, 0, 0, 0, 37, 0, 0, 0, 89, 0, 0, 0, 45, 0, 0, 0, 37, 0, 0, 0, 109, 0, 0, 0, 45, 0, 0, 0, 37, 0, 0, 0, 100, 0, 0, 0, 37, 0, 0, 0, 73, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 77, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 83, 0, 0, 0, 32, 0, 0, 0, 37, 0, 0, 0, 112, 0, 0, 0, 37, 0, 0, 0, 72, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 77, 0, 0, 0, 37, 0, 0, 0, 72, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 77, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 83, 0, 0, 0, 83, 0, 0, 0, 117, 0, 0, 0, 110, 0, 0, 0, 100, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 111, 0, 0, 0, 110, 0, 0, 0, 100, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 117, 0, 0, 0, 101, 0, 0, 0, 115, 0, 0, 0, 100, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 87, 0, 0, 0, 101, 0, 0, 0, 100, 0, 0, 0, 110, 0, 0, 0, 101, 0, 0, 0, 115, 0, 0, 0, 100, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 104, 0, 0, 0, 117, 0, 0, 0, 114, 0, 0, 0, 115, 0, 0, 0, 100, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 114, 0, 0, 0, 105, 0, 0, 0, 100, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 97, 0, 0, 0, 116, 0, 0, 0, 117, 0, 0, 0, 114, 0, 0, 0, 100, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 117, 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 111, 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 117, 0, 0, 0, 101, 0, 0, 0, 0, 0, 0, 0, 87, 0, 0, 0, 101, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 104, 0, 0, 0, 117, 0, 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 114, 0, 0, 0, 105, 0, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 97, 0, 0, 0, 116, 0, 0, 0, 0, 0, 0, 0, 74, 0, 0, 0, 97, 0, 0, 0, 110, 0, 0, 0, 117, 0, 0, 0, 97, 0, 0, 0, 114, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 101, 0, 0, 0, 98, 0, 0, 0, 114, 0, 0, 0, 117, 0, 0, 0, 97, 0, 0, 0, 114, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 97, 0, 0, 0, 114, 0, 0, 0, 99, 0, 0, 0, 104, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 112, 0, 0, 0, 114, 0, 0, 0, 105, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 74, 0, 0, 0, 117, 0, 0, 0, 110, 0, 0, 0, 101, 0, 0, 0, 0, 0, 0, 0, 74, 0, 0, 0, 117, 0, 0, 0, 108, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 117, 0, 0, 0, 103, 0, 0, 0, 117, 0, 0, 0, 115, 0, 0, 0, 116, 0, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 101, 0, 0, 0, 112, 0, 0, 0, 116, 0, 0, 0, 101, 0, 0, 0, 109, 0, 0, 0, 98, 0, 0, 0, 101, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 0, 79, 0, 0, 0, 99, 0, 0, 0, 116, 0, 0, 0, 111, 0, 0, 0, 98, 0, 0, 0, 101, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 111, 0, 0, 0, 118, 0, 0, 0, 101, 0, 0, 0, 109, 0, 0, 0, 98, 0, 0, 0, 101, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 0, 68, 0, 0, 0, 101, 0, 0, 0, 99, 0, 0, 0, 101, 0, 0, 0, 109, 0, 0, 0, 98, 0, 0, 0, 101, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 0, 74, 0, 0, 0, 97, 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 101, 0, 0, 0, 98, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 97, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 112, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 0, 74, 0, 0, 0, 117, 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 74, 0, 0, 0, 117, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 117, 0, 0, 0, 103, 0, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 101, 0, 0, 0, 112, 0, 0, 0, 0, 0, 0, 0, 79, 0, 0, 0, 99, 0, 0, 0, 116, 0, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 111, 0, 0, 0, 118, 0, 0, 0, 0, 0, 0, 0, 68, 0, 0, 0, 101, 0, 0, 0, 99, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 80, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 97, 0, 0, 0, 32, 0, 0, 0, 37, 0, 0, 0, 98, 0, 0, 0, 32, 0, 0, 0, 37, 0, 0, 0, 100, 0, 0, 0, 32, 0, 0, 0, 37, 0, 0, 0, 72, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 77, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 83, 0, 0, 0, 32, 0, 0, 0, 37, 0, 0, 0, 89, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 73, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 77, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 83, 0, 0, 0, 32, 0, 0, 0, 37, 0, 0, 0, 112, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 109, 0, 0, 0, 47, 0, 0, 0, 37, 0, 0, 0, 100, 0, 0, 0, 47, 0, 0, 0, 37, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 72, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 77, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 6, 0, 0, 113, 0, 0, 0, 114, 0, 0, 0, 98, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 96, 6, 0, 0, 115, 0, 0, 0, 116, 0, 0, 0, 98, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 128, 6, 0, 0, 117, 0, 0, 0, 118, 0, 0, 0, 98, 0, 0, 0, 54, 0, 0, 0, 55, 0, 0, 0, 47, 0, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 50, 0, 0, 0, 56, 0, 0, 0, 51, 0, 0, 0, 52, 0, 0, 0, 0, 0, 0, 0, 168, 6, 0, 0, 119, 0, 0, 0, 120, 0, 0, 0, 98, 0, 0, 0, 57, 0, 0, 0, 58, 0, 0, 0, 53, 0, 0, 0, 54, 0, 0, 0, 55, 0, 0, 0, 56, 0, 0, 0, 59, 0, 0, 0, 57, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 200, 6, 0, 0, 121, 0, 0, 0, 122, 0, 0, 0, 98, 0, 0, 0, 60, 0, 0, 0, 61, 0, 0, 0, 59, 0, 0, 0, 60, 0, 0, 0, 61, 0, 0, 0, 62, 0, 0, 0, 62, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 232, 6, 0, 0, 123, 0, 0, 0, 124, 0, 0, 0, 98, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 65, 0, 0, 0, 66, 0, 0, 0, 67, 0, 0, 0, 68, 0, 0, 0, 65, 0, 0, 0, 69, 0, 0, 0, 70, 0, 0, 0, 0, 0, 0, 0, 8, 7, 0, 0, 125, 0, 0, 0, 126, 0, 0, 0, 98, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 48, 7, 0, 0, 127, 0, 0, 0, 128 ], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE);
-allocate([ 98, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 88, 7, 0, 0, 129, 0, 0, 0, 130, 0, 0, 0, 98, 0, 0, 0, 1, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 128, 7, 0, 0, 131, 0, 0, 0, 132, 0, 0, 0, 98, 0, 0, 0, 2, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 168, 7, 0, 0, 133, 0, 0, 0, 134, 0, 0, 0, 98, 0, 0, 0, 18, 0, 0, 0, 4, 0, 0, 0, 71, 0, 0, 0, 0, 0, 0, 0, 208, 7, 0, 0, 135, 0, 0, 0, 136, 0, 0, 0, 98, 0, 0, 0, 19, 0, 0, 0, 5, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 0, 240, 7, 0, 0, 137, 0, 0, 0, 138, 0, 0, 0, 98, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 11, 0, 0, 0, 66, 0, 0, 0, 67, 0, 0, 0, 12, 0, 0, 0, 68, 0, 0, 0, 0, 0, 0, 0, 40, 8, 0, 0, 137, 0, 0, 0, 139, 0, 0, 0, 98, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 11, 0, 0, 0, 66, 0, 0, 0, 67, 0, 0, 0, 12, 0, 0, 0, 68, 0, 0, 0, 0, 0, 0, 0, 88, 8, 0, 0, 140, 0, 0, 0, 141, 0, 0, 0, 98, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 13, 0, 0, 0, 69, 0, 0, 0, 70, 0, 0, 0, 14, 0, 0, 0, 71, 0, 0, 0, 0, 0, 0, 0, 152, 8, 0, 0, 142, 0, 0, 0, 143, 0, 0, 0, 98, 0, 0, 0, 0, 0, 0, 0, 168, 8, 0, 0, 144, 0, 0, 0, 145, 0, 0, 0, 98, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 1, 0, 0, 0, 22, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 240, 8, 0, 0, 146, 0, 0, 0, 147, 0, 0, 0, 98, 0, 0, 0, 72, 0, 0, 0, 73, 0, 0, 0, 73, 0, 0, 0, 74, 0, 0, 0, 75, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 148, 0, 0, 0, 149, 0, 0, 0, 98, 0, 0, 0, 74, 0, 0, 0, 75, 0, 0, 0, 76, 0, 0, 0, 77, 0, 0, 0, 78, 0, 0, 0, 116, 0, 0, 0, 114, 0, 0, 0, 117, 0, 0, 0, 101, 0, 0, 0, 0, 0, 0, 0, 102, 0, 0, 0, 97, 0, 0, 0, 108, 0, 0, 0, 115, 0, 0, 0, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 4, 0, 0, 137, 0, 0, 0, 150, 0, 0, 0, 98, 0, 0, 0, 0, 0, 0, 0, 208, 8, 0, 0, 137, 0, 0, 0, 151, 0, 0, 0, 98, 0, 0, 0, 23, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 5, 0, 0, 0, 26, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 56, 8, 0, 0, 137, 0, 0, 0, 152, 0, 0, 0, 98, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 17, 0, 0, 0, 76, 0, 0, 0, 77, 0, 0, 0, 18, 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 0, 120, 8, 0, 0, 137, 0, 0, 0, 153, 0, 0, 0, 98, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 19, 0, 0, 0, 79, 0, 0, 0, 80, 0, 0, 0, 20, 0, 0, 0, 81, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 137, 0, 0, 0, 154, 0, 0, 0, 98, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 11, 0, 0, 0, 66, 0, 0, 0, 67, 0, 0, 0, 12, 0, 0, 0, 68, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 32, 9, 0, 0, 155, 0, 0, 0, 156, 0, 0, 0, 157, 0, 0, 0, 158, 0, 0, 0, 27, 0, 0, 0, 6, 0, 0, 0, 1, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 48, 9, 0, 0, 155, 0, 0, 0, 159, 0, 0, 0, 157, 0, 0, 0, 158, 0, 0, 0, 27, 0, 0, 0, 7, 0, 0, 0, 2, 0, 0, 0, 10, 0, 0, 0, 134, 131, 0, 0, 0, 0, 0, 0, 88, 9, 0, 0, 160, 0, 0, 0, 161, 0, 0, 0, 82, 0, 0, 0, 0, 0, 0, 0, 136, 9, 0, 0, 155, 0, 0, 0, 162, 0, 0, 0, 157, 0, 0, 0, 158, 0, 0, 0, 27, 0, 0, 0, 8, 0, 0, 0, 3, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 3, 32, 2, 32, 2, 32, 2, 32, 2, 32, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 1, 96, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 8, 216, 8, 216, 8, 216, 8, 216, 8, 216, 8, 216, 8, 216, 8, 216, 8, 216, 8, 216, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 8, 213, 8, 213, 8, 213, 8, 213, 8, 213, 8, 213, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 8, 214, 8, 214, 8, 214, 8, 214, 8, 214, 8, 214, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 4, 192, 4, 192, 4, 192, 4, 192, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 103, 108, 111, 98, 97, 108, 0, 78, 97, 78, 0, 73, 110, 102, 105, 110, 105, 116, 121, 0, 116, 111, 112, 109, 111, 115, 116, 0, 73, 110, 116, 56, 65, 114, 114, 97, 121, 0, 73, 110, 116, 49, 54, 65, 114, 114, 97, 121, 0, 73, 110, 116, 51, 50, 65, 114, 114, 97, 121, 0, 85, 105, 110, 116, 56, 65, 114, 114, 97, 121, 0, 85, 105, 110, 116, 49, 54, 65, 114, 114, 97, 121, 0, 85, 105, 110, 116, 51, 50, 65, 114, 114, 97, 121, 0, 70, 108, 111, 97, 116, 51, 50, 65, 114, 114, 97, 121, 0, 70, 108, 111, 97, 116, 54, 52, 65, 114, 114, 97, 121, 0, 105, 109, 112, 111, 115, 115, 105, 98, 108, 101, 45, 99, 111, 110, 116, 105, 110, 117, 101, 0, 77, 97, 116, 104, 0, 105, 109, 117, 108, 0, 99, 108, 122, 51, 50, 0, 102, 114, 111, 117, 110, 100, 0, 97, 115, 109, 50, 119, 97, 115, 109, 0, 102, 54, 52, 45, 114, 101, 109, 0, 102, 54, 52, 45, 116, 111, 45, 105, 110, 116, 0, 103, 108, 111, 98, 97, 108, 46, 77, 97, 116, 104, 0, 97, 98, 115, 0, 102, 108, 111, 111, 114, 0, 115, 113, 114, 116, 0, 97, 115, 109, 50, 119, 97, 115, 109, 95, 105, 51, 50, 95, 116, 101, 109, 112, 0, 100, 101, 98, 117, 103, 103, 101, 114, 0, 95, 95, 103, 114, 111, 119, 87, 97, 115, 109, 77, 101, 109, 111, 114, 121, 0, 110, 101, 119, 83, 105, 122, 101, 0, 109, 111, 100, 117, 108, 101, 0, 102, 117, 110, 99, 0, 112, 97, 114, 97, 109, 0, 114, 101, 115, 117, 108, 116, 0, 109, 101, 109, 111, 114, 121, 0, 115, 101, 103, 109, 101, 110, 116, 0, 101, 120, 112, 111, 114, 116, 0, 105, 109, 112, 111, 114, 116, 0, 116, 97, 98, 108, 101, 0, 108, 111, 99, 97, 108, 0, 116, 121, 112, 101, 0, 99, 97, 108, 108, 95, 105, 109, 112, 111, 114, 116, 0, 99, 97, 108, 108, 95, 105, 110, 100, 105, 114, 101, 99, 116, 0, 98, 114, 95, 105, 102, 0, 45, 105, 110, 102, 105, 110, 105, 116, 121, 0, 45, 110, 97, 110, 0, 98, 114, 0, 117, 115, 101, 32, 97, 115, 109, 0, 98, 117, 102, 102, 101, 114, 0, 101, 110, 118, 0, 102, 97, 107, 101, 95, 114, 101, 116, 117, 114, 110, 95, 119, 97, 107, 97, 49, 50, 51, 0, 77, 97, 116, 104, 95, 105, 109, 117, 108, 0, 77, 97, 116, 104, 95, 99, 108, 122, 51, 50, 0, 77, 97, 116, 104, 95, 99, 116, 122, 51, 50, 0, 77, 97, 116, 104, 95, 112, 111, 112, 99, 110, 116, 51, 50, 0, 77, 97, 116, 104, 95, 97, 98, 115, 0, 77, 97, 116, 104, 95, 99, 101, 105, 108, 0, 77, 97, 116, 104, 95, 102, 108, 111, 111, 114, 0, 77, 97, 116, 104, 95, 116, 114, 117, 110, 99, 0, 77, 97, 116, 104, 95, 78, 69, 65, 82, 69, 83, 84, 0, 77, 97, 116, 104, 95, 115, 113, 114, 116, 0, 77, 97, 116, 104, 95, 109, 97, 120, 0, 77, 97, 116, 104, 95, 109, 105, 110, 0, 70, 85, 78, 67, 83, 73, 71, 36, 0, 97, 115, 116, 91, 48, 93, 32, 61, 61, 32, 84, 79, 80, 76, 69, 86, 69, 76, 0, 115, 114, 99, 47, 97, 115, 109, 50, 119, 97, 115, 109, 46, 104, 0, 112, 114, 111, 99, 101, 115, 115, 65, 115, 109, 0, 97, 115, 109, 70, 117, 110, 99, 116, 105, 111, 110, 91, 48, 93, 32, 61, 61, 32, 68, 69, 70, 85, 78, 0, 97, 108, 109, 111, 115, 116, 32, 97, 115, 109, 0, 98, 111, 100, 121, 91, 48, 93, 91, 48, 93, 32, 61, 61, 32, 83, 84, 65, 84, 32, 38, 38, 32, 98, 111, 100, 121, 91, 48, 93, 91, 49, 93, 91, 48, 93, 32, 61, 61, 32, 83, 84, 82, 73, 78, 71, 32, 38, 38, 32, 40, 98, 111, 100, 121, 91, 48, 93, 91, 49, 93, 91, 49, 93, 45, 62, 103, 101, 116, 73, 83, 116, 114, 105, 110, 103, 40, 41, 32, 61, 61, 32, 73, 83, 116, 114, 105, 110, 103, 40, 34, 117, 115, 101, 32, 97, 115, 109, 34, 41, 32, 124, 124, 32, 98, 111, 100, 121, 91, 48, 93, 91, 49, 93, 91, 49, 93, 45, 62, 103, 101, 116, 73, 83, 116, 114, 105, 110, 103, 40, 41, 32, 61, 61, 32, 73, 83, 116, 114, 105, 110, 103, 40, 34, 97, 108, 109, 111, 115, 116, 32, 97, 115, 109, 34, 41, 41, 0, 118, 97, 108, 117, 101, 91, 49, 93, 45, 62, 103, 101, 116, 78, 117, 109, 98, 101, 114, 40, 41, 32, 61, 61, 32, 48, 0, 118, 97, 108, 117, 101, 91, 49, 93, 32, 61, 61, 32, 79, 82, 32, 38, 38, 32, 118, 97, 108, 117, 101, 91, 51, 93, 91, 48, 93, 32, 61, 61, 32, 78, 85, 77, 32, 38, 38, 32, 118, 97, 108, 117, 101, 91, 51, 93, 91, 49, 93, 45, 62, 103, 101, 116, 78, 117, 109, 98, 101, 114, 40, 41, 32, 61, 61, 32, 48, 0, 118, 97, 108, 117, 101, 91, 49, 93, 32, 61, 61, 32, 80, 76, 85, 83, 0, 105, 109, 112, 111, 114, 116, 91, 49, 93, 45, 62, 103, 101, 116, 78, 117, 109, 98, 101, 114, 40, 41, 32, 61, 61, 32, 48, 0, 118, 97, 108, 117, 101, 91, 49, 93, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 32, 38, 38, 32, 118, 97, 108, 117, 101, 91, 49, 93, 91, 49, 93, 32, 61, 61, 32, 77, 97, 116, 104, 95, 102, 114, 111, 117, 110, 100, 32, 38, 38, 32, 118, 97, 108, 117, 101, 91, 50, 93, 91, 48, 93, 91, 48, 93, 32, 61, 61, 32, 78, 85, 77, 32, 38, 38, 32, 118, 97, 108, 117, 101, 91, 50, 93, 91, 48, 93, 91, 49, 93, 45, 62, 103, 101, 116, 78, 117, 109, 98, 101, 114, 40, 41, 32, 61, 61, 32, 48, 0, 118, 97, 108, 117, 101, 91, 48, 93, 32, 61, 61, 32, 67, 65, 76, 76, 0, 105, 110, 118, 97, 108, 105, 100, 32, 118, 105, 101, 119, 32, 105, 109, 112, 111, 114, 116, 0, 99, 111, 110, 115, 116, 114, 117, 99, 116, 111, 114, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 105, 110, 118, 97, 108, 105, 100, 32, 115, 104, 111, 114, 116, 32, 118, 105, 101, 119, 32, 105, 109, 112, 111, 114, 116, 0, 118, 105, 101, 119, 115, 46, 102, 105, 110, 100, 40, 110, 97, 109, 101, 41, 32, 61, 61, 32, 118, 105, 101, 119, 115, 46, 101, 110, 100, 40, 41, 0, 105, 110, 118, 97, 108, 105, 100, 32, 118, 97, 114, 32, 101, 108, 101, 109, 101, 110, 116, 0, 118, 97, 108, 117, 101, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 102, 117, 110, 99, 116, 105, 111, 110, 84, 97, 98, 108, 101, 83, 116, 97, 114, 116, 115, 46, 102, 105, 110, 100, 40, 116, 97, 98, 108, 101, 78, 97, 109, 101, 41, 32, 33, 61, 32, 102, 117, 110, 99, 116, 105, 111, 110, 84, 97, 98, 108, 101, 83, 116, 97, 114, 116, 115, 46, 101, 110, 100, 40, 41, 0, 10, 102, 117, 110, 99, 58, 32, 0, 99, 117, 114, 114, 91, 48, 93, 32, 61, 61, 32, 83, 84, 65, 84, 0, 112, 114, 111, 99, 101, 115, 115, 70, 117, 110, 99, 116, 105, 111, 110, 0, 99, 117, 114, 114, 91, 48, 93, 32, 61, 61, 32, 65, 83, 83, 73, 71, 78, 32, 38, 38, 32, 99, 117, 114, 114, 91, 50, 93, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 98, 114, 101, 97, 107, 83, 116, 97, 99, 107, 46, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 48, 32, 38, 38, 32, 99, 111, 110, 116, 105, 110, 117, 101, 83, 116, 97, 99, 107, 46, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 48, 0, 112, 97, 114, 101, 110, 116, 76, 97, 98, 101, 108, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 119, 97, 115, 109, 0, 109, 111, 100, 105, 102, 105, 101, 114, 32, 63, 32, 112, 111, 115, 105, 116, 105, 118, 101, 91, 52, 93, 32, 61, 61, 32, 39, 48, 39, 32, 38, 38, 32, 112, 111, 115, 105, 116, 105, 118, 101, 91, 53, 93, 32, 61, 61, 32, 39, 120, 39, 32, 58, 32, 49, 0, 115, 114, 99, 47, 112, 97, 114, 115, 105, 110, 103, 46, 104, 0, 112, 97, 114, 115, 101, 67, 111, 110, 115, 116, 0, 105, 115, 110, 97, 110, 40, 114, 101, 116, 45, 62, 118, 97, 108, 117, 101, 46, 102, 51, 50, 41, 0, 105, 115, 110, 97, 110, 40, 114, 101, 116, 45, 62, 118, 97, 108, 117, 101, 46, 102, 54, 52, 41, 0, 33, 105, 115, 110, 97, 110, 40, 114, 101, 116, 45, 62, 118, 97, 108, 117, 101, 46, 102, 51, 50, 41, 0, 33, 105, 115, 110, 97, 110, 40, 114, 101, 116, 45, 62, 118, 97, 108, 117, 101, 46, 102, 54, 52, 41, 0, 97, 115, 109, 32, 112, 97, 114, 115, 105, 110, 103, 46, 46, 46, 10, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 112, 114, 111, 118, 105, 100, 101, 100, 84, 111, 116, 97, 108, 77, 101, 109, 111, 114, 121, 39, 93, 59, 32, 125, 0, 119, 97, 115, 109, 105, 110, 103, 46, 46, 46, 10, 0, 111, 112, 116, 105, 109, 105, 122, 105, 110, 103, 46, 46, 46, 10, 0, 109, 97, 112, 112, 105, 110, 103, 32, 103, 108, 111, 98, 97, 108, 115, 46, 46, 46, 10, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 108, 111, 111, 107, 117, 112, 73, 109, 112, 111, 114, 116, 39, 93, 40, 80, 111, 105, 110, 116, 101, 114, 95, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 36, 48, 41, 44, 32, 80, 111, 105, 110, 116, 101, 114, 95, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 36, 49, 41, 41, 32, 125, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 51, 50, 39, 93, 91, 36, 48, 32, 62, 62, 32, 50, 93, 32, 61, 32, 36, 49, 32, 125, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 70, 51, 50, 39, 93, 91, 36, 48, 32, 62, 62, 32, 50, 93, 32, 61, 32, 36, 49, 32, 125, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 70, 54, 52, 39, 93, 91, 36, 48, 32, 62, 62, 32, 51, 93, 32, 61, 32, 36, 49, 32, 125, 0, 119, 97, 115, 109, 45, 115, 45, 101, 120, 112, 114, 101, 115, 115, 105, 111, 110, 32, 112, 97, 114, 115, 105, 110, 103, 46, 46, 46, 10, 0, 105, 110, 115, 116, 97, 110, 116, 105, 97, 116, 105, 110, 103, 32, 109, 111, 100, 117, 108, 101, 58, 32, 10, 0, 103, 101, 110, 101, 114, 97, 116, 105, 110, 103, 32, 101, 120, 112, 111, 114, 116, 115, 46, 46, 46, 10, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 97, 115, 109, 69, 120, 112, 111, 114, 116, 115, 39, 93, 32, 61, 32, 123, 125, 59, 32, 125, 0, 123, 32, 118, 97, 114, 32, 110, 97, 109, 101, 32, 61, 32, 80, 111, 105, 110, 116, 101, 114, 95, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 36, 48, 41, 59, 32, 77, 111, 100, 117, 108, 101, 91, 39, 97, 115, 109, 69, 120, 112, 111, 114, 116, 115, 39, 93, 91, 110, 97, 109, 101, 93, 32, 61, 32, 102, 117, 110, 99, 116, 105, 111, 110, 40, 41, 32, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 39, 93, 32, 61, 32, 65, 114, 114, 97, 121, 46, 112, 114, 111, 116, 111, 116, 121, 112, 101, 46, 115, 108, 105, 99, 101, 46, 99, 97, 108, 108, 40, 97, 114, 103, 117, 109, 101, 110, 116, 115, 41, 59, 32, 77, 111, 100, 117, 108, 101, 91, 39, 95, 99, 97, 108, 108, 95, 102, 114, 111, 109, 95, 106, 115, 39, 93, 40, 36, 48, 41, 59, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 82, 101, 116, 117, 114, 110, 39, 93, 59, 32, 125, 59, 32, 125, 0, 99, 114, 101, 97, 116, 105, 110, 103, 32, 105, 110, 115, 116, 97, 110, 99, 101, 46, 46, 46, 10, 0, 99, 97, 108, 108, 95, 102, 114, 111, 109, 95, 106, 115, 32, 0, 115, 114, 99, 47, 119, 97, 115, 109, 45, 106, 115, 46, 99, 112, 112, 0, 99, 97, 108, 108, 95, 102, 114, 111, 109, 95, 106, 115, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 39, 93, 46, 108, 101, 110, 103, 116, 104, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 39, 93, 91, 36, 48, 93, 32, 125, 0, 99, 97, 108, 108, 95, 102, 114, 111, 109, 95, 106, 115, 32, 114, 101, 116, 117, 114, 110, 105, 110, 103, 32, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 82, 101, 116, 117, 114, 110, 39, 93, 32, 61, 32, 117, 110, 100, 101, 102, 105, 110, 101, 100, 32, 125, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 82, 101, 116, 117, 114, 110, 39, 93, 32, 61, 32, 36, 48, 32, 125, 0, 115, 0, 115, 114, 99, 47, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 45, 111, 112, 116, 105, 109, 105, 122, 101, 114, 47, 105, 115, 116, 114, 105, 110, 103, 46, 104, 0, 73, 83, 116, 114, 105, 110, 103, 0, 105, 115, 83, 116, 114, 105, 110, 103, 40, 41, 0, 103, 101, 116, 73, 83, 116, 114, 105, 110, 103, 0, 115, 105, 122, 101, 0, 105, 115, 78, 117, 109, 98, 101, 114, 40, 41, 0, 103, 101, 116, 78, 117, 109, 98, 101, 114, 0, 109, 97, 112, 112, 101, 100, 71, 108, 111, 98, 97, 108, 115, 46, 102, 105, 110, 100, 40, 110, 97, 109, 101, 41, 32, 61, 61, 32, 109, 97, 112, 112, 101, 100, 71, 108, 111, 98, 97, 108, 115, 46, 101, 110, 100, 40, 41, 0, 97, 108, 108, 111, 99, 97, 116, 101, 71, 108, 111, 98, 97, 108, 0, 110, 101, 120, 116, 71, 108, 111, 98, 97, 108, 32, 60, 32, 109, 97, 120, 71, 108, 111, 98, 97, 108, 0, 105, 109, 112, 111, 114, 116, 101, 100, 91, 48, 93, 32, 61, 61, 32, 68, 79, 84, 0, 109, 111, 100, 117, 108, 101, 91, 49, 93, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 77, 97, 116, 104, 95, 105, 109, 117, 108, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 77, 97, 116, 104, 95, 99, 108, 122, 51, 50, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 77, 97, 116, 104, 95, 102, 114, 111, 117, 110, 100, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 77, 97, 116, 104, 95, 97, 98, 115, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 77, 97, 116, 104, 95, 102, 108, 111, 111, 114, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 77, 97, 116, 104, 95, 115, 113, 114, 116, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 109, 111, 100, 117, 108, 101, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 103, 101, 116, 67, 83, 116, 114, 105, 110, 103, 0, 111, 112, 101, 114, 97, 110, 100, 115, 32, 38, 38, 32, 111, 112, 101, 114, 97, 110, 100, 115, 45, 62, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 49, 0, 103, 101, 116, 66, 117, 105, 108, 116, 105, 110, 70, 117, 110, 99, 116, 105, 111, 110, 84, 121, 112, 101, 0, 105, 105, 0, 102, 102, 0, 100, 100, 0, 34, 40, 110, 117, 108, 108, 41, 34, 0, 91, 93, 0, 32, 32, 0, 110, 117, 108, 108, 0, 34, 58, 32, 0, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 56, 111, 112, 116, 105, 109, 105, 122, 101, 69, 118, 69, 49, 57, 66, 108, 111, 99, 107, 66, 114, 101, 97, 107, 79, 112, 116, 105, 109, 105, 122, 101, 114, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 90, 78, 83, 95, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 56, 111, 112, 116, 105, 109, 105, 122, 101, 69, 118, 69, 49, 57, 66, 108, 111, 99, 107, 66, 114, 101, 97, 107, 79, 112, 116, 105, 109, 105, 122, 101, 114, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 66, 97, 115, 101, 73, 90, 78, 83, 95, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 56, 111, 112, 116, 105, 109, 105, 122, 101, 69, 118, 69, 49, 57, 66, 108, 111, 99, 107, 66, 114, 101, 97, 107, 79, 112, 116, 105, 109, 105, 122, 101, 114, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 90, 78, 83, 95, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 56, 111, 112, 116, 105, 109, 105, 122, 101, 69, 118, 69, 49, 57, 66, 108, 111, 99, 107, 66, 114, 101, 97, 107, 79, 112, 116, 105, 109, 105, 122, 101, 114, 118, 69, 69, 0, 90, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 56, 111, 112, 116, 105, 109, 105, 122, 101, 69, 118, 69, 78, 49, 57, 66, 108, 111, 99, 107, 66, 114, 101, 97, 107, 79, 112, 116, 105, 109, 105, 122, 101, 114, 49, 48, 118, 105, 115, 105, 116, 66, 108, 111, 99, 107, 69, 80, 78, 83, 95, 53, 66, 108, 111, 99, 107, 69, 69, 49, 49, 66, 114, 101, 97, 107, 83, 101, 101, 107, 101, 114, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 90, 90, 78, 83, 95, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 56, 111, 112, 116, 105, 109, 105, 122, 101, 69, 118, 69, 78, 49, 57, 66, 108, 111, 99, 107, 66, 114, 101, 97, 107, 79, 112, 116, 105, 109, 105, 122, 101, 114, 49, 48, 118, 105, 115, 105, 116, 66, 108, 111, 99, 107, 69, 80, 78, 83, 95, 53, 66, 108, 111, 99, 107, 69, 69, 49, 49, 66, 114, 101, 97, 107, 83, 101, 101, 107, 101, 114, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 66, 97, 115, 101, 73, 90, 90, 78, 83, 95, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 56, 111, 112, 116, 105, 109, 105, 122, 101, 69, 118, 69, 78, 49, 57, 66, 108, 111, 99, 107, 66, 114, 101, 97, 107, 79, 112, 116, 105, 109, 105, 122, 101, 114, 49, 48, 118, 105, 115, 105, 116, 66, 108, 111, 99, 107, 69, 80, 78, 83, 95, 53, 66, 108, 111, 99, 107, 69, 69, 49, 49, 66, 114, 101, 97, 107, 83, 101, 101, 107, 101, 114, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 90, 90, 78, 83, 95, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 56, 111, 112, 116, 105, 109, 105, 122, 101, 69, 118, 69, 78, 49, 57, 66, 108, 111, 99, 107, 66, 114, 101, 97, 107, 79, 112, 116, 105, 109, 105, 122, 101, 114, 49, 48, 118, 105, 115, 105, 116, 66, 108, 111, 99, 107, 69, 80, 78, 83, 95, 53, 66, 108, 111, 99, 107, 69, 69, 49, 49, 66, 114, 101, 97, 107, 83, 101, 101, 107, 101, 114, 118, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 57, 98, 97, 115, 105, 99, 95, 105, 115, 116, 114, 105, 110, 103, 115, 116, 114, 101, 97, 109, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 99, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 53, 98, 97, 115, 105, 99, 95, 115, 116, 114, 105, 110, 103, 98, 117, 102, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 99, 69, 69, 69, 69, 0, 97, 115, 109, 50, 119, 97, 115, 109, 32, 61, 61, 32, 110, 117, 108, 108, 112, 116, 114, 32, 38, 38, 32, 115, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 80, 97, 114, 115, 101, 114, 32, 61, 61, 32, 110, 117, 108, 108, 112, 116, 114, 32, 38, 38, 32, 115, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 32, 61, 61, 32, 110, 117, 108, 108, 112, 116, 114, 32, 38, 38, 32, 105, 110, 115, 116, 97, 110, 99, 101, 32, 61, 61, 32, 110, 117, 108, 108, 112, 116, 114, 0, 112, 114, 101, 112, 97, 114, 101, 50, 119, 97, 115, 109, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 33, 33, 77, 111, 100, 117, 108, 101, 91, 39, 111, 117, 116, 115, 105, 100, 101, 39, 93, 91, 39, 87, 65, 83, 77, 95, 74, 83, 95, 68, 69, 66, 85, 71, 39, 93, 32, 125, 0, 47, 47, 32, 69, 77, 83, 67, 82, 73, 80, 84, 69, 78, 95, 83, 84, 65, 82, 84, 95, 70, 85, 78, 67, 83, 0, 114, 101, 116, 117, 114, 110, 32, 116, 114, 117, 101, 59, 0, 102, 117, 110, 99, 116, 105, 111, 110, 32, 0, 115, 116, 114, 115, 116, 114, 40, 103, 114, 111, 119, 116, 104, 70, 117, 110, 99, 83, 116, 97, 114, 116, 32, 43, 32, 49, 44, 32, 34, 102, 117, 110, 99, 116, 105, 111, 110, 32, 34, 41, 32, 61, 61, 32, 48, 0, 112, 114, 111, 99, 101, 115, 115, 0, 103, 114, 111, 119, 116, 104, 70, 117, 110, 99, 69, 110, 100, 32, 62, 32, 103, 114, 111, 119, 116, 104, 70, 117, 110, 99, 83, 116, 97, 114, 116, 32, 43, 32, 53, 0, 59, 41, 0, 105, 110, 112, 117, 116, 0, 115, 114, 99, 47, 119, 97, 115, 109, 45, 115, 45, 112, 97, 114, 115, 101, 114, 46, 104, 0, 112, 97, 114, 115, 101, 73, 110, 110, 101, 114, 76, 105, 115, 116, 0, 105, 110, 112, 117, 116, 91, 48, 93, 32, 61, 61, 32, 39, 41, 39, 0, 112, 97, 114, 115, 101, 0, 105, 115, 76, 105, 115, 116, 95, 0, 108, 105, 115, 116, 0, 32, 41, 0, 109, 111, 100, 117, 108, 101, 91, 48, 93, 45, 62, 115, 116, 114, 40, 41, 32, 61, 61, 32, 77, 79, 68, 85, 76, 69, 0, 83, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 0, 33, 105, 115, 76, 105, 115, 116, 95, 0, 115, 116, 114, 0, 102, 117, 110, 99, 46, 105, 115, 76, 105, 115, 116, 40, 41, 0, 112, 97, 114, 115, 101, 84, 121, 112, 101, 0, 78, 83, 116, 51, 95, 95, 49, 49, 55, 98, 97, 100, 95, 102, 117, 110, 99, 116, 105, 111, 110, 95, 99, 97, 108, 108, 69, 0, 119, 97, 115, 109, 46, 102, 117, 110, 99, 116, 105, 111, 110, 84, 121, 112, 101, 115, 77, 97, 112, 46, 102, 105, 110, 100, 40, 110, 97, 109, 101, 41, 32, 33, 61, 32, 119, 97, 115, 109, 46, 102, 117, 110, 99, 116, 105, 111, 110, 84, 121, 112, 101, 115, 77, 97, 112, 46, 101, 110, 100, 40, 41, 0, 112, 97, 114, 115, 101, 73, 109, 112, 111, 114, 116, 0, 114, 101, 115, 117, 108, 116, 91, 48, 93, 45, 62, 115, 116, 114, 40, 41, 32, 61, 61, 32, 82, 69, 83, 85, 76, 84, 0, 98, 97, 100, 32, 109, 111, 100, 117, 108, 101, 32, 101, 108, 101, 109, 101, 110, 116, 32, 0, 112, 97, 114, 115, 101, 32, 101, 120, 112, 114, 101, 115, 115, 105, 111, 110, 32, 0, 97, 98, 111, 114, 116, 105, 110, 103, 32, 111, 110, 32, 0, 110, 111, 100, 101, 58, 32, 0, 48, 32, 38, 38, 32, 34, 108, 101, 102, 116, 45, 62, 116, 121, 112, 101, 32, 61, 61, 32, 114, 105, 103, 104, 116, 45, 62, 116, 121, 112, 101, 34, 0, 102, 105, 110, 97, 108, 105, 122, 101, 0, 90, 78, 52, 119, 97, 115, 109, 49, 48, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 53, 112, 114, 105, 110, 116, 69, 82, 78, 83, 116, 51, 95, 95, 49, 49, 51, 98, 97, 115, 105, 99, 95, 111, 115, 116, 114, 101, 97, 109, 73, 99, 78, 83, 49, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 106, 69, 49, 55, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 80, 114, 105, 110, 116, 101, 114, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 90, 78, 83, 95, 49, 48, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 53, 112, 114, 105, 110, 116, 69, 82, 78, 83, 116, 51, 95, 95, 49, 49, 51, 98, 97, 115, 105, 99, 95, 111, 115, 116, 114, 101, 97, 109, 73, 99, 78, 83, 50, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 106, 69, 49, 55, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 80, 114, 105, 110, 116, 101, 114, 118, 69, 69, 0, 27, 91, 51, 49, 109, 0, 27, 91, 49, 109, 0, 27, 91, 51, 53, 109, 0, 27, 91, 48, 109, 0, 110, 97, 109, 101, 46, 115, 116, 114, 0, 105, 102, 95, 101, 108, 115, 101, 0, 108, 111, 111, 112, 0, 105, 110, 46, 105, 115, 40, 41, 0, 100, 111, 80, 114, 105, 110, 116, 0, 98, 114, 32, 0, 116, 97, 98, 108, 101, 115, 119, 105, 116, 99, 104, 32, 0, 40, 116, 97, 98, 108, 101, 0, 10, 0, 99, 97, 115, 101, 32, 0, 27, 91, 51, 51, 109, 0, 99, 97, 108, 108, 32, 0, 99, 97, 108, 108, 95, 105, 109, 112, 111, 114, 116, 32, 0, 99, 97, 108, 108, 95, 105, 110, 100, 105, 114, 101, 99, 116, 32, 0, 103, 101, 116, 95, 108, 111, 99, 97, 108, 32, 0, 115, 101, 116, 95, 108, 111, 99, 97, 108, 32, 0, 46, 108, 111, 97, 100, 0, 49, 54, 0, 95, 115, 0, 95, 117, 0, 32, 111, 102, 102, 115, 101, 116, 61, 0, 32, 97, 108, 105, 103, 110, 61, 0, 110, 111, 110, 101, 0, 105, 51, 50, 0, 105, 54, 52, 0, 102, 51, 50, 0, 102, 54, 52, 0, 46, 115, 116, 111, 114, 101, 0, 99, 108, 122, 0, 99, 116, 122, 0, 112, 111, 112, 99, 110, 116, 0, 110, 101, 103, 0, 99, 101, 105, 108, 0, 116, 114, 117, 110, 99, 0, 110, 101, 97, 114, 101, 115, 116, 0, 101, 120, 116, 101, 110, 100, 95, 115, 47, 105, 51, 50, 0, 101, 120, 116, 101, 110, 100, 95, 117, 47, 105, 51, 50, 0, 119, 114, 97, 112, 47, 105, 54, 52, 0, 116, 114, 117, 110, 99, 95, 115, 47, 102, 51, 50, 0, 116, 114, 117, 110, 99, 95, 117, 47, 102, 51, 50, 0, 116, 114, 117, 110, 99, 95, 115, 47, 102, 54, 52, 0, 116, 114, 117, 110, 99, 95, 117, 47, 102, 54, 52, 0, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 47, 0, 99, 111, 110, 118, 101, 114, 116, 95, 117, 47, 105, 51, 50, 0, 99, 111, 110, 118, 101, 114, 116, 95, 115, 47, 105, 51, 50, 0, 99, 111, 110, 118, 101, 114, 116, 95, 117, 47, 105, 54, 52, 0, 99, 111, 110, 118, 101, 114, 116, 95, 115, 47, 105, 54, 52, 0, 112, 114, 111, 109, 111, 116, 101, 47, 102, 51, 50, 0, 100, 101, 109, 111, 116, 101, 47, 102, 54, 52, 0, 109, 117, 108, 0, 100, 105, 118, 95, 115, 0, 100, 105, 118, 95, 117, 0, 114, 101, 109, 95, 115, 0, 114, 101, 109, 95, 117, 0, 97, 110, 100, 0, 111, 114, 0, 120, 111, 114, 0, 115, 104, 108, 0, 115, 104, 114, 95, 117, 0, 115, 104, 114, 95, 115, 0, 100, 105, 118, 0, 99, 111, 112, 121, 115, 105, 103, 110, 0, 109, 105, 110, 0, 109, 97, 120, 0, 101, 113, 0, 110, 101, 0, 108, 116, 95, 115, 0, 108, 116, 95, 117, 0, 108, 101, 95, 115, 0, 108, 101, 95, 117, 0, 103, 116, 95, 115, 0, 103, 116, 95, 117, 0, 103, 101, 95, 115, 0, 103, 101, 95, 117, 0, 108, 116, 0, 108, 101, 0, 103, 116, 0, 103, 101, 0, 46, 115, 101, 108, 101, 99, 116, 0, 112, 97, 103, 101, 115, 105, 122, 101, 0, 109, 101, 109, 111, 114, 121, 95, 115, 105, 122, 101, 0, 103, 114, 111, 119, 95, 109, 101, 109, 111, 114, 121, 0, 104, 97, 115, 102, 101, 97, 116, 117, 114, 101, 32, 0, 110, 111, 112, 0, 117, 110, 114, 101, 97, 99, 104, 97, 98, 108, 101, 0, 101, 120, 116, 114, 97, 91, 49, 93, 32, 61, 61, 32, 39, 54, 39, 0, 109, 97, 107, 101, 76, 111, 97, 100, 0, 101, 120, 116, 114, 97, 91, 49, 93, 32, 61, 61, 32, 39, 50, 39, 0, 99, 95, 115, 116, 114, 0, 109, 97, 107, 101, 83, 116, 111, 114, 101, 0, 111, 102, 102, 115, 101, 116, 32, 60, 32, 108, 97, 98, 101, 108, 83, 116, 97, 99, 107, 46, 115, 105, 122, 101, 40, 41, 0, 109, 97, 107, 101, 66, 114, 101, 97, 107, 0, 119, 97, 115, 109, 46, 102, 117, 110, 99, 116, 105, 111, 110, 84, 121, 112, 101, 115, 77, 97, 112, 46, 102, 105, 110, 100, 40, 116, 121, 112, 101, 41, 32, 33, 61, 32, 119, 97, 115, 109, 46, 102, 117, 110, 99, 116, 105, 111, 110, 84, 121, 112, 101, 115, 77, 97, 112, 46, 101, 110, 100, 40, 41, 0, 109, 97, 107, 101, 67, 97, 108, 108, 73, 110, 100, 105, 114, 101, 99, 116, 0, 108, 111, 111, 112, 45, 111, 117, 116, 0, 108, 111, 111, 112, 45, 105, 110, 0, 99, 117, 114, 114, 91, 48, 93, 45, 62, 115, 116, 114, 40, 41, 32, 61, 61, 32, 67, 65, 83, 69, 0, 109, 97, 107, 101, 83, 119, 105, 116, 99, 104, 0, 99, 117, 114, 114, 91, 48, 93, 45, 62, 115, 116, 114, 40, 41, 32, 61, 61, 32, 83, 69, 71, 77, 69, 78, 84, 0, 112, 97, 114, 115, 101, 77, 101, 109, 111, 114, 121, 0, 10, 32, 32, 32, 32, 40, 115, 101, 103, 109, 101, 110, 116, 32, 0, 32, 34, 0, 92, 110, 0, 92, 48, 100, 0, 92, 116, 0, 92, 48, 99, 0, 92, 48, 56, 0, 92, 92, 0, 92, 34, 0, 92, 39, 0, 34, 41, 0, 10, 32, 32, 0, 41, 10, 0, 32, 40, 102, 117, 110, 99, 0, 114, 101, 115, 117, 108, 116, 32, 0, 41, 41, 0, 105, 109, 112, 111, 114, 116, 32, 0, 27, 91, 51, 50, 109, 0, 101, 120, 112, 111, 114, 116, 32, 0, 102, 117, 110, 99, 32, 0, 112, 97, 114, 97, 109, 32, 0, 108, 111, 99, 97, 108, 32, 0, 90, 49, 49, 105, 110, 115, 116, 97, 110, 116, 105, 97, 116, 101, 69, 49, 57, 74, 83, 69, 120, 116, 101, 114, 110, 97, 108, 73, 110, 116, 101, 114, 102, 97, 99, 101, 0, 78, 52, 119, 97, 115, 109, 49, 52, 77, 111, 100, 117, 108, 101, 73, 110, 115, 116, 97, 110, 99, 101, 49, 55, 69, 120, 116, 101, 114, 110, 97, 108, 73, 110, 116, 101, 114, 102, 97, 99, 101, 69, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 111, 117, 116, 115, 105, 100, 101, 39, 93, 91, 39, 110, 101, 119, 66, 117, 102, 102, 101, 114, 39, 93, 32, 61, 32, 110, 101, 119, 32, 65, 114, 114, 97, 121, 66, 117, 102, 102, 101, 114, 40, 36, 48, 41, 59, 32, 125, 0, 123, 32, 118, 97, 114, 32, 115, 111, 117, 114, 99, 101, 32, 61, 32, 77, 111, 100, 117, 108, 101, 91, 39, 72, 69, 65, 80, 56, 39, 93, 46, 115, 117, 98, 97, 114, 114, 97, 121, 40, 36, 49, 44, 32, 36, 49, 32, 43, 32, 36, 50, 41, 59, 32, 118, 97, 114, 32, 116, 97, 114, 103, 101, 116, 32, 61, 32, 110, 101, 119, 32, 73, 110, 116, 56, 65, 114, 114, 97, 121, 40, 77, 111, 100, 117, 108, 101, 91, 39, 111, 117, 116, 115, 105, 100, 101, 39, 93, 91, 39, 110, 101, 119, 66, 117, 102, 102, 101, 114, 39, 93, 41, 59, 32, 116, 97, 114, 103, 101, 116, 46, 115, 101, 116, 40, 115, 111, 117, 114, 99, 101, 44, 32, 36, 48, 41, 59, 32, 125, 0, 99, 97, 108, 108, 105, 110, 103, 32, 105, 109, 112, 111, 114, 116, 32, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 39, 93, 32, 61, 32, 91, 93, 59, 32, 125, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 39, 93, 46, 112, 117, 115, 104, 40, 36, 48, 41, 32, 125, 0, 123, 32, 118, 97, 114, 32, 109, 111, 100, 32, 61, 32, 80, 111, 105, 110, 116, 101, 114, 95, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 36, 48, 41, 59, 32, 118, 97, 114, 32, 98, 97, 115, 101, 32, 61, 32, 80, 111, 105, 110, 116, 101, 114, 95, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 36, 49, 41, 59, 32, 118, 97, 114, 32, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 32, 61, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 39, 93, 59, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 39, 93, 32, 61, 32, 110, 117, 108, 108, 59, 32, 118, 97, 114, 32, 108, 111, 111, 107, 117, 112, 32, 61, 32, 77, 111, 100, 117, 108, 101, 91, 39, 108, 111, 111, 107, 117, 112, 73, 109, 112, 111, 114, 116, 39, 93, 40, 109, 111, 100, 44, 32, 98, 97, 115, 101, 41, 59, 32, 114, 101, 116, 117, 114, 110, 32, 108, 111, 111, 107, 117, 112, 46, 97, 112, 112, 108, 121, 40, 110, 117, 108, 108, 44, 32, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 41, 59, 32, 125, 0, 99, 97, 108, 108, 105, 110, 103, 32, 105, 109, 112, 111, 114, 116, 32, 114, 101, 116, 117, 114, 110, 105, 110, 103, 32, 0, 116, 121, 112, 101, 32, 61, 61, 32, 87, 97, 115, 109, 84, 121, 112, 101, 58, 58, 105, 51, 50, 0, 103, 101, 116, 105, 51, 50, 0, 116, 121, 112, 101, 32, 61, 61, 32, 87, 97, 115, 109, 84, 121, 112, 101, 58, 58, 102, 51, 50, 0, 103, 101, 116, 102, 51, 50, 0, 116, 121, 112, 101, 32, 61, 61, 32, 87, 97, 115, 109, 84, 121, 112, 101, 58, 58, 102, 54, 52, 0, 103, 101, 116, 102, 54, 52, 0, 108, 111, 97, 100, 45, 62, 97, 108, 105, 103, 110, 32, 62, 61, 32, 108, 111, 97, 100, 45, 62, 98, 121, 116, 101, 115, 0, 108, 111, 97, 100, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 56, 39, 93, 91, 36, 48, 93, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 85, 56, 39, 93, 91, 36, 48, 93, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 49, 54, 39, 93, 91, 36, 48, 32, 62, 62, 32, 49, 93, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 85, 49, 54, 39, 93, 91, 36, 48, 32, 62, 62, 32, 49, 93, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 51, 50, 39, 93, 91, 36, 48, 32, 62, 62, 32, 50, 93, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 85, 51, 50, 39, 93, 91, 36, 48, 32, 62, 62, 32, 50, 93, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 70, 51, 50, 39, 93, 91, 36, 48, 32, 62, 62, 32, 50, 93, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 70, 54, 52, 39, 93, 91, 36, 48, 32, 62, 62, 32, 51, 93, 32, 125, 0, 115, 116, 111, 114, 101, 45, 62, 97, 108, 105, 103, 110, 32, 62, 61, 32, 115, 116, 111, 114, 101, 45, 62, 98, 121, 116, 101, 115, 0, 115, 116, 111, 114, 101, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 56, 39, 93, 91, 36, 48, 93, 32, 61, 32, 36, 49, 32, 125, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 49, 54, 39, 93, 91, 36, 48, 32, 62, 62, 32, 49, 93, 32, 61, 32, 36, 49, 32, 125, 0, 123, 32, 118, 97, 114, 32, 115, 105, 122, 101, 32, 61, 32, 36, 48, 59, 32, 118, 97, 114, 32, 98, 117, 102, 102, 101, 114, 59, 32, 116, 114, 121, 32, 123, 32, 98, 117, 102, 102, 101, 114, 32, 61, 32, 110, 101, 119, 32, 65, 114, 114, 97, 121, 66, 117, 102, 102, 101, 114, 40, 115, 105, 122, 101, 41, 59, 32, 125, 32, 99, 97, 116, 99, 104, 40, 101, 41, 32, 123, 32, 114, 101, 116, 117, 114, 110, 59, 32, 125, 32, 118, 97, 114, 32, 111, 108, 100, 72, 69, 65, 80, 56, 32, 61, 32, 77, 111, 100, 117, 108, 101, 91, 39, 111, 117, 116, 115, 105, 100, 101, 39, 93, 91, 39, 72, 69, 65, 80, 56, 39, 93, 59, 32, 118, 97, 114, 32, 116, 101, 109, 112, 32, 61, 32, 110, 101, 119, 32, 73, 110, 116, 56, 65, 114, 114, 97, 121, 40, 98, 117, 102, 102, 101, 114, 41, 59, 32, 116, 101, 109, 112, 46, 115, 101, 116, 40, 111, 108, 100, 72, 69, 65, 80, 56, 41, 59, 32, 77, 111, 100, 117, 108, 101, 91, 39, 111, 117, 116, 115, 105, 100, 101, 39, 93, 91, 39, 98, 117, 102, 102, 101, 114, 39, 93, 32, 61, 32, 98, 117, 102, 102, 101, 114, 59, 32, 125, 0, 123, 32, 97, 98, 111, 114, 116, 40, 34, 119, 97, 115, 109, 32, 116, 114, 97, 112, 58, 32, 34, 32, 43, 32, 80, 111, 105, 110, 116, 101, 114, 95, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 36, 48, 41, 41, 59, 32, 125, 0, 99, 97, 108, 108, 69, 120, 112, 111, 114, 116, 32, 110, 111, 116, 32, 102, 111, 117, 110, 100, 0, 115, 116, 97, 99, 107, 32, 108, 105, 109, 105, 116, 0, 115, 114, 99, 47, 119, 97, 115, 109, 45, 105, 110, 116, 101, 114, 112, 114, 101, 116, 101, 114, 46, 104, 0, 99, 97, 108, 108, 70, 117, 110, 99, 116, 105, 111, 110, 0, 33, 102, 108, 111, 119, 46, 98, 114, 101, 97, 107, 105, 110, 103, 40, 41, 0, 102, 117, 110, 99, 116, 105, 111, 110, 45, 62, 114, 101, 115, 117, 108, 116, 32, 61, 61, 32, 114, 101, 116, 46, 116, 121, 112, 101, 0, 102, 117, 110, 99, 116, 105, 111, 110, 45, 62, 112, 97, 114, 97, 109, 115, 46, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 97, 114, 103, 117, 109, 101, 110, 116, 115, 46, 115, 105, 122, 101, 40, 41, 0, 70, 117, 110, 99, 116, 105, 111, 110, 83, 99, 111, 112, 101, 0, 102, 117, 110, 99, 116, 105, 111, 110, 45, 62, 112, 97, 114, 97, 109, 115, 91, 105, 93, 46, 116, 121, 112, 101, 32, 61, 61, 32, 97, 114, 103, 117, 109, 101, 110, 116, 115, 91, 105, 93, 46, 116, 121, 112, 101, 0, 90, 78, 52, 119, 97, 115, 109, 49, 52, 77, 111, 100, 117, 108, 101, 73, 110, 115, 116, 97, 110, 99, 101, 49, 50, 99, 97, 108, 108, 70, 117, 110, 99, 116, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 55, 73, 83, 116, 114, 105, 110, 103, 69, 82, 78, 83, 116, 51, 95, 95, 49, 54, 118, 101, 99, 116, 111, 114, 73, 78, 83, 95, 55, 76, 105, 116, 101, 114, 97, 108, 69, 78, 83, 51, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 53, 95, 69, 69, 69, 69, 69, 49, 54, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 82, 117, 110, 110, 101, 114, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 90, 78, 83, 95, 49, 52, 77, 111, 100, 117, 108, 101, 73, 110, 115, 116, 97, 110, 99, 101, 49, 50, 99, 97, 108, 108, 70, 117, 110, 99, 116, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 55, 73, 83, 116, 114, 105, 110, 103, 69, 82, 78, 83, 116, 51, 95, 95, 49, 54, 118, 101, 99, 116, 111, 114, 73, 78, 83, 95, 55, 76, 105, 116, 101, 114, 97, 108, 69, 78, 83, 52, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 54, 95, 69, 69, 69, 69, 69, 49, 54, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 82, 117, 110, 110, 101, 114, 78, 83, 95, 52, 70, 108, 111, 119, 69, 69, 69, 0, 99, 97, 115, 101, 73, 110, 100, 101, 120, 32, 60, 32, 99, 117, 114, 114, 45, 62, 99, 97, 115, 101, 115, 46, 115, 105, 122, 101, 40, 41, 0, 118, 105, 115, 105, 116, 83, 119, 105, 116, 99, 104, 0, 99, 97, 108, 108, 73, 110, 100, 105, 114, 101, 99, 116, 58, 32, 111, 118, 101, 114, 102, 108, 111, 119, 0, 99, 97, 108, 108, 73, 110, 100, 105, 114, 101, 99, 116, 58, 32, 98, 97, 100, 32, 116, 121, 112, 101, 0, 102, 108, 111, 119, 46, 118, 97, 108, 117, 101, 46, 116, 121, 112, 101, 32, 61, 61, 32, 99, 117, 114, 114, 45, 62, 116, 121, 112, 101, 0, 118, 105, 115, 105, 116, 83, 101, 116, 76, 111, 99, 97, 108, 0, 111, 102, 102, 115, 101, 116, 32, 62, 32, 109, 101, 109, 111, 114, 121, 0, 102, 105, 110, 97, 108, 32, 62, 32, 109, 101, 109, 111, 114, 121, 0, 98, 121, 116, 101, 115, 32, 62, 32, 109, 101, 109, 111, 114, 121, 0, 104, 105, 103, 104, 101, 115, 116, 32, 62, 32, 109, 101, 109, 111, 114, 121, 0, 116, 121, 112, 101, 32, 61, 61, 32, 87, 97, 115, 109, 84, 121, 112, 101, 58, 58, 105, 54, 52, 0, 103, 101, 116, 105, 54, 52, 0, 31, 22, 30, 21, 18, 10, 29, 2, 20, 17, 15, 13, 9, 6, 28, 1, 23, 19, 11, 3, 16, 14, 7, 24, 12, 4, 8, 25, 5, 26, 27, 0, 0, 1, 28, 2, 29, 14, 24, 3, 30, 22, 20, 15, 25, 17, 4, 8, 31, 27, 13, 23, 21, 19, 16, 7, 26, 12, 18, 6, 11, 5, 10, 9, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 102, 51, 50, 0, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 102, 54, 52, 0, 116, 114, 117, 110, 99, 83, 70, 108, 111, 97, 116, 32, 111, 102, 32, 110, 97, 110, 0, 105, 51, 50, 46, 116, 114, 117, 110, 99, 83, 70, 108, 111, 97, 116, 32, 111, 118, 101, 114, 102, 108, 111, 119, 0, 116, 114, 117, 110, 99, 85, 70, 108, 111, 97, 116, 32, 111, 102, 32, 110, 97, 110, 0, 105, 54, 52, 46, 116, 114, 117, 110, 99, 85, 70, 108, 111, 97, 116, 32, 111, 118, 101, 114, 102, 108, 111, 119, 0, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 105, 51, 50, 0, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 105, 54, 52, 0, 108, 101, 102, 116, 46, 116, 121, 112, 101, 32, 61, 61, 32, 99, 117, 114, 114, 45, 62, 108, 101, 102, 116, 45, 62, 116, 121, 112, 101, 0, 118, 105, 115, 105, 116, 66, 105, 110, 97, 114, 121, 0, 114, 105, 103, 104, 116, 46, 116, 121, 112, 101, 32, 61, 61, 32, 99, 117, 114, 114, 45, 62, 114, 105, 103, 104, 116, 45, 62, 116, 121, 112, 101, 0, 105, 51, 50, 46, 100, 105, 118, 95, 115, 32, 98, 121, 32, 48, 0, 105, 51, 50, 46, 100, 105, 118, 95, 115, 32, 111, 118, 101, 114, 102, 108, 111, 119, 0, 105, 51, 50, 46, 100, 105, 118, 95, 117, 32, 98, 121, 32, 48, 0, 105, 51, 50, 46, 114, 101, 109, 95, 115, 32, 98, 121, 32, 48, 0, 105, 51, 50, 46, 114, 101, 109, 95, 117, 32, 98, 121, 32, 48, 0, 105, 54, 52, 46, 100, 105, 118, 95, 115, 32, 98, 121, 32, 48, 0, 105, 54, 52, 46, 100, 105, 118, 95, 115, 32, 111, 118, 101, 114, 102, 108, 111, 119, 0, 105, 54, 52, 46, 100, 105, 118, 95, 117, 32, 98, 121, 32, 48, 0, 105, 54, 52, 46, 114, 101, 109, 95, 115, 32, 98, 121, 32, 48, 0, 105, 54, 52, 46, 114, 101, 109, 95, 117, 32, 98, 121, 32, 48, 0, 103, 114, 111, 119, 77, 101, 109, 111, 114, 121, 58, 32, 100, 101, 108, 116, 97, 32, 110, 111, 116, 32, 109, 117, 108, 116, 105, 112, 108, 101, 0, 103, 114, 111, 119, 77, 101, 109, 111, 114, 121, 58, 32, 100, 101, 108, 116, 97, 32, 114, 101, 108, 97, 116, 105, 118, 101, 108, 121, 32, 116, 111, 111, 32, 98, 105, 103, 0, 103, 114, 111, 119, 77, 101, 109, 111, 114, 121, 58, 32, 100, 101, 108, 116, 97, 32, 111, 98, 106, 101, 99, 116, 105, 118, 101, 108, 121, 32, 116, 111, 111, 32, 98, 105, 103, 0, 103, 114, 111, 119, 77, 101, 109, 111, 114, 121, 58, 32, 101, 120, 99, 101, 101, 100 ], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE + 10240);
-allocate([ 115, 32, 109, 97, 120, 0, 46, 99, 111, 110, 115, 116, 32, 0, 58, 48, 120, 0, 45, 48, 0, 37, 108, 102, 0, 100, 32, 62, 61, 32, 48, 0, 110, 117, 109, 84, 111, 83, 116, 114, 105, 110, 103, 0, 48, 120, 37, 108, 108, 120, 0, 37, 108, 108, 117, 0, 37, 108, 108, 120, 0, 37, 101, 0, 37, 46, 48, 102, 0, 110, 117, 109, 32, 60, 32, 49, 48, 48, 48, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 53, 112, 114, 111, 99, 101, 115, 115, 70, 117, 110, 99, 116, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 51, 36, 95, 49, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 54, 95, 69, 69, 70, 80, 78, 83, 50, 95, 49, 48, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 69, 83, 53, 95, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 98, 97, 115, 101, 73, 70, 80, 78, 52, 119, 97, 115, 109, 49, 48, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 69, 69, 0, 97, 116, 58, 32, 0, 109, 97, 112, 112, 101, 100, 71, 108, 111, 98, 97, 108, 115, 46, 102, 105, 110, 100, 40, 110, 97, 109, 101, 41, 32, 33, 61, 32, 109, 97, 112, 112, 101, 100, 71, 108, 111, 98, 97, 108, 115, 46, 101, 110, 100, 40, 41, 0, 116, 97, 114, 103, 101, 116, 91, 49, 93, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 118, 105, 101, 119, 115, 46, 102, 105, 110, 100, 40, 104, 101, 97, 112, 41, 32, 33, 61, 32, 118, 105, 101, 119, 115, 46, 101, 110, 100, 40, 41, 0, 99, 111, 110, 102, 117, 115, 105, 110, 103, 32, 97, 115, 115, 105, 103, 110, 0, 100, 100, 100, 0, 118, 0, 116, 97, 114, 103, 101, 116, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 114, 101, 116, 45, 62, 108, 101, 102, 116, 45, 62, 116, 121, 112, 101, 32, 61, 61, 32, 114, 101, 116, 45, 62, 114, 105, 103, 104, 116, 45, 62, 116, 121, 112, 101, 0, 98, 97, 100, 32, 117, 110, 97, 114, 121, 0, 97, 115, 116, 91, 50, 93, 45, 62, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 50, 0, 97, 115, 116, 91, 50, 93, 45, 62, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 49, 0, 99, 111, 110, 102, 117, 115, 105, 110, 103, 32, 102, 114, 111, 117, 110, 100, 32, 116, 97, 114, 103, 101, 116, 0, 116, 97, 114, 103, 101, 116, 91, 48, 93, 32, 61, 61, 32, 83, 85, 66, 32, 38, 38, 32, 116, 97, 114, 103, 101, 116, 91, 49, 93, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 32, 38, 38, 32, 116, 97, 114, 103, 101, 116, 91, 50, 93, 91, 48, 93, 32, 61, 61, 32, 66, 73, 78, 65, 82, 89, 32, 38, 38, 32, 116, 97, 114, 103, 101, 116, 91, 50, 93, 91, 49, 93, 32, 61, 61, 32, 65, 78, 68, 32, 38, 38, 32, 116, 97, 114, 103, 101, 116, 91, 50, 93, 91, 51, 93, 91, 48, 93, 32, 61, 61, 32, 78, 85, 77, 0, 102, 117, 110, 99, 116, 105, 111, 110, 45, 62, 114, 101, 115, 117, 108, 116, 32, 61, 61, 32, 116, 121, 112, 101, 0, 98, 114, 101, 97, 107, 83, 116, 97, 99, 107, 46, 115, 105, 122, 101, 40, 41, 32, 62, 32, 48, 0, 99, 111, 110, 116, 105, 110, 117, 101, 83, 116, 97, 99, 107, 46, 115, 105, 122, 101, 40, 41, 32, 62, 32, 48, 0, 119, 104, 105, 108, 101, 45, 111, 117, 116, 0, 119, 104, 105, 108, 101, 45, 105, 110, 0, 100, 111, 45, 111, 110, 99, 101, 0, 100, 111, 45, 111, 117, 116, 0, 100, 111, 45, 105, 110, 0, 102, 111, 114, 45, 111, 117, 116, 0, 102, 111, 114, 45, 105, 110, 0, 114, 101, 116, 45, 62, 118, 97, 108, 117, 101, 45, 62, 116, 121, 112, 101, 32, 61, 61, 32, 105, 51, 50, 0, 99, 111, 110, 100, 105, 116, 105, 111, 110, 91, 48, 93, 32, 61, 61, 32, 78, 85, 77, 32, 124, 124, 32, 99, 111, 110, 100, 105, 116, 105, 111, 110, 91, 48, 93, 32, 61, 61, 32, 85, 78, 65, 82, 89, 95, 80, 82, 69, 70, 73, 88, 0, 115, 119, 105, 116, 99, 104, 45, 100, 101, 102, 97, 117, 108, 116, 0, 105, 110, 100, 101, 120, 32, 62, 61, 32, 109, 105, 110, 0, 105, 110, 100, 101, 120, 32, 62, 61, 32, 48, 0, 115, 119, 105, 116, 99, 104, 45, 99, 97, 115, 101, 0, 99, 111, 110, 102, 117, 115, 105, 110, 103, 32, 101, 120, 112, 114, 101, 115, 115, 105, 111, 110, 0, 98, 97, 100, 32, 119, 97, 115, 109, 32, 98, 105, 110, 97, 114, 121, 32, 111, 112, 0, 102, 97, 108, 115, 101, 32, 38, 38, 32, 34, 101, 120, 112, 101, 99, 116, 101, 100, 32, 115, 105, 103, 110, 101, 100, 32, 111, 114, 32, 117, 110, 115, 105, 103, 110, 101, 100, 32, 105, 110, 116, 51, 50, 34, 0, 99, 104, 101, 99, 107, 76, 105, 116, 101, 114, 97, 108, 0, 100, 101, 116, 101, 99, 116, 65, 115, 109, 84, 121, 112, 101, 0, 97, 115, 116, 91, 48, 93, 32, 61, 61, 32, 67, 65, 76, 76, 32, 38, 38, 32, 97, 115, 116, 91, 49, 93, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 110, 111, 116, 101, 73, 109, 112, 111, 114, 116, 101, 100, 70, 117, 110, 99, 116, 105, 111, 110, 67, 97, 108, 108, 0, 116, 121, 112, 101, 36, 0, 108, 97, 98, 101, 108, 36, 98, 114, 101, 97, 107, 36, 0, 108, 97, 98, 101, 108, 36, 99, 111, 110, 116, 105, 110, 117, 101, 36, 0, 102, 109, 111, 100, 40, 103, 101, 116, 78, 117, 109, 98, 101, 114, 40, 41, 44, 32, 49, 41, 32, 61, 61, 32, 48, 0, 103, 101, 116, 73, 110, 116, 101, 103, 101, 114, 0, 100, 111, 117, 98, 108, 101, 40, 114, 101, 116, 41, 32, 61, 61, 32, 103, 101, 116, 78, 117, 109, 98, 101, 114, 40, 41, 0, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 53, 112, 114, 111, 99, 101, 115, 115, 70, 117, 110, 99, 116, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 51, 36, 95, 49, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 53, 112, 114, 111, 99, 101, 115, 115, 70, 117, 110, 99, 116, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 51, 36, 95, 50, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 54, 95, 69, 69, 70, 80, 78, 83, 50, 95, 49, 48, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 69, 83, 53, 95, 106, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 98, 97, 115, 101, 73, 70, 80, 78, 52, 119, 97, 115, 109, 49, 48, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 106, 69, 69, 69, 0, 98, 97, 100, 32, 112, 114, 111, 99, 101, 115, 115, 85, 110, 115, 104, 105, 102, 116, 101, 100, 0, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 53, 112, 114, 111, 99, 101, 115, 115, 70, 117, 110, 99, 116, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 51, 36, 95, 50, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 53, 112, 114, 111, 99, 101, 115, 115, 70, 117, 110, 99, 116, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 51, 36, 95, 51, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 54, 95, 69, 69, 70, 80, 78, 83, 50, 95, 49, 48, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 69, 83, 53, 95, 106, 69, 69, 69, 0, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 53, 112, 114, 111, 99, 101, 115, 115, 70, 117, 110, 99, 116, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 51, 36, 95, 51, 0, 59, 0, 112, 117, 115, 104, 95, 98, 97, 99, 107, 0, 103, 101, 116, 65, 114, 114, 97, 121, 0, 115, 114, 99, 32, 62, 32, 115, 116, 97, 114, 116, 0, 115, 114, 99, 47, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 45, 111, 112, 116, 105, 109, 105, 122, 101, 114, 47, 112, 97, 114, 115, 101, 114, 46, 104, 0, 70, 114, 97, 103, 0, 115, 116, 114, 99, 109, 112, 40, 115, 116, 114, 46, 115, 116, 114, 44, 32, 115, 116, 97, 114, 116, 41, 32, 61, 61, 32, 48, 0, 102, 114, 97, 103, 32, 112, 97, 114, 115, 105, 110, 103, 0, 37, 115, 58, 10, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 10, 0, 10, 10, 0, 110, 97, 109, 101, 46, 116, 121, 112, 101, 32, 61, 61, 32, 83, 69, 80, 65, 82, 65, 84, 79, 82, 32, 38, 38, 32, 110, 97, 109, 101, 46, 115, 116, 114, 91, 48, 93, 32, 61, 61, 32, 39, 40, 39, 0, 112, 97, 114, 115, 101, 70, 117, 110, 99, 116, 105, 111, 110, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 40, 39, 0, 97, 114, 103, 46, 116, 121, 112, 101, 32, 61, 61, 32, 73, 68, 69, 78, 84, 0, 102, 117, 110, 99, 91, 48, 93, 32, 61, 61, 32, 68, 69, 70, 85, 78, 0, 97, 112, 112, 101, 110, 100, 65, 114, 103, 117, 109, 101, 110, 116, 84, 111, 70, 117, 110, 99, 116, 105, 111, 110, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 123, 39, 0, 112, 97, 114, 115, 101, 66, 114, 97, 99, 107, 101, 116, 101, 100, 66, 108, 111, 99, 107, 0, 59, 125, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 125, 39, 0, 110, 97, 109, 101, 46, 116, 121, 112, 101, 32, 61, 61, 32, 73, 68, 69, 78, 84, 0, 112, 97, 114, 115, 101, 86, 97, 114, 0, 59, 44, 0, 118, 97, 114, 91, 48, 93, 32, 61, 61, 32, 86, 65, 82, 0, 97, 112, 112, 101, 110, 100, 84, 111, 86, 97, 114, 0, 104, 97, 115, 67, 104, 97, 114, 40, 115, 101, 112, 115, 44, 32, 42, 115, 114, 99, 41, 0, 112, 97, 114, 115, 101, 82, 101, 116, 117, 114, 110, 0, 112, 97, 114, 115, 101, 80, 97, 114, 101, 110, 110, 101, 100, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 41, 39, 0, 110, 101, 120, 116, 46, 116, 121, 112, 101, 32, 61, 61, 32, 75, 69, 89, 87, 79, 82, 68, 32, 38, 38, 32, 110, 101, 120, 116, 46, 115, 116, 114, 32, 61, 61, 32, 87, 72, 73, 76, 69, 0, 112, 97, 114, 115, 101, 68, 111, 0, 112, 97, 114, 115, 101, 83, 119, 105, 116, 99, 104, 0, 118, 97, 108, 117, 101, 46, 116, 121, 112, 101, 32, 61, 61, 32, 79, 80, 69, 82, 65, 84, 79, 82, 0, 118, 97, 108, 117, 101, 46, 115, 116, 114, 32, 61, 61, 32, 77, 73, 78, 85, 83, 0, 118, 97, 108, 117, 101, 50, 46, 105, 115, 78, 117, 109, 98, 101, 114, 40, 41, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 58, 39, 0, 115, 119, 105, 116, 99, 104, 95, 91, 48, 93, 32, 61, 61, 32, 83, 87, 73, 84, 67, 72, 0, 97, 112, 112, 101, 110, 100, 67, 97, 115, 101, 84, 111, 83, 119, 105, 116, 99, 104, 0, 97, 112, 112, 101, 110, 100, 68, 101, 102, 97, 117, 108, 116, 84, 111, 83, 119, 105, 116, 99, 104, 0, 97, 112, 112, 101, 110, 100, 67, 111, 100, 101, 84, 111, 83, 119, 105, 116, 99, 104, 0, 99, 111, 100, 101, 91, 48, 93, 32, 61, 61, 32, 66, 76, 79, 67, 75, 0, 98, 97, 99, 107, 0, 112, 97, 114, 115, 101, 70, 111, 114, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 59, 39, 0, 112, 97, 114, 115, 101, 67, 97, 108, 108, 0, 44, 41, 0, 101, 120, 112, 114, 101, 115, 115, 105, 111, 110, 80, 97, 114, 116, 115, 83, 116, 97, 99, 107, 46, 98, 97, 99, 107, 40, 41, 46, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 48, 0, 99, 97, 108, 108, 91, 48, 93, 32, 61, 61, 32, 67, 65, 76, 76, 0, 97, 112, 112, 101, 110, 100, 84, 111, 67, 97, 108, 108, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 91, 39, 0, 112, 97, 114, 115, 101, 73, 110, 100, 101, 120, 105, 110, 103, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 93, 39, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 46, 39, 0, 112, 97, 114, 115, 101, 68, 111, 116, 116, 105, 110, 103, 0, 107, 101, 121, 46, 116, 121, 112, 101, 32, 61, 61, 32, 73, 68, 69, 78, 84, 0, 98, 97, 100, 32, 112, 97, 114, 115, 101, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 32, 115, 116, 97, 116, 101, 0, 105, 32, 60, 32, 40, 105, 110, 116, 41, 112, 97, 114, 116, 115, 46, 115, 105, 122, 101, 40, 41, 45, 49, 32, 38, 38, 32, 105, 32, 62, 61, 32, 51, 0, 112, 97, 114, 115, 101, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 0, 112, 97, 114, 116, 115, 46, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 49, 0, 105, 115, 78, 111, 100, 101, 0, 103, 101, 116, 78, 111, 100, 101, 0, 33, 105, 115, 78, 111, 100, 101, 0, 103, 101, 116, 79, 112, 0, 107, 101, 121, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 109, 97, 107, 101, 68, 111, 116, 0, 112, 97, 114, 115, 101, 65, 102, 116, 101, 114, 80, 97, 114, 101, 110, 0, 42, 115, 114, 99, 0, 112, 97, 114, 115, 101, 65, 102, 116, 101, 114, 66, 114, 97, 99, 101, 0, 44, 93, 0, 97, 114, 114, 97, 121, 91, 48, 93, 32, 61, 61, 32, 65, 82, 82, 65, 89, 0, 97, 112, 112, 101, 110, 100, 84, 111, 65, 114, 114, 97, 121, 0, 112, 97, 114, 115, 101, 65, 102, 116, 101, 114, 67, 117, 114, 108, 121, 0, 107, 101, 121, 46, 116, 121, 112, 101, 32, 61, 61, 32, 73, 68, 69, 78, 84, 32, 124, 124, 32, 107, 101, 121, 46, 116, 121, 112, 101, 32, 61, 61, 32, 83, 84, 82, 73, 78, 71, 0, 44, 125, 0, 97, 114, 114, 97, 121, 91, 48, 93, 32, 61, 61, 32, 79, 66, 74, 69, 67, 84, 0, 97, 112, 112, 101, 110, 100, 84, 111, 79, 98, 106, 101, 99, 116, 0, 98, 108, 111, 99, 107, 91, 48, 93, 32, 61, 61, 32, 66, 76, 79, 67, 75, 0, 97, 112, 112, 101, 110, 100, 84, 111, 66, 108, 111, 99, 107, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 49, 54, 108, 111, 97, 100, 95, 115, 95, 101, 120, 112, 114, 50, 119, 97, 115, 109, 69, 51, 36, 95, 52, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 50, 95, 69, 69, 70, 118, 118, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 98, 97, 115, 101, 73, 70, 118, 118, 69, 69, 69, 0, 101, 114, 114, 111, 114, 32, 105, 110, 32, 112, 97, 114, 115, 105, 110, 103, 32, 115, 45, 101, 120, 112, 114, 101, 115, 115, 105, 111, 110, 115, 32, 116, 111, 32, 119, 97, 115, 109, 10, 0, 90, 49, 54, 108, 111, 97, 100, 95, 115, 95, 101, 120, 112, 114, 50, 119, 97, 115, 109, 69, 51, 36, 95, 52, 0, 112, 97, 115, 115, 73, 110, 102, 111, 115, 46, 102, 105, 110, 100, 40, 110, 97, 109, 101, 41, 32, 61, 61, 32, 112, 97, 115, 115, 73, 110, 102, 111, 115, 46, 101, 110, 100, 40, 41, 0, 115, 114, 99, 47, 112, 97, 115, 115, 46, 99, 112, 112, 0, 114, 101, 103, 105, 115, 116, 101, 114, 80, 97, 115, 115, 0, 112, 97, 115, 115, 0, 97, 100, 100, 0, 109, 101, 114, 103, 101, 45, 98, 108, 111, 99, 107, 115, 0, 109, 101, 114, 103, 101, 115, 32, 98, 108, 111, 99, 107, 115, 32, 116, 111, 32, 116, 104, 101, 105, 114, 32, 112, 97, 114, 101, 110, 116, 115, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 78, 52, 119, 97, 115, 109, 49, 50, 82, 101, 103, 105, 115, 116, 101, 114, 80, 97, 115, 115, 73, 78, 83, 50, 95, 49, 49, 77, 101, 114, 103, 101, 66, 108, 111, 99, 107, 115, 69, 69, 67, 49, 69, 80, 75, 99, 83, 55, 95, 69, 85, 108, 118, 69, 95, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 56, 95, 69, 69, 70, 80, 78, 83, 50, 95, 52, 80, 97, 115, 115, 69, 118, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 98, 97, 115, 101, 73, 70, 80, 78, 52, 119, 97, 115, 109, 52, 80, 97, 115, 115, 69, 118, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 77, 101, 114, 103, 101, 66, 108, 111, 99, 107, 115, 69, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 108, 107, 101, 114, 80, 97, 115, 115, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 49, 77, 101, 114, 103, 101, 66, 108, 111, 99, 107, 115, 69, 118, 69, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 52, 80, 97, 115, 115, 69, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 49, 77, 101, 114, 103, 101, 66, 108, 111, 99, 107, 115, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 66, 97, 115, 101, 73, 78, 83, 95, 49, 49, 77, 101, 114, 103, 101, 66, 108, 111, 99, 107, 115, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 78, 83, 95, 49, 49, 77, 101, 114, 103, 101, 66, 108, 111, 99, 107, 115, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 49, 77, 101, 114, 103, 101, 66, 108, 111, 99, 107, 115, 69, 118, 69, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 66, 97, 115, 101, 73, 78, 83, 95, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 49, 77, 101, 114, 103, 101, 66, 108, 111, 99, 107, 115, 69, 118, 69, 69, 69, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 78, 83, 95, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 49, 77, 101, 114, 103, 101, 66, 108, 111, 99, 107, 115, 69, 118, 69, 69, 69, 69, 118, 69, 69, 0, 90, 78, 52, 119, 97, 115, 109, 49, 50, 82, 101, 103, 105, 115, 116, 101, 114, 80, 97, 115, 115, 73, 78, 83, 95, 49, 49, 77, 101, 114, 103, 101, 66, 108, 111, 99, 107, 115, 69, 69, 67, 49, 69, 80, 75, 99, 83, 52, 95, 69, 85, 108, 118, 69, 95, 0, 114, 101, 109, 111, 118, 101, 45, 117, 110, 117, 115, 101, 100, 45, 98, 114, 115, 0, 114, 101, 109, 111, 118, 101, 115, 32, 98, 114, 101, 97, 107, 115, 32, 102, 114, 111, 109, 32, 108, 111, 99, 97, 116, 105, 111, 110, 115, 32, 116, 104, 97, 116, 32, 97, 114, 101, 32, 110, 101, 118, 101, 114, 32, 98, 114, 97, 110, 99, 104, 101, 100, 32, 116, 111, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 78, 52, 119, 97, 115, 109, 49, 50, 82, 101, 103, 105, 115, 116, 101, 114, 80, 97, 115, 115, 73, 78, 83, 50, 95, 49, 53, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 66, 114, 115, 69, 69, 67, 49, 69, 80, 75, 99, 83, 55, 95, 69, 85, 108, 118, 69, 95, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 56, 95, 69, 69, 70, 80, 78, 83, 50, 95, 52, 80, 97, 115, 115, 69, 118, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 53, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 66, 114, 115, 69, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 108, 107, 101, 114, 80, 97, 115, 115, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 53, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 66, 114, 115, 69, 118, 69, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 53, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 66, 114, 115, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 66, 97, 115, 101, 73, 78, 83, 95, 49, 53, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 66, 114, 115, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 78, 83, 95, 49, 53, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 66, 114, 115, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 53, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 66, 114, 115, 69, 118, 69, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 66, 97, 115, 101, 73, 78, 83, 95, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 53, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 66, 114, 115, 69, 118, 69, 69, 69, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 78, 83, 95, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 53, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 66, 114, 115, 69, 118, 69, 69, 69, 69, 118, 69, 69, 0, 95, 105, 100, 32, 61, 61, 32, 84, 40, 41, 46, 95, 105, 100, 0, 99, 97, 115, 116, 0, 90, 78, 52, 119, 97, 115, 109, 49, 50, 82, 101, 103, 105, 115, 116, 101, 114, 80, 97, 115, 115, 73, 78, 83, 95, 49, 53, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 66, 114, 115, 69, 69, 67, 49, 69, 80, 75, 99, 83, 52, 95, 69, 85, 108, 118, 69, 95, 0, 114, 101, 109, 111, 118, 101, 45, 117, 110, 117, 115, 101, 100, 45, 110, 97, 109, 101, 115, 0, 114, 101, 109, 111, 118, 101, 115, 32, 110, 97, 109, 101, 115, 32, 102, 114, 111, 109, 32, 108, 111, 99, 97, 116, 105, 111, 110, 115, 32, 116, 104, 97, 116, 32, 97, 114, 101, 32, 110, 101, 118, 101, 114, 32, 98, 114, 97, 110, 99, 104, 101, 100, 32, 116, 111, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 78, 52, 119, 97, 115, 109, 49, 50, 82, 101, 103, 105, 115, 116, 101, 114, 80, 97, 115, 115, 73, 78, 83, 50, 95, 49, 55, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 78, 97, 109, 101, 115, 69, 69, 67, 49, 69, 80, 75, 99, 83, 55, 95, 69, 85, 108, 118, 69, 95, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 56, 95, 69, 69, 70, 80, 78, 83, 50, 95, 52, 80, 97, 115, 115, 69, 118, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 55, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 78, 97, 109, 101, 115, 69, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 108, 107, 101, 114, 80, 97, 115, 115, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 55, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 78, 97, 109, 101, 115, 69, 118, 69, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 55, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 78, 97, 109, 101, 115, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 66, 97, 115, 101, 73, 78, 83, 95, 49, 55, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 78, 97, 109, 101, 115, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 78, 83, 95, 49, 55, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 78, 97, 109, 101, 115, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 55, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 78, 97, 109, 101, 115, 69, 118, 69, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 66, 97, 115, 101, 73, 78, 83, 95, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 55, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 78, 97, 109, 101, 115, 69, 118, 69, 69, 69, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 78, 83, 95, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 55, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 78, 97, 109, 101, 115, 69, 118, 69, 69, 69, 69, 118, 69, 69, 0, 90, 78, 52, 119, 97, 115, 109, 49, 50, 82, 101, 103, 105, 115, 116, 101, 114, 80, 97, 115, 115, 73, 78, 83, 95, 49, 55, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 78, 97, 109, 101, 115, 69, 69, 67, 49, 69, 80, 75, 99, 83, 52, 95, 69, 85, 108, 118, 69, 95, 0, 115, 105, 109, 112, 108, 105, 102, 121, 45, 108, 111, 99, 97, 108, 115, 0, 109, 105, 115, 99, 101, 108, 108, 97, 110, 101, 111, 117, 115, 32, 108, 111, 99, 97, 108, 115, 45, 114, 101, 108, 97, 116, 101, 100, 32, 111, 112, 116, 105, 109, 105, 122, 97, 116, 105, 111, 110, 115, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 78, 52, 119, 97, 115, 109, 49, 50, 82, 101, 103, 105, 115, 116, 101, 114, 80, 97, 115, 115, 73, 78, 83, 50, 95, 49, 52, 83, 105, 109, 112, 108, 105, 102, 121, 76, 111, 99, 97, 108, 115, 69, 69, 67, 49, 69, 80, 75, 99, 83, 55, 95, 69, 85, 108, 118, 69, 95, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 56, 95, 69, 69, 70, 80, 78, 83, 50, 95, 52, 80, 97, 115, 115, 69, 118, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 83, 105, 109, 112, 108, 105, 102, 121, 76, 111, 99, 97, 108, 115, 69, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 108, 107, 101, 114, 80, 97, 115, 115, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 52, 83, 105, 109, 112, 108, 105, 102, 121, 76, 111, 99, 97, 108, 115, 69, 118, 69, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 52, 83, 105, 109, 112, 108, 105, 102, 121, 76, 111, 99, 97, 108, 115, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 66, 97, 115, 101, 73, 78, 83, 95, 49, 52, 83, 105, 109, 112, 108, 105, 102, 121, 76, 111, 99, 97, 108, 115, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 78, 83, 95, 49, 52, 83, 105, 109, 112, 108, 105, 102, 121, 76, 111, 99, 97, 108, 115, 69, 118, 69, 69, 0, 33, 114, 101, 112, 108, 97, 99, 101, 0, 115, 114, 99, 47, 119, 97, 115, 109, 46, 104, 0, 115, 116, 97, 114, 116, 87, 97, 108, 107, 0, 78, 52, 119, 97, 115, 109, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 52, 83, 105, 109, 112, 108, 105, 102, 121, 76, 111, 99, 97, 108, 115, 69, 118, 69, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 66, 97, 115, 101, 73, 78, 83, 95, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 52, 83, 105, 109, 112, 108, 105, 102, 121, 76, 111, 99, 97, 108, 115, 69, 118, 69, 69, 69, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 78, 83, 95, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 52, 83, 105, 109, 112, 108, 105, 102, 121, 76, 111, 99, 97, 108, 115, 69, 118, 69, 69, 69, 69, 118, 69, 69, 0, 99, 117, 114, 114, 0, 118, 105, 115, 105, 116, 0, 90, 78, 52, 119, 97, 115, 109, 49, 50, 82, 101, 103, 105, 115, 116, 101, 114, 80, 97, 115, 115, 73, 78, 83, 95, 49, 52, 83, 105, 109, 112, 108, 105, 102, 121, 76, 111, 99, 97, 108, 115, 69, 69, 67, 49, 69, 80, 75, 99, 83, 52, 95, 69, 85, 108, 118, 69, 95, 0, 43, 45, 42, 47, 37, 60, 62, 38, 94, 124, 126, 61, 33, 44, 63, 58, 46, 0, 40, 91, 59, 123, 125, 0, 116, 111, 112, 108, 101, 118, 101, 108, 0, 100, 101, 102, 117, 110, 0, 98, 108, 111, 99, 107, 0, 115, 116, 97, 116, 0, 97, 115, 115, 105, 103, 110, 0, 110, 97, 109, 101, 0, 118, 97, 114, 0, 99, 111, 110, 115, 116, 0, 99, 111, 110, 100, 105, 116, 105, 111, 110, 97, 108, 0, 98, 105, 110, 97, 114, 121, 0, 114, 101, 116, 117, 114, 110, 0, 105, 102, 0, 101, 108, 115, 101, 0, 119, 104, 105, 108, 101, 0, 100, 111, 0, 102, 111, 114, 0, 115, 101, 113, 0, 115, 117, 98, 0, 99, 97, 108, 108, 0, 110, 117, 109, 0, 108, 97, 98, 101, 108, 0, 98, 114, 101, 97, 107, 0, 99, 111, 110, 116, 105, 110, 117, 101, 0, 115, 119, 105, 116, 99, 104, 0, 115, 116, 114, 105, 110, 103, 0, 116, 101, 109, 112, 82, 101, 116, 48, 0, 117, 110, 97, 114, 121, 45, 112, 114, 101, 102, 105, 120, 0, 117, 110, 97, 114, 121, 45, 112, 111, 115, 116, 102, 105, 120, 0, 77, 97, 116, 104, 95, 102, 114, 111, 117, 110, 100, 0, 83, 73, 77, 68, 95, 70, 108, 111, 97, 116, 51, 50, 120, 52, 0, 83, 73, 77, 68, 95, 70, 108, 111, 97, 116, 54, 52, 120, 50, 0, 83, 73, 77, 68, 95, 73, 110, 116, 56, 120, 49, 54, 0, 83, 73, 77, 68, 95, 73, 110, 116, 49, 54, 120, 56, 0, 83, 73, 77, 68, 95, 73, 110, 116, 51, 50, 120, 52, 0, 62, 62, 62, 0, 116, 101, 109, 112, 68, 111, 117, 98, 108, 101, 80, 116, 114, 0, 72, 69, 65, 80, 56, 0, 72, 69, 65, 80, 49, 54, 0, 72, 69, 65, 80, 51, 50, 0, 72, 69, 65, 80, 70, 51, 50, 0, 72, 69, 65, 80, 85, 56, 0, 72, 69, 65, 80, 85, 49, 54, 0, 72, 69, 65, 80, 85, 51, 50, 0, 72, 69, 65, 80, 70, 54, 52, 0, 102, 48, 0, 102, 117, 110, 99, 116, 105, 111, 110, 0, 91, 0, 123, 0, 125, 0, 63, 0, 58, 0, 99, 97, 115, 101, 0, 100, 101, 102, 97, 117, 108, 116, 0, 100, 111, 116, 0, 110, 101, 119, 0, 97, 114, 114, 97, 121, 0, 111, 98, 106, 101, 99, 116, 0, 118, 97, 114, 32, 99, 111, 110, 115, 116, 32, 102, 117, 110, 99, 116, 105, 111, 110, 32, 105, 102, 32, 101, 108, 115, 101, 32, 100, 111, 32, 119, 104, 105, 108, 101, 32, 102, 111, 114, 32, 98, 114, 101, 97, 107, 32, 99, 111, 110, 116, 105, 110, 117, 101, 32, 114, 101, 116, 117, 114, 110, 32, 115, 119, 105, 116, 99, 104, 32, 99, 97, 115, 101, 32, 100, 101, 102, 97, 117, 108, 116, 32, 116, 104, 114, 111, 119, 32, 116, 114, 121, 32, 99, 97, 116, 99, 104, 32, 102, 105, 110, 97, 108, 108, 121, 32, 116, 114, 117, 101, 32, 102, 97, 108, 115, 101, 32, 110, 117, 108, 108, 32, 110, 101, 119, 0, 33, 32, 126, 32, 43, 32, 45, 0, 42, 32, 47, 32, 37, 0, 43, 32, 45, 0, 60, 60, 32, 62, 62, 32, 62, 62, 62, 0, 60, 32, 60, 61, 32, 62, 32, 62, 61, 0, 61, 61, 32, 33, 61, 0, 63, 32, 58, 0, 97, 115, 115, 105, 103, 110, 32, 99, 97, 108, 108, 32, 98, 105, 110, 97, 114, 121, 32, 117, 110, 97, 114, 121, 45, 112, 114, 101, 102, 105, 120, 32, 110, 97, 109, 101, 32, 110, 117, 109, 32, 99, 111, 110, 100, 105, 116, 105, 111, 110, 97, 108, 32, 100, 111, 116, 32, 110, 101, 119, 32, 115, 117, 98, 32, 115, 101, 113, 32, 115, 116, 114, 105, 110, 103, 32, 111, 98, 106, 101, 99, 116, 32, 97, 114, 114, 97, 121, 0, 105, 115, 65, 114, 114, 97, 121, 40, 41, 0, 115, 114, 99, 47, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 45, 111, 112, 116, 105, 109, 105, 122, 101, 114, 47, 115, 105, 109, 112, 108, 101, 95, 97, 115, 116, 46, 104, 0, 83, 73, 77, 68, 95, 73, 110, 116, 56, 120, 49, 54, 95, 99, 104, 101, 99, 107, 0, 83, 73, 77, 68, 95, 73, 110, 116, 49, 54, 120, 56, 95, 99, 104, 101, 99, 107, 0, 83, 73, 77, 68, 95, 73, 110, 116, 51, 50, 120, 52, 95, 99, 104, 101, 99, 107, 0, 83, 73, 77, 68, 95, 70, 108, 111, 97, 116, 51, 50, 120, 52, 95, 99, 104, 101, 99, 107, 0, 83, 73, 77, 68, 95, 70, 108, 111, 97, 116, 54, 52, 120, 50, 95, 99, 104, 101, 99, 107, 0, 110, 111, 100, 101, 91, 49, 93, 32, 61, 61, 32, 65, 83, 77, 95, 70, 76, 79, 65, 84, 95, 90, 69, 82, 79, 0, 115, 114, 99, 47, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 45, 111, 112, 116, 105, 109, 105, 122, 101, 114, 47, 111, 112, 116, 105, 109, 105, 122, 101, 114, 45, 115, 104, 97, 114, 101, 100, 46, 99, 112, 112, 0, 100, 101, 116, 101, 99, 116, 84, 121, 112, 101, 0, 110, 111, 100, 101, 91, 49, 93, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 105, 115, 85, 73, 110, 116, 101, 103, 101, 114, 51, 50, 40, 120, 41, 0, 115, 114, 99, 47, 115, 117, 112, 112, 111, 114, 116, 47, 115, 97, 102, 101, 95, 105, 110, 116, 101, 103, 101, 114, 46, 99, 112, 112, 0, 116, 111, 85, 73, 110, 116, 101, 103, 101, 114, 51, 50, 0, 105, 115, 83, 73, 110, 116, 101, 103, 101, 114, 51, 50, 40, 120, 41, 0, 116, 111, 83, 73, 110, 116, 101, 103, 101, 114, 51, 50, 0, 105, 115, 85, 73, 110, 116, 101, 103, 101, 114, 54, 52, 40, 120, 41, 0, 116, 111, 85, 73, 110, 116, 101, 103, 101, 114, 54, 52, 0, 17, 0, 10, 0, 17, 17, 17, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 15, 10, 17, 17, 17, 3, 10, 7, 0, 1, 19, 9, 11, 11, 0, 0, 9, 6, 11, 0, 0, 11, 0, 6, 17, 0, 0, 0, 17, 17, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 10, 10, 17, 17, 17, 0, 10, 0, 0, 2, 0, 9, 11, 0, 0, 0, 9, 0, 11, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 12, 0, 0, 0, 0, 9, 12, 0, 0, 0, 0, 0, 12, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 4, 13, 0, 0, 0, 0, 9, 14, 0, 0, 0, 0, 0, 14, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 15, 0, 0, 0, 0, 9, 16, 0, 0, 0, 0, 0, 16, 0, 0, 16, 0, 0, 18, 0, 0, 0, 18, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 18, 18, 18, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 10, 0, 0, 0, 0, 9, 11, 0, 0, 0, 0, 0, 11, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 12, 0, 0, 0, 0, 9, 12, 0, 0, 0, 0, 0, 12, 0, 0, 12, 0, 0, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 65, 66, 67, 68, 69, 70, 45, 43, 32, 32, 32, 48, 88, 48, 120, 0, 84, 33, 34, 25, 13, 1, 2, 3, 17, 75, 28, 12, 16, 4, 11, 29, 18, 30, 39, 104, 110, 111, 112, 113, 98, 32, 5, 6, 15, 19, 20, 21, 26, 8, 22, 7, 40, 36, 23, 24, 9, 10, 14, 27, 31, 37, 35, 131, 130, 125, 38, 42, 43, 60, 61, 62, 63, 67, 71, 74, 77, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 99, 100, 101, 102, 103, 105, 106, 107, 108, 114, 115, 116, 121, 122, 123, 124, 0, 73, 108, 108, 101, 103, 97, 108, 32, 98, 121, 116, 101, 32, 115, 101, 113, 117, 101, 110, 99, 101, 0, 68, 111, 109, 97, 105, 110, 32, 101, 114, 114, 111, 114, 0, 82, 101, 115, 117, 108, 116, 32, 110, 111, 116, 32, 114, 101, 112, 114, 101, 115, 101, 110, 116, 97, 98, 108, 101, 0, 78, 111, 116, 32, 97, 32, 116, 116, 121, 0, 80, 101, 114, 109, 105, 115, 115, 105, 111, 110, 32, 100, 101, 110, 105, 101, 100, 0, 79, 112, 101, 114, 97, 116, 105, 111, 110, 32, 110, 111, 116, 32, 112, 101, 114, 109, 105, 116, 116, 101, 100, 0, 78, 111, 32, 115, 117, 99, 104, 32, 102, 105, 108, 101, 32, 111, 114, 32, 100, 105, 114, 101, 99, 116, 111, 114, 121, 0, 78, 111, 32, 115, 117, 99, 104, 32, 112, 114, 111, 99, 101, 115, 115, 0, 70, 105, 108, 101, 32, 101, 120, 105, 115, 116, 115, 0, 86, 97, 108, 117, 101, 32, 116, 111, 111, 32, 108, 97, 114, 103, 101, 32, 102, 111, 114, 32, 100, 97, 116, 97, 32, 116, 121, 112, 101, 0, 78, 111, 32, 115, 112, 97, 99, 101, 32, 108, 101, 102, 116, 32, 111, 110, 32, 100, 101, 118, 105, 99, 101, 0, 79, 117, 116, 32, 111, 102, 32, 109, 101, 109, 111, 114, 121, 0, 82, 101, 115, 111, 117, 114, 99, 101, 32, 98, 117, 115, 121, 0, 73, 110, 116, 101, 114, 114, 117, 112, 116, 101, 100, 32, 115, 121, 115, 116, 101, 109, 32, 99, 97, 108, 108, 0, 82, 101, 115, 111, 117, 114, 99, 101, 32, 116, 101, 109, 112, 111, 114, 97, 114, 105, 108, 121, 32, 117, 110, 97, 118, 97, 105, 108, 97, 98, 108, 101, 0, 73, 110, 118, 97, 108, 105, 100, 32, 115, 101, 101, 107, 0, 67, 114, 111, 115, 115, 45, 100, 101, 118, 105, 99, 101, 32, 108, 105, 110, 107, 0, 82, 101, 97, 100, 45, 111, 110, 108, 121, 32, 102, 105, 108, 101, 32, 115, 121, 115, 116, 101, 109, 0, 68, 105, 114, 101, 99, 116, 111, 114, 121, 32, 110, 111, 116, 32, 101, 109, 112, 116, 121, 0, 67, 111, 110, 110, 101, 99, 116, 105, 111, 110, 32, 114, 101, 115, 101, 116, 32, 98, 121, 32, 112, 101, 101, 114, 0, 79, 112, 101, 114, 97, 116, 105, 111, 110, 32, 116, 105, 109, 101, 100, 32, 111, 117, 116, 0, 67, 111, 110, 110, 101, 99, 116, 105, 111, 110, 32, 114, 101, 102, 117, 115, 101, 100, 0, 72, 111, 115, 116, 32, 105, 115, 32, 100, 111, 119, 110, 0, 72, 111, 115, 116, 32, 105, 115, 32, 117, 110, 114, 101, 97, 99, 104, 97, 98, 108, 101, 0, 65, 100, 100, 114, 101, 115, 115, 32, 105, 110, 32, 117, 115, 101, 0, 66, 114, 111, 107, 101, 110, 32, 112, 105, 112, 101, 0, 73, 47, 79, 32, 101, 114, 114, 111, 114, 0, 78, 111, 32, 115, 117, 99, 104, 32, 100, 101, 118, 105, 99, 101, 32, 111, 114, 32, 97, 100, 100, 114, 101, 115, 115, 0, 66, 108, 111, 99, 107, 32, 100, 101, 118, 105, 99, 101, 32, 114, 101, 113, 117, 105, 114, 101, 100, 0, 78, 111, 32, 115, 117, 99, 104, 32, 100, 101, 118, 105, 99, 101, 0, 78, 111, 116, 32, 97, 32, 100, 105, 114, 101, 99, 116, 111, 114, 121, 0, 73, 115, 32, 97, 32, 100, 105, 114, 101, 99, 116, 111, 114, 121, 0, 84, 101, 120, 116, 32, 102, 105, 108, 101, 32, 98, 117, 115, 121, 0, 69, 120, 101, 99, 32, 102, 111, 114, 109, 97, 116, 32, 101, 114, 114, 111, 114, 0, 73, 110, 118, 97, 108, 105, 100, 32, 97, 114, 103, 117, 109, 101, 110, 116, 0, 65, 114, 103, 117, 109, 101, 110, 116, 32, 108, 105, 115, 116, 32, 116, 111, 111, 32, 108, 111, 110, 103, 0, 83, 121, 109, 98, 111, 108, 105, 99, 32, 108, 105, 110, 107, 32, 108, 111, 111, 112, 0, 70, 105, 108, 101, 110, 97, 109, 101, 32, 116, 111, 111, 32, 108, 111, 110, 103, 0, 84, 111, 111, 32, 109, 97, 110, 121, 32, 111, 112, 101, 110, 32, 102, 105, 108, 101, 115, 32, 105, 110, 32, 115, 121, 115, 116, 101, 109, 0, 78, 111, 32, 102, 105, 108, 101, 32, 100, 101, 115, 99, 114, 105, 112, 116, 111, 114, 115, 32, 97, 118, 97, 105, 108, 97, 98, 108, 101, 0, 66, 97, 100, 32, 102, 105, 108, 101, 32, 100, 101, 115, 99, 114, 105, 112, 116, 111, 114, 0, 78, 111, 32, 99, 104, 105, 108, 100, 32, 112, 114, 111, 99, 101, 115, 115, 0, 66, 97, 100, 32, 97, 100, 100, 114, 101, 115, 115, 0, 70, 105, 108, 101, 32, 116, 111, 111, 32, 108, 97, 114, 103, 101, 0, 84, 111, 111, 32, 109, 97, 110, 121, 32, 108, 105, 110, 107, 115, 0, 78, 111, 32, 108, 111, 99, 107, 115, 32, 97, 118, 97, 105, 108, 97, 98, 108, 101, 0, 82, 101, 115, 111, 117, 114, 99, 101, 32, 100, 101, 97, 100, 108, 111, 99, 107, 32, 119, 111, 117, 108, 100, 32, 111, 99, 99, 117, 114, 0, 83, 116, 97, 116, 101, 32, 110, 111, 116, 32, 114, 101, 99, 111, 118, 101, 114, 97, 98, 108, 101, 0, 80, 114, 101, 118, 105, 111, 117, 115, 32, 111, 119, 110, 101, 114, 32, 100, 105, 101, 100, 0, 79, 112, 101, 114, 97, 116, 105, 111, 110, 32, 99, 97, 110, 99, 101, 108, 101, 100, 0, 70, 117, 110, 99, 116, 105, 111, 110, 32, 110, 111, 116, 32, 105, 109, 112, 108, 101, 109, 101, 110, 116, 101, 100, 0, 78, 111, 32, 109, 101, 115, 115, 97, 103, 101, 32, 111, 102, 32, 100, 101, 115, 105, 114, 101, 100, 32, 116, 121, 112, 101, 0, 73, 100, 101, 110, 116, 105, 102, 105, 101, 114, 32, 114, 101, 109, 111, 118, 101, 100, 0, 68, 101, 118, 105, 99, 101, 32, 110, 111, 116, 32, 97, 32, 115, 116, 114, 101, 97, 109, 0, 78, 111, 32, 100, 97, 116, 97, 32, 97, 118, 97, 105, 108, 97, 98, 108, 101, 0, 68, 101, 118, 105, 99, 101, 32, 116, 105, 109, 101, 111, 117, 116, 0, 79, 117, 116, 32, 111, 102, 32, 115, 116, 114, 101, 97, 109, 115, 32, 114, 101, 115, 111, 117, 114, 99, 101, 115, 0, 76, 105, 110, 107, 32, 104, 97, 115, 32, 98, 101, 101, 110, 32, 115, 101, 118, 101, 114, 101, 100, 0, 80, 114, 111, 116, 111, 99, 111, 108, 32, 101, 114, 114, 111, 114, 0, 66, 97, 100, 32, 109, 101, 115, 115, 97, 103, 101, 0, 70, 105, 108, 101, 32, 100, 101, 115, 99, 114, 105, 112, 116, 111, 114, 32, 105, 110, 32, 98, 97, 100, 32, 115, 116, 97, 116, 101, 0, 78, 111, 116, 32, 97, 32, 115, 111, 99, 107, 101, 116, 0, 68, 101, 115, 116, 105, 110, 97, 116, 105, 111, 110, 32, 97, 100, 100, 114, 101, 115, 115, 32, 114, 101, 113, 117, 105, 114, 101, 100, 0, 77, 101, 115, 115, 97, 103, 101, 32, 116, 111, 111, 32, 108, 97, 114, 103, 101, 0, 80, 114, 111, 116, 111, 99, 111, 108, 32, 119, 114, 111, 110, 103, 32, 116, 121, 112, 101, 32, 102, 111, 114, 32, 115, 111, 99, 107, 101, 116, 0, 80, 114, 111, 116, 111, 99, 111, 108, 32, 110, 111, 116, 32, 97, 118, 97, 105, 108, 97, 98, 108, 101, 0, 80, 114, 111, 116, 111, 99, 111, 108, 32, 110, 111, 116, 32, 115, 117, 112, 112, 111, 114, 116, 101, 100, 0, 83, 111, 99, 107, 101, 116, 32, 116, 121, 112, 101, 32, 110, 111, 116, 32, 115, 117, 112, 112, 111, 114, 116, 101, 100, 0, 78, 111, 116, 32, 115, 117, 112, 112, 111, 114, 116, 101, 100, 0, 80, 114, 111, 116, 111, 99, 111, 108, 32, 102, 97, 109, 105, 108, 121, 32, 110, 111, 116, 32, 115, 117, 112, 112, 111, 114, 116, 101, 100, 0, 65, 100, 100, 114, 101, 115, 115, 32, 102, 97, 109, 105, 108, 121, 32, 110, 111, 116, 32, 115, 117, 112, 112, 111, 114, 116, 101, 100, 32, 98, 121, 32, 112, 114, 111, 116, 111, 99, 111, 108, 0, 65, 100, 100, 114, 101, 115, 115, 32, 110, 111, 116, 32, 97, 118, 97, 105, 108, 97, 98, 108, 101, 0, 78, 101, 116, 119, 111, 114, 107, 32, 105, 115, 32, 100, 111, 119, 110, 0, 78, 101, 116, 119, 111, 114, 107, 32, 117, 110, 114, 101, 97, 99, 104, 97, 98, 108, 101, 0, 67, 111, 110, 110, 101, 99, 116, 105, 111, 110, 32, 114, 101, 115, 101, 116, 32, 98, 121, 32, 110, 101, 116, 119, 111, 114, 107, 0, 67, 111, 110, 110, 101, 99, 116, 105, 111, 110, 32, 97, 98, 111, 114, 116, 101, 100, 0, 78, 111, 32, 98, 117, 102, 102, 101, 114, 32, 115, 112, 97, 99, 101, 32, 97, 118, 97, 105, 108, 97, 98, 108, 101, 0, 83, 111, 99, 107, 101, 116, 32, 105, 115, 32, 99, 111, 110, 110, 101, 99, 116, 101, 100, 0, 83, 111, 99, 107, 101, 116, 32, 110, 111, 116, 32, 99, 111, 110, 110, 101, 99, 116, 101, 100, 0, 67, 97, 110, 110, 111, 116, 32, 115, 101, 110, 100, 32, 97, 102, 116, 101, 114, 32, 115, 111, 99, 107, 101, 116, 32, 115, 104, 117, 116, 100, 111, 119, 110, 0, 79, 112, 101, 114, 97, 116, 105, 111, 110, 32, 97, 108, 114, 101, 97, 100, 121, 32, 105, 110, 32, 112, 114, 111, 103, 114, 101, 115, 115, 0, 79, 112, 101, 114, 97, 116, 105, 111, 110, 32, 105, 110, 32, 112, 114, 111, 103, 114, 101, 115, 115, 0, 83, 116, 97, 108, 101, 32, 102, 105, 108, 101, 32, 104, 97, 110, 100, 108, 101, 0, 82, 101, 109, 111, 116, 101, 32, 73, 47, 79, 32, 101, 114, 114, 111, 114, 0, 81, 117, 111, 116, 97, 32, 101, 120, 99, 101, 101, 100, 101, 100, 0, 78, 111, 32, 109, 101, 100, 105, 117, 109, 32, 102, 111, 117, 110, 100, 0, 87, 114, 111, 110, 103, 32, 109, 101, 100, 105, 117, 109, 32, 116, 121, 112, 101, 0, 78, 111, 32, 101, 114, 114, 111, 114, 32, 105, 110, 102, 111, 114, 109, 97, 116, 105, 111, 110, 0, 0, 40, 110, 117, 108, 108, 41, 0, 45, 48, 88, 43, 48, 88, 32, 48, 88, 45, 48, 120, 43, 48, 120, 32, 48, 120, 0, 105, 110, 102, 0, 73, 78, 70, 0, 78, 65, 78, 0, 80, 79, 83, 73, 88, 0, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 255, 255, 255, 255, 255, 255, 255, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 255, 255, 255, 255, 255, 255, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 0, 1, 2, 4, 7, 3, 6, 5, 0, 105, 110, 102, 105, 110, 105, 116, 121, 0, 110, 97, 110, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 115, 116, 100, 105, 110, 98, 117, 102, 73, 99, 69, 69, 0, 117, 110, 115, 117, 112, 112, 111, 114, 116, 101, 100, 32, 108, 111, 99, 97, 108, 101, 32, 102, 111, 114, 32, 115, 116, 97, 110, 100, 97, 114, 100, 32, 105, 110, 112, 117, 116, 0, 78, 83, 116, 51, 95, 95, 49, 49, 49, 95, 95, 115, 116, 100, 111, 117, 116, 98, 117, 102, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 115, 116, 100, 105, 110, 98, 117, 102, 73, 119, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 49, 95, 95, 115, 116, 100, 111, 117, 116, 98, 117, 102, 73, 119, 69, 69, 0, 33, 34, 98, 97, 115, 105, 99, 95, 115, 116, 114, 105, 110, 103, 32, 108, 101, 110, 103, 116, 104, 95, 101, 114, 114, 111, 114, 34, 0, 47, 109, 101, 100, 105, 97, 47, 97, 108, 111, 110, 47, 50, 102, 57, 97, 51, 48, 100, 55, 45, 54, 49, 50, 52, 45, 52, 50, 100, 57, 45, 56, 55, 99, 53, 45, 51, 99, 56, 48, 99, 98, 55, 48, 101, 99, 53, 52, 47, 104, 111, 109, 101, 47, 97, 108, 111, 110, 47, 68, 101, 118, 47, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 47, 115, 121, 115, 116, 101, 109, 47, 105, 110, 99, 108, 117, 100, 101, 47, 108, 105, 98, 99, 120, 120, 47, 115, 116, 114, 105, 110, 103, 0, 33, 34, 98, 97, 115, 105, 99, 95, 115, 116, 114, 105, 110, 103, 32, 111, 117, 116, 95, 111, 102, 95, 114, 97, 110, 103, 101, 34, 0, 37, 117, 0, 78, 83, 116, 51, 95, 95, 49, 57, 98, 97, 115, 105, 99, 95, 105, 111, 115, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 56, 105, 111, 115, 95, 98, 97, 115, 101, 69, 0, 78, 83, 116, 51, 95, 95, 49, 57, 98, 97, 115, 105, 99, 95, 105, 111, 115, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 53, 98, 97, 115, 105, 99, 95, 115, 116, 114, 101, 97, 109, 98, 117, 102, 73, 99, 78, 83, 95, 49, 49, 99 ], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE + 20480);
-allocate([ 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 53, 98, 97, 115, 105, 99, 95, 115, 116, 114, 101, 97, 109, 98, 117, 102, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 51, 98, 97, 115, 105, 99, 95, 105, 115, 116, 114, 101, 97, 109, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 51, 98, 97, 115, 105, 99, 95, 105, 115, 116, 114, 101, 97, 109, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 51, 98, 97, 115, 105, 99, 95, 111, 115, 116, 114, 101, 97, 109, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 51, 98, 97, 115, 105, 99, 95, 111, 115, 116, 114, 101, 97, 109, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 55, 99, 111, 108, 108, 97, 116, 101, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 54, 108, 111, 99, 97, 108, 101, 53, 102, 97, 99, 101, 116, 69, 0, 78, 83, 116, 51, 95, 95, 49, 55, 99, 111, 108, 108, 97, 116, 101, 73, 119, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 55, 110, 117, 109, 95, 103, 101, 116, 73, 99, 78, 83, 95, 49, 57, 105, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 57, 95, 95, 110, 117, 109, 95, 103, 101, 116, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 52, 95, 95, 110, 117, 109, 95, 103, 101, 116, 95, 98, 97, 115, 101, 69, 0, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 97, 98, 99, 100, 101, 102, 65, 66, 67, 68, 69, 70, 120, 88, 43, 45, 112, 80, 105, 73, 110, 78, 0, 67, 0, 37, 112, 0, 78, 83, 116, 51, 95, 95, 49, 55, 110, 117, 109, 95, 103, 101, 116, 73, 119, 78, 83, 95, 49, 57, 105, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 57, 95, 95, 110, 117, 109, 95, 103, 101, 116, 73, 119, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 55, 110, 117, 109, 95, 112, 117, 116, 73, 99, 78, 83, 95, 49, 57, 111, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 57, 95, 95, 110, 117, 109, 95, 112, 117, 116, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 52, 95, 95, 110, 117, 109, 95, 112, 117, 116, 95, 98, 97, 115, 101, 69, 0, 37, 0, 0, 0, 0, 0, 76, 0, 37, 112, 0, 0, 0, 0, 78, 83, 116, 51, 95, 95, 49, 55, 110, 117, 109, 95, 112, 117, 116, 73, 119, 78, 83, 95, 49, 57, 111, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 57, 95, 95, 110, 117, 109, 95, 112, 117, 116, 73, 119, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 56, 116, 105, 109, 101, 95, 103, 101, 116, 73, 99, 78, 83, 95, 49, 57, 105, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 57, 116, 105, 109, 101, 95, 98, 97, 115, 101, 69, 0, 78, 83, 116, 51, 95, 95, 49, 50, 48, 95, 95, 116, 105, 109, 101, 95, 103, 101, 116, 95, 99, 95, 115, 116, 111, 114, 97, 103, 101, 73, 99, 69, 69, 0, 37, 72, 58, 37, 77, 58, 37, 83, 37, 109, 47, 37, 100, 47, 37, 121, 37, 89, 45, 37, 109, 45, 37, 100, 37, 73, 58, 37, 77, 58, 37, 83, 32, 37, 112, 37, 72, 58, 37, 77, 37, 72, 58, 37, 77, 58, 37, 83, 83, 117, 110, 100, 97, 121, 0, 77, 111, 110, 100, 97, 121, 0, 84, 117, 101, 115, 100, 97, 121, 0, 87, 101, 100, 110, 101, 115, 100, 97, 121, 0, 84, 104, 117, 114, 115, 100, 97, 121, 0, 70, 114, 105, 100, 97, 121, 0, 83, 97, 116, 117, 114, 100, 97, 121, 0, 83, 117, 110, 0, 77, 111, 110, 0, 84, 117, 101, 0, 87, 101, 100, 0, 84, 104, 117, 0, 70, 114, 105, 0, 83, 97, 116, 0, 74, 97, 110, 117, 97, 114, 121, 0, 70, 101, 98, 114, 117, 97, 114, 121, 0, 77, 97, 114, 99, 104, 0, 65, 112, 114, 105, 108, 0, 77, 97, 121, 0, 74, 117, 110, 101, 0, 74, 117, 108, 121, 0, 65, 117, 103, 117, 115, 116, 0, 83, 101, 112, 116, 101, 109, 98, 101, 114, 0, 79, 99, 116, 111, 98, 101, 114, 0, 78, 111, 118, 101, 109, 98, 101, 114, 0, 68, 101, 99, 101, 109, 98, 101, 114, 0, 74, 97, 110, 0, 70, 101, 98, 0, 77, 97, 114, 0, 65, 112, 114, 0, 74, 117, 110, 0, 74, 117, 108, 0, 65, 117, 103, 0, 83, 101, 112, 0, 79, 99, 116, 0, 78, 111, 118, 0, 68, 101, 99, 0, 65, 77, 0, 80, 77, 0, 37, 97, 32, 37, 98, 32, 37, 100, 32, 37, 72, 58, 37, 77, 58, 37, 83, 32, 37, 89, 0, 37, 73, 58, 37, 77, 58, 37, 83, 32, 37, 112, 0, 37, 109, 47, 37, 100, 47, 37, 121, 0, 37, 72, 58, 37, 77, 58, 37, 83, 0, 78, 83, 116, 51, 95, 95, 49, 56, 116, 105, 109, 101, 95, 103, 101, 116, 73, 119, 78, 83, 95, 49, 57, 105, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 50, 48, 95, 95, 116, 105, 109, 101, 95, 103, 101, 116, 95, 99, 95, 115, 116, 111, 114, 97, 103, 101, 73, 119, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 56, 116, 105, 109, 101, 95, 112, 117, 116, 73, 99, 78, 83, 95, 49, 57, 111, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 116, 105, 109, 101, 95, 112, 117, 116, 69, 0, 78, 83, 116, 51, 95, 95, 49, 56, 116, 105, 109, 101, 95, 112, 117, 116, 73, 119, 78, 83, 95, 49, 57, 111, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 109, 111, 110, 101, 121, 112, 117, 110, 99, 116, 73, 99, 76, 98, 48, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 109, 111, 110, 101, 121, 95, 98, 97, 115, 101, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 109, 111, 110, 101, 121, 112, 117, 110, 99, 116, 73, 99, 76, 98, 49, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 109, 111, 110, 101, 121, 112, 117, 110, 99, 116, 73, 119, 76, 98, 48, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 109, 111, 110, 101, 121, 112, 117, 110, 99, 116, 73, 119, 76, 98, 49, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 57, 109, 111, 110, 101, 121, 95, 103, 101, 116, 73, 99, 78, 83, 95, 49, 57, 105, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 49, 95, 95, 109, 111, 110, 101, 121, 95, 103, 101, 116, 73, 99, 69, 69, 0, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 0, 37, 76, 102, 0, 78, 83, 116, 51, 95, 95, 49, 57, 109, 111, 110, 101, 121, 95, 103, 101, 116, 73, 119, 78, 83, 95, 49, 57, 105, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 49, 95, 95, 109, 111, 110, 101, 121, 95, 103, 101, 116, 73, 119, 69, 69, 0, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 0, 78, 83, 116, 51, 95, 95, 49, 57, 109, 111, 110, 101, 121, 95, 112, 117, 116, 73, 99, 78, 83, 95, 49, 57, 111, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 49, 95, 95, 109, 111, 110, 101, 121, 95, 112, 117, 116, 73, 99, 69, 69, 0, 37, 46, 48, 76, 102, 0, 78, 83, 116, 51, 95, 95, 49, 57, 109, 111, 110, 101, 121, 95, 112, 117, 116, 73, 119, 78, 83, 95, 49, 57, 111, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 49, 95, 95, 109, 111, 110, 101, 121, 95, 112, 117, 116, 73, 119, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 56, 109, 101, 115, 115, 97, 103, 101, 115, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 51, 109, 101, 115, 115, 97, 103, 101, 115, 95, 98, 97, 115, 101, 69, 0, 78, 83, 116, 51, 95, 95, 49, 56, 109, 101, 115, 115, 97, 103, 101, 115, 73, 119, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 54, 95, 95, 110, 97, 114, 114, 111, 119, 95, 116, 111, 95, 117, 116, 102, 56, 73, 76, 106, 51, 50, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 55, 99, 111, 100, 101, 99, 118, 116, 73, 68, 105, 99, 49, 49, 95, 95, 109, 98, 115, 116, 97, 116, 101, 95, 116, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 50, 99, 111, 100, 101, 99, 118, 116, 95, 98, 97, 115, 101, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 55, 95, 95, 119, 105, 100, 101, 110, 95, 102, 114, 111, 109, 95, 117, 116, 102, 56, 73, 76, 106, 51, 50, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 55, 99, 111, 100, 101, 99, 118, 116, 73, 99, 99, 49, 49, 95, 95, 109, 98, 115, 116, 97, 116, 101, 95, 116, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 55, 99, 111, 100, 101, 99, 118, 116, 73, 119, 99, 49, 49, 95, 95, 109, 98, 115, 116, 97, 116, 101, 95, 116, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 55, 99, 111, 100, 101, 99, 118, 116, 73, 68, 115, 99, 49, 49, 95, 95, 109, 98, 115, 116, 97, 116, 101, 95, 116, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 54, 108, 111, 99, 97, 108, 101, 53, 95, 95, 105, 109, 112, 69, 0, 78, 83, 116, 51, 95, 95, 49, 53, 99, 116, 121, 112, 101, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 99, 116, 121, 112, 101, 95, 98, 97, 115, 101, 69, 0, 78, 83, 116, 51, 95, 95, 49, 53, 99, 116, 121, 112, 101, 73, 119, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 56, 110, 117, 109, 112, 117, 110, 99, 116, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 56, 110, 117, 109, 112, 117, 110, 99, 116, 73, 119, 69, 69, 0, 33, 34, 118, 101, 99, 116, 111, 114, 32, 108, 101, 110, 103, 116, 104, 95, 101, 114, 114, 111, 114, 34, 0, 47, 109, 101, 100, 105, 97, 47, 97, 108, 111, 110, 47, 50, 102, 57, 97, 51, 48, 100, 55, 45, 54, 49, 50, 52, 45, 52, 50, 100, 57, 45, 56, 55, 99, 53, 45, 51, 99, 56, 48, 99, 98, 55, 48, 101, 99, 53, 52, 47, 104, 111, 109, 101, 47, 97, 108, 111, 110, 47, 68, 101, 118, 47, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 47, 115, 121, 115, 116, 101, 109, 47, 105, 110, 99, 108, 117, 100, 101, 47, 108, 105, 98, 99, 120, 120, 47, 118, 101, 99, 116, 111, 114, 0, 95, 95, 116, 104, 114, 111, 119, 95, 108, 101, 110, 103, 116, 104, 95, 101, 114, 114, 111, 114, 0, 33, 34, 118, 101, 99, 116, 111, 114, 32, 111, 117, 116, 95, 111, 102, 95, 114, 97, 110, 103, 101, 34, 0, 95, 95, 116, 104, 114, 111, 119, 95, 111, 117, 116, 95, 111, 102, 95, 114, 97, 110, 103, 101, 0, 78, 83, 116, 51, 95, 95, 49, 49, 52, 95, 95, 115, 104, 97, 114, 101, 100, 95, 99, 111, 117, 110, 116, 69, 0, 99, 97, 110, 110, 111, 116, 32, 122, 101, 114, 111, 32, 111, 117, 116, 32, 116, 104, 114, 101, 97, 100, 32, 118, 97, 108, 117, 101, 32, 102, 111, 114, 32, 95, 95, 99, 120, 97, 95, 103, 101, 116, 95, 103, 108, 111, 98, 97, 108, 115, 40, 41, 0, 99, 97, 110, 110, 111, 116, 32, 99, 114, 101, 97, 116, 101, 32, 112, 116, 104, 114, 101, 97, 100, 32, 107, 101, 121, 32, 102, 111, 114, 32, 95, 95, 99, 120, 97, 95, 103, 101, 116, 95, 103, 108, 111, 98, 97, 108, 115, 40, 41, 0, 112, 116, 104, 114, 101, 97, 100, 95, 111, 110, 99, 101, 32, 102, 97, 105, 108, 117, 114, 101, 32, 105, 110, 32, 95, 95, 99, 120, 97, 95, 103, 101, 116, 95, 103, 108, 111, 98, 97, 108, 115, 95, 102, 97, 115, 116, 40, 41, 0, 78, 49, 48, 95, 95, 99, 120, 120, 97, 98, 105, 118, 49, 50, 48, 95, 95, 115, 105, 95, 99, 108, 97, 115, 115, 95, 116, 121, 112, 101, 95, 105, 110, 102, 111, 69, 0, 78, 49, 48, 95, 95, 99, 120, 120, 97, 98, 105, 118, 49, 49, 54, 95, 95, 115, 104, 105, 109, 95, 116, 121, 112, 101, 95, 105, 110, 102, 111, 69, 0, 83, 116, 57, 116, 121, 112, 101, 95, 105, 110, 102, 111, 0, 78, 49, 48, 95, 95, 99, 120, 120, 97, 98, 105, 118, 49, 49, 55, 95, 95, 99, 108, 97, 115, 115, 95, 116, 121, 112, 101, 95, 105, 110, 102, 111, 69, 0, 83, 116, 57, 101, 120, 99, 101, 112, 116, 105, 111, 110, 0, 117, 110, 99, 97, 117, 103, 104, 116, 0, 116, 101, 114, 109, 105, 110, 97, 116, 105, 110, 103, 32, 119, 105, 116, 104, 32, 37, 115, 32, 101, 120, 99, 101, 112, 116, 105, 111, 110, 32, 111, 102, 32, 116, 121, 112, 101, 32, 37, 115, 58, 32, 37, 115, 0, 116, 101, 114, 109, 105, 110, 97, 116, 105, 110, 103, 32, 119, 105, 116, 104, 32, 37, 115, 32, 101, 120, 99, 101, 112, 116, 105, 111, 110, 32, 111, 102, 32, 116, 121, 112, 101, 32, 37, 115, 0, 116, 101, 114, 109, 105, 110, 97, 116, 105, 110, 103, 32, 119, 105, 116, 104, 32, 37, 115, 32, 102, 111, 114, 101, 105, 103, 110, 32, 101, 120, 99, 101, 112, 116, 105, 111, 110, 0, 116, 101, 114, 109, 105, 110, 97, 116, 105, 110, 103, 0, 116, 101, 114, 109, 105, 110, 97, 116, 101, 95, 104, 97, 110, 100, 108, 101, 114, 32, 117, 110, 101, 120, 112, 101, 99, 116, 101, 100, 108, 121, 32, 114, 101, 116, 117, 114, 110, 101, 100, 0, 83, 116, 57, 98, 97, 100, 95, 97, 108, 108, 111, 99, 0, 115, 116, 100, 58, 58, 98, 97, 100, 95, 97, 108, 108, 111, 99, 0, 115, 116, 100, 58, 58, 101, 120, 99, 101, 112, 116, 105, 111, 110, 0, 78, 49, 48, 95, 95, 99, 120, 120, 97, 98, 105, 118, 49, 49, 57, 95, 95, 112, 111, 105, 110, 116, 101, 114, 95, 116, 121, 112, 101, 95, 105, 110, 102, 111, 69, 0, 78, 49, 48, 95, 95, 99, 120, 120, 97, 98, 105, 118, 49, 49, 55, 95, 95, 112, 98, 97, 115, 101, 95, 116, 121, 112, 101, 95, 105, 110, 102, 111, 69, 0, 78, 49, 48, 95, 95, 99, 120, 120, 97, 98, 105, 118, 49, 50, 49, 95, 95, 118, 109, 105, 95, 99, 108, 97, 115, 115, 95, 116, 121, 112, 101, 95, 105, 110, 102, 111, 69, 0, 32, 99, 111, 110, 115, 116, 0, 32, 118, 111, 108, 97, 116, 105, 108, 101, 0, 32, 114, 101, 115, 116, 114, 105, 99, 116, 0, 118, 111, 105, 100, 0, 119, 99, 104, 97, 114, 95, 116, 0, 98, 111, 111, 108, 0, 99, 104, 97, 114, 0, 115, 105, 103, 110, 101, 100, 32, 99, 104, 97, 114, 0, 117, 110, 115, 105, 103, 110, 101, 100, 32, 99, 104, 97, 114, 0, 115, 104, 111, 114, 116, 0, 117, 110, 115, 105, 103, 110, 101, 100, 32, 115, 104, 111, 114, 116, 0, 105, 110, 116, 0, 117, 110, 115, 105, 103, 110, 101, 100, 32, 105, 110, 116, 0, 108, 111, 110, 103, 0, 117, 110, 115, 105, 103, 110, 101, 100, 32, 108, 111, 110, 103, 0, 108, 111, 110, 103, 32, 108, 111, 110, 103, 0, 117, 110, 115, 105, 103, 110, 101, 100, 32, 108, 111, 110, 103, 32, 108, 111, 110, 103, 0, 95, 95, 105, 110, 116, 49, 50, 56, 0, 117, 110, 115, 105, 103, 110, 101, 100, 32, 95, 95, 105, 110, 116, 49, 50, 56, 0, 102, 108, 111, 97, 116, 0, 100, 111, 117, 98, 108, 101, 0, 108, 111, 110, 103, 32, 100, 111, 117, 98, 108, 101, 0, 95, 95, 102, 108, 111, 97, 116, 49, 50, 56, 0, 46, 46, 46, 0, 95, 71, 76, 79, 66, 65, 76, 95, 95, 78, 0, 40, 97, 110, 111, 110, 121, 109, 111, 117, 115, 32, 110, 97, 109, 101, 115, 112, 97, 99, 101, 41, 0, 100, 101, 99, 105, 109, 97, 108, 54, 52, 0, 100, 101, 99, 105, 109, 97, 108, 49, 50, 56, 0, 100, 101, 99, 105, 109, 97, 108, 51, 50, 0, 100, 101, 99, 105, 109, 97, 108, 49, 54, 0, 99, 104, 97, 114, 51, 50, 95, 116, 0, 99, 104, 97, 114, 49, 54, 95, 116, 0, 97, 117, 116, 111, 0, 115, 116, 100, 58, 58, 110, 117, 108, 108, 112, 116, 114, 95, 116, 0, 32, 91, 0, 32, 91, 93, 0, 93, 0, 40, 0, 41, 0, 102, 97, 108, 115, 101, 0, 116, 114, 117, 101, 0, 117, 0, 108, 0, 117, 108, 0, 108, 108, 0, 117, 108, 108, 0, 37, 97, 102, 0, 37, 97, 0, 37, 76, 97, 76, 0, 102, 112, 0, 38, 38, 0, 62, 0, 41, 32, 0, 32, 40, 0, 38, 0, 38, 61, 0, 61, 0, 97, 108, 105, 103, 110, 111, 102, 32, 40, 0, 99, 111, 110, 115, 116, 95, 99, 97, 115, 116, 60, 0, 62, 40, 0, 44, 0, 126, 0, 41, 40, 0, 58, 58, 0, 100, 101, 108, 101, 116, 101, 91, 93, 32, 0, 100, 121, 110, 97, 109, 105, 99, 95, 99, 97, 115, 116, 60, 0, 42, 0, 100, 101, 108, 101, 116, 101, 32, 0, 111, 112, 101, 114, 97, 116, 111, 114, 38, 38, 0, 111, 112, 101, 114, 97, 116, 111, 114, 38, 0, 111, 112, 101, 114, 97, 116, 111, 114, 38, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 40, 41, 0, 111, 112, 101, 114, 97, 116, 111, 114, 44, 0, 111, 112, 101, 114, 97, 116, 111, 114, 126, 0, 111, 112, 101, 114, 97, 116, 111, 114, 32, 0, 111, 112, 101, 114, 97, 116, 111, 114, 32, 100, 101, 108, 101, 116, 101, 91, 93, 0, 111, 112, 101, 114, 97, 116, 111, 114, 42, 0, 111, 112, 101, 114, 97, 116, 111, 114, 32, 100, 101, 108, 101, 116, 101, 0, 111, 112, 101, 114, 97, 116, 111, 114, 47, 0, 111, 112, 101, 114, 97, 116, 111, 114, 47, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 94, 0, 111, 112, 101, 114, 97, 116, 111, 114, 94, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 61, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 62, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 62, 0, 111, 112, 101, 114, 97, 116, 111, 114, 91, 93, 0, 111, 112, 101, 114, 97, 116, 111, 114, 60, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 34, 34, 32, 0, 111, 112, 101, 114, 97, 116, 111, 114, 60, 60, 0, 111, 112, 101, 114, 97, 116, 111, 114, 60, 60, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 60, 0, 111, 112, 101, 114, 97, 116, 111, 114, 45, 0, 111, 112, 101, 114, 97, 116, 111, 114, 45, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 42, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 45, 45, 0, 111, 112, 101, 114, 97, 116, 111, 114, 32, 110, 101, 119, 91, 93, 0, 111, 112, 101, 114, 97, 116, 111, 114, 33, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 33, 0, 111, 112, 101, 114, 97, 116, 111, 114, 32, 110, 101, 119, 0, 111, 112, 101, 114, 97, 116, 111, 114, 124, 124, 0, 111, 112, 101, 114, 97, 116, 111, 114, 124, 0, 111, 112, 101, 114, 97, 116, 111, 114, 124, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 45, 62, 42, 0, 111, 112, 101, 114, 97, 116, 111, 114, 43, 0, 111, 112, 101, 114, 97, 116, 111, 114, 43, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 43, 43, 0, 111, 112, 101, 114, 97, 116, 111, 114, 45, 62, 0, 111, 112, 101, 114, 97, 116, 111, 114, 63, 0, 111, 112, 101, 114, 97, 116, 111, 114, 37, 0, 111, 112, 101, 114, 97, 116, 111, 114, 37, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 62, 62, 0, 111, 112, 101, 114, 97, 116, 111, 114, 62, 62, 61, 0, 60, 0, 44, 32, 0, 32, 62, 0, 100, 101, 99, 108, 116, 121, 112, 101, 40, 0, 115, 116, 100, 58, 58, 97, 108, 108, 111, 99, 97, 116, 111, 114, 0, 115, 116, 100, 58, 58, 98, 97, 115, 105, 99, 95, 115, 116, 114, 105, 110, 103, 0, 115, 116, 100, 58, 58, 115, 116, 114, 105, 110, 103, 0, 115, 116, 100, 58, 58, 105, 115, 116, 114, 101, 97, 109, 0, 115, 116, 100, 58, 58, 111, 115, 116, 114, 101, 97, 109, 0, 115, 116, 100, 58, 58, 105, 111, 115, 116, 114, 101, 97, 109, 0, 115, 116, 100, 58, 58, 98, 97, 115, 105, 99, 95, 115, 116, 114, 105, 110, 103, 60, 99, 104, 97, 114, 44, 32, 115, 116, 100, 58, 58, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 60, 99, 104, 97, 114, 62, 44, 32, 115, 116, 100, 58, 58, 97, 108, 108, 111, 99, 97, 116, 111, 114, 60, 99, 104, 97, 114, 62, 32, 62, 0, 98, 97, 115, 105, 99, 95, 115, 116, 114, 105, 110, 103, 0, 115, 116, 100, 58, 58, 98, 97, 115, 105, 99, 95, 105, 115, 116, 114, 101, 97, 109, 60, 99, 104, 97, 114, 44, 32, 115, 116, 100, 58, 58, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 60, 99, 104, 97, 114, 62, 32, 62, 0, 98, 97, 115, 105, 99, 95, 105, 115, 116, 114, 101, 97, 109, 0, 115, 116, 100, 58, 58, 98, 97, 115, 105, 99, 95, 111, 115, 116, 114, 101, 97, 109, 60, 99, 104, 97, 114, 44, 32, 115, 116, 100, 58, 58, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 60, 99, 104, 97, 114, 62, 32, 62, 0, 98, 97, 115, 105, 99, 95, 111, 115, 116, 114, 101, 97, 109, 0, 115, 116, 100, 58, 58, 98, 97, 115, 105, 99, 95, 105, 111, 115, 116, 114, 101, 97, 109, 60, 99, 104, 97, 114, 44, 32, 115, 116, 100, 58, 58, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 60, 99, 104, 97, 114, 62, 32, 62, 0, 98, 97, 115, 105, 99, 95, 105, 111, 115, 116, 114, 101, 97, 109, 0, 39, 117, 110, 110, 97, 109, 101, 100, 0, 39, 108, 97, 109, 98, 100, 97, 39, 40, 0, 115, 116, 100, 58, 58, 0, 46, 42, 0, 46, 0, 47, 0, 47, 61, 0, 94, 0, 94, 61, 0, 61, 61, 0, 62, 61, 0, 41, 91, 0, 60, 61, 0, 60, 60, 0, 60, 60, 61, 0, 45, 0, 45, 61, 0, 42, 61, 0, 45, 45, 0, 41, 45, 45, 0, 91, 93, 32, 0, 32, 0, 33, 61, 0, 33, 0, 110, 111, 101, 120, 99, 101, 112, 116, 32, 40, 0, 124, 124, 0, 124, 0, 124, 61, 0, 45, 62, 42, 0, 43, 0, 43, 61, 0, 43, 43, 0, 41, 43, 43, 0, 45, 62, 0, 41, 32, 63, 32, 40, 0, 41, 32, 58, 32, 40, 0, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 95, 99, 97, 115, 116, 60, 0, 37, 0, 37, 61, 0, 62, 62, 0, 62, 62, 61, 0, 115, 116, 97, 116, 105, 99, 95, 99, 97, 115, 116, 60, 0, 115, 105, 122, 101, 111, 102, 32, 40, 0, 115, 105, 122, 101, 111, 102, 46, 46, 46, 40, 0, 116, 121, 112, 101, 105, 100, 40, 0, 116, 104, 114, 111, 119, 0, 116, 104, 114, 111, 119, 32, 0, 32, 99, 111, 109, 112, 108, 101, 120, 0, 32, 38, 0, 32, 38, 38, 0, 32, 105, 109, 97, 103, 105, 110, 97, 114, 121, 0, 58, 58, 42, 0, 111, 98, 106, 99, 95, 111, 98, 106, 101, 99, 116, 60, 0, 105, 100, 0, 111, 98, 106, 99, 112, 114, 111, 116, 111, 0, 115, 116, 100, 0, 58, 58, 115, 116, 114, 105, 110, 103, 32, 108, 105, 116, 101, 114, 97, 108, 0, 32, 118, 101, 99, 116, 111, 114, 91, 0, 112, 105, 120, 101, 108, 32, 118, 101, 99, 116, 111, 114, 91, 0, 118, 116, 97, 98, 108, 101, 32, 102, 111, 114, 32, 0, 86, 84, 84, 32, 102, 111, 114, 32, 0, 116, 121, 112, 101, 105, 110, 102, 111, 32, 102, 111, 114, 32, 0, 116, 121, 112, 101, 105, 110, 102, 111, 32, 110, 97, 109, 101, 32, 102, 111, 114, 32, 0, 99, 111, 118, 97, 114, 105, 97, 110, 116, 32, 114, 101, 116, 117, 114, 110, 32, 116, 104, 117, 110, 107, 32, 116, 111, 32, 0, 99, 111, 110, 115, 116, 114, 117, 99, 116, 105, 111, 110, 32, 118, 116, 97, 98, 108, 101, 32, 102, 111, 114, 32, 0, 45, 105, 110, 45, 0, 118, 105, 114, 116, 117, 97, 108, 32, 116, 104, 117, 110, 107, 32, 116, 111, 32, 0, 110, 111, 110, 45, 118, 105, 114, 116, 117, 97, 108, 32, 116, 104, 117, 110, 107, 32, 116, 111, 32, 0, 103, 117, 97, 114, 100, 32, 118, 97, 114, 105, 97, 98, 108, 101, 32, 102, 111, 114, 32, 0, 114, 101, 102, 101, 114, 101, 110, 99, 101, 32, 116, 101, 109, 112, 111, 114, 97, 114, 121, 32, 102, 111, 114, 32, 0, 95, 98, 108, 111, 99, 107, 95, 105, 110, 118, 111, 107, 101, 0, 105, 110, 118, 111, 99, 97, 116, 105, 111, 110, 32, 102, 117, 110, 99, 116, 105, 111, 110, 32, 102, 111, 114, 32, 98, 108, 111, 99, 107, 32, 105, 110, 32, 0 ], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE + 30720);
+allocate([ 12, 45, 0, 0, 193, 60, 0, 0, 52, 45, 0, 0, 112, 60, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 35, 60, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 233, 59, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 95, 62, 0, 0, 52, 45, 0, 0, 230, 61, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 113, 61, 0, 0, 72, 0, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 15, 61, 0, 0, 88, 0, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 213, 62, 0, 0, 248, 4, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 27, 63, 0, 0, 232, 4, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 126, 65, 0, 0, 224, 9, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 198, 66, 0, 0, 52, 45, 0, 0, 102, 66, 0, 0, 168, 0, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 98, 71, 0, 0, 52, 45, 0, 0, 61, 71, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 107, 78, 0, 0, 52, 45, 0, 0, 238, 77, 0, 0, 216, 0, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 214, 79, 0, 0, 88, 5, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 40, 83, 0, 0, 52, 45, 0, 0, 164, 82, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 236, 86, 0, 0, 12, 45, 0, 0, 174, 87, 0, 0, 52, 45, 0, 0, 41, 87, 0, 0, 32, 1, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 5, 88, 0, 0, 52, 45, 0, 0, 66, 88, 0, 0, 32, 1, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 199, 88, 0, 0, 12, 45, 0, 0, 246, 93, 0, 0, 52, 45, 0, 0, 169, 93, 0, 0, 88, 1, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 64, 94, 0, 0, 52, 45, 0, 0, 208, 94, 0, 0, 136, 1, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 71, 95, 0, 0, 52, 45, 0, 0, 117, 95, 0, 0, 160, 1, 0, 0, 0, 0, 0, 0, 116, 45, 0, 0, 138, 95, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 1, 0, 0, 2, 0, 0, 0, 200, 1, 0, 0, 2, 4, 0, 0, 12, 45, 0, 0, 196, 95, 0, 0, 52, 45, 0, 0, 209, 95, 0, 0, 216, 1, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 249, 95, 0, 0, 232, 1, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 37, 96, 0, 0, 52, 45, 0, 0, 78, 96, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 137, 96, 0, 0, 16, 2, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 219, 96, 0, 0, 12, 45, 0, 0, 42, 97, 0, 0, 52, 45, 0, 0, 173, 97, 0, 0, 136, 1, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 40, 98, 0, 0, 64, 2, 0, 0, 0, 0, 0, 0, 116, 45, 0, 0, 65, 98, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 1, 0, 0, 2, 0, 0, 0, 96, 2, 0, 0, 2, 4, 0, 0, 52, 45, 0, 0, 127, 98, 0, 0, 112, 2, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 171, 98, 0, 0, 128, 2, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 219, 98, 0, 0, 52, 45, 0, 0, 8, 99, 0, 0, 152, 2, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 71, 99, 0, 0, 168, 2, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 157, 99, 0, 0, 12, 45, 0, 0, 4, 100, 0, 0, 52, 45, 0, 0, 140, 100, 0, 0, 136, 1, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 9, 101, 0, 0, 216, 2, 0, 0, 0, 0, 0, 0, 116, 45, 0, 0, 36, 101, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 1, 0, 0, 2, 0, 0, 0, 248, 2, 0, 0, 2, 4, 0, 0, 52, 45, 0, 0, 100, 101, 0, 0, 8, 3, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 146, 101, 0, 0, 24, 3, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 196, 101, 0, 0, 52, 45, 0, 0, 243, 101, 0, 0, 48, 3, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 52, 102, 0, 0, 64, 3, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 140, 102, 0, 0, 12, 45, 0, 0, 225, 102, 0, 0, 52, 45, 0, 0, 105, 103, 0, 0, 136, 1, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 227, 103, 0, 0, 112, 3, 0, 0, 0, 0, 0, 0, 116, 45, 0, 0, 251, 103, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 1, 0, 0, 2, 0, 0, 0, 144, 3, 0, 0, 2, 4, 0, 0, 52, 45, 0, 0, 56, 104, 0, 0, 160, 3, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 99, 104, 0, 0, 176, 3, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 146, 104, 0, 0, 52, 45, 0, 0, 190, 104, 0, 0, 200, 3, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 252, 104, 0, 0, 216, 3, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 81, 105, 0, 0, 12, 45, 0, 0, 224, 105, 0, 0, 52, 45, 0, 0, 86, 106, 0, 0, 136, 1, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 208, 106, 0, 0, 8, 4, 0, 0, 0, 0, 0, 0, 116, 45, 0, 0, 232, 106, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 192, 1, 0, 0, 2, 0, 0, 0, 40, 4, 0, 0, 2, 4, 0, 0, 52, 45, 0, 0, 37, 107, 0, 0, 56, 4, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 80, 107, 0, 0, 72, 4, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 127, 107, 0, 0, 52, 45, 0, 0, 201, 107, 0, 0, 96, 4, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 7, 108, 0, 0, 112, 4, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 92, 108, 0, 0, 12, 45, 0, 0, 185, 108, 0, 0, 52, 45, 0, 0, 222, 123, 0, 0, 232, 4, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 28, 124, 0, 0, 232, 4, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 53, 124, 0, 0, 240, 4, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 77, 124, 0, 0, 240, 4, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 10, 125, 0, 0, 208, 4, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 52, 125, 0, 0, 52, 45, 0, 0, 70, 125, 0, 0, 208, 4, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 112, 125, 0, 0, 12, 45, 0, 0, 161, 125, 0, 0, 116, 45, 0, 0, 210, 125, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 192, 4, 0, 0, 3, 244, 255, 255, 116, 45, 0, 0, 1, 126, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 216, 4, 0, 0, 3, 244, 255, 255, 116, 45, 0, 0, 48, 126, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 192, 4, 0, 0, 3, 244, 255, 255, 116, 45, 0, 0, 95, 126, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 216, 4, 0, 0, 3, 244, 255, 255, 116, 45, 0, 0, 142, 126, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 248, 4, 0, 0, 2, 0, 0, 0, 40, 5, 0, 0, 2, 8, 0, 0, 52, 45, 0, 0, 190, 126, 0, 0, 136, 5, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 210, 126, 0, 0, 216, 9, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 232, 126, 0, 0, 136, 5, 0, 0, 0, 0, 0, 0, 116, 45, 0, 0, 252, 126, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 200, 5, 0, 0, 0, 0, 0, 0, 116, 45, 0, 0, 64, 127, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 224, 5, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 86, 127, 0, 0, 116, 45, 0, 0, 149, 127, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 8, 6, 0, 0, 0, 0, 0, 0, 116, 45, 0, 0, 217, 127, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 224, 5, 0, 0, 0, 0, 0, 0, 116, 45, 0, 0, 239, 127, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 64, 6, 0, 0, 0, 0, 0, 0, 116, 45, 0, 0, 51, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 88, 6, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 73, 128, 0, 0, 116, 45, 0, 0, 112, 128, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 128, 6, 0, 0, 0, 0, 0, 0, 116, 45, 0, 0, 180, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 88, 6, 0, 0, 0, 0, 0, 0, 116, 45, 0, 0, 202, 128, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 192, 6, 0, 0, 2, 0, 0, 0, 200, 6, 0, 0, 0, 8, 0, 0, 12, 45, 0, 0, 15, 129, 0, 0, 12, 45, 0, 0, 34, 129, 0, 0, 116, 45, 0, 0, 132, 130, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 192, 6, 0, 0, 2, 0, 0, 0, 248, 6, 0, 0, 0, 8, 0, 0, 12, 45, 0, 0, 201, 130, 0, 0, 116, 45, 0, 0, 235, 130, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 32, 7, 0, 0, 0, 8, 0, 0, 12, 45, 0, 0, 48, 131, 0, 0, 116, 45, 0, 0, 69, 131, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 32, 7, 0, 0, 0, 8, 0, 0, 116, 45, 0, 0, 138, 131, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 104, 7, 0, 0, 2, 0, 0, 0, 12, 45, 0, 0, 166, 131, 0, 0, 116, 45, 0, 0, 187, 131, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 104, 7, 0, 0, 2, 0, 0, 0, 116, 45, 0, 0, 215, 131, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 104, 7, 0, 0, 2, 0, 0, 0, 116, 45, 0, 0, 243, 131, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 104, 7, 0, 0, 2, 0, 0, 0, 116, 45, 0, 0, 15, 132, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 240, 7, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 85, 132, 0, 0, 116, 45, 0, 0, 125, 132, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 24, 8, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 195, 132, 0, 0, 116, 45, 0, 0, 231, 132, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 64, 8, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 45, 133, 0, 0, 116, 45, 0, 0, 76, 133, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 104, 8, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 146, 133, 0, 0, 116, 45, 0, 0, 171, 133, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 144, 8, 0, 0, 2, 0, 0, 0, 12, 45, 0, 0, 192, 133, 0, 0, 116, 45, 0, 0, 216, 133, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 144, 8, 0, 0, 2, 0, 0, 0, 52, 45, 0, 0, 237, 133, 0, 0, 200, 8, 0, 0, 0, 0, 0, 0, 116, 45, 0, 0, 15, 134, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 232, 8, 0, 0, 2, 0, 0, 0, 12, 45, 0, 0, 50, 134, 0, 0, 52, 45, 0, 0, 73, 134, 0, 0, 200, 8, 0, 0, 0, 0, 0, 0, 116, 45, 0, 0, 108, 134, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 232, 8, 0, 0, 2, 0, 0, 0, 116, 45, 0, 0, 142, 134, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 232, 8, 0, 0, 2, 0, 0, 0, 116, 45, 0, 0, 176, 134, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 232, 8, 0, 0, 2, 0, 0, 0, 52, 45, 0, 0, 211, 134, 0, 0, 136, 5, 0, 0, 0, 0, 0, 0, 116, 45, 0, 0, 233, 134, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 144, 9, 0, 0, 2, 0, 0, 0, 12, 45, 0, 0, 251, 134, 0, 0, 116, 45, 0, 0, 16, 135, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 136, 5, 0, 0, 2, 0, 0, 0, 144, 9, 0, 0, 2, 0, 0, 0, 52, 45, 0, 0, 34, 135, 0, 0, 136, 5, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 55, 135, 0, 0, 136, 5, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 11, 136, 0, 0, 12, 45, 0, 0, 49, 137, 0, 0, 52, 45, 0, 0, 15, 137, 0, 0, 8, 10, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 188, 136, 0, 0, 232, 9, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 225, 136, 0, 0, 24, 10, 0, 0, 0, 0, 0, 0, 12, 45, 0, 0, 2, 137, 0, 0, 52, 45, 0, 0, 247, 137, 0, 0, 224, 9, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 70, 138, 0, 0, 8, 10, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 34, 138, 0, 0, 48, 10, 0, 0, 0, 0, 0, 0, 52, 45, 0, 0, 104, 138, 0, 0, 232, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 104, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 0, 120, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 196, 255, 255, 255, 196, 255, 255, 255, 120, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 164, 10, 0, 0, 220, 10, 0, 0, 240, 10, 0, 0, 184, 10, 0, 0, 60, 0, 0, 0, 0, 0, 0, 0, 248, 4, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 196, 255, 255, 255, 196, 255, 255, 255, 248, 4, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 136, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 7, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 152, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 176, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 200, 0, 0, 0, 8, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 1, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 224, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 240, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 56, 0, 0, 0, 248, 255, 255, 255, 240, 0, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, 192, 255, 255, 255, 192, 255, 255, 255, 240, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 152, 11, 0, 0, 252, 11, 0, 0, 56, 12, 0, 0, 76, 12, 0, 0, 96, 12, 0, 0, 116, 12, 0, 0, 36, 12, 0, 0, 16, 12, 0, 0, 192, 11, 0, 0, 172, 11, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 88, 5, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 56, 0, 0, 0, 248, 255, 255, 255, 88, 5, 0, 0, 29, 0, 0, 0, 30, 0, 0, 0, 192, 255, 255, 255, 192, 255, 255, 255, 88, 5, 0, 0, 31, 0, 0, 0, 32, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 248, 4, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 192, 255, 255, 255, 192, 255, 255, 255, 248, 4, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 56, 0, 0, 0, 0, 0, 0, 0, 40, 5, 0, 0, 33, 0, 0, 0, 34, 0, 0, 0, 200, 255, 255, 255, 200, 255, 255, 255, 40, 5, 0, 0, 35, 0, 0, 0, 36, 0, 0, 0, 126, 165, 0, 0, 102, 169, 0, 0, 0, 0, 0, 0, 8, 1, 0, 0, 37, 0, 0, 0, 38, 0, 0, 0, 6, 0, 0, 0, 10, 0, 0, 0, 39, 0, 0, 0, 40, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 40, 1, 0, 0, 41, 0, 0, 0, 42, 0, 0, 0, 8, 0, 0, 0, 11, 0, 0, 0, 43, 0, 0, 0, 44, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 64, 1, 0, 0, 41, 0, 0, 0, 45, 0, 0, 0, 10, 0, 0, 0, 12, 0, 0, 0, 46, 0, 0, 0, 47, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 96, 1, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 50, 0, 0, 0, 51, 0, 0, 0, 52, 0, 0, 0, 7, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 120, 1, 0, 0, 53, 0, 0, 0, 54, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 55, 0, 0, 0, 56, 0, 0, 0, 15, 0, 0, 0, 8, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 144, 1, 0, 0, 57, 0, 0, 0, 58, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 252, 255, 255, 255, 144, 1, 0, 0, 59, 0, 0, 0, 60, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 240, 1, 0, 0, 61, 0, 0, 0, 62, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 32, 2, 0, 0, 53, 0, 0, 0, 63, 0, 0, 0, 17, 0, 0, 0, 21, 0, 0, 0, 64, 0, 0, 0, 65, 0, 0, 0, 18, 0, 0, 0, 9, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 48, 2, 0, 0, 66, 0, 0, 0, 67, 0, 0, 0, 2, 0, 0, 0, 5, 0, 0, 0, 4, 0, 0, 0, 252, 255, 255, 255, 48, 2, 0, 0, 68, 0, 0, 0, 69, 0, 0, 0, 22, 0, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 136, 2, 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 184, 2, 0, 0, 53, 0, 0, 0, 72, 0, 0, 0, 20, 0, 0, 0, 28, 0, 0, 0, 73, 0, 0, 0, 74, 0, 0, 0, 21, 0, 0, 0, 10, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 200, 2, 0, 0, 75, 0, 0, 0, 76, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 4, 0, 0, 0, 252, 255, 255, 255, 200, 2, 0, 0, 77, 0, 0, 0, 78, 0, 0, 0, 29, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 32, 3, 0, 0, 79, 0, 0, 0, 80, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 80, 3, 0, 0, 53, 0, 0, 0, 81, 0, 0, 0, 23, 0, 0, 0, 35, 0, 0, 0, 82, 0, 0, 0, 83, 0, 0, 0, 24, 0, 0, 0, 11, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 96, 3, 0, 0, 84, 0, 0, 0, 85, 0, 0, 0, 2, 0, 0, 0, 7, 0, 0, 0, 4, 0, 0, 0, 252, 255, 255, 255, 96, 3, 0, 0, 86, 0, 0, 0, 87, 0, 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 184, 3, 0, 0, 88, 0, 0, 0, 89, 0, 0, 0, 39, 0, 0, 0, 40, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 232, 3, 0, 0, 53, 0, 0, 0, 90, 0, 0, 0, 26, 0, 0, 0, 42, 0, 0, 0, 91, 0, 0, 0, 92, 0, 0, 0, 27, 0, 0, 0, 12, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 248, 3, 0, 0, 93, 0, 0, 0, 94, 0, 0, 0, 2, 0, 0, 0, 8, 0, 0, 0, 4, 0, 0, 0, 252, 255, 255, 255, 248, 3, 0, 0, 95, 0, 0, 0, 96, 0, 0, 0, 43, 0, 0, 0, 44, 0, 0, 0, 45, 0, 0, 0, 0, 0, 0, 0, 80, 4, 0, 0, 97, 0, 0, 0, 98, 0, 0, 0, 46, 0, 0, 0, 47, 0, 0, 0, 48, 0, 0, 0, 244, 108, 0, 0, 6, 109, 0, 0, 192, 15, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 100, 173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 255, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52, 16, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 7, 0, 0, 0, 108, 173, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 255, 255, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52, 16, 0, 0, 172, 16, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 116, 177, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 192, 3, 0, 0, 192, 4, 0, 0, 192, 5, 0, 0, 192, 6, 0, 0, 192, 7, 0, 0, 192, 8, 0, 0, 192, 9, 0, 0, 192, 10, 0, 0, 192, 11, 0, 0, 192, 12, 0, 0, 192, 13, 0, 0, 192, 14, 0, 0, 192, 15, 0, 0, 192, 16, 0, 0, 192, 17, 0, 0, 192, 18, 0, 0, 192, 19, 0, 0, 192, 20, 0, 0, 192, 21, 0, 0, 192, 22, 0, 0, 192, 23, 0, 0, 192, 24, 0, 0, 192, 25, 0, 0, 192, 26, 0, 0, 192, 27, 0, 0, 192, 28, 0, 0, 192, 29, 0, 0, 192, 30, 0, 0, 192, 31, 0, 0, 192, 0, 0, 0, 179, 1, 0, 0, 195, 2, 0, 0, 195, 3, 0, 0, 195, 4, 0, 0, 195, 5, 0, 0, 195, 6, 0, 0, 195, 7, 0, 0, 195, 8, 0, 0, 195, 9, 0, 0, 195, 10, 0, 0, 195, 11, 0, 0, 195, 12, 0, 0, 195, 13, 0, 0, 211, 14, 0, 0, 195, 15, 0, 0, 195, 0, 0, 12, 187, 1, 0, 12, 195, 2, 0, 12, 195, 3, 0, 12, 195, 4, 0, 12, 211, 10, 0, 0, 0, 100, 0, 0, 0, 232, 3, 0, 0, 16, 39, 0, 0, 160, 134, 1, 0, 64, 66, 15, 0, 128, 150, 152, 0, 0, 225, 245, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 255, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, 46, 0, 0, 128, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, 38, 0, 0, 0, 39, 0, 0, 0, 40, 0, 0, 0, 41, 0, 0, 0, 42, 0, 0, 0, 43, 0, 0, 0, 44, 0, 0, 0, 45, 0, 0, 0, 46, 0, 0, 0, 47, 0, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 50, 0, 0, 0, 51, 0, 0, 0, 52, 0, 0, 0, 53, 0, 0, 0, 54, 0, 0, 0, 55, 0, 0, 0, 56, 0, 0, 0, 57, 0, 0, 0, 58, 0, 0, 0, 59, 0, 0, 0, 60, 0, 0, 0, 61, 0, 0, 0, 62, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 65, 0, 0, 0, 66, 0, 0, 0, 67, 0, 0, 0, 68, 0, 0, 0, 69, 0, 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 72, 0, 0, 0, 73, 0, 0, 0, 74, 0, 0, 0, 75, 0, 0, 0, 76, 0, 0, 0, 77, 0, 0, 0, 78, 0, 0, 0, 79, 0, 0, 0, 80, 0, 0, 0, 81, 0, 0, 0, 82, 0, 0, 0, 83, 0, 0, 0, 84, 0, 0, 0, 85, 0, 0, 0, 86, 0, 0, 0, 87, 0, 0, 0, 88, 0, 0, 0, 89, 0, 0, 0, 90, 0, 0, 0, 91, 0, 0, 0, 92, 0, 0, 0, 93, 0, 0, 0, 94, 0, 0, 0, 95, 0, 0, 0, 96, 0, 0, 0, 65, 0, 0, 0, 66, 0, 0, 0, 67, 0, 0, 0, 68, 0, 0, 0, 69, 0, 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 72, 0, 0, 0, 73, 0, 0, 0, 74, 0, 0, 0, 75, 0, 0, 0, 76, 0, 0, 0, 77, 0, 0, 0, 78, 0, 0, 0, 79, 0, 0, 0, 80, 0, 0, 0, 81, 0, 0, 0, 82, 0, 0, 0, 83, 0, 0, 0, 84, 0, 0, 0, 85, 0, 0, 0, 86, 0, 0, 0, 87, 0, 0, 0, 88, 0, 0, 0, 89, 0, 0, 0, 90, 0, 0, 0, 123, 0, 0, 0, 124, 0, 0, 0, 125, 0, 0, 0, 126, 0, 0, 0, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, 38, 0, 0, 0, 39, 0, 0, 0, 40, 0, 0, 0, 41, 0, 0, 0, 42, 0, 0, 0, 43, 0, 0, 0, 44, 0, 0, 0, 45, 0, 0, 0, 46, 0, 0, 0, 47, 0, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 50, 0, 0, 0, 51, 0, 0, 0, 52, 0, 0, 0, 53, 0, 0, 0, 54, 0, 0, 0, 55, 0, 0, 0, 56, 0, 0, 0, 57, 0, 0, 0, 58, 0, 0, 0, 59, 0, 0, 0, 60, 0, 0, 0, 61, 0, 0, 0, 62, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 97, 0, 0, 0, 98, 0, 0, 0, 99, 0, 0, 0, 100, 0, 0, 0, 101, 0, 0, 0, 102, 0, 0, 0, 103, 0, 0, 0, 104, 0, 0, 0, 105, 0, 0, 0, 106, 0, 0, 0, 107, 0, 0, 0, 108, 0, 0, 0, 109, 0, 0, 0, 110, 0, 0, 0, 111, 0, 0, 0, 112, 0, 0, 0, 113, 0, 0, 0, 114, 0, 0, 0, 115, 0, 0, 0, 116, 0, 0, 0, 117, 0, 0, 0, 118, 0, 0, 0, 119, 0, 0, 0, 120, 0, 0, 0, 121, 0, 0, 0, 122, 0, 0, 0, 91, 0, 0, 0, 92, 0, 0, 0, 93, 0, 0, 0, 94, 0, 0, 0, 95, 0, 0, 0, 96, 0, 0, 0, 97, 0, 0, 0, 98, 0, 0, 0, 99, 0, 0, 0, 100, 0, 0, 0, 101, 0, 0, 0, 102, 0, 0, 0, 103, 0, 0, 0, 104, 0, 0, 0, 105, 0, 0, 0, 106, 0, 0, 0, 107, 0, 0, 0, 108, 0, 0, 0, 109, 0, 0, 0, 110, 0, 0, 0, 111, 0, 0, 0, 112, 0, 0, 0, 113, 0, 0, 0, 114, 0, 0, 0, 115, 0, 0, 0, 116, 0, 0, 0, 117, 0, 0, 0, 118, 0, 0, 0, 119, 0, 0, 0, 120, 0, 0, 0, 121, 0, 0, 0, 122, 0, 0, 0, 123, 0, 0, 0, 124, 0, 0, 0, 125, 0, 0, 0, 126, 0, 0, 0, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 4, 0, 0, 99, 0, 0, 0, 100, 0, 0, 0, 49, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 5, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 13, 0, 0, 0, 3, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 144, 4, 0, 0, 99, 0, 0, 0, 101, 0, 0, 0, 50, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 5, 0, 0, 0, 32, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 33, 0, 0, 0, 4, 0, 0, 0, 15, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 160, 4, 0, 0, 102, 0, 0, 0, 103, 0, 0, 0, 51, 0, 0, 0, 12, 0, 0, 0, 3, 0, 0, 0, 6, 0, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 13, 0, 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, 17, 0, 0, 0, 14, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 176, 4, 0, 0, 102, 0, 0, 0, 104, 0, 0, 0, 52, 0, 0, 0, 12, 0, 0, 0, 3, 0, 0, 0, 6, 0, 0, 0, 38, 0, 0, 0, 35, 0, 0, 0, 13, 0, 0, 0, 39, 0, 0, 0, 40, 0, 0, 0, 19, 0, 0, 0, 15, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 5, 0, 0, 0, 7, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 17, 0, 0, 0, 19, 0, 0, 0, 23, 0, 0, 0, 29, 0, 0, 0, 31, 0, 0, 0, 37, 0, 0, 0, 41, 0, 0, 0, 43, 0, 0, 0, 47, 0, 0, 0, 53, 0, 0, 0, 59, 0, 0, 0, 61, 0, 0, 0, 67, 0, 0, 0, 71, 0, 0, 0, 73, 0, 0, 0, 79, 0, 0, 0, 83, 0, 0, 0, 89, 0, 0, 0, 97, 0, 0, 0, 101, 0, 0, 0, 103, 0, 0, 0, 107, 0, 0, 0, 109, 0, 0, 0, 113, 0, 0, 0, 127, 0, 0, 0, 131, 0, 0, 0, 137, 0, 0, 0, 139, 0, 0, 0, 149, 0, 0, 0, 151, 0, 0, 0, 157, 0, 0, 0, 163, 0, 0, 0, 167, 0, 0, 0, 173, 0, 0, 0, 179, 0, 0, 0, 181, 0, 0, 0, 191, 0, 0, 0, 193, 0, 0, 0, 197, 0, 0, 0, 199, 0, 0, 0, 211, 0, 0, 0, 1, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 17, 0, 0, 0, 19, 0, 0, 0, 23, 0, 0, 0, 29, 0, 0, 0, 31, 0, 0, 0, 37, 0, 0, 0, 41, 0, 0, 0, 43, 0, 0, 0, 47, 0, 0, 0, 53, 0, 0, 0, 59, 0, 0, 0, 61, 0, 0, 0, 67, 0, 0, 0, 71, 0, 0, 0, 73, 0, 0, 0, 79, 0, 0, 0, 83, 0, 0, 0, 89, 0, 0, 0, 97, 0, 0, 0, 101, 0, 0, 0, 103, 0, 0, 0, 107, 0, 0, 0, 109, 0, 0, 0, 113, 0, 0, 0, 121, 0, 0, 0, 127, 0, 0, 0, 131, 0, 0, 0, 137, 0, 0, 0, 139, 0, 0, 0, 143, 0, 0, 0, 149, 0, 0, 0, 151, 0, 0, 0, 157, 0, 0, 0, 163, 0, 0, 0, 167, 0, 0, 0, 169, 0, 0, 0, 173, 0, 0, 0, 179, 0, 0, 0, 181, 0, 0, 0, 187, 0, 0, 0, 191, 0, 0, 0, 193, 0, 0, 0, 197, 0, 0, 0, 199, 0, 0, 0, 209, 0, 0, 0, 0, 0, 0, 0, 208, 4, 0, 0, 105, 0, 0, 0, 106, 0, 0, 0, 0, 0, 0, 0, 232, 4, 0, 0, 99, 0, 0, 0, 107, 0, 0, 0, 7, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 5, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 33, 0, 0, 0, 4, 0, 0, 0, 15, 0, 0, 0, 3, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 240, 4, 0, 0, 102, 0, 0, 0, 108, 0, 0, 0, 53, 0, 0, 0, 12, 0, 0, 0, 3, 0, 0, 0, 6, 0, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 13, 0, 0, 0, 39, 0, 0, 0, 40, 0, 0, 0, 19, 0, 0, 0, 14, 0, 0, 0, 18, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 248, 4, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 248, 255, 255, 255, 248, 255, 255, 255, 248, 4, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 16, 5, 0, 0, 109, 0, 0, 0, 110, 0, 0, 0, 248, 255, 255, 255, 248, 255, 255, 255, 16, 5, 0, 0, 111, 0, 0, 0, 112, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 40, 5, 0, 0, 33, 0, 0, 0, 34, 0, 0, 0, 252, 255, 255, 255, 252, 255, 255, 255, 40, 5, 0, 0, 35, 0, 0, 0, 36, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 64, 5, 0, 0, 113, 0, 0, 0, 114, 0, 0, 0, 252, 255, 255, 255, 252, 255, 255, 255, 64, 5, 0, 0, 115, 0, 0, 0, 116, 0, 0, 0, 0, 0, 0, 0, 120, 5, 0, 0, 117, 0, 0, 0, 118, 0, 0, 0, 119, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 152, 5, 0, 0, 120, 0, 0, 0, 121, 0, 0, 0, 119, 0, 0, 0, 2, 0, 0, 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 168, 5, 0, 0, 122, 0, 0, 0, 123, 0, 0, 0, 119, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 232, 5, 0, 0, 124, 0, 0, 0, 125, 0, 0, 0, 119, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 32, 6, 0, 0, 126, 0, 0, 0, 127, 0, 0, 0, 119, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 23, 0, 0, 0, 5, 0, 0, 0, 24, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 96, 6, 0, 0, 128, 0, 0, 0, 129, 0, 0, 0, 119, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 25, 0, 0, 0, 9, 0, 0, 0, 26, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 152, 6, 0, 0, 130, 0, 0, 0, 131, 0, 0, 0, 119, 0, 0, 0, 41, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 1, 0, 0, 0, 248, 255, 255, 255, 152, 6, 0, 0, 42, 0, 0, 0, 43, 0, 0, 0, 44, 0, 0, 0, 45, 0, 0, 0, 46, 0, 0, 0, 47, 0, 0, 0, 48, 0, 0, 0, 0, 0, 0, 0, 208, 6, 0, 0, 132, 0, 0, 0, 133, 0, 0, 0, 119, 0, 0, 0, 49, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 36, 0, 0, 0, 2, 0, 0, 0, 248, 255, 255, 255, 208, 6, 0, 0, 50, 0, 0, 0, 51, 0, 0, 0, 52, 0, 0, 0, 53, 0, 0, 0, 54, 0, 0, 0, 55, 0, 0, 0, 56, 0, 0, 0, 37, 0, 0, 0, 72, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 77, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 83, 0, 0, 0, 37, 0, 0, 0, 109, 0, 0, 0, 47, 0, 0, 0, 37, 0, 0, 0, 100, 0, 0, 0, 47, 0, 0, 0, 37, 0, 0, 0, 121, 0, 0, 0, 37, 0, 0, 0, 89, 0, 0, 0, 45, 0, 0, 0, 37, 0, 0, 0, 109, 0, 0, 0, 45, 0, 0, 0, 37, 0, 0, 0, 100, 0, 0, 0, 37, 0, 0, 0, 73, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 77, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 83, 0, 0, 0, 32, 0, 0, 0, 37, 0, 0, 0, 112, 0, 0, 0, 37, 0, 0, 0, 72, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 77, 0, 0, 0, 37, 0, 0, 0, 72, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 77, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 83, 0, 0, 0, 83, 0, 0, 0, 117, 0, 0, 0, 110, 0, 0, 0, 100, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 111, 0, 0, 0, 110, 0, 0, 0, 100, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 117, 0, 0, 0, 101, 0, 0, 0, 115, 0, 0, 0, 100, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 87, 0, 0, 0, 101, 0, 0, 0, 100, 0, 0, 0, 110, 0, 0, 0, 101, 0, 0, 0, 115, 0, 0, 0, 100, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 104, 0, 0, 0, 117, 0, 0, 0, 114, 0, 0, 0, 115, 0, 0, 0, 100, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 114, 0, 0, 0, 105, 0, 0, 0, 100, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 97, 0, 0, 0, 116, 0, 0, 0, 117, 0, 0, 0, 114, 0, 0, 0, 100, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 117, 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 111, 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 117, 0, 0, 0, 101, 0, 0, 0, 0, 0, 0, 0, 87, 0, 0, 0, 101, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 104, 0, 0, 0, 117, 0, 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 114, 0, 0, 0, 105, 0, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 97, 0, 0, 0, 116, 0, 0, 0, 0, 0, 0, 0, 74, 0, 0, 0, 97, 0, 0, 0, 110, 0, 0, 0, 117, 0, 0, 0, 97, 0, 0, 0, 114, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 101, 0, 0, 0, 98, 0, 0, 0, 114, 0, 0, 0, 117, 0, 0, 0, 97, 0, 0, 0, 114, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 97, 0, 0, 0, 114, 0, 0, 0, 99, 0, 0, 0, 104, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 112, 0, 0, 0, 114, 0, 0, 0, 105, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 74, 0, 0, 0, 117, 0, 0, 0, 110, 0, 0, 0, 101, 0, 0, 0, 0, 0, 0, 0, 74, 0, 0, 0, 117, 0, 0, 0, 108, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 117, 0, 0, 0, 103, 0, 0, 0, 117, 0, 0, 0, 115, 0, 0, 0, 116, 0, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 101, 0, 0, 0, 112, 0, 0, 0, 116, 0, 0, 0, 101, 0, 0, 0, 109, 0, 0, 0, 98, 0, 0, 0, 101, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 0, 79, 0, 0, 0, 99, 0, 0, 0, 116, 0, 0, 0, 111, 0, 0, 0, 98, 0, 0, 0, 101, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 111, 0, 0, 0, 118, 0, 0, 0, 101, 0, 0, 0, 109, 0, 0, 0, 98, 0, 0, 0, 101, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 0, 68, 0, 0, 0, 101, 0, 0, 0, 99, 0, 0, 0, 101, 0, 0, 0, 109, 0, 0, 0, 98, 0, 0, 0, 101, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 0, 74, 0, 0, 0, 97, 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 101, 0, 0, 0, 98, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 97, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 112, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 0, 74, 0, 0, 0, 117, 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 74, 0, 0, 0, 117, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 117, 0, 0, 0, 103, 0, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 101, 0, 0, 0, 112, 0, 0, 0, 0, 0, 0, 0, 79, 0, 0, 0, 99, 0, 0, 0, 116, 0, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 111 ], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE);
+allocate([ 118, 0, 0, 0, 0, 0, 0, 0, 68, 0, 0, 0, 101, 0, 0, 0, 99, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 80, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 97, 0, 0, 0, 32, 0, 0, 0, 37, 0, 0, 0, 98, 0, 0, 0, 32, 0, 0, 0, 37, 0, 0, 0, 100, 0, 0, 0, 32, 0, 0, 0, 37, 0, 0, 0, 72, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 77, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 83, 0, 0, 0, 32, 0, 0, 0, 37, 0, 0, 0, 89, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 73, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 77, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 83, 0, 0, 0, 32, 0, 0, 0, 37, 0, 0, 0, 112, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 109, 0, 0, 0, 47, 0, 0, 0, 37, 0, 0, 0, 100, 0, 0, 0, 47, 0, 0, 0, 37, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 72, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 77, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 134, 0, 0, 0, 135, 0, 0, 0, 119, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 40, 7, 0, 0, 136, 0, 0, 0, 137, 0, 0, 0, 119, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 72, 7, 0, 0, 138, 0, 0, 0, 139, 0, 0, 0, 119, 0, 0, 0, 57, 0, 0, 0, 58, 0, 0, 0, 54, 0, 0, 0, 55, 0, 0, 0, 56, 0, 0, 0, 57, 0, 0, 0, 59, 0, 0, 0, 58, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 112, 7, 0, 0, 140, 0, 0, 0, 141, 0, 0, 0, 119, 0, 0, 0, 60, 0, 0, 0, 61, 0, 0, 0, 60, 0, 0, 0, 61, 0, 0, 0, 62, 0, 0, 0, 63, 0, 0, 0, 62, 0, 0, 0, 64, 0, 0, 0, 65, 0, 0, 0, 0, 0, 0, 0, 144, 7, 0, 0, 142, 0, 0, 0, 143, 0, 0, 0, 119, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 66, 0, 0, 0, 67, 0, 0, 0, 68, 0, 0, 0, 69, 0, 0, 0, 65, 0, 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 0, 0, 0, 0, 176, 7, 0, 0, 144, 0, 0, 0, 145, 0, 0, 0, 119, 0, 0, 0, 66, 0, 0, 0, 67, 0, 0, 0, 72, 0, 0, 0, 73, 0, 0, 0, 74, 0, 0, 0, 75, 0, 0, 0, 68, 0, 0, 0, 76, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 208, 7, 0, 0, 146, 0, 0, 0, 147, 0, 0, 0, 119, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 248, 7, 0, 0, 148, 0, 0, 0, 149, 0, 0, 0, 119, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 32, 8, 0, 0, 150, 0, 0, 0, 151, 0, 0, 0, 119, 0, 0, 0, 1, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 72, 8, 0, 0, 152, 0, 0, 0, 153, 0, 0, 0, 119, 0, 0, 0, 2, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 112, 8, 0, 0, 154, 0, 0, 0, 155, 0, 0, 0, 119, 0, 0, 0, 18, 0, 0, 0, 4, 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 0, 152, 8, 0, 0, 156, 0, 0, 0, 157, 0, 0, 0, 119, 0, 0, 0, 19, 0, 0, 0, 5, 0, 0, 0, 79, 0, 0, 0, 0, 0, 0, 0, 184, 8, 0, 0, 158, 0, 0, 0, 159, 0, 0, 0, 119, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 11, 0, 0, 0, 69, 0, 0, 0, 70, 0, 0, 0, 12, 0, 0, 0, 71, 0, 0, 0, 0, 0, 0, 0, 240, 8, 0, 0, 158, 0, 0, 0, 160, 0, 0, 0, 119, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 11, 0, 0, 0, 69, 0, 0, 0, 70, 0, 0, 0, 12, 0, 0, 0, 71, 0, 0, 0, 0, 0, 0, 0, 32, 9, 0, 0, 161, 0, 0, 0, 162, 0, 0, 0, 119, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 13, 0, 0, 0, 72, 0, 0, 0, 73, 0, 0, 0, 14, 0, 0, 0, 74, 0, 0, 0, 0, 0, 0, 0, 96, 9, 0, 0, 163, 0, 0, 0, 164, 0, 0, 0, 119, 0, 0, 0, 0, 0, 0, 0, 112, 9, 0, 0, 165, 0, 0, 0, 166, 0, 0, 0, 119, 0, 0, 0, 21, 0, 0, 0, 20, 0, 0, 0, 22, 0, 0, 0, 21, 0, 0, 0, 23, 0, 0, 0, 1, 0, 0, 0, 22, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 184, 9, 0, 0, 167, 0, 0, 0, 168, 0, 0, 0, 119, 0, 0, 0, 75, 0, 0, 0, 76, 0, 0, 0, 80, 0, 0, 0, 81, 0, 0, 0, 82, 0, 0, 0, 0, 0, 0, 0, 200, 9, 0, 0, 169, 0, 0, 0, 170, 0, 0, 0, 119, 0, 0, 0, 77, 0, 0, 0, 78, 0, 0, 0, 83, 0, 0, 0, 84, 0, 0, 0, 85, 0, 0, 0, 116, 0, 0, 0, 114, 0, 0, 0, 117, 0, 0, 0, 101, 0, 0, 0, 0, 0, 0, 0, 102, 0, 0, 0, 97, 0, 0, 0, 108, 0, 0, 0, 115, 0, 0, 0, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136, 5, 0, 0, 158, 0, 0, 0, 171, 0, 0, 0, 119, 0, 0, 0, 0, 0, 0, 0, 152, 9, 0, 0, 158, 0, 0, 0, 172, 0, 0, 0, 119, 0, 0, 0, 23, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 5, 0, 0, 0, 26, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 158, 0, 0, 0, 173, 0, 0, 0, 119, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 17, 0, 0, 0, 79, 0, 0, 0, 80, 0, 0, 0, 18, 0, 0, 0, 81, 0, 0, 0, 0, 0, 0, 0, 64, 9, 0, 0, 158, 0, 0, 0, 174, 0, 0, 0, 119, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 19, 0, 0, 0, 82, 0, 0, 0, 83, 0, 0, 0, 20, 0, 0, 0, 84, 0, 0, 0, 0, 0, 0, 0, 200, 8, 0, 0, 158, 0, 0, 0, 175, 0, 0, 0, 119, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 11, 0, 0, 0, 69, 0, 0, 0, 70, 0, 0, 0, 12, 0, 0, 0, 71, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 232, 9, 0, 0, 176, 0, 0, 0, 177, 0, 0, 0, 178, 0, 0, 0, 179, 0, 0, 0, 27, 0, 0, 0, 6, 0, 0, 0, 1, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 248, 9, 0, 0, 176, 0, 0, 0, 180, 0, 0, 0, 178, 0, 0, 0, 179, 0, 0, 0, 27, 0, 0, 0, 7, 0, 0, 0, 2, 0, 0, 0, 10, 0, 0, 0, 62, 137, 0, 0, 0, 0, 0, 0, 32, 10, 0, 0, 181, 0, 0, 0, 182, 0, 0, 0, 85, 0, 0, 0, 0, 0, 0, 0, 80, 10, 0, 0, 176, 0, 0, 0, 183, 0, 0, 0, 178, 0, 0, 0, 179, 0, 0, 0, 27, 0, 0, 0, 8, 0, 0, 0, 3, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 3, 32, 2, 32, 2, 32, 2, 32, 2, 32, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 1, 96, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 8, 216, 8, 216, 8, 216, 8, 216, 8, 216, 8, 216, 8, 216, 8, 216, 8, 216, 8, 216, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 8, 213, 8, 213, 8, 213, 8, 213, 8, 213, 8, 213, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 8, 214, 8, 214, 8, 214, 8, 214, 8, 214, 8, 214, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 4, 192, 4, 192, 4, 192, 4, 192, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 103, 108, 111, 98, 97, 108, 0, 78, 97, 78, 0, 73, 110, 102, 105, 110, 105, 116, 121, 0, 116, 111, 112, 109, 111, 115, 116, 0, 73, 110, 116, 56, 65, 114, 114, 97, 121, 0, 73, 110, 116, 49, 54, 65, 114, 114, 97, 121, 0, 73, 110, 116, 51, 50, 65, 114, 114, 97, 121, 0, 85, 105, 110, 116, 56, 65, 114, 114, 97, 121, 0, 85, 105, 110, 116, 49, 54, 65, 114, 114, 97, 121, 0, 85, 105, 110, 116, 51, 50, 65, 114, 114, 97, 121, 0, 70, 108, 111, 97, 116, 51, 50, 65, 114, 114, 97, 121, 0, 70, 108, 111, 97, 116, 54, 52, 65, 114, 114, 97, 121, 0, 105, 109, 112, 111, 115, 115, 105, 98, 108, 101, 45, 99, 111, 110, 116, 105, 110, 117, 101, 0, 77, 97, 116, 104, 0, 105, 109, 117, 108, 0, 99, 108, 122, 51, 50, 0, 102, 114, 111, 117, 110, 100, 0, 97, 115, 109, 50, 119, 97, 115, 109, 0, 102, 54, 52, 45, 114, 101, 109, 0, 102, 54, 52, 45, 116, 111, 45, 105, 110, 116, 0, 103, 108, 111, 98, 97, 108, 46, 77, 97, 116, 104, 0, 97, 98, 115, 0, 102, 108, 111, 111, 114, 0, 115, 113, 114, 116, 0, 97, 115, 109, 50, 119, 97, 115, 109, 95, 105, 51, 50, 95, 116, 101, 109, 112, 0, 100, 101, 98, 117, 103, 103, 101, 114, 0, 95, 95, 103, 114, 111, 119, 87, 97, 115, 109, 77, 101, 109, 111, 114, 121, 0, 110, 101, 119, 83, 105, 122, 101, 0, 109, 111, 100, 117, 108, 101, 0, 115, 116, 97, 114, 116, 0, 102, 117, 110, 99, 0, 112, 97, 114, 97, 109, 0, 114, 101, 115, 117, 108, 116, 0, 109, 101, 109, 111, 114, 121, 0, 115, 101, 103, 109, 101, 110, 116, 0, 101, 120, 112, 111, 114, 116, 0, 105, 109, 112, 111, 114, 116, 0, 116, 97, 98, 108, 101, 0, 108, 111, 99, 97, 108, 0, 116, 121, 112, 101, 0, 99, 97, 108, 108, 95, 105, 109, 112, 111, 114, 116, 0, 99, 97, 108, 108, 95, 105, 110, 100, 105, 114, 101, 99, 116, 0, 98, 114, 95, 105, 102, 0, 45, 105, 110, 102, 105, 110, 105, 116, 121, 0, 45, 110, 97, 110, 0, 98, 114, 0, 117, 115, 101, 32, 97, 115, 109, 0, 98, 117, 102, 102, 101, 114, 0, 101, 110, 118, 0, 102, 97, 107, 101, 95, 114, 101, 116, 117, 114, 110, 95, 119, 97, 107, 97, 49, 50, 51, 0, 77, 97, 116, 104, 95, 105, 109, 117, 108, 0, 77, 97, 116, 104, 95, 99, 108, 122, 51, 50, 0, 77, 97, 116, 104, 95, 99, 116, 122, 51, 50, 0, 77, 97, 116, 104, 95, 112, 111, 112, 99, 110, 116, 51, 50, 0, 77, 97, 116, 104, 95, 97, 98, 115, 0, 77, 97, 116, 104, 95, 99, 101, 105, 108, 0, 77, 97, 116, 104, 95, 102, 108, 111, 111, 114, 0, 77, 97, 116, 104, 95, 116, 114, 117, 110, 99, 0, 77, 97, 116, 104, 95, 78, 69, 65, 82, 69, 83, 84, 0, 77, 97, 116, 104, 95, 115, 113, 114, 116, 0, 77, 97, 116, 104, 95, 109, 97, 120, 0, 77, 97, 116, 104, 95, 109, 105, 110, 0, 70, 85, 78, 67, 83, 73, 71, 36, 0, 97, 115, 116, 91, 48, 93, 32, 61, 61, 32, 84, 79, 80, 76, 69, 86, 69, 76, 0, 115, 114, 99, 47, 97, 115, 109, 50, 119, 97, 115, 109, 46, 104, 0, 112, 114, 111, 99, 101, 115, 115, 65, 115, 109, 0, 97, 115, 109, 70, 117, 110, 99, 116, 105, 111, 110, 91, 48, 93, 32, 61, 61, 32, 68, 69, 70, 85, 78, 0, 97, 108, 109, 111, 115, 116, 32, 97, 115, 109, 0, 98, 111, 100, 121, 91, 48, 93, 91, 48, 93, 32, 61, 61, 32, 83, 84, 65, 84, 32, 38, 38, 32, 98, 111, 100, 121, 91, 48, 93, 91, 49, 93, 91, 48, 93, 32, 61, 61, 32, 83, 84, 82, 73, 78, 71, 32, 38, 38, 32, 40, 98, 111, 100, 121, 91, 48, 93, 91, 49, 93, 91, 49, 93, 45, 62, 103, 101, 116, 73, 83, 116, 114, 105, 110, 103, 40, 41, 32, 61, 61, 32, 73, 83, 116, 114, 105, 110, 103, 40, 34, 117, 115, 101, 32, 97, 115, 109, 34, 41, 32, 124, 124, 32, 98, 111, 100, 121, 91, 48, 93, 91, 49, 93, 91, 49, 93, 45, 62, 103, 101, 116, 73, 83, 116, 114, 105, 110, 103, 40, 41, 32, 61, 61, 32, 73, 83, 116, 114, 105, 110, 103, 40, 34, 97, 108, 109, 111, 115, 116, 32, 97, 115, 109, 34, 41, 41, 0, 118, 97, 108, 117, 101, 91, 49, 93, 45, 62, 103, 101, 116, 78, 117, 109, 98, 101, 114, 40, 41, 32, 61, 61, 32, 48, 0, 118, 97, 108, 117, 101, 91, 49, 93, 32, 61, 61, 32, 79, 82, 32, 38, 38, 32, 118, 97, 108, 117, 101, 91, 51, 93, 91, 48, 93, 32, 61, 61, 32, 78, 85, 77, 32, 38, 38, 32, 118, 97, 108, 117, 101, 91, 51, 93, 91, 49, 93, 45, 62, 103, 101, 116, 78, 117, 109, 98, 101, 114, 40, 41, 32, 61, 61, 32, 48, 0, 118, 97, 108, 117, 101, 91, 49, 93, 32, 61, 61, 32, 80, 76, 85, 83, 0, 105, 109, 112, 111, 114, 116, 91, 49, 93, 45, 62, 103, 101, 116, 78, 117, 109, 98, 101, 114, 40, 41, 32, 61, 61, 32, 48, 0, 118, 97, 108, 117, 101, 91, 49, 93, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 32, 38, 38, 32, 118, 97, 108, 117, 101, 91, 49, 93, 91, 49, 93, 32, 61, 61, 32, 77, 97, 116, 104, 95, 102, 114, 111, 117, 110, 100, 32, 38, 38, 32, 118, 97, 108, 117, 101, 91, 50, 93, 91, 48, 93, 91, 48, 93, 32, 61, 61, 32, 78, 85, 77, 32, 38, 38, 32, 118, 97, 108, 117, 101, 91, 50, 93, 91, 48, 93, 91, 49, 93, 45, 62, 103, 101, 116, 78, 117, 109, 98, 101, 114, 40, 41, 32, 61, 61, 32, 48, 0, 118, 97, 108, 117, 101, 91, 48, 93, 32, 61, 61, 32, 67, 65, 76, 76, 0, 105, 110, 118, 97, 108, 105, 100, 32, 118, 105, 101, 119, 32, 105, 109, 112, 111, 114, 116, 0, 99, 111, 110, 115, 116, 114, 117, 99, 116, 111, 114, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 105, 110, 118, 97, 108, 105, 100, 32, 115, 104, 111, 114, 116, 32, 118, 105, 101, 119, 32, 105, 109, 112, 111, 114, 116, 0, 118, 105, 101, 119, 115, 46, 102, 105, 110, 100, 40, 110, 97, 109, 101, 41, 32, 61, 61, 32, 118, 105, 101, 119, 115, 46, 101, 110, 100, 40, 41, 0, 105, 110, 118, 97, 108, 105, 100, 32, 118, 97, 114, 32, 101, 108, 101, 109, 101, 110, 116, 0, 118, 97, 108, 117, 101, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 102, 117, 110, 99, 116, 105, 111, 110, 84, 97, 98, 108, 101, 83, 116, 97, 114, 116, 115, 46, 102, 105, 110, 100, 40, 116, 97, 98, 108, 101, 78, 97, 109, 101, 41, 32, 33, 61, 32, 102, 117, 110, 99, 116, 105, 111, 110, 84, 97, 98, 108, 101, 83, 116, 97, 114, 116, 115, 46, 101, 110, 100, 40, 41, 0, 10, 102, 117, 110, 99, 58, 32, 0, 99, 117, 114, 114, 91, 48, 93, 32, 61, 61, 32, 83, 84, 65, 84, 0, 112, 114, 111, 99, 101, 115, 115, 70, 117, 110, 99, 116, 105, 111, 110, 0, 99, 117, 114, 114, 91, 48, 93, 32, 61, 61, 32, 65, 83, 83, 73, 71, 78, 32, 38, 38, 32, 99, 117, 114, 114, 91, 50, 93, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 98, 114, 101, 97, 107, 83, 116, 97, 99, 107, 46, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 48, 32, 38, 38, 32, 99, 111, 110, 116, 105, 110, 117, 101, 83, 116, 97, 99, 107, 46, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 48, 0, 112, 97, 114, 101, 110, 116, 76, 97, 98, 101, 108, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 119, 97, 115, 109, 0, 42, 114, 101, 116, 117, 114, 110, 58, 41, 42, 0, 109, 111, 100, 105, 102, 105, 101, 114, 32, 63, 32, 112, 111, 115, 105, 116, 105, 118, 101, 91, 52, 93, 32, 61, 61, 32, 39, 48, 39, 32, 38, 38, 32, 112, 111, 115, 105, 116, 105, 118, 101, 91, 53, 93, 32, 61, 61, 32, 39, 120, 39, 32, 58, 32, 49, 0, 115, 114, 99, 47, 112, 97, 114, 115, 105, 110, 103, 46, 104, 0, 112, 97, 114, 115, 101, 67, 111, 110, 115, 116, 0, 114, 101, 116, 45, 62, 118, 97, 108, 117, 101, 46, 116, 121, 112, 101, 32, 61, 61, 32, 116, 121, 112, 101, 0, 97, 115, 109, 32, 112, 97, 114, 115, 105, 110, 103, 46, 46, 46, 10, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 112, 114, 111, 118, 105, 100, 101, 100, 84, 111, 116, 97, 108, 77, 101, 109, 111, 114, 121, 39, 93, 59, 32, 125, 0, 119, 97, 115, 109, 105, 110, 103, 46, 46, 46, 10, 0, 111, 112, 116, 105, 109, 105, 122, 105, 110, 103, 46, 46, 46, 10, 0, 109, 97, 112, 112, 105, 110, 103, 32, 103, 108, 111, 98, 97, 108, 115, 46, 46, 46, 10, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 108, 111, 111, 107, 117, 112, 73, 109, 112, 111, 114, 116, 39, 93, 40, 80, 111, 105, 110, 116, 101, 114, 95, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 36, 48, 41, 44, 32, 80, 111, 105, 110, 116, 101, 114, 95, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 36, 49, 41, 41, 32, 125, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 51, 50, 39, 93, 91, 36, 48, 32, 62, 62, 32, 50, 93, 32, 61, 32, 36, 49, 32, 125, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 70, 51, 50, 39, 93, 91, 36, 48, 32, 62, 62, 32, 50, 93, 32, 61, 32, 36, 49, 32, 125, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 70, 54, 52, 39, 93, 91, 36, 48, 32, 62, 62, 32, 51, 93, 32, 61, 32, 36, 49, 32, 125, 0, 119, 97, 115, 109, 45, 115, 45, 101, 120, 112, 114, 101, 115, 115, 105, 111, 110, 32, 112, 97, 114, 115, 105, 110, 103, 46, 46, 46, 10, 0, 105, 110, 115, 116, 97, 110, 116, 105, 97, 116, 105, 110, 103, 32, 109, 111, 100, 117, 108, 101, 58, 32, 10, 0, 103, 101, 110, 101, 114, 97, 116, 105, 110, 103, 32, 101, 120, 112, 111, 114, 116, 115, 46, 46, 46, 10, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 97, 115, 109, 69, 120, 112, 111, 114, 116, 115, 39, 93, 32, 61, 32, 123, 125, 59, 32, 125, 0, 123, 32, 118, 97, 114, 32, 110, 97, 109, 101, 32, 61, 32, 80, 111, 105, 110, 116, 101, 114, 95, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 36, 48, 41, 59, 32, 77, 111, 100, 117, 108, 101, 91, 39, 97, 115, 109, 69, 120, 112, 111, 114, 116, 115, 39, 93, 91, 110, 97, 109, 101, 93, 32, 61, 32, 102, 117, 110, 99, 116, 105, 111, 110, 40, 41, 32, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 39, 93, 32, 61, 32, 65, 114, 114, 97, 121, 46, 112, 114, 111, 116, 111, 116, 121, 112, 101, 46, 115, 108, 105, 99, 101, 46, 99, 97, 108, 108, 40, 97, 114, 103, 117, 109, 101, 110, 116, 115, 41, 59, 32, 77, 111, 100, 117, 108, 101, 91, 39, 95, 99, 97, 108, 108, 95, 102, 114, 111, 109, 95, 106, 115, 39, 93, 40, 36, 48, 41, 59, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 82, 101, 116, 117, 114, 110, 39, 93, 59, 32, 125, 59, 32, 125, 0, 99, 114, 101, 97, 116, 105, 110, 103, 32, 105, 110, 115, 116, 97, 110, 99, 101, 46, 46, 46, 10, 0, 99, 97, 108, 108, 95, 102, 114, 111, 109, 95, 106, 115, 32, 0, 115, 114, 99, 47, 119, 97, 115, 109, 45, 106, 115, 46, 99, 112, 112, 0, 99, 97, 108, 108, 95, 102, 114, 111, 109, 95, 106, 115, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 39, 93, 46, 108, 101, 110, 103, 116, 104, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 39, 93, 91, 36, 48, 93, 32, 125, 0, 99, 97, 108, 108, 95, 102, 114, 111, 109, 95, 106, 115, 32, 114, 101, 116, 117, 114, 110, 105, 110, 103, 32, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 82, 101, 116, 117, 114, 110, 39, 93, 32, 61, 32, 117, 110, 100, 101, 102, 105, 110, 101, 100, 32, 125, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 82, 101, 116, 117, 114, 110, 39, 93, 32, 61, 32, 36, 48, 32, 125, 0, 115, 0, 115, 114, 99, 47, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 45, 111, 112, 116, 105, 109, 105, 122, 101, 114, 47, 105, 115, 116, 114, 105, 110, 103, 46, 104, 0, 73, 83, 116, 114, 105, 110, 103, 0, 105, 115, 83, 116, 114, 105, 110, 103, 40, 41, 0, 103, 101, 116, 73, 83, 116, 114, 105, 110, 103, 0, 115, 105, 122, 101, 0, 105, 115, 78, 117, 109, 98, 101, 114, 40, 41, 0, 103, 101, 116, 78, 117, 109, 98, 101, 114, 0, 109, 97, 112, 112, 101, 100, 71, 108, 111, 98, 97, 108, 115, 46, 102, 105, 110, 100, 40, 110, 97, 109, 101, 41, 32, 61, 61, 32, 109, 97, 112, 112, 101, 100, 71, 108, 111, 98, 97, 108, 115, 46, 101, 110, 100, 40, 41, 0, 97, 108, 108, 111, 99, 97, 116, 101, 71, 108, 111, 98, 97, 108, 0, 110, 101, 120, 116, 71, 108, 111, 98, 97, 108, 32, 60, 32, 109, 97, 120, 71, 108, 111, 98, 97, 108, 0, 105, 109, 112, 111, 114, 116, 101, 100, 91, 48, 93, 32, 61, 61, 32, 68, 79, 84, 0, 109, 111, 100, 117, 108, 101, 91, 49, 93, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 77, 97, 116, 104, 95, 105, 109, 117, 108, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 77, 97, 116, 104, 95, 99, 108, 122, 51, 50, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 77, 97, 116, 104, 95, 102, 114, 111, 117, 110, 100, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 77, 97, 116, 104, 95, 97, 98, 115, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 77, 97, 116, 104, 95, 102, 108, 111, 111, 114, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 77, 97, 116, 104, 95, 115, 113, 114, 116, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 109, 111, 100, 117, 108, 101, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 103, 101, 116, 67, 83, 116, 114, 105, 110, 103, 0, 111, 112, 101, 114, 97, 110, 100, 115, 32, 38, 38, 32, 111, 112, 101, 114, 97, 110, 100, 115, 45, 62, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 49, 0, 103, 101, 116, 66, 117, 105, 108, 116, 105, 110, 70, 117, 110, 99, 116, 105, 111, 110, 84, 121, 112, 101, 0, 105, 105, 0, 102, 102, 0, 100, 100, 0, 34, 40, 110, 117, 108, 108, 41, 34, 0, 91, 93, 0, 32, 32, 0, 110, 117, 108, 108, 0, 34, 58, 32, 0, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 56, 111, 112, 116, 105, 109, 105, 122, 101, 69, 118, 69, 49, 57, 66, 108, 111, 99, 107, 66, 114, 101, 97, 107, 79, 112, 116, 105, 109, 105, 122, 101, 114, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 90, 78, 83, 95, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 56, 111, 112, 116, 105, 109, 105, 122, 101, 69, 118, 69, 49, 57, 66, 108, 111, 99, 107, 66, 114, 101, 97, 107, 79, 112, 116, 105, 109, 105, 122, 101, 114, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 66, 97, 115, 101, 73, 90, 78, 83, 95, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 56, 111, 112, 116, 105, 109, 105, 122, 101, 69, 118, 69, 49, 57, 66, 108, 111, 99, 107, 66, 114, 101, 97, 107, 79, 112, 116, 105, 109, 105, 122, 101, 114, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 90, 78, 83, 95, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 56, 111, 112, 116, 105, 109, 105, 122, 101, 69, 118, 69, 49, 57, 66, 108, 111, 99, 107, 66, 114, 101, 97, 107, 79, 112, 116, 105, 109, 105, 122, 101, 114, 118, 69, 69, 0, 90, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 56, 111, 112, 116, 105, 109, 105, 122, 101, 69, 118, 69, 78, 49, 57, 66, 108, 111, 99, 107, 66, 114, 101, 97, 107, 79, 112, 116, 105, 109, 105, 122, 101, 114, 49, 48, 118, 105, 115, 105, 116, 66, 108, 111, 99, 107, 69, 80, 78, 83, 95, 53, 66, 108, 111, 99, 107, 69, 69, 49, 49, 66, 114, 101, 97, 107, 83, 101, 101, 107, 101, 114, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 90, 90, 78, 83, 95, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 56, 111, 112, 116, 105, 109, 105, 122, 101, 69, 118, 69, 78, 49, 57, 66, 108, 111, 99, 107, 66, 114, 101, 97, 107, 79, 112, 116, 105, 109, 105, 122, 101, 114, 49, 48, 118, 105, 115, 105, 116, 66, 108, 111, 99, 107, 69, 80, 78, 83, 95, 53, 66, 108, 111, 99, 107, 69, 69, 49, 49, 66, 114, 101, 97, 107, 83, 101, 101, 107, 101, 114, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 66, 97, 115, 101, 73, 90, 90, 78, 83, 95, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 56, 111, 112, 116, 105, 109, 105, 122, 101, 69, 118, 69, 78, 49, 57, 66, 108, 111, 99, 107, 66, 114, 101, 97, 107, 79, 112, 116, 105, 109, 105, 122, 101, 114, 49, 48, 118, 105, 115, 105, 116, 66, 108, 111, 99, 107, 69, 80, 78, 83, 95, 53, 66, 108, 111, 99, 107, 69, 69, 49, 49, 66, 114, 101, 97, 107, 83, 101, 101, 107, 101, 114, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 90, 90, 78, 83, 95, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 56, 111, 112, 116, 105, 109, 105, 122, 101, 69, 118, 69, 78, 49, 57, 66, 108, 111, 99, 107, 66, 114, 101, 97, 107, 79, 112, 116, 105, 109, 105, 122, 101, 114, 49, 48, 118, 105, 115, 105, 116, 66, 108, 111, 99, 107, 69, 80, 78, 83, 95, 53, 66, 108, 111, 99, 107, 69, 69, 49, 49, 66, 114, 101, 97, 107, 83, 101, 101, 107, 101, 114, 118, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 57, 98, 97, 115, 105, 99, 95, 105, 115, 116, 114, 105, 110, 103, 115, 116, 114, 101, 97, 109, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 99, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 53, 98, 97, 115, 105, 99, 95, 115, 116, 114, 105, 110, 103, 98, 117, 102, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 99, 69, 69, 69, 69, 0, 116, 121, 112, 101, 32, 61, 61, 32, 87, 97, 115, 109, 84, 121, 112, 101, 58, 58, 105, 51, 50, 0, 99, 97, 115, 116, 84, 111, 70, 51, 50, 0, 116, 121, 112, 101, 32, 61, 61, 32, 87, 97, 115, 109, 84, 121, 112, 101, 58, 58, 105, 54, 52, 0, 99, 97, 115, 116, 84, 111, 70, 54, 52, 0, 97, 115, 109, 50, 119, 97, 115, 109, 32, 61, 61, 32, 110, 117, 108, 108, 112, 116, 114, 32, 38, 38, 32, 115, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 80, 97, 114, 115, 101, 114, 32, 61, 61, 32, 110, 117, 108, 108, 112, 116, 114, 32, 38, 38, 32, 115, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 32, 61, 61, 32, 110, 117, 108, 108, 112, 116, 114, 32, 38, 38, 32, 105, 110, 115, 116, 97, 110, 99, 101, 32, 61, 61, 32, 110, 117, 108, 108, 112, 116, 114, 0, 112, 114, 101, 112, 97, 114, 101, 50, 119, 97, 115, 109, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 33, 33, 77, 111, 100, 117, 108, 101, 91, 39, 111, 117, 116, 115, 105, 100, 101, 39, 93, 91, 39, 87, 65, 83, 77, 95, 74, 83, 95, 68, 69, 66, 85, 71, 39, 93, 32, 125, 0, 47, 47, 32, 69, 77, 83, 67, 82, 73, 80, 84, 69, 78, 95, 83, 84, 65, 82, 84, 95, 70, 85, 78, 67, 83, 0, 114, 101, 116, 117, 114, 110, 32, 116, 114, 117, 101, 59, 0, 102, 117, 110, 99, 116, 105, 111, 110, 32, 0, 115, 116, 114, 115, 116, 114, 40, 103, 114, 111, 119, 116, 104, 70, 117, 110, 99, 83, 116, 97, 114, 116, 32, 43, 32, 49, 44, 32, 34, 102, 117, 110, 99, 116, 105, 111, 110, 32, 34, 41, 32, 61, 61, 32, 48, 0, 112, 114, 111, 99, 101, 115, 115, 0, 103, 114, 111, 119, 116, 104, 70, 117, 110, 99, 69, 110, 100, 32, 62, 32, 103, 114, 111, 119, 116, 104, 70, 117, 110, 99, 83, 116, 97, 114, 116, 32, 43, 32, 53, 0, 59, 41, 0, 105, 110, 112, 117, 116, 0, 115, 114, 99, 47, 119, 97, 115, 109, 45, 115, 45, 112, 97, 114, 115, 101, 114, 46, 104, 0, 112, 97, 114, 115, 101, 73, 110, 110, 101, 114, 76, 105, 115, 116, 0, 105, 110, 112, 117, 116, 91, 48, 93, 32, 61, 61, 32, 39, 41, 39, 0, 112, 97, 114, 115, 101, 0, 105, 115, 76, 105, 115, 116, 95, 0, 108, 105, 115, 116, 0, 32, 41, 0, 109, 111, 100, 117, 108, 101, 91, 48, 93, 45, 62, 115, 116, 114, 40, 41, 32, 61, 61, 32, 77, 79, 68, 85, 76, 69, 0, 83, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 0, 33, 105, 115, 76, 105, 115, 116, 95, 0, 115, 116, 114, 0, 102, 117, 110, 99, 46, 105, 115, 76, 105, 115, 116, 40, 41, 0, 112, 97, 114, 115, 101, 84, 121, 112, 101, 0, 78, 83, 116, 51, 95, 95, 49, 49, 55, 98, 97, 100, 95, 102, 117, 110, 99, 116, 105, 111, 110, 95, 99, 97, 108, 108, 69, 0, 114, 101, 115, 117, 108, 116, 91, 48, 93, 45, 62, 115, 116, 114, 40, 41, 32, 61, 61, 32, 82, 69, 83, 85, 76, 84, 0, 112, 97, 114, 115, 101, 73, 109, 112, 111, 114, 116, 0, 98, 97, 100, 32, 109, 111, 100, 117, 108, 101, 32, 101, 108, 101, 109, 101, 110, 116, 32, 0, 112, 97, 114, 115, 101, 32, 101, 120, 112, 114, 101, 115, 115, 105, 111, 110, 32, 0, 97, 98, 111, 114, 116, 105, 110, 103, 32, 111, 110, 32, 0, 110, 111, 100, 101, 58, 32, 0, 48, 32, 38, 38, 32, 34, 108, 101, 102, 116, 45, 62, 116, 121, 112, 101, 32, 33, 61, 32, 117, 110, 114, 101, 97, 99, 104, 97, 98, 108, 101, 32, 38, 38, 32, 114, 105, 103, 104, 116, 45, 62, 116, 121, 112, 101, 32, 33, 61, 32, 117, 110, 114, 101, 97, 99, 104, 97, 98, 108, 101, 32, 63, 32, 108, 101, 102, 116, 45, 62, 116, 121, 112, 101, 32, 61, 61, 32, 114, 105, 103, 104, 116, 45, 62, 116, 121, 112, 101, 32, 58, 32, 116, 114, 117, 101, 34, 0, 102, 105, 110, 97, 108, 105, 122, 101, 0, 90, 78, 52, 119, 97, 115, 109, 49, 48, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 53, 112, 114, 105, 110, 116, 69, 82, 78, 83, 116, 51, 95, 95, 49, 49, 51, 98, 97, 115, 105, 99, 95, 111, 115, 116, 114, 101, 97, 109, 73, 99, 78, 83, 49, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 106, 69, 49, 55, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 80, 114, 105, 110, 116, 101, 114, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 90, 78, 83, 95, 49, 48, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 53, 112, 114, 105, 110, 116, 69, 82, 78, 83, 116, 51, 95, 95, 49, 49, 51, 98, 97, 115, 105, 99, 95, 111, 115, 116, 114, 101, 97, 109, 73, 99, 78, 83, 50, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 106, 69, 49, 55, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 80, 114, 105, 110, 116, 101, 114, 118, 69, 69, 0, 27, 91, 51, 49, 109, 0, 27, 91, 49, 109, 0, 27, 91, 51, 53, 109, 0, 27, 91, 48, 109, 0, 110, 97, 109, 101, 46, 115, 116, 114, 0, 105, 102, 95, 101, 108, 115, 101, 0, 108, 111, 111, 112, 0, 105, 110, 46, 105, 115, 40, 41, 0, 100, 111, 80, 114, 105, 110, 116, 0, 98, 114, 95, 105, 102, 32, 0, 98, 114, 32, 0, 116, 97, 98, 108, 101, 115, 119, 105, 116, 99, 104, 32, 0, 40, 116, 97, 98, 108, 101, 0, 10, 0, 99, 97, 115, 101, 32, 0, 27, 91, 51, 51, 109, 0, 99, 97, 108, 108, 32, 0, 99, 97, 108, 108, 95, 105, 109, 112, 111, 114, 116, 32, 0, 99, 97, 108, 108, 95, 105, 110, 100, 105, 114, 101, 99, 116, 32, 0, 103, 101, 116, 95, 108, 111, 99, 97, 108, 32, 0, 115, 101, 116, 95, 108, 111, 99, 97, 108, 32, 0, 46, 108, 111, 97, 100, 0, 49, 54, 0, 51, 50, 0, 95, 115, 0, 95, 117, 0, 32, 111, 102, 102, 115, 101, 116, 61, 0, 32, 97, 108, 105, 103, 110, 61, 0, 110, 111, 110, 101, 0, 105, 51, 50, 0, 105, 54, 52, 0, 102, 51, 50, 0, 102, 54, 52, 0, 46, 115, 116, 111, 114, 101, 0, 99, 108, 122, 0, 99, 116, 122, 0, 112, 111, 112, 99, 110, 116, 0, 110, 101, 103, 0, 99, 101, 105, 108, 0, 116, 114, 117, 110, 99, 0, 110, 101, 97, 114, 101, 115, 116, 0, 101, 120, 116, 101, 110, 100, 95, 115, 47, 105, 51, 50, 0, 101, 120, 116, 101, 110, 100, 95, 117, 47, 105, 51, 50, 0, 119, 114, 97, 112, 47, 105, 54, 52, 0, 116, 114, 117, 110, 99, 95, 115, 47, 102, 51, 50, 0, 116, 114, 117, 110, 99, 95, 117, 47, 102, 51, 50, 0, 116, 114, 117, 110, 99, 95, 115, 47, 102, 54, 52, 0, 116, 114, 117, 110, 99, 95, 117, 47, 102, 54, 52, 0, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 47, 0, 99, 111, 110, 118, 101, 114, 116, 95, 117, 47, 105, 51, 50, 0, 99, 111, 110, 118, 101, 114, 116, 95, 115, 47, 105, 51, 50, 0, 99, 111, 110, 118, 101, 114, 116, 95, 117, 47, 105, 54, 52, 0, 99, 111, 110, 118, 101, 114, 116, 95, 115, 47, 105, 54, 52, 0, 112, 114, 111, 109, 111, 116, 101, 47, 102, 51, 50, 0, 100, 101, 109, 111, 116, 101, 47, 102, 54, 52, 0, 109, 117, 108, 0, 100, 105, 118, 95, 115, 0, 100, 105, 118, 95, 117, 0, 114, 101, 109, 95, 115, 0, 114, 101, 109, 95, 117, 0, 97, 110, 100, 0, 111, 114, 0, 120, 111, 114, 0, 115, 104, 108, 0, 115, 104, 114, 95, 117, 0, 115, 104, 114, 95, 115, 0, 100, 105, 118, 0, 99, 111, 112, 121, 115, 105, 103, 110, 0, 109, 105, 110, 0, 109, 97, 120, 0, 101, 113, 0, 110, 101, 0, 108, 116, 95, 115, 0, 108, 116, 95, 117, 0, 108, 101, 95, 115, 0, 108, 101, 95, 117, 0, 103, 116, 95, 115, 0, 103, 116, 95, 117, 0, 103, 101, 95, 115, 0, 103, 101, 95, 117, 0, 108, 116, 0, 108, 101, 0, 103, 116, 0, 103, 101, 0, 46, 115, 101, 108, 101, 99, 116, 0, 112, 97, 103, 101, 115, 105, 122, 101, 0, 109, 101, 109, 111, 114, 121, 95, 115, 105, 122, 101, 0, 103, 114, 111, 119, 95, 109, 101, 109, 111, 114, 121, 0, 104, 97, 115, 102, 101, 97, 116, 117, 114, 101, 32, 0, 110, 111, 112, 0, 117, 110, 114, 101, 97, 99, 104, 97, 98, 108, 101, 0, 101, 120, 116, 114, 97, 91, 49, 93, 32, 61, 61, 32, 39, 54, 39, 0, 109, 97, 107, 101, 76, 111, 97, 100, 0, 101, 120, 116, 114, 97, 91, 49, 93, 32, 61, 61, 32, 39, 50, 39, 0, 99, 95, 115, 116, 114, 0, 109, 97, 107, 101, 83, 116, 111, 114, 101, 0, 111, 102, 102, 115, 101, 116, 32, 60, 32, 108, 97, 98, 101, 108, 83, 116, 97, 99, 107, 46, 115, 105, 122, 101, 40, 41, 0, 109, 97, 107, 101, 66, 114, 101, 97, 107, 0, 119, 97, 115, 109, 46, 102, 117, 110, 99, 116, 105, 111, 110, 84, 121, 112, 101, 115, 77, 97, 112, 46, 102, 105, 110, 100, 40, 116, 121, 112, 101, 41, 32, 33, 61, 32, 119, 97, 115, 109, 46, 102, 117, 110, 99, 116, 105, 111, 110, 84, 121, 112, 101, 115, 77, 97, 112, 46, 101, 110, 100, 40, 41, 0, 109, 97, 107, 101, 67, 97, 108, 108, 73, 110, 100, 105, 114, 101, 99, 116, 0, 108, 111, 111, 112, 45, 111, 117, 116, 0, 108, 111, 111, 112, 45, 105, 110, 0, 99, 117, 114, 114, 91, 48, 93, 45, 62, 115, 116, 114, 40, 41, 32, 61, 61, 32, 67, 65, 83, 69, 0, 109, 97, 107, 101, 83, 119, 105, 116, 99, 104, 0, 99, 117, 114, 114, 91, 48, 93, 45, 62, 115, 116, 114, 40, 41, 32, 61, 61, 32, 83, 69, 71, 77, 69, 78, 84, 0, 112, 97, 114, 115, 101, 77, 101, 109, 111, 114, 121, 0, 10, 32, 32, 32, 32, 40, 115, 101, 103, 109, 101, 110, 116, 32, 0, 32, 34, 0, 92, 110, 0, 92, 48, 100, 0, 92, 116, 0, 92, 48, 99, 0, 92, 48, 56, 0, 92, 92, 0, 92, 34, 0, 92, 39, 0, 34, 41, 0, 10, 32, 32, 0, 41, 10, 0, 32, 40, 102, 117, 110, 99, 0, 114, 101, 115, 117, 108, 116, 32, 0, 41, 41, 0, 105, 109, 112, 111, 114, 116, 32, 0, 27, 91, 51, 50, 109, 0, 101, 120, 112, 111, 114, 116, 32, 0, 102, 117, 110, 99, 32, 0, 32, 40, 116, 121, 112, 101, 32, 0, 112, 97, 114, 97, 109, 32, 0, 108, 111, 99, 97, 108, 32, 0, 90, 49, 49, 105, 110, 115, 116, 97, 110, 116, 105, 97, 116, 101, 69, 49, 57, 74, 83, 69, 120, 116, 101, 114, 110, 97, 108, 73, 110, 116, 101, 114, 102, 97, 99, 101, 0, 78, 52, 119, 97, 115, 109, 49, 52, 77, 111, 100, 117, 108, 101, 73, 110, 115, 116, 97, 110, 99, 101, 49, 55, 69, 120, 116, 101, 114, 110, 97, 108, 73, 110, 116, 101, 114, 102, 97, 99, 101, 69, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 111, 117, 116, 115, 105, 100, 101, 39, 93, 91, 39, 110, 101, 119, 66, 117, 102, 102, 101, 114, 39, 93, 32, 61, 32, 110, 101, 119, 32, 65, 114, 114, 97, 121, 66, 117, 102, 102, 101, 114, 40, 36, 48, 41, 59, 32, 125, 0, 123, 32, 118, 97, 114, 32, 115, 111, 117, 114, 99, 101, 32, 61, 32, 77, 111, 100, 117, 108, 101, 91, 39, 72, 69, 65, 80, 56, 39, 93, 46, 115, 117, 98, 97, 114, 114, 97, 121, 40, 36, 49, 44, 32, 36, 49, 32, 43, 32, 36, 50, 41, 59, 32, 118, 97, 114, 32, 116, 97, 114, 103, 101, 116, 32, 61, 32, 110, 101, 119, 32, 73, 110, 116, 56, 65, 114, 114, 97, 121, 40, 77, 111, 100, 117, 108, 101, 91, 39, 111, 117, 116, 115, 105, 100, 101, 39, 93, 91, 39, 110, 101, 119, 66, 117, 102, 102, 101, 114, 39, 93, 41, 59, 32, 116, 97, 114, 103, 101, 116, 46, 115, 101, 116, 40, 115, 111, 117, 114, 99, 101, 44, 32, 36, 48, 41, 59, 32, 125, 0, 99, 97, 108, 108, 105, 110, 103, 32, 105, 109, 112, 111, 114, 116, 32, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 39, 93, 32, 61, 32, 91, 93, 59, 32, 125, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 39, 93, 46, 112, 117, 115, 104, 40, 36, 48, 41, 32, 125, 0, 123, 32, 118, 97, 114, 32, 109, 111, 100, 32, 61, 32, 80, 111, 105, 110, 116, 101, 114, 95, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 36, 48, 41, 59, 32, 118, 97, 114, 32, 98, 97, 115, 101, 32, 61, 32, 80, 111, 105, 110, 116, 101, 114, 95, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 36, 49, 41, 59, 32, 118, 97, 114, 32, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 32, 61, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 39, 93, 59, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 39, 93, 32, 61, 32, 110, 117, 108, 108, 59, 32, 118, 97, 114, 32, 108, 111, 111, 107, 117, 112, 32, 61, 32, 77, 111, 100, 117, 108, 101, 91, 39, 108, 111, 111, 107, 117, 112, 73, 109, 112, 111, 114, 116, 39, 93, 40, 109, 111, 100, 44, 32, 98, 97, 115, 101, 41, 59, 32, 114, 101, 116, 117, 114, 110, 32, 108, 111, 111, 107, 117, 112, 46, 97, 112, 112, 108, 121, 40, 110, 117, 108, 108, 44, 32, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 41, 59, 32, 125, 0, 99, 97, 108, 108, 105, 110, 103, 32, 105, 109, 112, 111, 114, 116, 32, 114, 101, 116, 117, 114, 110, 105, 110, 103, 32, 0, 108, 111, 97, 100, 45, 62, 97, 108, 105, 103, 110, 32, 62, 61, 32, 108, 111, 97, 100, 45, 62, 98, 121, 116, 101, 115, 0, 108, 111, 97, 100, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 56, 39, 93, 91, 36, 48, 93, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 85, 56, 39, 93, 91, 36, 48, 93, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 49, 54, 39, 93, 91, 36, 48, 32, 62, 62, 32, 49, 93, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 85, 49, 54, 39, 93, 91, 36, 48, 32, 62, 62, 32, 49, 93, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 51, 50, 39, 93, 91, 36, 48, 32, 62, 62, 32, 50, 93, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 85, 51, 50, 39, 93, 91, 36, 48, 32, 62, 62, 32, 50, 93, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 70, 51, 50, 39, 93, 91, 36, 48, 32, 62, 62, 32, 50, 93, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 70, 54, 52, 39, 93, 91, 36, 48, 32, 62, 62, 32, 51, 93, 32, 125, 0, 115, 116, 111, 114, 101, 45, 62, 97, 108, 105, 103, 110, 32, 62, 61, 32, 115, 116, 111, 114, 101, 45, 62, 98, 121, 116, 101, 115, 0, 115, 116, 111, 114, 101, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 56, 39, 93, 91, 36, 48, 93, 32, 61, 32, 36, 49, 32, 125, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 49, 54, 39, 93, 91, 36, 48, 32, 62, 62, 32, 49, 93, 32, 61, 32, 36, 49, 32, 125, 0, 123, 32, 118, 97, 114, 32, 115, 105, 122, 101, 32, 61, 32, 36, 48, 59, 32, 118, 97, 114, 32, 98, 117, 102, 102, 101, 114, 59, 32, 116, 114, 121, 32, 123, 32, 98, 117, 102, 102, 101, 114, 32, 61, 32, 110, 101, 119, 32, 65, 114, 114, 97, 121, 66, 117, 102, 102, 101, 114, 40, 115, 105, 122, 101, 41, 59, 32, 125, 32, 99, 97, 116, 99, 104, 40, 101, 41, 32, 123, 32, 114, 101, 116, 117, 114, 110, 59, 32, 125, 32, 118, 97, 114, 32, 111, 108, 100, 72, 69, 65, 80, 56, 32, 61, 32, 77, 111, 100, 117, 108, 101, 91, 39, 111, 117, 116, 115, 105, 100, 101, 39, 93, 91, 39, 72, 69, 65, 80, 56, 39, 93, 59, 32, 118, 97, 114, 32, 116, 101, 109, 112, 32, 61, 32, 110, 101, 119, 32, 73, 110, 116, 56, 65, 114, 114, 97, 121, 40, 98, 117, 102, 102, 101, 114, 41, 59, 32, 116, 101, 109, 112, 46, 115, 101, 116, 40, 111, 108, 100, 72, 69, 65, 80, 56, 41, 59, 32, 77, 111, 100, 117, 108, 101, 91, 39, 111, 117, 116, 115, 105, 100, 101, 39, 93, 91, 39, 98, 117, 102, 102, 101, 114, 39, 93, 32, 61, 32, 98, 117, 102, 102, 101, 114, 59, 32, 125, 0, 123, 32, 97, 98, 111, 114, 116, 40, 34, 119, 97, 115, 109, 32, 116, 114, 97, 112, 58, 32, 34, 32, 43, 32, 80, 111, 105, 110, 116, 101, 114, 95, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 36, 48, 41, 41, 59, 32, 125, 0, 99, 97, 108, 108, 69, 120, 112, 111, 114, 116, 32, 110, 111, 116, 32, 102, 111, 117, 110, 100, 0, 115, 116, 97, 99, 107, 32, 108, 105, 109, 105, 116, 0, 115, 114, 99, 47, 119, 97, 115, 109, 45, 105, 110, 116, 101, 114, 112, 114, 101, 116, 101, 114, 46, 104, 0, 99, 97, 108, 108, 70, 117, 110, 99, 116, 105, 111, 110, 0, 33, 102, 108, 111, 119, 46, 98, 114, 101, 97, 107, 105, 110, 103, 40, 41, 32, 124, 124, 32, 102, 108, 111, 119, 46, 98, 114, 101, 97, 107, 84, 111, 32, 61, 61, 32, 82, 69, 84, 85, 82, 78, 95, 70, 76, 79, 87, 0, 102, 117, 110, 99, 116, 105, 111, 110, 45, 62, 114, 101, 115, 117, 108, 116, 32, 61, 61, 32, 114, 101, 116, 46, 116, 121, 112, 101, 0, 70, 117, 110, 99, 116, 105, 111, 110, 32, 96, 0, 96, 32, 101, 120, 112, 101, 99, 116, 115, 32, 0, 32, 112, 97, 114, 97, 109, 101, 116, 101, 114, 115, 44, 32, 103, 111, 116, 32, 0, 32, 97, 114, 103, 117, 109, 101, 110, 116, 115, 46, 0, 96, 32, 101, 120, 112, 101, 99, 116, 115, 32, 116, 121, 112, 101, 32, 0, 32, 102, 111, 114, 32, 112, 97, 114, 97, 109, 101, 116, 101, 114, 32, 0, 44, 32, 103, 111, 116, 32, 0, 90, 78, 52, 119, 97, 115, 109, 49, 52, 77, 111, 100, 117, 108, 101, 73, 110, 115, 116, 97, 110, 99, 101, 49, 50, 99, 97, 108, 108, 70, 117, 110, 99, 116, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 55, 73, 83, 116, 114, 105, 110, 103, 69, 82, 78, 83, 116, 51, 95, 95, 49, 54, 118, 101, 99, 116, 111, 114, 73, 78, 83, 95, 55, 76, 105, 116, 101, 114, 97, 108, 69, 78, 83, 51, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 53, 95, 69, 69, 69, 69, 69, 49, 54, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 82, 117, 110, 110, 101, 114, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 90, 78, 83, 95, 49, 52, 77, 111, 100, 117, 108, 101, 73, 110, 115, 116, 97, 110, 99, 101, 49, 50, 99, 97, 108, 108, 70, 117, 110, 99, 116, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 55, 73, 83, 116, 114, 105, 110, 103, 69, 82, 78, 83, 116, 51, 95, 95, 49, 54, 118, 101, 99, 116, 111, 114, 73, 78, 83, 95, 55, 76, 105, 116, 101, 114, 97, 108, 69, 78, 83, 52, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 54, 95, 69, 69, 69, 69, 69, 49, 54, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 82, 117, 110, 110, 101, 114, 78, 83, 95, 52, 70, 108, 111, 119, 69, 69, 69, 0, 99, 97, 115, 101, 73, 110, 100, 101, 120, 32, 60, 32, 99, 117, 114, 114, 45, 62, 99, 97, 115, 101, 115, 46, 115, 105, 122, 101, 40, 41, 0, 118, 105, 115, 105, 116, 83, 119, 105, 116, 99, 104, 0, 99, 97, 108, 108, 73, 110, 100, 105, 114, 101, 99, 116, 58, 32, 111, 118, 101, 114, 102, 108, 111, 119, 0, 99, 97, 108, 108, 73, 110, 100, 105, 114, 101, 99, 116, 58, 32, 98, 97, 100, 32, 116, 121, 112, 101, 0, 102, 108, 111, 119, 46, 118, 97, 108, 117, 101, 46, 116, 121, 112, 101, 32, 61, 61, 32, 99, 117, 114, 114, 45, 62, 116, 121, 112, 101, 0, 118, 105, 115, 105, 116, 83, 101, 116, 76, 111, 99, 97, 108, 0, 111, 102, 102, 115, 101, 116, 32, 62, 32, 109, 101, 109, 111, 114, 121, 0, 102, 105, 110, 97, 108, 32, 62, 32, 109, 101, 109, 111, 114, 121, 0, 98, 121, 116, 101, 115, 32, 62, 32, 109, 101, 109, 111, 114, 121, 0, 104, 105, 103, 104, 101, 115, 116, 32, 62, 32, 109, 101, 109, 111, 114, 121, 0, 103, 101, 116, 105, 54, 52, 0, 58, 32, 0, 32, 62, 32, 0, 78, 83, 116, 51, 95, 95, 49, 49, 56, 98, 97, 115, 105, 99, 95, 115, 116, 114, 105, 110, 103, 115, 116, 114, 101, 97, 109, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 78 ], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE + 10240);
+allocate([ 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 99, 69, 69, 69, 69, 0, 116, 121, 112, 101, 32, 61, 61, 32, 87, 97, 115, 109, 84, 121, 112, 101, 58, 58, 102, 51, 50, 0, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 105, 51, 50, 0, 116, 114, 117, 110, 99, 83, 70, 108, 111, 97, 116, 32, 111, 102, 32, 110, 97, 110, 0, 105, 51, 50, 46, 116, 114, 117, 110, 99, 83, 70, 108, 111, 97, 116, 32, 111, 118, 101, 114, 102, 108, 111, 119, 0, 116, 114, 117, 110, 99, 85, 70, 108, 111, 97, 116, 32, 111, 102, 32, 110, 97, 110, 0, 105, 54, 52, 46, 116, 114, 117, 110, 99, 85, 70, 108, 111, 97, 116, 32, 111, 118, 101, 114, 102, 108, 111, 119, 0, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 102, 51, 50, 0, 116, 121, 112, 101, 32, 61, 61, 32, 87, 97, 115, 109, 84, 121, 112, 101, 58, 58, 102, 54, 52, 0, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 105, 54, 52, 0, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 102, 54, 52, 0, 108, 101, 102, 116, 46, 116, 121, 112, 101, 32, 61, 61, 32, 99, 117, 114, 114, 45, 62, 108, 101, 102, 116, 45, 62, 116, 121, 112, 101, 0, 118, 105, 115, 105, 116, 66, 105, 110, 97, 114, 121, 0, 114, 105, 103, 104, 116, 46, 116, 121, 112, 101, 32, 61, 61, 32, 99, 117, 114, 114, 45, 62, 114, 105, 103, 104, 116, 45, 62, 116, 121, 112, 101, 0, 105, 51, 50, 46, 100, 105, 118, 95, 115, 32, 98, 121, 32, 48, 0, 105, 51, 50, 46, 100, 105, 118, 95, 115, 32, 111, 118, 101, 114, 102, 108, 111, 119, 0, 105, 51, 50, 46, 100, 105, 118, 95, 117, 32, 98, 121, 32, 48, 0, 105, 51, 50, 46, 114, 101, 109, 95, 115, 32, 98, 121, 32, 48, 0, 105, 51, 50, 46, 114, 101, 109, 95, 117, 32, 98, 121, 32, 48, 0, 105, 54, 52, 46, 100, 105, 118, 95, 115, 32, 98, 121, 32, 48, 0, 105, 54, 52, 46, 100, 105, 118, 95, 115, 32, 111, 118, 101, 114, 102, 108, 111, 119, 0, 105, 54, 52, 46, 100, 105, 118, 95, 117, 32, 98, 121, 32, 48, 0, 105, 54, 52, 46, 114, 101, 109, 95, 115, 32, 98, 121, 32, 48, 0, 105, 54, 52, 46, 114, 101, 109, 95, 117, 32, 98, 121, 32, 48, 0, 103, 114, 111, 119, 77, 101, 109, 111, 114, 121, 58, 32, 100, 101, 108, 116, 97, 32, 110, 111, 116, 32, 109, 117, 108, 116, 105, 112, 108, 101, 0, 103, 114, 111, 119, 77, 101, 109, 111, 114, 121, 58, 32, 100, 101, 108, 116, 97, 32, 114, 101, 108, 97, 116, 105, 118, 101, 108, 121, 32, 116, 111, 111, 32, 98, 105, 103, 0, 103, 114, 111, 119, 77, 101, 109, 111, 114, 121, 58, 32, 100, 101, 108, 116, 97, 32, 111, 98, 106, 101, 99, 116, 105, 118, 101, 108, 121, 32, 116, 111, 111, 32, 98, 105, 103, 0, 103, 114, 111, 119, 77, 101, 109, 111, 114, 121, 58, 32, 101, 120, 99, 101, 101, 100, 115, 32, 109, 97, 120, 0, 46, 99, 111, 110, 115, 116, 32, 0, 58, 48, 120, 0, 45, 48, 0, 37, 108, 102, 0, 100, 32, 62, 61, 32, 48, 0, 110, 117, 109, 84, 111, 83, 116, 114, 105, 110, 103, 0, 48, 120, 37, 108, 108, 120, 0, 37, 108, 108, 117, 0, 37, 108, 108, 120, 0, 37, 101, 0, 37, 46, 48, 102, 0, 110, 117, 109, 32, 60, 32, 49, 48, 48, 48, 0, 103, 101, 116, 105, 51, 50, 0, 103, 101, 116, 102, 51, 50, 0, 103, 101, 116, 102, 54, 52, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 53, 112, 114, 111, 99, 101, 115, 115, 70, 117, 110, 99, 116, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 51, 36, 95, 49, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 54, 95, 69, 69, 70, 80, 78, 83, 50, 95, 49, 48, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 69, 83, 53, 95, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 98, 97, 115, 101, 73, 70, 80, 78, 52, 119, 97, 115, 109, 49, 48, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 69, 69, 0, 97, 116, 58, 32, 0, 109, 97, 112, 112, 101, 100, 71, 108, 111, 98, 97, 108, 115, 46, 102, 105, 110, 100, 40, 110, 97, 109, 101, 41, 32, 33, 61, 32, 109, 97, 112, 112, 101, 100, 71, 108, 111, 98, 97, 108, 115, 46, 101, 110, 100, 40, 41, 0, 116, 97, 114, 103, 101, 116, 91, 49, 93, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 118, 105, 101, 119, 115, 46, 102, 105, 110, 100, 40, 104, 101, 97, 112, 41, 32, 33, 61, 32, 118, 105, 101, 119, 115, 46, 101, 110, 100, 40, 41, 0, 99, 111, 110, 102, 117, 115, 105, 110, 103, 32, 97, 115, 115, 105, 103, 110, 0, 100, 100, 100, 0, 118, 0, 116, 97, 114, 103, 101, 116, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 114, 101, 116, 45, 62, 108, 101, 102, 116, 45, 62, 116, 121, 112, 101, 32, 61, 61, 32, 114, 101, 116, 45, 62, 114, 105, 103, 104, 116, 45, 62, 116, 121, 112, 101, 0, 98, 97, 100, 32, 117, 110, 97, 114, 121, 0, 97, 115, 116, 91, 50, 93, 45, 62, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 50, 0, 97, 115, 116, 91, 50, 93, 45, 62, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 49, 0, 99, 111, 110, 102, 117, 115, 105, 110, 103, 32, 102, 114, 111, 117, 110, 100, 32, 116, 97, 114, 103, 101, 116, 0, 116, 97, 114, 103, 101, 116, 91, 48, 93, 32, 61, 61, 32, 83, 85, 66, 32, 38, 38, 32, 116, 97, 114, 103, 101, 116, 91, 49, 93, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 32, 38, 38, 32, 116, 97, 114, 103, 101, 116, 91, 50, 93, 91, 48, 93, 32, 61, 61, 32, 66, 73, 78, 65, 82, 89, 32, 38, 38, 32, 116, 97, 114, 103, 101, 116, 91, 50, 93, 91, 49, 93, 32, 61, 61, 32, 65, 78, 68, 32, 38, 38, 32, 116, 97, 114, 103, 101, 116, 91, 50, 93, 91, 51, 93, 91, 48, 93, 32, 61, 61, 32, 78, 85, 77, 0, 102, 117, 110, 99, 116, 105, 111, 110, 45, 62, 114, 101, 115, 117, 108, 116, 32, 61, 61, 32, 116, 121, 112, 101, 0, 98, 114, 101, 97, 107, 83, 116, 97, 99, 107, 46, 115, 105, 122, 101, 40, 41, 32, 62, 32, 48, 0, 99, 111, 110, 116, 105, 110, 117, 101, 83, 116, 97, 99, 107, 46, 115, 105, 122, 101, 40, 41, 32, 62, 32, 48, 0, 119, 104, 105, 108, 101, 45, 111, 117, 116, 0, 119, 104, 105, 108, 101, 45, 105, 110, 0, 100, 111, 45, 111, 110, 99, 101, 0, 100, 111, 45, 111, 117, 116, 0, 100, 111, 45, 105, 110, 0, 102, 111, 114, 45, 111, 117, 116, 0, 102, 111, 114, 45, 105, 110, 0, 114, 101, 116, 45, 62, 118, 97, 108, 117, 101, 45, 62, 116, 121, 112, 101, 32, 61, 61, 32, 105, 51, 50, 0, 99, 111, 110, 100, 105, 116, 105, 111, 110, 91, 48, 93, 32, 61, 61, 32, 78, 85, 77, 32, 124, 124, 32, 99, 111, 110, 100, 105, 116, 105, 111, 110, 91, 48, 93, 32, 61, 61, 32, 85, 78, 65, 82, 89, 95, 80, 82, 69, 70, 73, 88, 0, 115, 119, 105, 116, 99, 104, 45, 100, 101, 102, 97, 117, 108, 116, 0, 105, 110, 100, 101, 120, 32, 62, 61, 32, 109, 105, 110, 0, 105, 110, 100, 101, 120, 32, 62, 61, 32, 48, 0, 115, 119, 105, 116, 99, 104, 45, 99, 97, 115, 101, 0, 99, 111, 110, 102, 117, 115, 105, 110, 103, 32, 101, 120, 112, 114, 101, 115, 115, 105, 111, 110, 0, 98, 97, 100, 32, 119, 97, 115, 109, 32, 98, 105, 110, 97, 114, 121, 32, 111, 112, 0, 102, 97, 108, 115, 101, 32, 38, 38, 32, 34, 101, 120, 112, 101, 99, 116, 101, 100, 32, 115, 105, 103, 110, 101, 100, 32, 111, 114, 32, 117, 110, 115, 105, 103, 110, 101, 100, 32, 105, 110, 116, 51, 50, 34, 0, 99, 104, 101, 99, 107, 76, 105, 116, 101, 114, 97, 108, 0, 100, 101, 116, 101, 99, 116, 65, 115, 109, 84, 121, 112, 101, 0, 97, 115, 116, 91, 48, 93, 32, 61, 61, 32, 67, 65, 76, 76, 32, 38, 38, 32, 97, 115, 116, 91, 49, 93, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 110, 111, 116, 101, 73, 109, 112, 111, 114, 116, 101, 100, 70, 117, 110, 99, 116, 105, 111, 110, 67, 97, 108, 108, 0, 116, 121, 112, 101, 36, 0, 108, 97, 98, 101, 108, 36, 98, 114, 101, 97, 107, 36, 0, 108, 97, 98, 101, 108, 36, 99, 111, 110, 116, 105, 110, 117, 101, 36, 0, 102, 109, 111, 100, 40, 103, 101, 116, 78, 117, 109, 98, 101, 114, 40, 41, 44, 32, 49, 41, 32, 61, 61, 32, 48, 0, 103, 101, 116, 73, 110, 116, 101, 103, 101, 114, 0, 100, 111, 117, 98, 108, 101, 40, 114, 101, 116, 41, 32, 61, 61, 32, 103, 101, 116, 78, 117, 109, 98, 101, 114, 40, 41, 0, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 53, 112, 114, 111, 99, 101, 115, 115, 70, 117, 110, 99, 116, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 51, 36, 95, 49, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 53, 112, 114, 111, 99, 101, 115, 115, 70, 117, 110, 99, 116, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 51, 36, 95, 50, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 54, 95, 69, 69, 70, 80, 78, 83, 50, 95, 49, 48, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 69, 83, 53, 95, 106, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 98, 97, 115, 101, 73, 70, 80, 78, 52, 119, 97, 115, 109, 49, 48, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 106, 69, 69, 69, 0, 98, 97, 100, 32, 112, 114, 111, 99, 101, 115, 115, 85, 110, 115, 104, 105, 102, 116, 101, 100, 0, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 53, 112, 114, 111, 99, 101, 115, 115, 70, 117, 110, 99, 116, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 51, 36, 95, 50, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 53, 112, 114, 111, 99, 101, 115, 115, 70, 117, 110, 99, 116, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 51, 36, 95, 51, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 54, 95, 69, 69, 70, 80, 78, 83, 50, 95, 49, 48, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 69, 83, 53, 95, 106, 69, 69, 69, 0, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 53, 112, 114, 111, 99, 101, 115, 115, 70, 117, 110, 99, 116, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 51, 36, 95, 51, 0, 59, 0, 112, 117, 115, 104, 95, 98, 97, 99, 107, 0, 103, 101, 116, 65, 114, 114, 97, 121, 0, 115, 114, 99, 32, 62, 32, 115, 116, 97, 114, 116, 0, 115, 114, 99, 47, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 45, 111, 112, 116, 105, 109, 105, 122, 101, 114, 47, 112, 97, 114, 115, 101, 114, 46, 104, 0, 70, 114, 97, 103, 0, 115, 116, 114, 99, 109, 112, 40, 115, 116, 114, 46, 115, 116, 114, 44, 32, 115, 116, 97, 114, 116, 41, 32, 61, 61, 32, 48, 0, 102, 114, 97, 103, 32, 112, 97, 114, 115, 105, 110, 103, 0, 37, 115, 58, 10, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 10, 0, 10, 10, 0, 110, 97, 109, 101, 46, 116, 121, 112, 101, 32, 61, 61, 32, 83, 69, 80, 65, 82, 65, 84, 79, 82, 32, 38, 38, 32, 110, 97, 109, 101, 46, 115, 116, 114, 91, 48, 93, 32, 61, 61, 32, 39, 40, 39, 0, 112, 97, 114, 115, 101, 70, 117, 110, 99, 116, 105, 111, 110, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 40, 39, 0, 97, 114, 103, 46, 116, 121, 112, 101, 32, 61, 61, 32, 73, 68, 69, 78, 84, 0, 102, 117, 110, 99, 91, 48, 93, 32, 61, 61, 32, 68, 69, 70, 85, 78, 0, 97, 112, 112, 101, 110, 100, 65, 114, 103, 117, 109, 101, 110, 116, 84, 111, 70, 117, 110, 99, 116, 105, 111, 110, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 123, 39, 0, 112, 97, 114, 115, 101, 66, 114, 97, 99, 107, 101, 116, 101, 100, 66, 108, 111, 99, 107, 0, 59, 125, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 125, 39, 0, 110, 97, 109, 101, 46, 116, 121, 112, 101, 32, 61, 61, 32, 73, 68, 69, 78, 84, 0, 112, 97, 114, 115, 101, 86, 97, 114, 0, 59, 44, 0, 118, 97, 114, 91, 48, 93, 32, 61, 61, 32, 86, 65, 82, 0, 97, 112, 112, 101, 110, 100, 84, 111, 86, 97, 114, 0, 104, 97, 115, 67, 104, 97, 114, 40, 115, 101, 112, 115, 44, 32, 42, 115, 114, 99, 41, 0, 112, 97, 114, 115, 101, 82, 101, 116, 117, 114, 110, 0, 112, 97, 114, 115, 101, 80, 97, 114, 101, 110, 110, 101, 100, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 41, 39, 0, 110, 101, 120, 116, 46, 116, 121, 112, 101, 32, 61, 61, 32, 75, 69, 89, 87, 79, 82, 68, 32, 38, 38, 32, 110, 101, 120, 116, 46, 115, 116, 114, 32, 61, 61, 32, 87, 72, 73, 76, 69, 0, 112, 97, 114, 115, 101, 68, 111, 0, 112, 97, 114, 115, 101, 83, 119, 105, 116, 99, 104, 0, 118, 97, 108, 117, 101, 46, 116, 121, 112, 101, 32, 61, 61, 32, 79, 80, 69, 82, 65, 84, 79, 82, 0, 118, 97, 108, 117, 101, 46, 115, 116, 114, 32, 61, 61, 32, 77, 73, 78, 85, 83, 0, 118, 97, 108, 117, 101, 50, 46, 105, 115, 78, 117, 109, 98, 101, 114, 40, 41, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 58, 39, 0, 115, 119, 105, 116, 99, 104, 95, 91, 48, 93, 32, 61, 61, 32, 83, 87, 73, 84, 67, 72, 0, 97, 112, 112, 101, 110, 100, 67, 97, 115, 101, 84, 111, 83, 119, 105, 116, 99, 104, 0, 97, 112, 112, 101, 110, 100, 68, 101, 102, 97, 117, 108, 116, 84, 111, 83, 119, 105, 116, 99, 104, 0, 97, 112, 112, 101, 110, 100, 67, 111, 100, 101, 84, 111, 83, 119, 105, 116, 99, 104, 0, 99, 111, 100, 101, 91, 48, 93, 32, 61, 61, 32, 66, 76, 79, 67, 75, 0, 98, 97, 99, 107, 0, 112, 97, 114, 115, 101, 70, 111, 114, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 59, 39, 0, 112, 97, 114, 115, 101, 67, 97, 108, 108, 0, 44, 41, 0, 101, 120, 112, 114, 101, 115, 115, 105, 111, 110, 80, 97, 114, 116, 115, 83, 116, 97, 99, 107, 46, 98, 97, 99, 107, 40, 41, 46, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 48, 0, 99, 97, 108, 108, 91, 48, 93, 32, 61, 61, 32, 67, 65, 76, 76, 0, 97, 112, 112, 101, 110, 100, 84, 111, 67, 97, 108, 108, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 91, 39, 0, 112, 97, 114, 115, 101, 73, 110, 100, 101, 120, 105, 110, 103, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 93, 39, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 46, 39, 0, 112, 97, 114, 115, 101, 68, 111, 116, 116, 105, 110, 103, 0, 107, 101, 121, 46, 116, 121, 112, 101, 32, 61, 61, 32, 73, 68, 69, 78, 84, 0, 98, 97, 100, 32, 112, 97, 114, 115, 101, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 32, 115, 116, 97, 116, 101, 0, 105, 32, 60, 32, 40, 105, 110, 116, 41, 112, 97, 114, 116, 115, 46, 115, 105, 122, 101, 40, 41, 45, 49, 32, 38, 38, 32, 105, 32, 62, 61, 32, 51, 0, 112, 97, 114, 115, 101, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 0, 112, 97, 114, 116, 115, 46, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 49, 0, 105, 115, 78, 111, 100, 101, 0, 103, 101, 116, 78, 111, 100, 101, 0, 33, 105, 115, 78, 111, 100, 101, 0, 103, 101, 116, 79, 112, 0, 107, 101, 121, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 109, 97, 107, 101, 68, 111, 116, 0, 112, 97, 114, 115, 101, 65, 102, 116, 101, 114, 80, 97, 114, 101, 110, 0, 42, 115, 114, 99, 0, 112, 97, 114, 115, 101, 65, 102, 116, 101, 114, 66, 114, 97, 99, 101, 0, 44, 93, 0, 97, 114, 114, 97, 121, 91, 48, 93, 32, 61, 61, 32, 65, 82, 82, 65, 89, 0, 97, 112, 112, 101, 110, 100, 84, 111, 65, 114, 114, 97, 121, 0, 112, 97, 114, 115, 101, 65, 102, 116, 101, 114, 67, 117, 114, 108, 121, 0, 107, 101, 121, 46, 116, 121, 112, 101, 32, 61, 61, 32, 73, 68, 69, 78, 84, 32, 124, 124, 32, 107, 101, 121, 46, 116, 121, 112, 101, 32, 61, 61, 32, 83, 84, 82, 73, 78, 71, 0, 44, 125, 0, 97, 114, 114, 97, 121, 91, 48, 93, 32, 61, 61, 32, 79, 66, 74, 69, 67, 84, 0, 97, 112, 112, 101, 110, 100, 84, 111, 79, 98, 106, 101, 99, 116, 0, 98, 108, 111, 99, 107, 91, 48, 93, 32, 61, 61, 32, 66, 76, 79, 67, 75, 0, 97, 112, 112, 101, 110, 100, 84, 111, 66, 108, 111, 99, 107, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 49, 54, 108, 111, 97, 100, 95, 115, 95, 101, 120, 112, 114, 50, 119, 97, 115, 109, 69, 51, 36, 95, 52, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 50, 95, 69, 69, 70, 118, 118, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 98, 97, 115, 101, 73, 70, 118, 118, 69, 69, 69, 0, 101, 114, 114, 111, 114, 32, 105, 110, 32, 112, 97, 114, 115, 105, 110, 103, 32, 115, 45, 101, 120, 112, 114, 101, 115, 115, 105, 111, 110, 115, 32, 116, 111, 32, 119, 97, 115, 109, 10, 0, 90, 49, 54, 108, 111, 97, 100, 95, 115, 95, 101, 120, 112, 114, 50, 119, 97, 115, 109, 69, 51, 36, 95, 52, 0, 112, 97, 115, 115, 73, 110, 102, 111, 115, 46, 102, 105, 110, 100, 40, 110, 97, 109, 101, 41, 32, 61, 61, 32, 112, 97, 115, 115, 73, 110, 102, 111, 115, 46, 101, 110, 100, 40, 41, 0, 115, 114, 99, 47, 112, 97, 115, 115, 46, 99, 112, 112, 0, 114, 101, 103, 105, 115, 116, 101, 114, 80, 97, 115, 115, 0, 112, 97, 115, 115, 0, 97, 100, 100, 0, 109, 101, 114, 103, 101, 45, 98, 108, 111, 99, 107, 115, 0, 109, 101, 114, 103, 101, 115, 32, 98, 108, 111, 99, 107, 115, 32, 116, 111, 32, 116, 104, 101, 105, 114, 32, 112, 97, 114, 101, 110, 116, 115, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 78, 52, 119, 97, 115, 109, 49, 50, 82, 101, 103, 105, 115, 116, 101, 114, 80, 97, 115, 115, 73, 78, 83, 50, 95, 49, 49, 77, 101, 114, 103, 101, 66, 108, 111, 99, 107, 115, 69, 69, 67, 49, 69, 80, 75, 99, 83, 55, 95, 69, 85, 108, 118, 69, 95, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 56, 95, 69, 69, 70, 80, 78, 83, 50, 95, 52, 80, 97, 115, 115, 69, 118, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 98, 97, 115, 101, 73, 70, 80, 78, 52, 119, 97, 115, 109, 52, 80, 97, 115, 115, 69, 118, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 77, 101, 114, 103, 101, 66, 108, 111, 99, 107, 115, 69, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 108, 107, 101, 114, 80, 97, 115, 115, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 49, 77, 101, 114, 103, 101, 66, 108, 111, 99, 107, 115, 69, 118, 69, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 52, 80, 97, 115, 115, 69, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 49, 77, 101, 114, 103, 101, 66, 108, 111, 99, 107, 115, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 66, 97, 115, 101, 73, 78, 83, 95, 49, 49, 77, 101, 114, 103, 101, 66, 108, 111, 99, 107, 115, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 78, 83, 95, 49, 49, 77, 101, 114, 103, 101, 66, 108, 111, 99, 107, 115, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 49, 77, 101, 114, 103, 101, 66, 108, 111, 99, 107, 115, 69, 118, 69, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 66, 97, 115, 101, 73, 78, 83, 95, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 49, 77, 101, 114, 103, 101, 66, 108, 111, 99, 107, 115, 69, 118, 69, 69, 69, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 78, 83, 95, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 49, 77, 101, 114, 103, 101, 66, 108, 111, 99, 107, 115, 69, 118, 69, 69, 69, 69, 118, 69, 69, 0, 90, 78, 52, 119, 97, 115, 109, 49, 50, 82, 101, 103, 105, 115, 116, 101, 114, 80, 97, 115, 115, 73, 78, 83, 95, 49, 49, 77, 101, 114, 103, 101, 66, 108, 111, 99, 107, 115, 69, 69, 67, 49, 69, 80, 75, 99, 83, 52, 95, 69, 85, 108, 118, 69, 95, 0, 114, 101, 109, 111, 118, 101, 45, 117, 110, 117, 115, 101, 100, 45, 98, 114, 115, 0, 114, 101, 109, 111, 118, 101, 115, 32, 98, 114, 101, 97, 107, 115, 32, 102, 114, 111, 109, 32, 108, 111, 99, 97, 116, 105, 111, 110, 115, 32, 116, 104, 97, 116, 32, 97, 114, 101, 32, 110, 101, 118, 101, 114, 32, 98, 114, 97, 110, 99, 104, 101, 100, 32, 116, 111, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 78, 52, 119, 97, 115, 109, 49, 50, 82, 101, 103, 105, 115, 116, 101, 114, 80, 97, 115, 115, 73, 78, 83, 50, 95, 49, 53, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 66, 114, 115, 69, 69, 67, 49, 69, 80, 75, 99, 83, 55, 95, 69, 85, 108, 118, 69, 95, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 56, 95, 69, 69, 70, 80, 78, 83, 50, 95, 52, 80, 97, 115, 115, 69, 118, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 53, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 66, 114, 115, 69, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 108, 107, 101, 114, 80, 97, 115, 115, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 53, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 66, 114, 115, 69, 118, 69, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 53, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 66, 114, 115, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 66, 97, 115, 101, 73, 78, 83, 95, 49, 53, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 66, 114, 115, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 78, 83, 95, 49, 53, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 66, 114, 115, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 53, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 66, 114, 115, 69, 118, 69, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 66, 97, 115, 101, 73, 78, 83, 95, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 53, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 66, 114, 115, 69, 118, 69, 69, 69, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 78, 83, 95, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 53, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 66, 114, 115, 69, 118, 69, 69, 69, 69, 118, 69, 69, 0, 95, 105, 100, 32, 61, 61, 32, 84, 40, 41, 46, 95, 105, 100, 0, 99, 97, 115, 116, 0, 90, 78, 52, 119, 97, 115, 109, 49, 50, 82, 101, 103, 105, 115, 116, 101, 114, 80, 97, 115, 115, 73, 78, 83, 95, 49, 53, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 66, 114, 115, 69, 69, 67, 49, 69, 80, 75, 99, 83, 52, 95, 69, 85, 108, 118, 69, 95, 0, 114, 101, 109, 111, 118, 101, 45, 117, 110, 117, 115, 101, 100, 45, 110, 97, 109, 101, 115, 0, 114, 101, 109, 111, 118, 101, 115, 32, 110, 97, 109, 101, 115, 32, 102, 114, 111, 109, 32, 108, 111, 99, 97, 116, 105, 111, 110, 115, 32, 116, 104, 97, 116, 32, 97, 114, 101, 32, 110, 101, 118, 101, 114, 32, 98, 114, 97, 110, 99, 104, 101, 100, 32, 116, 111, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 78, 52, 119, 97, 115, 109, 49, 50, 82, 101, 103, 105, 115, 116, 101, 114, 80, 97, 115, 115, 73, 78, 83, 50, 95, 49, 55, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 78, 97, 109, 101, 115, 69, 69, 67, 49, 69, 80, 75, 99, 83, 55, 95, 69, 85, 108, 118, 69, 95, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 56, 95, 69, 69, 70, 80, 78, 83, 50, 95, 52, 80, 97, 115, 115, 69, 118, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 55, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 78, 97, 109, 101, 115, 69, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 108, 107, 101, 114, 80, 97, 115, 115, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 55, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 78, 97, 109, 101, 115, 69, 118, 69, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 55, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 78, 97, 109, 101, 115, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 66, 97, 115, 101, 73, 78, 83, 95, 49, 55, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 78, 97, 109, 101, 115, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 78, 83, 95, 49, 55, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 78, 97, 109, 101, 115, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 55, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 78, 97, 109, 101, 115, 69, 118, 69, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 66, 97, 115, 101, 73, 78, 83, 95, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 55, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 78, 97, 109, 101, 115, 69, 118, 69, 69, 69, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 78, 83, 95, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 55, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 78, 97, 109, 101, 115, 69, 118, 69, 69, 69, 69, 118, 69, 69, 0, 90, 78, 52, 119, 97, 115, 109, 49, 50, 82, 101, 103, 105, 115, 116, 101, 114, 80, 97, 115, 115, 73, 78, 83, 95, 49, 55, 82, 101, 109, 111, 118, 101, 85, 110, 117, 115, 101, 100, 78, 97, 109, 101, 115, 69, 69, 67, 49, 69, 80, 75, 99, 83, 52, 95, 69, 85, 108, 118, 69, 95, 0, 112, 111, 115, 116, 45, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 0, 109, 105, 115, 99, 101, 108, 108, 97, 110, 101, 111, 117, 115, 32, 111, 112, 116, 105, 109, 105, 122, 97, 116, 105, 111, 110, 115, 32, 102, 111, 114, 32, 69, 109, 115, 99, 114, 105, 112, 116, 101, 110, 45, 103, 101, 110, 101, 114, 97, 116, 101, 100, 32, 99, 111, 100, 101, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 78, 52, 119, 97, 115, 109, 49, 50, 82, 101, 103, 105, 115, 116, 101, 114, 80, 97, 115, 115, 73, 78, 83, 50, 95, 49, 52, 80, 111, 115, 116, 69, 109, 115, 99, 114, 105, 112, 116, 101, 110, 69, 69, 67, 49, 69, 80, 75, 99, 83, 55, 95, 69, 85, 108, 118, 69, 95, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 56, 95, 69, 69, 70, 80, 78, 83, 50, 95, 52, 80, 97, 115, 115, 69, 118, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 80, 111, 115, 116, 69, 109, 115, 99, 114, 105, 112, 116, 101, 110, 69, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 108, 107, 101, 114, 80, 97, 115, 115, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 52, 80, 111, 115, 116, 69, 109, 115, 99, 114, 105, 112, 116, 101, 110, 69, 118, 69, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 52, 80, 111, 115, 116, 69, 109, 115, 99, 114, 105, 112, 116, 101, 110, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 66, 97, 115, 101, 73, 78, 83, 95, 49, 52, 80, 111, 115, 116, 69, 109, 115, 99, 114, 105, 112, 116, 101, 110, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 78, 83, 95, 49, 52, 80, 111, 115, 116, 69, 109, 115, 99, 114, 105, 112, 116, 101, 110, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 52, 80, 111, 115, 116, 69, 109, 115, 99, 114, 105, 112, 116, 101, 110, 69, 118, 69, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 66, 97, 115, 101, 73, 78, 83, 95, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 52, 80, 111, 115, 116, 69, 109, 115, 99, 114, 105, 112, 116, 101, 110, 69, 118, 69, 69, 69, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 78, 83, 95, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 52, 80, 111, 115, 116, 69, 109, 115, 99, 114, 105, 112, 116, 101, 110, 69, 118, 69, 69, 69, 69, 118, 69, 69, 0, 97, 100, 100, 45, 62, 116, 121, 112, 101, 32, 61, 61, 32, 105, 51, 50, 0, 115, 114, 99, 47, 112, 97, 115, 115, 101, 115, 47, 80, 111, 115, 116, 69, 109, 115, 99, 114, 105, 112, 116, 101, 110, 46, 99, 112, 112, 0, 118, 105, 115, 105, 116, 77, 101, 109, 111, 114, 121, 79, 112, 0, 90, 78, 52, 119, 97, 115, 109, 49, 50, 82, 101, 103, 105, 115, 116, 101, 114, 80, 97, 115, 115, 73, 78, 83, 95, 49, 52, 80, 111, 115, 116, 69, 109, 115, 99, 114, 105, 112, 116, 101, 110, 69, 69, 67, 49, 69, 80, 75, 99, 83, 52, 95, 69, 85, 108, 118, 69, 95, 0, 115, 105, 109, 112, 108, 105, 102, 121, 45, 108, 111, 99, 97, 108, 115, 0, 109, 105, 115, 99, 101, 108, 108, 97, 110, 101, 111, 117, 115, 32, 108, 111, 99, 97, 108, 115, 45, 114, 101, 108, 97, 116, 101, 100, 32, 111, 112, 116, 105, 109, 105, 122, 97, 116, 105, 111, 110, 115, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 78, 52, 119, 97, 115, 109, 49, 50, 82, 101, 103, 105, 115, 116, 101, 114, 80, 97, 115, 115, 73, 78, 83, 50, 95, 49, 52, 83, 105, 109, 112, 108, 105, 102, 121, 76, 111, 99, 97, 108, 115, 69, 69, 67, 49, 69, 80, 75, 99, 83, 55, 95, 69, 85, 108, 118, 69, 95, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 56, 95, 69, 69, 70, 80, 78, 83, 50, 95, 52, 80, 97, 115, 115, 69, 118, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 83, 105, 109, 112, 108, 105, 102, 121, 76, 111, 99, 97, 108, 115, 69, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 108, 107, 101, 114, 80, 97, 115, 115, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 52, 83, 105, 109, 112, 108, 105, 102, 121, 76, 111, 99, 97, 108, 115, 69, 118, 69, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 52, 83, 105, 109, 112, 108, 105, 102, 121, 76, 111, 99, 97, 108, 115, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 66, 97, 115, 101, 73, 78, 83, 95, 49, 52, 83, 105, 109, 112, 108, 105, 102, 121, 76, 111, 99, 97, 108, 115, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 78, 83, 95, 49, 52, 83, 105, 109, 112, 108, 105, 102, 121, 76, 111, 99, 97, 108, 115, 69, 118, 69, 69, 0, 33, 114, 101, 112, 108, 97, 99, 101, 0, 115, 114, 99, 47, 119, 97, 115, 109, 46, 104, 0, 115, 116, 97, 114, 116, 87, 97, 108, 107, 0, 78, 52, 119, 97, 115, 109, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 52, 83, 105, 109, 112, 108, 105, 102, 121, 76, 111, 99, 97, 108, 115, 69, 118, 69, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 52, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 66, 97, 115, 101, 73, 78, 83, 95, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 52, 83, 105, 109, 112, 108, 105, 102, 121, 76, 111, 99, 97, 108, 115, 69, 118, 69, 69, 69, 69, 118, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 87, 97, 115, 109, 86, 105, 115, 105, 116, 111, 114, 73, 78, 83, 95, 49, 49, 67, 104, 105, 108, 100, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 48, 87, 97, 115, 109, 87, 97, 108, 107, 101, 114, 73, 78, 83, 95, 49, 52, 83, 105, 109, 112, 108, 105, 102, 121, 76, 111, 99, 97, 108, 115, 69, 118, 69, 69, 69, 69, 118, 69, 69, 0, 99, 117, 114, 114, 0, 118, 105, 115, 105, 116, 0, 90, 78, 52, 119, 97, 115, 109, 49, 50, 82, 101, 103, 105, 115, 116, 101, 114, 80, 97, 115, 115, 73, 78, 83, 95, 49, 52, 83, 105, 109, 112, 108, 105, 102, 121, 76, 111, 99, 97, 108, 115, 69, 69, 67, 49, 69, 80, 75, 99, 83, 52, 95, 69, 85, 108, 118, 69, 95, 0, 43, 45, 42, 47, 37, 60, 62, 38, 94, 124, 126, 61, 33, 44, 63, 58, 46, 0, 40, 91, 59, 123, 125, 0, 116, 111, 112, 108, 101, 118, 101, 108, 0, 100, 101, 102, 117, 110, 0, 98, 108, 111, 99, 107, 0, 115, 116, 97, 116, 0, 97, 115, 115, 105, 103, 110, 0, 110, 97, 109, 101, 0, 118, 97, 114, 0, 99, 111, 110, 115, 116, 0, 99, 111, 110, 100, 105, 116, 105, 111, 110, 97, 108, 0, 98, 105, 110, 97, 114, 121, 0, 114, 101, 116, 117, 114, 110, 0, 105, 102, 0, 101, 108, 115, 101, 0, 119, 104, 105, 108, 101, 0, 100, 111, 0, 102, 111, 114, 0, 115, 101, 113, 0, 115, 117, 98, 0, 99, 97, 108, 108, 0, 110, 117, 109, 0, 108, 97, 98, 101, 108, 0, 98, 114, 101, 97, 107, 0, 99, 111, 110, 116, 105, 110, 117, 101, 0, 115, 119, 105, 116, 99, 104, 0, 115, 116, 114, 105, 110, 103, 0, 116, 101, 109, 112, 82, 101, 116, 48, 0, 117, 110, 97, 114, 121, 45, 112, 114, 101, 102, 105, 120, 0, 117, 110, 97, 114, 121, 45, 112, 111, 115, 116, 102, 105, 120, 0, 77, 97, 116, 104, 95, 102, 114, 111, 117, 110, 100, 0, 83, 73, 77, 68, 95, 70, 108, 111, 97, 116, 51, 50, 120, 52, 0, 83, 73, 77, 68, 95, 70, 108, 111, 97, 116, 54, 52, 120, 50, 0, 83, 73, 77, 68, 95, 73, 110, 116, 56, 120, 49, 54, 0, 83, 73, 77, 68, 95, 73, 110, 116, 49, 54, 120, 56, 0, 83, 73, 77, 68, 95, 73, 110, 116, 51, 50, 120, 52, 0, 62, 62, 62, 0, 116, 101, 109, 112, 68, 111, 117, 98, 108, 101, 80, 116, 114, 0, 72, 69, 65, 80, 56, 0, 72, 69, 65, 80, 49, 54, 0, 72, 69, 65, 80, 51, 50, 0, 72, 69, 65, 80, 70, 51, 50, 0, 72, 69, 65, 80, 85, 56, 0, 72, 69, 65, 80, 85, 49, 54, 0, 72, 69, 65, 80, 85, 51, 50, 0, 72, 69, 65, 80, 70, 54, 52, 0, 102, 48, 0, 102, 117, 110, 99, 116, 105, 111, 110, 0, 91, 0, 123, 0, 125, 0, 63, 0, 58, 0, 99, 97, 115, 101, 0, 100, 101, 102, 97, 117, 108, 116, 0, 100, 111, 116, 0, 110, 101, 119, 0, 97, 114, 114, 97, 121, 0, 111, 98, 106, 101, 99, 116, 0, 118, 97, 114, 32, 99, 111, 110, 115, 116, 32, 102, 117, 110, 99, 116, 105, 111, 110, 32, 105, 102, 32, 101, 108, 115, 101, 32, 100, 111, 32, 119, 104, 105, 108, 101, 32, 102, 111, 114, 32, 98, 114, 101, 97, 107, 32, 99, 111, 110, 116, 105, 110, 117, 101, 32, 114, 101, 116, 117, 114, 110, 32, 115, 119, 105, 116, 99, 104, 32, 99, 97, 115, 101, 32, 100, 101, 102, 97, 117, 108, 116, 32, 116, 104, 114, 111, 119, 32, 116, 114, 121, 32, 99, 97, 116, 99, 104, 32, 102, 105, 110, 97, 108, 108, 121, 32, 116, 114, 117, 101, 32, 102, 97, 108, 115, 101, 32, 110, 117, 108, 108, 32, 110, 101, 119, 0, 33, 32, 126, 32, 43, 32, 45, 0, 42, 32, 47, 32, 37, 0, 43, 32, 45, 0, 60, 60, 32, 62, 62, 32, 62, 62, 62, 0, 60, 32, 60, 61, 32, 62, 32, 62, 61, 0, 61, 61, 32, 33, 61, 0, 63, 32, 58, 0, 97, 115, 115, 105, 103, 110, 32, 99, 97, 108, 108, 32, 98, 105, 110, 97, 114, 121, 32, 117, 110, 97, 114, 121, 45, 112, 114, 101, 102, 105, 120, 32, 110, 97, 109, 101, 32, 110, 117, 109, 32, 99, 111, 110, 100, 105, 116, 105, 111, 110, 97, 108, 32, 100, 111, 116, 32, 110, 101, 119, 32, 115, 117, 98, 32, 115, 101, 113, 32, 115, 116, 114, 105, 110, 103, 32, 111, 98, 106, 101, 99, 116, 32, 97, 114, 114, 97, 121, 0, 105, 115, 65, 114, 114, 97, 121, 40, 41, 0, 115, 114, 99, 47, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 45, 111, 112, 116, 105, 109, 105, 122, 101, 114, 47, 115, 105, 109, 112, 108, 101, 95, 97, 115, 116, 46, 104, 0, 83, 73, 77, 68, 95, 73, 110, 116, 56, 120, 49, 54, 95, 99, 104, 101, 99, 107, 0, 83, 73, 77, 68, 95, 73, 110, 116, 49, 54, 120, 56, 95, 99, 104, 101, 99, 107, 0, 83, 73, 77, 68, 95, 73, 110, 116, 51, 50, 120, 52, 95, 99, 104, 101, 99, 107, 0, 83, 73, 77, 68, 95, 70, 108, 111, 97, 116, 51, 50, 120, 52, 95, 99, 104, 101, 99, 107, 0, 83, 73, 77, 68, 95, 70, 108, 111, 97, 116, 54, 52, 120, 50, 95, 99, 104, 101, 99, 107, 0, 110, 111, 100, 101, 91, 49, 93, 32, 61, 61, 32, 65, 83, 77, 95, 70, 76, 79, 65, 84, 95, 90, 69, 82, 79, 0, 115, 114, 99, 47, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 45, 111, 112, 116, 105, 109, 105, 122, 101, 114, 47, 111, 112, 116, 105, 109, 105, 122, 101, 114, 45, 115, 104, 97, 114, 101, 100, 46, 99, 112, 112, 0, 100, 101, 116, 101, 99, 116, 84, 121, 112, 101, 0, 110, 111, 100, 101, 91, 49, 93, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 105, 115, 85, 73, 110, 116, 101, 103, 101, 114, 51, 50, 40, 120, 41, 0, 115, 114, 99, 47, 115, 117, 112, 112, 111, 114, 116, 47, 115, 97, 102, 101, 95, 105, 110, 116, 101, 103, 101, 114, 46, 99, 112, 112, 0, 116, 111, 85, 73, 110, 116, 101, 103, 101, 114, 51, 50, 0, 105, 115, 83, 73, 110, 116, 101, 103, 101, 114, 51, 50, 40, 120, 41, 0, 116, 111, 83, 73, 110, 116, 101, 103, 101, 114, 51, 50, 0, 105, 115, 85, 73, 110, 116, 101, 103, 101, 114, 54, 52, 40, 120, 41, 0, 116, 111, 85, 73, 110, 116, 101, 103, 101, 114, 54, 52, 0, 0, 1, 28, 2, 29, 14, 24, 3, 30, 22, 20, 15, 25, 17, 4, 8, 31, 27, 13, 23, 21, 19, 16, 7, 26, 12, 18, 6, 11, 5, 10, 9, 31, 22, 30, 21, 18, 10, 29, 2, 20, 17, 15, 13, 9, 6, 28, 1, 23, 19, 11, 3, 16, 14, 7, 24, 12, 4, 8, 25, 5, 26, 27, 0, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 255, 255, 255, 255, 255, 255, 255, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 255, 255, 255, 255, 255, 255, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 0, 1, 2, 4, 7, 3, 6, 5, 0, 105, 110, 102, 105, 110, 105, 116, 121, 0, 17, 0, 10, 0, 17, 17, 17, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 15, 10, 17, 17, 17, 3, 10, 7, 0, 1, 19, 9, 11, 11, 0, 0, 9, 6, 11, 0, 0, 11, 0, 6, 17, 0, 0, 0, 17, 17, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 10, 10, 17, 17, 17, 0, 10, 0, 0, 2, 0, 9, 11, 0, 0, 0, 9, 0, 11, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 12, 0, 0, 0, 0, 9, 12, 0, 0, 0, 0, 0, 12, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 4, 13, 0, 0, 0, 0, 9, 14, 0, 0, 0, 0, 0, 14, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 15, 0, 0, 0, 0, 9, 16, 0, 0, 0, 0, 0, 16, 0, 0, 16, 0, 0, 18, 0, 0, 0, 18, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 18, 18, 18, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 10, 0, 0, 0, 0, 9, 11, 0, 0, 0, 0, 0, 11, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 12, 0, 0, 0, 0, 9, 12, 0, 0, 0, 0, 0, 12, 0, 0, 12, 0, 0, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 65, 66, 67, 68, 69, 70, 45, 43, 32, 32, 32, 48, 88, 48, 120, 0, 84, 33, 34, 25, 13, 1, 2, 3, 17, 75, 28, 12, 16, 4, 11, 29, 18, 30, 39, 104, 110, 111, 112, 113, 98, 32, 5, 6, 15, 19, 20, 21, 26, 8, 22, 7, 40, 36, 23, 24, 9, 10, 14, 27, 31, 37, 35, 131, 130, 125, 38, 42, 43, 60, 61, 62, 63, 67, 71, 74, 77, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 99, 100, 101, 102, 103, 105, 106, 107, 108, 114, 115, 116, 121, 122, 123, 124, 0, 73, 108, 108, 101, 103, 97, 108, 32, 98, 121, 116, 101, 32, 115, 101, 113, 117, 101, 110, 99, 101, 0, 68, 111, 109, 97, 105, 110, 32, 101, 114, 114, 111, 114, 0, 82, 101, 115, 117, 108, 116, 32, 110, 111, 116, 32, 114, 101, 112, 114, 101, 115, 101, 110, 116, 97, 98, 108, 101, 0, 78, 111, 116, 32, 97, 32, 116, 116, 121, 0, 80, 101, 114, 109, 105, 115, 115, 105, 111, 110, 32, 100, 101, 110, 105, 101, 100, 0, 79, 112, 101, 114, 97, 116, 105, 111, 110, 32, 110, 111, 116, 32, 112, 101, 114, 109, 105, 116, 116, 101, 100, 0, 78, 111, 32, 115, 117, 99, 104, 32, 102, 105, 108, 101, 32, 111, 114, 32, 100, 105, 114, 101, 99, 116, 111, 114, 121, 0, 78, 111, 32, 115, 117, 99, 104, 32, 112, 114, 111, 99, 101, 115, 115, 0, 70, 105, 108, 101, 32, 101, 120, 105, 115, 116, 115, 0, 86, 97, 108, 117, 101, 32, 116, 111, 111, 32, 108, 97, 114, 103, 101, 32, 102, 111, 114, 32, 100, 97, 116, 97, 32, 116, 121, 112, 101, 0, 78, 111, 32, 115, 112, 97, 99, 101, 32, 108, 101, 102, 116, 32, 111, 110, 32, 100, 101, 118, 105, 99, 101, 0, 79, 117, 116, 32, 111, 102, 32, 109, 101, 109, 111, 114, 121, 0, 82, 101, 115, 111, 117, 114, 99, 101, 32, 98, 117, 115, 121, 0, 73, 110, 116, 101, 114, 114, 117, 112, 116, 101, 100, 32, 115, 121, 115, 116, 101, 109, 32, 99, 97, 108, 108, 0, 82, 101, 115, 111, 117, 114, 99, 101, 32, 116, 101, 109, 112, 111, 114, 97, 114, 105, 108, 121, 32, 117, 110, 97, 118, 97, 105, 108, 97, 98, 108, 101, 0, 73, 110, 118, 97, 108, 105, 100, 32, 115, 101, 101, 107, 0, 67, 114, 111, 115, 115, 45, 100, 101, 118, 105, 99, 101, 32, 108, 105, 110, 107, 0, 82, 101, 97, 100, 45, 111, 110, 108, 121, 32, 102, 105, 108, 101, 32, 115, 121, 115, 116, 101, 109, 0, 68, 105, 114, 101, 99, 116, 111, 114, 121, 32, 110, 111, 116, 32, 101, 109, 112, 116, 121, 0, 67, 111, 110, 110, 101, 99, 116, 105, 111, 110, 32, 114, 101, 115, 101, 116, 32, 98, 121, 32, 112, 101, 101, 114, 0, 79, 112, 101, 114, 97, 116, 105, 111, 110, 32, 116, 105, 109, 101, 100, 32, 111, 117, 116, 0, 67, 111, 110, 110, 101, 99, 116, 105, 111, 110, 32, 114, 101, 102, 117, 115, 101, 100, 0, 72, 111, 115, 116, 32, 105, 115, 32, 100, 111, 119, 110, 0, 72, 111, 115, 116, 32, 105, 115, 32, 117, 110, 114, 101, 97, 99, 104, 97, 98, 108, 101, 0, 65, 100, 100, 114, 101, 115, 115, 32, 105, 110, 32, 117, 115, 101, 0, 66, 114, 111, 107, 101, 110, 32, 112, 105, 112, 101, 0, 73, 47, 79, 32, 101, 114, 114, 111, 114, 0, 78, 111, 32, 115, 117, 99, 104, 32, 100, 101, 118, 105, 99, 101, 32, 111, 114, 32, 97, 100, 100, 114, 101, 115, 115, 0, 66, 108, 111, 99, 107, 32, 100, 101, 118, 105, 99, 101, 32, 114, 101, 113, 117, 105, 114, 101, 100, 0, 78, 111, 32, 115, 117, 99, 104, 32, 100, 101, 118, 105, 99, 101, 0, 78, 111, 116, 32, 97, 32, 100, 105, 114, 101, 99, 116, 111, 114, 121, 0, 73, 115, 32, 97, 32, 100, 105, 114, 101, 99, 116, 111, 114, 121, 0, 84, 101, 120, 116, 32, 102, 105, 108, 101, 32, 98, 117, 115, 121, 0, 69, 120, 101, 99, 32, 102, 111, 114, 109, 97, 116, 32, 101, 114, 114, 111, 114, 0, 73, 110, 118, 97, 108, 105, 100, 32, 97, 114, 103, 117, 109, 101, 110, 116, 0, 65, 114, 103, 117, 109, 101, 110, 116, 32, 108, 105, 115, 116, 32, 116, 111, 111, 32, 108, 111, 110, 103, 0, 83, 121, 109, 98, 111, 108, 105, 99, 32, 108, 105, 110, 107, 32, 108, 111, 111, 112, 0, 70, 105, 108, 101, 110, 97, 109, 101, 32, 116, 111, 111, 32, 108, 111, 110, 103, 0, 84, 111, 111, 32, 109, 97, 110, 121, 32, 111, 112, 101, 110, 32, 102, 105, 108, 101, 115, 32, 105, 110, 32, 115, 121, 115, 116, 101, 109, 0, 78, 111, 32, 102, 105, 108, 101, 32, 100, 101, 115, 99, 114, 105, 112, 116, 111, 114, 115, 32, 97, 118, 97, 105, 108, 97, 98, 108, 101, 0, 66, 97, 100, 32, 102, 105, 108, 101, 32, 100, 101, 115, 99, 114, 105, 112, 116, 111, 114, 0, 78, 111, 32, 99, 104, 105, 108, 100, 32, 112, 114, 111, 99, 101, 115, 115, 0, 66, 97, 100, 32, 97, 100, 100, 114, 101, 115, 115, 0, 70, 105, 108, 101, 32, 116, 111, 111, 32, 108, 97, 114, 103, 101, 0, 84, 111, 111, 32, 109, 97, 110, 121, 32, 108, 105, 110, 107, 115, 0, 78, 111, 32, 108, 111, 99, 107, 115, 32, 97, 118, 97, 105, 108, 97 ], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE + 20480);
+allocate([ 98, 108, 101, 0, 82, 101, 115, 111, 117, 114, 99, 101, 32, 100, 101, 97, 100, 108, 111, 99, 107, 32, 119, 111, 117, 108, 100, 32, 111, 99, 99, 117, 114, 0, 83, 116, 97, 116, 101, 32, 110, 111, 116, 32, 114, 101, 99, 111, 118, 101, 114, 97, 98, 108, 101, 0, 80, 114, 101, 118, 105, 111, 117, 115, 32, 111, 119, 110, 101, 114, 32, 100, 105, 101, 100, 0, 79, 112, 101, 114, 97, 116, 105, 111, 110, 32, 99, 97, 110, 99, 101, 108, 101, 100, 0, 70, 117, 110, 99, 116, 105, 111, 110, 32, 110, 111, 116, 32, 105, 109, 112, 108, 101, 109, 101, 110, 116, 101, 100, 0, 78, 111, 32, 109, 101, 115, 115, 97, 103, 101, 32, 111, 102, 32, 100, 101, 115, 105, 114, 101, 100, 32, 116, 121, 112, 101, 0, 73, 100, 101, 110, 116, 105, 102, 105, 101, 114, 32, 114, 101, 109, 111, 118, 101, 100, 0, 68, 101, 118, 105, 99, 101, 32, 110, 111, 116, 32, 97, 32, 115, 116, 114, 101, 97, 109, 0, 78, 111, 32, 100, 97, 116, 97, 32, 97, 118, 97, 105, 108, 97, 98, 108, 101, 0, 68, 101, 118, 105, 99, 101, 32, 116, 105, 109, 101, 111, 117, 116, 0, 79, 117, 116, 32, 111, 102, 32, 115, 116, 114, 101, 97, 109, 115, 32, 114, 101, 115, 111, 117, 114, 99, 101, 115, 0, 76, 105, 110, 107, 32, 104, 97, 115, 32, 98, 101, 101, 110, 32, 115, 101, 118, 101, 114, 101, 100, 0, 80, 114, 111, 116, 111, 99, 111, 108, 32, 101, 114, 114, 111, 114, 0, 66, 97, 100, 32, 109, 101, 115, 115, 97, 103, 101, 0, 70, 105, 108, 101, 32, 100, 101, 115, 99, 114, 105, 112, 116, 111, 114, 32, 105, 110, 32, 98, 97, 100, 32, 115, 116, 97, 116, 101, 0, 78, 111, 116, 32, 97, 32, 115, 111, 99, 107, 101, 116, 0, 68, 101, 115, 116, 105, 110, 97, 116, 105, 111, 110, 32, 97, 100, 100, 114, 101, 115, 115, 32, 114, 101, 113, 117, 105, 114, 101, 100, 0, 77, 101, 115, 115, 97, 103, 101, 32, 116, 111, 111, 32, 108, 97, 114, 103, 101, 0, 80, 114, 111, 116, 111, 99, 111, 108, 32, 119, 114, 111, 110, 103, 32, 116, 121, 112, 101, 32, 102, 111, 114, 32, 115, 111, 99, 107, 101, 116, 0, 80, 114, 111, 116, 111, 99, 111, 108, 32, 110, 111, 116, 32, 97, 118, 97, 105, 108, 97, 98, 108, 101, 0, 80, 114, 111, 116, 111, 99, 111, 108, 32, 110, 111, 116, 32, 115, 117, 112, 112, 111, 114, 116, 101, 100, 0, 83, 111, 99, 107, 101, 116, 32, 116, 121, 112, 101, 32, 110, 111, 116, 32, 115, 117, 112, 112, 111, 114, 116, 101, 100, 0, 78, 111, 116, 32, 115, 117, 112, 112, 111, 114, 116, 101, 100, 0, 80, 114, 111, 116, 111, 99, 111, 108, 32, 102, 97, 109, 105, 108, 121, 32, 110, 111, 116, 32, 115, 117, 112, 112, 111, 114, 116, 101, 100, 0, 65, 100, 100, 114, 101, 115, 115, 32, 102, 97, 109, 105, 108, 121, 32, 110, 111, 116, 32, 115, 117, 112, 112, 111, 114, 116, 101, 100, 32, 98, 121, 32, 112, 114, 111, 116, 111, 99, 111, 108, 0, 65, 100, 100, 114, 101, 115, 115, 32, 110, 111, 116, 32, 97, 118, 97, 105, 108, 97, 98, 108, 101, 0, 78, 101, 116, 119, 111, 114, 107, 32, 105, 115, 32, 100, 111, 119, 110, 0, 78, 101, 116, 119, 111, 114, 107, 32, 117, 110, 114, 101, 97, 99, 104, 97, 98, 108, 101, 0, 67, 111, 110, 110, 101, 99, 116, 105, 111, 110, 32, 114, 101, 115, 101, 116, 32, 98, 121, 32, 110, 101, 116, 119, 111, 114, 107, 0, 67, 111, 110, 110, 101, 99, 116, 105, 111, 110, 32, 97, 98, 111, 114, 116, 101, 100, 0, 78, 111, 32, 98, 117, 102, 102, 101, 114, 32, 115, 112, 97, 99, 101, 32, 97, 118, 97, 105, 108, 97, 98, 108, 101, 0, 83, 111, 99, 107, 101, 116, 32, 105, 115, 32, 99, 111, 110, 110, 101, 99, 116, 101, 100, 0, 83, 111, 99, 107, 101, 116, 32, 110, 111, 116, 32, 99, 111, 110, 110, 101, 99, 116, 101, 100, 0, 67, 97, 110, 110, 111, 116, 32, 115, 101, 110, 100, 32, 97, 102, 116, 101, 114, 32, 115, 111, 99, 107, 101, 116, 32, 115, 104, 117, 116, 100, 111, 119, 110, 0, 79, 112, 101, 114, 97, 116, 105, 111, 110, 32, 97, 108, 114, 101, 97, 100, 121, 32, 105, 110, 32, 112, 114, 111, 103, 114, 101, 115, 115, 0, 79, 112, 101, 114, 97, 116, 105, 111, 110, 32, 105, 110, 32, 112, 114, 111, 103, 114, 101, 115, 115, 0, 83, 116, 97, 108, 101, 32, 102, 105, 108, 101, 32, 104, 97, 110, 100, 108, 101, 0, 82, 101, 109, 111, 116, 101, 32, 73, 47, 79, 32, 101, 114, 114, 111, 114, 0, 81, 117, 111, 116, 97, 32, 101, 120, 99, 101, 101, 100, 101, 100, 0, 78, 111, 32, 109, 101, 100, 105, 117, 109, 32, 102, 111, 117, 110, 100, 0, 87, 114, 111, 110, 103, 32, 109, 101, 100, 105, 117, 109, 32, 116, 121, 112, 101, 0, 78, 111, 32, 101, 114, 114, 111, 114, 32, 105, 110, 102, 111, 114, 109, 97, 116, 105, 111, 110, 0, 0, 40, 110, 117, 108, 108, 41, 0, 45, 48, 88, 43, 48, 88, 32, 48, 88, 45, 48, 120, 43, 48, 120, 32, 48, 120, 0, 105, 110, 102, 0, 73, 78, 70, 0, 110, 97, 110, 0, 78, 65, 78, 0, 80, 79, 83, 73, 88, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 115, 116, 100, 105, 110, 98, 117, 102, 73, 99, 69, 69, 0, 117, 110, 115, 117, 112, 112, 111, 114, 116, 101, 100, 32, 108, 111, 99, 97, 108, 101, 32, 102, 111, 114, 32, 115, 116, 97, 110, 100, 97, 114, 100, 32, 105, 110, 112, 117, 116, 0, 78, 83, 116, 51, 95, 95, 49, 49, 49, 95, 95, 115, 116, 100, 111, 117, 116, 98, 117, 102, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 115, 116, 100, 105, 110, 98, 117, 102, 73, 119, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 49, 95, 95, 115, 116, 100, 111, 117, 116, 98, 117, 102, 73, 119, 69, 69, 0, 33, 34, 98, 97, 115, 105, 99, 95, 115, 116, 114, 105, 110, 103, 32, 108, 101, 110, 103, 116, 104, 95, 101, 114, 114, 111, 114, 34, 0, 47, 109, 101, 100, 105, 97, 47, 97, 108, 111, 110, 47, 100, 54, 57, 100, 100, 57, 98, 50, 45, 52, 55, 57, 49, 45, 52, 98, 56, 101, 45, 97, 101, 98, 51, 45, 102, 54, 51, 53, 51, 98, 52, 53, 100, 55, 49, 48, 47, 104, 111, 109, 101, 47, 97, 108, 111, 110, 47, 68, 101, 118, 47, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 47, 115, 121, 115, 116, 101, 109, 47, 105, 110, 99, 108, 117, 100, 101, 47, 108, 105, 98, 99, 120, 120, 47, 115, 116, 114, 105, 110, 103, 0, 33, 34, 98, 97, 115, 105, 99, 95, 115, 116, 114, 105, 110, 103, 32, 111, 117, 116, 95, 111, 102, 95, 114, 97, 110, 103, 101, 34, 0, 37, 117, 0, 78, 83, 116, 51, 95, 95, 49, 57, 98, 97, 115, 105, 99, 95, 105, 111, 115, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 56, 105, 111, 115, 95, 98, 97, 115, 101, 69, 0, 78, 83, 116, 51, 95, 95, 49, 57, 98, 97, 115, 105, 99, 95, 105, 111, 115, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 53, 98, 97, 115, 105, 99, 95, 115, 116, 114, 101, 97, 109, 98, 117, 102, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 53, 98, 97, 115, 105, 99, 95, 115, 116, 114, 101, 97, 109, 98, 117, 102, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 51, 98, 97, 115, 105, 99, 95, 105, 115, 116, 114, 101, 97, 109, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 51, 98, 97, 115, 105, 99, 95, 105, 115, 116, 114, 101, 97, 109, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 51, 98, 97, 115, 105, 99, 95, 111, 115, 116, 114, 101, 97, 109, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 51, 98, 97, 115, 105, 99, 95, 111, 115, 116, 114, 101, 97, 109, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 52, 98, 97, 115, 105, 99, 95, 105, 111, 115, 116, 114, 101, 97, 109, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 55, 99, 111, 108, 108, 97, 116, 101, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 54, 108, 111, 99, 97, 108, 101, 53, 102, 97, 99, 101, 116, 69, 0, 78, 83, 116, 51, 95, 95, 49, 55, 99, 111, 108, 108, 97, 116, 101, 73, 119, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 55, 110, 117, 109, 95, 103, 101, 116, 73, 99, 78, 83, 95, 49, 57, 105, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 57, 95, 95, 110, 117, 109, 95, 103, 101, 116, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 52, 95, 95, 110, 117, 109, 95, 103, 101, 116, 95, 98, 97, 115, 101, 69, 0, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 97, 98, 99, 100, 101, 102, 65, 66, 67, 68, 69, 70, 120, 88, 43, 45, 112, 80, 105, 73, 110, 78, 0, 67, 0, 37, 112, 0, 78, 83, 116, 51, 95, 95, 49, 55, 110, 117, 109, 95, 103, 101, 116, 73, 119, 78, 83, 95, 49, 57, 105, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 57, 95, 95, 110, 117, 109, 95, 103, 101, 116, 73, 119, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 55, 110, 117, 109, 95, 112, 117, 116, 73, 99, 78, 83, 95, 49, 57, 111, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 57, 95, 95, 110, 117, 109, 95, 112, 117, 116, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 52, 95, 95, 110, 117, 109, 95, 112, 117, 116, 95, 98, 97, 115, 101, 69, 0, 37, 0, 0, 0, 0, 0, 76, 0, 37, 112, 0, 0, 0, 0, 78, 83, 116, 51, 95, 95, 49, 55, 110, 117, 109, 95, 112, 117, 116, 73, 119, 78, 83, 95, 49, 57, 111, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 57, 95, 95, 110, 117, 109, 95, 112, 117, 116, 73, 119, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 56, 116, 105, 109, 101, 95, 103, 101, 116, 73, 99, 78, 83, 95, 49, 57, 105, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 57, 116, 105, 109, 101, 95, 98, 97, 115, 101, 69, 0, 78, 83, 116, 51, 95, 95, 49, 50, 48, 95, 95, 116, 105, 109, 101, 95, 103, 101, 116, 95, 99, 95, 115, 116, 111, 114, 97, 103, 101, 73, 99, 69, 69, 0, 37, 72, 58, 37, 77, 58, 37, 83, 37, 109, 47, 37, 100, 47, 37, 121, 37, 89, 45, 37, 109, 45, 37, 100, 37, 73, 58, 37, 77, 58, 37, 83, 32, 37, 112, 37, 72, 58, 37, 77, 37, 72, 58, 37, 77, 58, 37, 83, 83, 117, 110, 100, 97, 121, 0, 77, 111, 110, 100, 97, 121, 0, 84, 117, 101, 115, 100, 97, 121, 0, 87, 101, 100, 110, 101, 115, 100, 97, 121, 0, 84, 104, 117, 114, 115, 100, 97, 121, 0, 70, 114, 105, 100, 97, 121, 0, 83, 97, 116, 117, 114, 100, 97, 121, 0, 83, 117, 110, 0, 77, 111, 110, 0, 84, 117, 101, 0, 87, 101, 100, 0, 84, 104, 117, 0, 70, 114, 105, 0, 83, 97, 116, 0, 74, 97, 110, 117, 97, 114, 121, 0, 70, 101, 98, 114, 117, 97, 114, 121, 0, 77, 97, 114, 99, 104, 0, 65, 112, 114, 105, 108, 0, 77, 97, 121, 0, 74, 117, 110, 101, 0, 74, 117, 108, 121, 0, 65, 117, 103, 117, 115, 116, 0, 83, 101, 112, 116, 101, 109, 98, 101, 114, 0, 79, 99, 116, 111, 98, 101, 114, 0, 78, 111, 118, 101, 109, 98, 101, 114, 0, 68, 101, 99, 101, 109, 98, 101, 114, 0, 74, 97, 110, 0, 70, 101, 98, 0, 77, 97, 114, 0, 65, 112, 114, 0, 74, 117, 110, 0, 74, 117, 108, 0, 65, 117, 103, 0, 83, 101, 112, 0, 79, 99, 116, 0, 78, 111, 118, 0, 68, 101, 99, 0, 65, 77, 0, 80, 77, 0, 37, 97, 32, 37, 98, 32, 37, 100, 32, 37, 72, 58, 37, 77, 58, 37, 83, 32, 37, 89, 0, 37, 73, 58, 37, 77, 58, 37, 83, 32, 37, 112, 0, 37, 109, 47, 37, 100, 47, 37, 121, 0, 37, 72, 58, 37, 77, 58, 37, 83, 0, 78, 83, 116, 51, 95, 95, 49, 56, 116, 105, 109, 101, 95, 103, 101, 116, 73, 119, 78, 83, 95, 49, 57, 105, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 50, 48, 95, 95, 116, 105, 109, 101, 95, 103, 101, 116, 95, 99, 95, 115, 116, 111, 114, 97, 103, 101, 73, 119, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 56, 116, 105, 109, 101, 95, 112, 117, 116, 73, 99, 78, 83, 95, 49, 57, 111, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 95, 95, 116, 105, 109, 101, 95, 112, 117, 116, 69, 0, 78, 83, 116, 51, 95, 95, 49, 56, 116, 105, 109, 101, 95, 112, 117, 116, 73, 119, 78, 83, 95, 49, 57, 111, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 109, 111, 110, 101, 121, 112, 117, 110, 99, 116, 73, 99, 76, 98, 48, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 109, 111, 110, 101, 121, 95, 98, 97, 115, 101, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 109, 111, 110, 101, 121, 112, 117, 110, 99, 116, 73, 99, 76, 98, 49, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 109, 111, 110, 101, 121, 112, 117, 110, 99, 116, 73, 119, 76, 98, 48, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 109, 111, 110, 101, 121, 112, 117, 110, 99, 116, 73, 119, 76, 98, 49, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 57, 109, 111, 110, 101, 121, 95, 103, 101, 116, 73, 99, 78, 83, 95, 49, 57, 105, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 49, 95, 95, 109, 111, 110, 101, 121, 95, 103, 101, 116, 73, 99, 69, 69, 0, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 0, 37, 76, 102, 0, 78, 83, 116, 51, 95, 95, 49, 57, 109, 111, 110, 101, 121, 95, 103, 101, 116, 73, 119, 78, 83, 95, 49, 57, 105, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 49, 95, 95, 109, 111, 110, 101, 121, 95, 103, 101, 116, 73, 119, 69, 69, 0, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 0, 78, 83, 116, 51, 95, 95, 49, 57, 109, 111, 110, 101, 121, 95, 112, 117, 116, 73, 99, 78, 83, 95, 49, 57, 111, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 49, 95, 95, 109, 111, 110, 101, 121, 95, 112, 117, 116, 73, 99, 69, 69, 0, 37, 46, 48, 76, 102, 0, 78, 83, 116, 51, 95, 95, 49, 57, 109, 111, 110, 101, 121, 95, 112, 117, 116, 73, 119, 78, 83, 95, 49, 57, 111, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 49, 95, 95, 109, 111, 110, 101, 121, 95, 112, 117, 116, 73, 119, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 56, 109, 101, 115, 115, 97, 103, 101, 115, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 51, 109, 101, 115, 115, 97, 103, 101, 115, 95, 98, 97, 115, 101, 69, 0, 78, 83, 116, 51, 95, 95, 49, 56, 109, 101, 115, 115, 97, 103, 101, 115, 73, 119, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 54, 95, 95, 110, 97, 114, 114, 111, 119, 95, 116, 111, 95, 117, 116, 102, 56, 73, 76, 106, 51, 50, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 55, 99, 111, 100, 101, 99, 118, 116, 73, 68, 105, 99, 49, 49, 95, 95, 109, 98, 115, 116, 97, 116, 101, 95, 116, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 50, 99, 111, 100, 101, 99, 118, 116, 95, 98, 97, 115, 101, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 55, 95, 95, 119, 105, 100, 101, 110, 95, 102, 114, 111, 109, 95, 117, 116, 102, 56, 73, 76, 106, 51, 50, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 55, 99, 111, 100, 101, 99, 118, 116, 73, 99, 99, 49, 49, 95, 95, 109, 98, 115, 116, 97, 116, 101, 95, 116, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 55, 99, 111, 100, 101, 99, 118, 116, 73, 119, 99, 49, 49, 95, 95, 109, 98, 115, 116, 97, 116, 101, 95, 116, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 55, 99, 111, 100, 101, 99, 118, 116, 73, 68, 115, 99, 49, 49, 95, 95, 109, 98, 115, 116, 97, 116, 101, 95, 116, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 54, 108, 111, 99, 97, 108, 101, 53, 95, 95, 105, 109, 112, 69, 0, 78, 83, 116, 51, 95, 95, 49, 53, 99, 116, 121, 112, 101, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 49, 48, 99, 116, 121, 112, 101, 95, 98, 97, 115, 101, 69, 0, 78, 83, 116, 51, 95, 95, 49, 53, 99, 116, 121, 112, 101, 73, 119, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 56, 110, 117, 109, 112, 117, 110, 99, 116, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 49, 56, 110, 117, 109, 112, 117, 110, 99, 116, 73, 119, 69, 69, 0, 33, 34, 118, 101, 99, 116, 111, 114, 32, 108, 101, 110, 103, 116, 104, 95, 101, 114, 114, 111, 114, 34, 0, 47, 109, 101, 100, 105, 97, 47, 97, 108, 111, 110, 47, 100, 54, 57, 100, 100, 57, 98, 50, 45, 52, 55, 57, 49, 45, 52, 98, 56, 101, 45, 97, 101, 98, 51, 45, 102, 54, 51, 53, 51, 98, 52, 53, 100, 55, 49, 48, 47, 104, 111, 109, 101, 47, 97, 108, 111, 110, 47, 68, 101, 118, 47, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 47, 115, 121, 115, 116, 101, 109, 47, 105, 110, 99, 108, 117, 100, 101, 47, 108, 105, 98, 99, 120, 120, 47, 118, 101, 99, 116, 111, 114, 0, 95, 95, 116, 104, 114, 111, 119, 95, 108, 101, 110, 103, 116, 104, 95, 101, 114, 114, 111, 114, 0, 33, 34, 118, 101, 99, 116, 111, 114, 32, 111, 117, 116, 95, 111, 102, 95, 114, 97, 110, 103, 101, 34, 0, 95, 95, 116, 104, 114, 111, 119, 95, 111, 117, 116, 95, 111, 102, 95, 114, 97, 110, 103, 101, 0, 78, 83, 116, 51, 95, 95, 49, 49, 52, 95, 95, 115, 104, 97, 114, 101, 100, 95, 99, 111, 117, 110, 116, 69, 0, 99, 97, 110, 110, 111, 116, 32, 122, 101, 114, 111, 32, 111, 117, 116, 32, 116, 104, 114, 101, 97, 100, 32, 118, 97, 108, 117, 101, 32, 102, 111, 114, 32, 95, 95, 99, 120, 97, 95, 103, 101, 116, 95, 103, 108, 111, 98, 97, 108, 115, 40, 41, 0, 99, 97, 110, 110, 111, 116, 32, 99, 114, 101, 97, 116, 101, 32, 112, 116, 104, 114, 101, 97, 100, 32, 107, 101, 121, 32, 102, 111, 114, 32, 95, 95, 99, 120, 97, 95, 103, 101, 116, 95, 103, 108, 111, 98, 97, 108, 115, 40, 41, 0, 112, 116, 104, 114, 101, 97, 100, 95, 111, 110, 99, 101, 32, 102, 97, 105, 108, 117, 114, 101, 32, 105, 110, 32, 95, 95, 99, 120, 97, 95, 103, 101, 116, 95, 103, 108, 111, 98, 97, 108, 115, 95, 102, 97, 115, 116, 40, 41, 0, 78, 49, 48, 95, 95, 99, 120, 120, 97, 98, 105, 118, 49, 50, 48, 95, 95, 115, 105, 95, 99, 108, 97, 115, 115, 95, 116, 121, 112, 101, 95, 105, 110, 102, 111, 69, 0, 78, 49, 48, 95, 95, 99, 120, 120, 97, 98, 105, 118, 49, 49, 54, 95, 95, 115, 104, 105, 109, 95, 116, 121, 112, 101, 95, 105, 110, 102, 111, 69, 0, 83, 116, 57, 116, 121, 112, 101, 95, 105, 110, 102, 111, 0, 78, 49, 48, 95, 95, 99, 120, 120, 97, 98, 105, 118, 49, 49, 55, 95, 95, 99, 108, 97, 115, 115, 95, 116, 121, 112, 101, 95, 105, 110, 102, 111, 69, 0, 83, 116, 57, 101, 120, 99, 101, 112, 116, 105, 111, 110, 0, 117, 110, 99, 97, 117, 103, 104, 116, 0, 116, 101, 114, 109, 105, 110, 97, 116, 105, 110, 103, 32, 119, 105, 116, 104, 32, 37, 115, 32, 101, 120, 99, 101, 112, 116, 105, 111, 110, 32, 111, 102, 32, 116, 121, 112, 101, 32, 37, 115, 58, 32, 37, 115, 0, 116, 101, 114, 109, 105, 110, 97, 116, 105, 110, 103, 32, 119, 105, 116, 104, 32, 37, 115, 32, 101, 120, 99, 101, 112, 116, 105, 111, 110, 32, 111, 102, 32, 116, 121, 112, 101, 32, 37, 115, 0, 116, 101, 114, 109, 105, 110, 97, 116, 105, 110, 103, 32, 119, 105, 116, 104, 32, 37, 115, 32, 102, 111, 114, 101, 105, 103, 110, 32, 101, 120, 99, 101, 112, 116, 105, 111, 110, 0, 116, 101, 114, 109, 105, 110, 97, 116, 105, 110, 103, 0, 116, 101, 114, 109, 105, 110, 97, 116, 101, 95, 104, 97, 110, 100, 108, 101, 114, 32, 117, 110, 101, 120, 112, 101, 99, 116, 101, 100, 108, 121, 32, 114, 101, 116, 117, 114, 110, 101, 100, 0, 83, 116, 57, 98, 97, 100, 95, 97, 108, 108, 111, 99, 0, 115, 116, 100, 58, 58, 98, 97, 100, 95, 97, 108, 108, 111, 99, 0, 115, 116, 100, 58, 58, 101, 120, 99, 101, 112, 116, 105, 111, 110, 0, 78, 49, 48, 95, 95, 99, 120, 120, 97, 98, 105, 118, 49, 49, 57, 95, 95, 112, 111, 105, 110, 116, 101, 114, 95, 116, 121, 112, 101, 95, 105, 110, 102, 111, 69, 0, 78, 49, 48, 95, 95, 99, 120, 120, 97, 98, 105, 118, 49, 49, 55, 95, 95, 112, 98, 97, 115, 101, 95, 116, 121, 112, 101, 95, 105, 110, 102, 111, 69, 0, 78, 49, 48, 95, 95, 99, 120, 120, 97, 98, 105, 118, 49, 50, 49, 95, 95, 118, 109, 105, 95, 99, 108, 97, 115, 115, 95, 116, 121, 112, 101, 95, 105, 110, 102, 111, 69, 0, 32, 99, 111, 110, 115, 116, 0, 32, 118, 111, 108, 97, 116, 105, 108, 101, 0, 32, 114, 101, 115, 116, 114, 105, 99, 116, 0, 118, 111, 105, 100, 0, 119, 99, 104, 97, 114, 95, 116, 0, 98, 111, 111, 108, 0, 99, 104, 97, 114, 0, 115, 105, 103, 110, 101, 100, 32, 99, 104, 97, 114, 0, 117, 110, 115, 105, 103, 110, 101, 100, 32, 99, 104, 97, 114, 0, 115, 104, 111, 114, 116, 0, 117, 110, 115, 105, 103, 110, 101, 100, 32, 115, 104, 111, 114, 116, 0, 105, 110, 116, 0, 117, 110, 115, 105, 103, 110, 101, 100, 32, 105, 110, 116, 0, 108, 111, 110, 103, 0, 117, 110, 115, 105, 103, 110, 101, 100, 32, 108, 111, 110, 103, 0, 108, 111, 110, 103, 32, 108, 111, 110, 103, 0, 117, 110, 115, 105, 103, 110, 101, 100, 32, 108, 111, 110, 103, 32, 108, 111, 110, 103, 0, 95, 95, 105, 110, 116, 49, 50, 56, 0, 117, 110, 115, 105, 103, 110, 101, 100, 32, 95, 95, 105, 110, 116, 49, 50, 56, 0, 102, 108, 111, 97, 116, 0, 100, 111, 117, 98, 108, 101, 0, 108, 111, 110, 103, 32, 100, 111, 117, 98, 108, 101, 0, 95, 95, 102, 108, 111, 97, 116, 49, 50, 56, 0, 46, 46, 46, 0, 95, 71, 76, 79, 66, 65, 76, 95, 95, 78, 0, 40, 97, 110, 111, 110, 121, 109, 111, 117, 115, 32, 110, 97, 109, 101, 115, 112, 97, 99, 101, 41, 0, 100, 101, 99, 105, 109, 97, 108, 54, 52, 0, 100, 101, 99, 105, 109, 97, 108, 49, 50, 56, 0, 100, 101, 99, 105, 109, 97, 108, 51, 50, 0, 100, 101, 99, 105, 109, 97, 108, 49, 54, 0, 99, 104, 97, 114, 51, 50, 95, 116, 0, 99, 104, 97, 114, 49, 54, 95, 116, 0, 97, 117, 116, 111, 0, 115, 116, 100, 58, 58, 110, 117, 108, 108, 112, 116, 114, 95, 116, 0, 32, 91, 0, 32, 91, 93, 0, 93, 0, 40, 0, 41, 0, 102, 97, 108, 115, 101, 0, 116, 114, 117, 101, 0, 117, 0, 108, 0, 117, 108, 0, 108, 108, 0, 117, 108, 108, 0, 37, 97, 102, 0, 37, 97, 0, 37, 76, 97, 76, 0, 102, 112, 0, 38, 38, 0, 62, 0, 41, 32, 0, 32, 40, 0, 38, 0, 38, 61, 0, 61, 0, 97, 108, 105, 103, 110, 111, 102, 32, 40, 0, 99, 111, 110, 115, 116, 95, 99, 97, 115, 116, 60, 0, 62, 40, 0, 44, 0, 126, 0, 41, 40, 0, 58, 58, 0, 100, 101, 108, 101, 116, 101, 91, 93, 32, 0, 100, 121, 110, 97, 109, 105, 99, 95, 99, 97, 115, 116, 60, 0, 42, 0, 100, 101, 108, 101, 116, 101, 32, 0, 111, 112, 101, 114, 97, 116, 111, 114, 38, 38, 0, 111, 112, 101, 114, 97, 116, 111, 114, 38, 0, 111, 112, 101, 114, 97, 116, 111, 114, 38, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 40, 41, 0, 111, 112, 101, 114, 97, 116, 111, 114, 44, 0, 111, 112, 101, 114, 97, 116, 111, 114, 126, 0, 111, 112, 101, 114, 97, 116, 111, 114, 32, 0, 111, 112, 101, 114, 97, 116, 111, 114, 32, 100, 101, 108, 101, 116, 101, 91, 93, 0, 111, 112, 101, 114, 97, 116, 111, 114, 42, 0, 111, 112, 101, 114, 97, 116, 111, 114, 32, 100, 101, 108, 101, 116, 101, 0, 111, 112, 101, 114, 97, 116, 111, 114, 47, 0, 111, 112, 101, 114, 97, 116, 111, 114, 47, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 94, 0, 111, 112, 101, 114, 97, 116, 111, 114, 94, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 61, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 62, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 62, 0, 111, 112, 101, 114, 97, 116, 111, 114, 91, 93, 0, 111, 112, 101, 114, 97, 116, 111, 114, 60, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 34, 34, 32, 0, 111, 112, 101, 114, 97, 116, 111, 114, 60, 60, 0, 111, 112, 101, 114, 97, 116, 111, 114, 60, 60, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 60, 0, 111, 112, 101, 114, 97, 116, 111, 114, 45, 0, 111, 112, 101, 114, 97, 116, 111, 114, 45, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 42, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 45, 45, 0, 111, 112, 101, 114, 97, 116, 111, 114, 32, 110, 101, 119, 91, 93, 0, 111, 112, 101, 114, 97, 116, 111, 114, 33, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 33, 0, 111, 112, 101, 114, 97, 116, 111, 114, 32, 110, 101, 119, 0, 111, 112, 101, 114, 97, 116, 111, 114, 124, 124, 0, 111, 112, 101, 114, 97, 116, 111, 114, 124, 0, 111, 112, 101, 114, 97, 116, 111, 114, 124, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 45, 62, 42, 0, 111, 112, 101, 114, 97, 116, 111, 114, 43, 0, 111, 112, 101, 114, 97, 116, 111, 114, 43, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 43, 43, 0, 111, 112, 101, 114, 97, 116, 111, 114, 45, 62, 0, 111, 112, 101, 114, 97, 116, 111, 114, 63, 0, 111, 112, 101, 114, 97, 116, 111, 114, 37, 0, 111, 112, 101, 114, 97, 116, 111, 114, 37, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 62, 62, 0, 111, 112, 101, 114, 97, 116, 111, 114, 62, 62, 61, 0, 60, 0, 44, 32, 0, 32, 62, 0, 100, 101, 99, 108, 116, 121, 112, 101, 40, 0, 115, 116, 100, 58, 58, 97, 108, 108, 111, 99, 97, 116, 111, 114, 0, 115, 116, 100, 58, 58, 98, 97, 115, 105, 99, 95, 115, 116, 114, 105, 110, 103, 0, 115, 116, 100, 58, 58, 115, 116, 114, 105, 110, 103, 0, 115, 116, 100, 58, 58, 105, 115, 116, 114, 101, 97, 109, 0, 115, 116, 100, 58, 58, 111, 115, 116, 114, 101, 97, 109, 0, 115, 116, 100, 58, 58, 105, 111, 115, 116, 114, 101, 97, 109, 0, 115, 116, 100, 58, 58, 98, 97, 115, 105, 99, 95, 115, 116, 114, 105, 110, 103, 60, 99, 104, 97, 114, 44, 32, 115, 116, 100, 58, 58, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 60, 99, 104, 97, 114, 62, 44, 32, 115, 116, 100, 58, 58, 97, 108, 108, 111, 99, 97, 116, 111, 114, 60, 99, 104, 97, 114, 62, 32, 62, 0, 98, 97, 115, 105, 99, 95, 115, 116, 114, 105, 110, 103, 0, 115, 116, 100, 58, 58, 98, 97, 115, 105, 99, 95, 105, 115, 116, 114, 101, 97, 109, 60, 99, 104, 97, 114, 44, 32, 115, 116, 100, 58, 58, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 60, 99, 104, 97, 114, 62, 32, 62, 0, 98, 97, 115, 105, 99, 95, 105, 115, 116, 114, 101, 97, 109, 0, 115, 116, 100, 58, 58, 98, 97, 115, 105, 99, 95, 111, 115, 116, 114, 101, 97, 109, 60, 99, 104, 97, 114, 44, 32, 115, 116, 100, 58, 58, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 60, 99, 104, 97, 114, 62, 32, 62, 0, 98, 97, 115, 105, 99, 95, 111, 115, 116, 114, 101, 97, 109, 0, 115, 116, 100, 58, 58, 98, 97, 115, 105, 99, 95, 105, 111, 115, 116, 114, 101, 97, 109, 60, 99, 104, 97, 114, 44, 32, 115, 116, 100, 58, 58, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 60, 99, 104, 97, 114, 62, 32, 62, 0, 98, 97, 115, 105, 99, 95, 105, 111, 115, 116, 114, 101, 97, 109, 0, 39, 117, 110, 110, 97, 109, 101, 100, 0, 39, 108, 97, 109, 98, 100, 97, 39, 40, 0, 115, 116, 100, 58, 58, 0, 46, 42, 0, 46, 0, 47, 0, 47, 61, 0, 94, 0, 94, 61, 0, 61, 61, 0, 62, 61, 0, 41, 91, 0, 60, 61, 0, 60, 60, 0, 60, 60, 61, 0, 45, 0, 45, 61, 0, 42, 61, 0, 45, 45, 0, 41, 45, 45, 0, 91, 93, 32, 0, 32, 0, 33, 61, 0, 33, 0, 110, 111, 101, 120, 99, 101, 112, 116, 32, 40, 0, 124, 124, 0, 124, 0, 124, 61, 0, 45, 62, 42, 0, 43, 0, 43, 61, 0, 43, 43, 0, 41, 43, 43, 0, 45, 62, 0, 41, 32, 63, 32, 40, 0, 41, 32, 58, 32, 40, 0, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 95, 99, 97, 115, 116, 60, 0, 37, 0, 37, 61, 0, 62, 62, 0, 62, 62, 61, 0, 115, 116, 97, 116, 105, 99, 95, 99, 97, 115, 116, 60, 0, 115, 105, 122, 101, 111, 102, 32, 40, 0, 115, 105, 122, 101, 111, 102, 46, 46, 46, 40, 0, 116, 121, 112, 101, 105, 100, 40, 0, 116, 104, 114, 111, 119, 0, 116, 104, 114, 111, 119, 32, 0, 32, 99, 111, 109, 112, 108, 101, 120, 0, 32, 38, 0, 32, 38, 38, 0, 32, 105, 109, 97, 103, 105, 110, 97, 114, 121, 0, 58, 58, 42, 0, 111, 98, 106, 99, 95, 111, 98, 106, 101, 99, 116, 60, 0, 105, 100, 0, 111, 98, 106, 99, 112, 114, 111, 116, 111, 0, 115, 116, 100, 0, 58, 58, 115, 116, 114, 105, 110, 103, 32, 108, 105, 116, 101, 114, 97, 108, 0, 32, 118, 101, 99, 116, 111, 114, 91, 0, 112, 105, 120, 101, 108, 32, 118, 101, 99, 116, 111, 114, 91, 0, 118, 116, 97, 98, 108, 101, 32, 102, 111, 114, 32, 0, 86, 84, 84, 32, 102, 111, 114, 32, 0, 116, 121, 112, 101, 105, 110, 102, 111, 32, 102, 111, 114, 32, 0, 116, 121, 112, 101, 105, 110, 102, 111, 32, 110, 97, 109, 101, 32, 102, 111, 114, 32, 0, 99, 111, 118, 97, 114, 105, 97, 110, 116, 32, 114, 101, 116, 117, 114, 110, 32, 116, 104, 117, 110, 107, 32, 116, 111, 32, 0, 99, 111, 110, 115, 116, 114, 117, 99, 116, 105, 111, 110, 32, 118, 116, 97, 98, 108, 101, 32, 102, 111, 114, 32, 0, 45, 105, 110, 45, 0, 118, 105, 114, 116, 117, 97, 108, 32, 116, 104, 117, 110, 107, 32, 116, 111, 32, 0, 110, 111, 110, 45, 118, 105, 114, 116, 117, 97, 108, 32, 116, 104, 117, 110, 107, 32, 116, 111, 32, 0, 103, 117, 97, 114, 100, 32, 118, 97, 114, 105, 97, 98, 108, 101, 32, 102, 111, 114, 32, 0, 114, 101, 102, 101, 114, 101, 110, 99, 101, 32, 116, 101, 109, 112, 111, 114, 97, 114, 121, 32, 102, 111, 114, 32, 0, 95, 98, 108, 111, 99, 107, 95, 105, 110, 118, 111, 107, 101, 0, 105, 110, 118, 111, 99, 97, 116, 105, 111, 110, 32, 102, 117, 110, 99, 116, 105, 111, 110, 32, 102, 111, 114, 32, 98, 108, 111, 99, 107, 32, 105, 110, 32, 0 ], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE + 30720);
var tempDoublePtr = Runtime.alignMemory(allocate(12, "i8", ALLOC_STATIC), 8);
assert(tempDoublePtr % 8 == 0);
-function copyTempFloat(ptr) {
- HEAP8[tempDoublePtr] = HEAP8[ptr];
- HEAP8[tempDoublePtr + 1] = HEAP8[ptr + 1];
- HEAP8[tempDoublePtr + 2] = HEAP8[ptr + 2];
- HEAP8[tempDoublePtr + 3] = HEAP8[ptr + 3];
-}
-function copyTempDouble(ptr) {
- HEAP8[tempDoublePtr] = HEAP8[ptr];
- HEAP8[tempDoublePtr + 1] = HEAP8[ptr + 1];
- HEAP8[tempDoublePtr + 2] = HEAP8[ptr + 2];
- HEAP8[tempDoublePtr + 3] = HEAP8[ptr + 3];
- HEAP8[tempDoublePtr + 4] = HEAP8[ptr + 4];
- HEAP8[tempDoublePtr + 5] = HEAP8[ptr + 5];
- HEAP8[tempDoublePtr + 6] = HEAP8[ptr + 6];
- HEAP8[tempDoublePtr + 7] = HEAP8[ptr + 7];
-}
function _atexit(func, arg) {
__ATEXIT__.unshift({
func: func,
@@ -1569,10 +1314,11 @@ function _atexit(func, arg) {
function ___cxa_atexit() {
return _atexit.apply(null, arguments);
}
-Module["_i64Add"] = _i64Add;
Module["_i64Subtract"] = _i64Subtract;
-var _fabsf = Math_abs;
-var _floorf = Math_floor;
+function ___assert_fail(condition, filename, line, func) {
+ ABORT = true;
+ throw "Assertion failed: " + Pointer_stringify(condition) + ", at: " + [ filename ? Pointer_stringify(filename) : "unknown filename", line, func ? Pointer_stringify(func) : "unknown function" ] + " at " + stackTrace();
+}
function __ZSt18uncaught_exceptionv() {
return !!__ZSt18uncaught_exceptionv.uncaught_exception;
}
@@ -1662,13 +1408,297 @@ function ___cxa_throw(ptr, type, destructor) {
}
throw ptr + " - Exception catching is disabled, this exception cannot be caught. Compile with -s DISABLE_EXCEPTION_CATCHING=0 or DISABLE_EXCEPTION_CATCHING=2 to catch.";
}
+Module["_memset"] = _memset;
function _pthread_mutex_lock() {}
-var _UItoF = true;
-var _sqrtf = Math_sqrt;
-var _DtoILow = true;
-var _UItoD = true;
+function __isLeapYear(year) {
+ return year % 4 === 0 && (year % 100 !== 0 || year % 400 === 0);
+}
+function __arraySum(array, index) {
+ var sum = 0;
+ for (var i = 0; i <= index; sum += array[i++]) ;
+ return sum;
+}
+var __MONTH_DAYS_LEAP = [ 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ];
+var __MONTH_DAYS_REGULAR = [ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ];
+function __addDays(date, days) {
+ var newDate = new Date(date.getTime());
+ while (days > 0) {
+ var leap = __isLeapYear(newDate.getFullYear());
+ var currentMonth = newDate.getMonth();
+ var daysInCurrentMonth = (leap ? __MONTH_DAYS_LEAP : __MONTH_DAYS_REGULAR)[currentMonth];
+ if (days > daysInCurrentMonth - newDate.getDate()) {
+ days -= daysInCurrentMonth - newDate.getDate() + 1;
+ newDate.setDate(1);
+ if (currentMonth < 11) {
+ newDate.setMonth(currentMonth + 1);
+ } else {
+ newDate.setMonth(0);
+ newDate.setFullYear(newDate.getFullYear() + 1);
+ }
+ } else {
+ newDate.setDate(newDate.getDate() + days);
+ return newDate;
+ }
+ }
+ return newDate;
+}
+function _strftime(s, maxsize, format, tm) {
+ var tm_zone = HEAP32[tm + 40 >> 2];
+ var date = {
+ tm_sec: HEAP32[tm >> 2],
+ tm_min: HEAP32[tm + 4 >> 2],
+ tm_hour: HEAP32[tm + 8 >> 2],
+ tm_mday: HEAP32[tm + 12 >> 2],
+ tm_mon: HEAP32[tm + 16 >> 2],
+ tm_year: HEAP32[tm + 20 >> 2],
+ tm_wday: HEAP32[tm + 24 >> 2],
+ tm_yday: HEAP32[tm + 28 >> 2],
+ tm_isdst: HEAP32[tm + 32 >> 2],
+ tm_gmtoff: HEAP32[tm + 36 >> 2],
+ tm_zone: tm_zone ? Pointer_stringify(tm_zone) : ""
+ };
+ var pattern = Pointer_stringify(format);
+ var EXPANSION_RULES_1 = {
+ "%c": "%a %b %d %H:%M:%S %Y",
+ "%D": "%m/%d/%y",
+ "%F": "%Y-%m-%d",
+ "%h": "%b",
+ "%r": "%I:%M:%S %p",
+ "%R": "%H:%M",
+ "%T": "%H:%M:%S",
+ "%x": "%m/%d/%y",
+ "%X": "%H:%M:%S"
+ };
+ for (var rule in EXPANSION_RULES_1) {
+ pattern = pattern.replace(new RegExp(rule, "g"), EXPANSION_RULES_1[rule]);
+ }
+ var WEEKDAYS = [ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" ];
+ var MONTHS = [ "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" ];
+ function leadingSomething(value, digits, character) {
+ var str = typeof value === "number" ? value.toString() : value || "";
+ while (str.length < digits) {
+ str = character[0] + str;
+ }
+ return str;
+ }
+ function leadingNulls(value, digits) {
+ return leadingSomething(value, digits, "0");
+ }
+ function compareByDay(date1, date2) {
+ function sgn(value) {
+ return value < 0 ? -1 : value > 0 ? 1 : 0;
+ }
+ var compare;
+ if ((compare = sgn(date1.getFullYear() - date2.getFullYear())) === 0) {
+ if ((compare = sgn(date1.getMonth() - date2.getMonth())) === 0) {
+ compare = sgn(date1.getDate() - date2.getDate());
+ }
+ }
+ return compare;
+ }
+ function getFirstWeekStartDate(janFourth) {
+ switch (janFourth.getDay()) {
+ case 0:
+ return new Date(janFourth.getFullYear() - 1, 11, 29);
+ case 1:
+ return janFourth;
+ case 2:
+ return new Date(janFourth.getFullYear(), 0, 3);
+ case 3:
+ return new Date(janFourth.getFullYear(), 0, 2);
+ case 4:
+ return new Date(janFourth.getFullYear(), 0, 1);
+ case 5:
+ return new Date(janFourth.getFullYear() - 1, 11, 31);
+ case 6:
+ return new Date(janFourth.getFullYear() - 1, 11, 30);
+ }
+ }
+ function getWeekBasedYear(date) {
+ var thisDate = __addDays(new Date(date.tm_year + 1900, 0, 1), date.tm_yday);
+ var janFourthThisYear = new Date(thisDate.getFullYear(), 0, 4);
+ var janFourthNextYear = new Date(thisDate.getFullYear() + 1, 0, 4);
+ var firstWeekStartThisYear = getFirstWeekStartDate(janFourthThisYear);
+ var firstWeekStartNextYear = getFirstWeekStartDate(janFourthNextYear);
+ if (compareByDay(firstWeekStartThisYear, thisDate) <= 0) {
+ if (compareByDay(firstWeekStartNextYear, thisDate) <= 0) {
+ return thisDate.getFullYear() + 1;
+ } else {
+ return thisDate.getFullYear();
+ }
+ } else {
+ return thisDate.getFullYear() - 1;
+ }
+ }
+ var EXPANSION_RULES_2 = {
+ "%a": (function(date) {
+ return WEEKDAYS[date.tm_wday].substring(0, 3);
+ }),
+ "%A": (function(date) {
+ return WEEKDAYS[date.tm_wday];
+ }),
+ "%b": (function(date) {
+ return MONTHS[date.tm_mon].substring(0, 3);
+ }),
+ "%B": (function(date) {
+ return MONTHS[date.tm_mon];
+ }),
+ "%C": (function(date) {
+ var year = date.tm_year + 1900;
+ return leadingNulls(year / 100 | 0, 2);
+ }),
+ "%d": (function(date) {
+ return leadingNulls(date.tm_mday, 2);
+ }),
+ "%e": (function(date) {
+ return leadingSomething(date.tm_mday, 2, " ");
+ }),
+ "%g": (function(date) {
+ return getWeekBasedYear(date).toString().substring(2);
+ }),
+ "%G": (function(date) {
+ return getWeekBasedYear(date);
+ }),
+ "%H": (function(date) {
+ return leadingNulls(date.tm_hour, 2);
+ }),
+ "%I": (function(date) {
+ var twelveHour = date.tm_hour;
+ if (twelveHour == 0) twelveHour = 12; else if (twelveHour > 12) twelveHour -= 12;
+ return leadingNulls(twelveHour, 2);
+ }),
+ "%j": (function(date) {
+ return leadingNulls(date.tm_mday + __arraySum(__isLeapYear(date.tm_year + 1900) ? __MONTH_DAYS_LEAP : __MONTH_DAYS_REGULAR, date.tm_mon - 1), 3);
+ }),
+ "%m": (function(date) {
+ return leadingNulls(date.tm_mon + 1, 2);
+ }),
+ "%M": (function(date) {
+ return leadingNulls(date.tm_min, 2);
+ }),
+ "%n": (function() {
+ return "\n";
+ }),
+ "%p": (function(date) {
+ if (date.tm_hour >= 0 && date.tm_hour < 12) {
+ return "AM";
+ } else {
+ return "PM";
+ }
+ }),
+ "%S": (function(date) {
+ return leadingNulls(date.tm_sec, 2);
+ }),
+ "%t": (function() {
+ return "\t";
+ }),
+ "%u": (function(date) {
+ var day = new Date(date.tm_year + 1900, date.tm_mon + 1, date.tm_mday, 0, 0, 0, 0);
+ return day.getDay() || 7;
+ }),
+ "%U": (function(date) {
+ var janFirst = new Date(date.tm_year + 1900, 0, 1);
+ var firstSunday = janFirst.getDay() === 0 ? janFirst : __addDays(janFirst, 7 - janFirst.getDay());
+ var endDate = new Date(date.tm_year + 1900, date.tm_mon, date.tm_mday);
+ if (compareByDay(firstSunday, endDate) < 0) {
+ var februaryFirstUntilEndMonth = __arraySum(__isLeapYear(endDate.getFullYear()) ? __MONTH_DAYS_LEAP : __MONTH_DAYS_REGULAR, endDate.getMonth() - 1) - 31;
+ var firstSundayUntilEndJanuary = 31 - firstSunday.getDate();
+ var days = firstSundayUntilEndJanuary + februaryFirstUntilEndMonth + endDate.getDate();
+ return leadingNulls(Math.ceil(days / 7), 2);
+ }
+ return compareByDay(firstSunday, janFirst) === 0 ? "01" : "00";
+ }),
+ "%V": (function(date) {
+ var janFourthThisYear = new Date(date.tm_year + 1900, 0, 4);
+ var janFourthNextYear = new Date(date.tm_year + 1901, 0, 4);
+ var firstWeekStartThisYear = getFirstWeekStartDate(janFourthThisYear);
+ var firstWeekStartNextYear = getFirstWeekStartDate(janFourthNextYear);
+ var endDate = __addDays(new Date(date.tm_year + 1900, 0, 1), date.tm_yday);
+ if (compareByDay(endDate, firstWeekStartThisYear) < 0) {
+ return "53";
+ }
+ if (compareByDay(firstWeekStartNextYear, endDate) <= 0) {
+ return "01";
+ }
+ var daysDifference;
+ if (firstWeekStartThisYear.getFullYear() < date.tm_year + 1900) {
+ daysDifference = date.tm_yday + 32 - firstWeekStartThisYear.getDate();
+ } else {
+ daysDifference = date.tm_yday + 1 - firstWeekStartThisYear.getDate();
+ }
+ return leadingNulls(Math.ceil(daysDifference / 7), 2);
+ }),
+ "%w": (function(date) {
+ var day = new Date(date.tm_year + 1900, date.tm_mon + 1, date.tm_mday, 0, 0, 0, 0);
+ return day.getDay();
+ }),
+ "%W": (function(date) {
+ var janFirst = new Date(date.tm_year, 0, 1);
+ var firstMonday = janFirst.getDay() === 1 ? janFirst : __addDays(janFirst, janFirst.getDay() === 0 ? 1 : 7 - janFirst.getDay() + 1);
+ var endDate = new Date(date.tm_year + 1900, date.tm_mon, date.tm_mday);
+ if (compareByDay(firstMonday, endDate) < 0) {
+ var februaryFirstUntilEndMonth = __arraySum(__isLeapYear(endDate.getFullYear()) ? __MONTH_DAYS_LEAP : __MONTH_DAYS_REGULAR, endDate.getMonth() - 1) - 31;
+ var firstMondayUntilEndJanuary = 31 - firstMonday.getDate();
+ var days = firstMondayUntilEndJanuary + februaryFirstUntilEndMonth + endDate.getDate();
+ return leadingNulls(Math.ceil(days / 7), 2);
+ }
+ return compareByDay(firstMonday, janFirst) === 0 ? "01" : "00";
+ }),
+ "%y": (function(date) {
+ return (date.tm_year + 1900).toString().substring(2);
+ }),
+ "%Y": (function(date) {
+ return date.tm_year + 1900;
+ }),
+ "%z": (function(date) {
+ var off = date.tm_gmtoff;
+ var ahead = off >= 0;
+ off = Math.abs(off) / 60;
+ off = off / 60 * 100 + off % 60;
+ return (ahead ? "+" : "-") + String("0000" + off).slice(-4);
+ }),
+ "%Z": (function(date) {
+ return date.tm_zone;
+ }),
+ "%%": (function() {
+ return "%";
+ })
+ };
+ for (var rule in EXPANSION_RULES_2) {
+ if (pattern.indexOf(rule) >= 0) {
+ pattern = pattern.replace(new RegExp(rule, "g"), EXPANSION_RULES_2[rule](date));
+ }
+ }
+ var bytes = intArrayFromString(pattern, false);
+ if (bytes.length > maxsize) {
+ return 0;
+ }
+ writeArrayToMemory(bytes, s);
+ return bytes.length - 1;
+}
+function _strftime_l(s, maxsize, format, tm) {
+ return _strftime(s, maxsize, format, tm);
+}
+function _abort() {
+ Module["abort"]();
+}
+function _pthread_once(ptr, func) {
+ if (!_pthread_once.seen) _pthread_once.seen = {};
+ if (ptr in _pthread_once.seen) return;
+ Runtime.dynCall("v", func);
+ _pthread_once.seen[ptr] = 1;
+}
+function ___lock() {}
+function ___unlock() {}
var PTHREAD_SPECIFIC = {};
-var PTHREAD_SPECIFIC_NEXT_KEY = 1;
+function _pthread_getspecific(key) {
+ return PTHREAD_SPECIFIC[key] || 0;
+}
+var _llvm_fabs_f64 = Math_abs;
+function ___setErrNo(value) {
+ if (Module["___errno_location"]) HEAP32[Module["___errno_location"]() >> 2] = value;
+ return value;
+}
var ERRNO_CODES = {
EPERM: 1,
ENOENT: 2,
@@ -1792,6 +1822,167 @@ var ERRNO_CODES = {
EOWNERDEAD: 130,
ESTRPIPE: 86
};
+function _sysconf(name) {
+ switch (name) {
+ case 30:
+ return PAGE_SIZE;
+ case 85:
+ return totalMemory / PAGE_SIZE;
+ case 132:
+ case 133:
+ case 12:
+ case 137:
+ case 138:
+ case 15:
+ case 235:
+ case 16:
+ case 17:
+ case 18:
+ case 19:
+ case 20:
+ case 149:
+ case 13:
+ case 10:
+ case 236:
+ case 153:
+ case 9:
+ case 21:
+ case 22:
+ case 159:
+ case 154:
+ case 14:
+ case 77:
+ case 78:
+ case 139:
+ case 80:
+ case 81:
+ case 82:
+ case 68:
+ case 67:
+ case 164:
+ case 11:
+ case 29:
+ case 47:
+ case 48:
+ case 95:
+ case 52:
+ case 51:
+ case 46:
+ return 200809;
+ case 79:
+ return 0;
+ case 27:
+ case 246:
+ case 127:
+ case 128:
+ case 23:
+ case 24:
+ case 160:
+ case 161:
+ case 181:
+ case 182:
+ case 242:
+ case 183:
+ case 184:
+ case 243:
+ case 244:
+ case 245:
+ case 165:
+ case 178:
+ case 179:
+ case 49:
+ case 50:
+ case 168:
+ case 169:
+ case 175:
+ case 170:
+ case 171:
+ case 172:
+ case 97:
+ case 76:
+ case 32:
+ case 173:
+ case 35:
+ return -1;
+ case 176:
+ case 177:
+ case 7:
+ case 155:
+ case 8:
+ case 157:
+ case 125:
+ case 126:
+ case 92:
+ case 93:
+ case 129:
+ case 130:
+ case 131:
+ case 94:
+ case 91:
+ return 1;
+ case 74:
+ case 60:
+ case 69:
+ case 70:
+ case 4:
+ return 1024;
+ case 31:
+ case 42:
+ case 72:
+ return 32;
+ case 87:
+ case 26:
+ case 33:
+ return 2147483647;
+ case 34:
+ case 1:
+ return 47839;
+ case 38:
+ case 36:
+ return 99;
+ case 43:
+ case 37:
+ return 2048;
+ case 0:
+ return 2097152;
+ case 3:
+ return 65536;
+ case 28:
+ return 32768;
+ case 44:
+ return 32767;
+ case 75:
+ return 16384;
+ case 39:
+ return 1e3;
+ case 89:
+ return 700;
+ case 71:
+ return 256;
+ case 40:
+ return 255;
+ case 2:
+ return 100;
+ case 180:
+ return 64;
+ case 25:
+ return 20;
+ case 5:
+ return 16;
+ case 6:
+ return 6;
+ case 73:
+ return 4;
+ case 84:
+ {
+ if (typeof navigator === "object") return navigator["hardwareConcurrency"] || 1;
+ return 1;
+ }
+ }
+ ___setErrNo(ERRNO_CODES.EINVAL);
+ return -1;
+}
+var PTHREAD_SPECIFIC_NEXT_KEY = 1;
function _pthread_key_create(key, destructor) {
if (key == 0) {
return ERRNO_CODES.EINVAL;
@@ -1801,6 +1992,21 @@ function _pthread_key_create(key, destructor) {
PTHREAD_SPECIFIC_NEXT_KEY++;
return 0;
}
+function _pthread_setspecific(key, value) {
+ if (!(key in PTHREAD_SPECIFIC)) {
+ return ERRNO_CODES.EINVAL;
+ }
+ PTHREAD_SPECIFIC[key] = value;
+ return 0;
+}
+function _malloc(bytes) {
+ var ptr = Runtime.dynamicAlloc(bytes + 8);
+ return ptr + 8 & 4294967288;
+}
+Module["_malloc"] = _malloc;
+function ___cxa_allocate_exception(size) {
+ return _malloc(size);
+}
var ERRNO_MESSAGES = {
0: "Success",
1: "Not super-user",
@@ -1922,10 +2128,6 @@ var ERRNO_MESSAGES = {
130: "Previous owner died",
131: "State not recoverable"
};
-function ___setErrNo(value) {
- if (Module["___errno_location"]) HEAP32[Module["___errno_location"]() >> 2] = value;
- return value;
-}
var PATH = {
splitPath: (function(filename) {
var splitPathRe = /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;
@@ -2737,7 +2939,6 @@ var IDBFS = {
if (!total) {
return callback(null);
}
- var errored = false;
var completed = 0;
var db = src.type === "remote" ? src.db : dst.db;
var transaction = db.transaction([ IDBFS.DB_STORE_NAME ], "readwrite");
@@ -5111,7 +5312,7 @@ function ___syscall54(which, varargs) {
}
Module["_bitshift64Ashr"] = _bitshift64Ashr;
Module["_bitshift64Lshr"] = _bitshift64Lshr;
-var _BDtoIHigh = true;
+function ___cxa_guard_release() {}
function _pthread_cleanup_push(routine, arg) {
__ATEXIT__.push((function() {
Runtime.dynCall("vi", routine, [ arg ]);
@@ -5121,19 +5322,41 @@ function _pthread_cleanup_push(routine, arg) {
function _pthread_cond_broadcast() {
return 0;
}
-var _ceil = Math_ceil;
+function ___cxa_guard_acquire(variable) {
+ if (!HEAP8[variable >> 0]) {
+ HEAP8[variable >> 0] = 1;
+ return 1;
+ }
+ return 0;
+}
function _pthread_cleanup_pop() {
assert(_pthread_cleanup_push.level == __ATEXIT__.length, "cannot pop if something else added meanwhile!");
__ATEXIT__.pop();
_pthread_cleanup_push.level = __ATEXIT__.length;
}
-var _emscripten_asm_const_double = true;
-function _pthread_mutex_unlock() {}
+Module["_i64Add"] = _i64Add;
+function ___cxa_begin_catch(ptr) {
+ __ZSt18uncaught_exceptionv.uncaught_exception--;
+ EXCEPTIONS.caught.push(ptr);
+ EXCEPTIONS.addRef(EXCEPTIONS.deAdjust(ptr));
+ return ptr;
+}
function _emscripten_memcpy_big(dest, src, num) {
HEAPU8.set(HEAPU8.subarray(src, src + num), dest);
return dest;
}
Module["_memcpy"] = _memcpy;
+function ___syscall6(which, varargs) {
+ SYSCALLS.varargs = varargs;
+ try {
+ var stream = SYSCALLS.getStreamFromFD();
+ FS.close(stream);
+ return 0;
+ } catch (e) {
+ if (typeof FS === "undefined" || !(e instanceof FS.ErrnoError)) abort(e);
+ return -e.errno;
+ }
+}
function _sbrk(bytes) {
var self = _sbrk;
if (!self.called) {
@@ -5154,1015 +5377,12 @@ function _sbrk(bytes) {
}
Module["_bitshift64Shl"] = _bitshift64Shl;
Module["_memmove"] = _memmove;
-var _BItoD = true;
+function ___gxx_personality_v0() {}
function _pthread_cond_wait() {
return 0;
}
var _llvm_fabs_f32 = Math_abs;
-function ___cxa_guard_release() {}
-function ___assert_fail(condition, filename, line, func) {
- ABORT = true;
- throw "Assertion failed: " + Pointer_stringify(condition) + ", at: " + [ filename ? Pointer_stringify(filename) : "unknown filename", line, func ? Pointer_stringify(func) : "unknown function" ] + " at " + stackTrace();
-}
-var _SItoD = true;
-var _SItoF = true;
-Module["_memset"] = _memset;
-var _BDtoILow = true;
-function ___gxx_personality_v0() {}
-var _DtoIHigh = true;
-function __isLeapYear(year) {
- return year % 4 === 0 && (year % 100 !== 0 || year % 400 === 0);
-}
-function __arraySum(array, index) {
- var sum = 0;
- for (var i = 0; i <= index; sum += array[i++]) ;
- return sum;
-}
-var __MONTH_DAYS_LEAP = [ 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ];
-var __MONTH_DAYS_REGULAR = [ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ];
-function __addDays(date, days) {
- var newDate = new Date(date.getTime());
- while (days > 0) {
- var leap = __isLeapYear(newDate.getFullYear());
- var currentMonth = newDate.getMonth();
- var daysInCurrentMonth = (leap ? __MONTH_DAYS_LEAP : __MONTH_DAYS_REGULAR)[currentMonth];
- if (days > daysInCurrentMonth - newDate.getDate()) {
- days -= daysInCurrentMonth - newDate.getDate() + 1;
- newDate.setDate(1);
- if (currentMonth < 11) {
- newDate.setMonth(currentMonth + 1);
- } else {
- newDate.setMonth(0);
- newDate.setFullYear(newDate.getFullYear() + 1);
- }
- } else {
- newDate.setDate(newDate.getDate() + days);
- return newDate;
- }
- }
- return newDate;
-}
-function _strftime(s, maxsize, format, tm) {
- var tm_zone = HEAP32[tm + 40 >> 2];
- var date = {
- tm_sec: HEAP32[tm >> 2],
- tm_min: HEAP32[tm + 4 >> 2],
- tm_hour: HEAP32[tm + 8 >> 2],
- tm_mday: HEAP32[tm + 12 >> 2],
- tm_mon: HEAP32[tm + 16 >> 2],
- tm_year: HEAP32[tm + 20 >> 2],
- tm_wday: HEAP32[tm + 24 >> 2],
- tm_yday: HEAP32[tm + 28 >> 2],
- tm_isdst: HEAP32[tm + 32 >> 2],
- tm_gmtoff: HEAP32[tm + 36 >> 2],
- tm_zone: tm_zone ? Pointer_stringify(tm_zone) : ""
- };
- var pattern = Pointer_stringify(format);
- var EXPANSION_RULES_1 = {
- "%c": "%a %b %d %H:%M:%S %Y",
- "%D": "%m/%d/%y",
- "%F": "%Y-%m-%d",
- "%h": "%b",
- "%r": "%I:%M:%S %p",
- "%R": "%H:%M",
- "%T": "%H:%M:%S",
- "%x": "%m/%d/%y",
- "%X": "%H:%M:%S"
- };
- for (var rule in EXPANSION_RULES_1) {
- pattern = pattern.replace(new RegExp(rule, "g"), EXPANSION_RULES_1[rule]);
- }
- var WEEKDAYS = [ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" ];
- var MONTHS = [ "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" ];
- function leadingSomething(value, digits, character) {
- var str = typeof value === "number" ? value.toString() : value || "";
- while (str.length < digits) {
- str = character[0] + str;
- }
- return str;
- }
- function leadingNulls(value, digits) {
- return leadingSomething(value, digits, "0");
- }
- function compareByDay(date1, date2) {
- function sgn(value) {
- return value < 0 ? -1 : value > 0 ? 1 : 0;
- }
- var compare;
- if ((compare = sgn(date1.getFullYear() - date2.getFullYear())) === 0) {
- if ((compare = sgn(date1.getMonth() - date2.getMonth())) === 0) {
- compare = sgn(date1.getDate() - date2.getDate());
- }
- }
- return compare;
- }
- function getFirstWeekStartDate(janFourth) {
- switch (janFourth.getDay()) {
- case 0:
- return new Date(janFourth.getFullYear() - 1, 11, 29);
- case 1:
- return janFourth;
- case 2:
- return new Date(janFourth.getFullYear(), 0, 3);
- case 3:
- return new Date(janFourth.getFullYear(), 0, 2);
- case 4:
- return new Date(janFourth.getFullYear(), 0, 1);
- case 5:
- return new Date(janFourth.getFullYear() - 1, 11, 31);
- case 6:
- return new Date(janFourth.getFullYear() - 1, 11, 30);
- }
- }
- function getWeekBasedYear(date) {
- var thisDate = __addDays(new Date(date.tm_year + 1900, 0, 1), date.tm_yday);
- var janFourthThisYear = new Date(thisDate.getFullYear(), 0, 4);
- var janFourthNextYear = new Date(thisDate.getFullYear() + 1, 0, 4);
- var firstWeekStartThisYear = getFirstWeekStartDate(janFourthThisYear);
- var firstWeekStartNextYear = getFirstWeekStartDate(janFourthNextYear);
- if (compareByDay(firstWeekStartThisYear, thisDate) <= 0) {
- if (compareByDay(firstWeekStartNextYear, thisDate) <= 0) {
- return thisDate.getFullYear() + 1;
- } else {
- return thisDate.getFullYear();
- }
- } else {
- return thisDate.getFullYear() - 1;
- }
- }
- var EXPANSION_RULES_2 = {
- "%a": (function(date) {
- return WEEKDAYS[date.tm_wday].substring(0, 3);
- }),
- "%A": (function(date) {
- return WEEKDAYS[date.tm_wday];
- }),
- "%b": (function(date) {
- return MONTHS[date.tm_mon].substring(0, 3);
- }),
- "%B": (function(date) {
- return MONTHS[date.tm_mon];
- }),
- "%C": (function(date) {
- var year = date.tm_year + 1900;
- return leadingNulls(year / 100 | 0, 2);
- }),
- "%d": (function(date) {
- return leadingNulls(date.tm_mday, 2);
- }),
- "%e": (function(date) {
- return leadingSomething(date.tm_mday, 2, " ");
- }),
- "%g": (function(date) {
- return getWeekBasedYear(date).toString().substring(2);
- }),
- "%G": (function(date) {
- return getWeekBasedYear(date);
- }),
- "%H": (function(date) {
- return leadingNulls(date.tm_hour, 2);
- }),
- "%I": (function(date) {
- var twelveHour = date.tm_hour;
- if (twelveHour == 0) twelveHour = 12; else if (twelveHour > 12) twelveHour -= 12;
- return leadingNulls(twelveHour, 2);
- }),
- "%j": (function(date) {
- return leadingNulls(date.tm_mday + __arraySum(__isLeapYear(date.tm_year + 1900) ? __MONTH_DAYS_LEAP : __MONTH_DAYS_REGULAR, date.tm_mon - 1), 3);
- }),
- "%m": (function(date) {
- return leadingNulls(date.tm_mon + 1, 2);
- }),
- "%M": (function(date) {
- return leadingNulls(date.tm_min, 2);
- }),
- "%n": (function() {
- return "\n";
- }),
- "%p": (function(date) {
- if (date.tm_hour >= 0 && date.tm_hour < 12) {
- return "AM";
- } else {
- return "PM";
- }
- }),
- "%S": (function(date) {
- return leadingNulls(date.tm_sec, 2);
- }),
- "%t": (function() {
- return "\t";
- }),
- "%u": (function(date) {
- var day = new Date(date.tm_year + 1900, date.tm_mon + 1, date.tm_mday, 0, 0, 0, 0);
- return day.getDay() || 7;
- }),
- "%U": (function(date) {
- var janFirst = new Date(date.tm_year + 1900, 0, 1);
- var firstSunday = janFirst.getDay() === 0 ? janFirst : __addDays(janFirst, 7 - janFirst.getDay());
- var endDate = new Date(date.tm_year + 1900, date.tm_mon, date.tm_mday);
- if (compareByDay(firstSunday, endDate) < 0) {
- var februaryFirstUntilEndMonth = __arraySum(__isLeapYear(endDate.getFullYear()) ? __MONTH_DAYS_LEAP : __MONTH_DAYS_REGULAR, endDate.getMonth() - 1) - 31;
- var firstSundayUntilEndJanuary = 31 - firstSunday.getDate();
- var days = firstSundayUntilEndJanuary + februaryFirstUntilEndMonth + endDate.getDate();
- return leadingNulls(Math.ceil(days / 7), 2);
- }
- return compareByDay(firstSunday, janFirst) === 0 ? "01" : "00";
- }),
- "%V": (function(date) {
- var janFourthThisYear = new Date(date.tm_year + 1900, 0, 4);
- var janFourthNextYear = new Date(date.tm_year + 1901, 0, 4);
- var firstWeekStartThisYear = getFirstWeekStartDate(janFourthThisYear);
- var firstWeekStartNextYear = getFirstWeekStartDate(janFourthNextYear);
- var endDate = __addDays(new Date(date.tm_year + 1900, 0, 1), date.tm_yday);
- if (compareByDay(endDate, firstWeekStartThisYear) < 0) {
- return "53";
- }
- if (compareByDay(firstWeekStartNextYear, endDate) <= 0) {
- return "01";
- }
- var daysDifference;
- if (firstWeekStartThisYear.getFullYear() < date.tm_year + 1900) {
- daysDifference = date.tm_yday + 32 - firstWeekStartThisYear.getDate();
- } else {
- daysDifference = date.tm_yday + 1 - firstWeekStartThisYear.getDate();
- }
- return leadingNulls(Math.ceil(daysDifference / 7), 2);
- }),
- "%w": (function(date) {
- var day = new Date(date.tm_year + 1900, date.tm_mon + 1, date.tm_mday, 0, 0, 0, 0);
- return day.getDay();
- }),
- "%W": (function(date) {
- var janFirst = new Date(date.tm_year, 0, 1);
- var firstMonday = janFirst.getDay() === 1 ? janFirst : __addDays(janFirst, janFirst.getDay() === 0 ? 1 : 7 - janFirst.getDay() + 1);
- var endDate = new Date(date.tm_year + 1900, date.tm_mon, date.tm_mday);
- if (compareByDay(firstMonday, endDate) < 0) {
- var februaryFirstUntilEndMonth = __arraySum(__isLeapYear(endDate.getFullYear()) ? __MONTH_DAYS_LEAP : __MONTH_DAYS_REGULAR, endDate.getMonth() - 1) - 31;
- var firstMondayUntilEndJanuary = 31 - firstMonday.getDate();
- var days = firstMondayUntilEndJanuary + februaryFirstUntilEndMonth + endDate.getDate();
- return leadingNulls(Math.ceil(days / 7), 2);
- }
- return compareByDay(firstMonday, janFirst) === 0 ? "01" : "00";
- }),
- "%y": (function(date) {
- return (date.tm_year + 1900).toString().substring(2);
- }),
- "%Y": (function(date) {
- return date.tm_year + 1900;
- }),
- "%z": (function(date) {
- var off = date.tm_gmtoff;
- var ahead = off >= 0;
- off = Math.abs(off) / 60;
- off = off / 60 * 100 + off % 60;
- return (ahead ? "+" : "-") + String("0000" + off).slice(-4);
- }),
- "%Z": (function(date) {
- return date.tm_zone;
- }),
- "%%": (function() {
- return "%";
- })
- };
- for (var rule in EXPANSION_RULES_2) {
- if (pattern.indexOf(rule) >= 0) {
- pattern = pattern.replace(new RegExp(rule, "g"), EXPANSION_RULES_2[rule](date));
- }
- }
- var bytes = intArrayFromString(pattern, false);
- if (bytes.length > maxsize) {
- return 0;
- }
- writeArrayToMemory(bytes, s);
- return bytes.length - 1;
-}
-function _strftime_l(s, maxsize, format, tm) {
- return _strftime(s, maxsize, format, tm);
-}
-function _abort() {
- Module["abort"]();
-}
-function _pthread_once(ptr, func) {
- if (!_pthread_once.seen) _pthread_once.seen = {};
- if (ptr in _pthread_once.seen) return;
- Runtime.dynCall("v", func);
- _pthread_once.seen[ptr] = 1;
-}
-function ___lock() {}
-function ___unlock() {}
-function _pthread_getspecific(key) {
- return PTHREAD_SPECIFIC[key] || 0;
-}
-var _llvm_fabs_f64 = Math_abs;
-var _fabs = Math_abs;
-var _floor = Math_floor;
-var _sqrt = Math_sqrt;
-var _emscripten_asm_const_int = true;
-function _emscripten_set_main_loop_timing(mode, value) {
- Browser.mainLoop.timingMode = mode;
- Browser.mainLoop.timingValue = value;
- if (!Browser.mainLoop.func) {
- return 1;
- }
- if (mode == 0) {
- Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler_setTimeout() {
- setTimeout(Browser.mainLoop.runner, value);
- };
- Browser.mainLoop.method = "timeout";
- } else if (mode == 1) {
- Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler_rAF() {
- Browser.requestAnimationFrame(Browser.mainLoop.runner);
- };
- Browser.mainLoop.method = "rAF";
- } else if (mode == 2) {
- if (!window["setImmediate"]) {
- var setImmediates = [];
- var emscriptenMainLoopMessageId = "__emcc";
- function Browser_setImmediate_messageHandler(event) {
- if (event.source === window && event.data === emscriptenMainLoopMessageId) {
- event.stopPropagation();
- setImmediates.shift()();
- }
- }
- window.addEventListener("message", Browser_setImmediate_messageHandler, true);
- window["setImmediate"] = function Browser_emulated_setImmediate(func) {
- setImmediates.push(func);
- window.postMessage(emscriptenMainLoopMessageId, "*");
- };
- }
- Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler_setImmediate() {
- window["setImmediate"](Browser.mainLoop.runner);
- };
- Browser.mainLoop.method = "immediate";
- }
- return 0;
-}
-function _emscripten_set_main_loop(func, fps, simulateInfiniteLoop, arg, noSetTiming) {
- Module["noExitRuntime"] = true;
- assert(!Browser.mainLoop.func, "emscripten_set_main_loop: there can only be one main loop function at once: call emscripten_cancel_main_loop to cancel the previous one before setting a new one with different parameters.");
- Browser.mainLoop.func = func;
- Browser.mainLoop.arg = arg;
- var thisMainLoopId = Browser.mainLoop.currentlyRunningMainloop;
- Browser.mainLoop.runner = function Browser_mainLoop_runner() {
- if (ABORT) return;
- if (Browser.mainLoop.queue.length > 0) {
- var start = Date.now();
- var blocker = Browser.mainLoop.queue.shift();
- blocker.func(blocker.arg);
- if (Browser.mainLoop.remainingBlockers) {
- var remaining = Browser.mainLoop.remainingBlockers;
- var next = remaining % 1 == 0 ? remaining - 1 : Math.floor(remaining);
- if (blocker.counted) {
- Browser.mainLoop.remainingBlockers = next;
- } else {
- next = next + .5;
- Browser.mainLoop.remainingBlockers = (8 * remaining + next) / 9;
- }
- }
- console.log('main loop blocker "' + blocker.name + '" took ' + (Date.now() - start) + " ms");
- Browser.mainLoop.updateStatus();
- if (thisMainLoopId < Browser.mainLoop.currentlyRunningMainloop) return;
- setTimeout(Browser.mainLoop.runner, 0);
- return;
- }
- if (thisMainLoopId < Browser.mainLoop.currentlyRunningMainloop) return;
- Browser.mainLoop.currentFrameNumber = Browser.mainLoop.currentFrameNumber + 1 | 0;
- if (Browser.mainLoop.timingMode == 1 && Browser.mainLoop.timingValue > 1 && Browser.mainLoop.currentFrameNumber % Browser.mainLoop.timingValue != 0) {
- Browser.mainLoop.scheduler();
- return;
- }
- if (Browser.mainLoop.method === "timeout" && Module.ctx) {
- Module.printErr("Looks like you are rendering without using requestAnimationFrame for the main loop. You should use 0 for the frame rate in emscripten_set_main_loop in order to use requestAnimationFrame, as that can greatly improve your frame rates!");
- Browser.mainLoop.method = "";
- }
- Browser.mainLoop.runIter((function() {
- if (typeof arg !== "undefined") {
- Runtime.dynCall("vi", func, [ arg ]);
- } else {
- Runtime.dynCall("v", func);
- }
- }));
- if (thisMainLoopId < Browser.mainLoop.currentlyRunningMainloop) return;
- if (typeof SDL === "object" && SDL.audio && SDL.audio.queueNewAudioData) SDL.audio.queueNewAudioData();
- Browser.mainLoop.scheduler();
- };
- if (!noSetTiming) {
- if (fps && fps > 0) _emscripten_set_main_loop_timing(0, 1e3 / fps); else _emscripten_set_main_loop_timing(1, 1);
- Browser.mainLoop.scheduler();
- }
- if (simulateInfiniteLoop) {
- throw "SimulateInfiniteLoop";
- }
-}
-var Browser = {
- mainLoop: {
- scheduler: null,
- method: "",
- currentlyRunningMainloop: 0,
- func: null,
- arg: 0,
- timingMode: 0,
- timingValue: 0,
- currentFrameNumber: 0,
- queue: [],
- pause: (function() {
- Browser.mainLoop.scheduler = null;
- Browser.mainLoop.currentlyRunningMainloop++;
- }),
- resume: (function() {
- Browser.mainLoop.currentlyRunningMainloop++;
- var timingMode = Browser.mainLoop.timingMode;
- var timingValue = Browser.mainLoop.timingValue;
- var func = Browser.mainLoop.func;
- Browser.mainLoop.func = null;
- _emscripten_set_main_loop(func, 0, false, Browser.mainLoop.arg, true);
- _emscripten_set_main_loop_timing(timingMode, timingValue);
- Browser.mainLoop.scheduler();
- }),
- updateStatus: (function() {
- if (Module["setStatus"]) {
- var message = Module["statusMessage"] || "Please wait...";
- var remaining = Browser.mainLoop.remainingBlockers;
- var expected = Browser.mainLoop.expectedBlockers;
- if (remaining) {
- if (remaining < expected) {
- Module["setStatus"](message + " (" + (expected - remaining) + "/" + expected + ")");
- } else {
- Module["setStatus"](message);
- }
- } else {
- Module["setStatus"]("");
- }
- }
- }),
- runIter: (function(func) {
- if (ABORT) return;
- if (Module["preMainLoop"]) {
- var preRet = Module["preMainLoop"]();
- if (preRet === false) {
- return;
- }
- }
- try {
- func();
- } catch (e) {
- if (e instanceof ExitStatus) {
- return;
- } else {
- if (e && typeof e === "object" && e.stack) Module.printErr("exception thrown: " + [ e, e.stack ]);
- throw e;
- }
- }
- if (Module["postMainLoop"]) Module["postMainLoop"]();
- })
- },
- isFullScreen: false,
- pointerLock: false,
- moduleContextCreatedCallbacks: [],
- workers: [],
- init: (function() {
- if (!Module["preloadPlugins"]) Module["preloadPlugins"] = [];
- if (Browser.initted) return;
- Browser.initted = true;
- try {
- new Blob;
- Browser.hasBlobConstructor = true;
- } catch (e) {
- Browser.hasBlobConstructor = false;
- console.log("warning: no blob constructor, cannot create blobs with mimetypes");
- }
- Browser.BlobBuilder = typeof MozBlobBuilder != "undefined" ? MozBlobBuilder : typeof WebKitBlobBuilder != "undefined" ? WebKitBlobBuilder : !Browser.hasBlobConstructor ? console.log("warning: no BlobBuilder") : null;
- Browser.URLObject = typeof window != "undefined" ? window.URL ? window.URL : window.webkitURL : undefined;
- if (!Module.noImageDecoding && typeof Browser.URLObject === "undefined") {
- console.log("warning: Browser does not support creating object URLs. Built-in browser image decoding will not be available.");
- Module.noImageDecoding = true;
- }
- var imagePlugin = {};
- imagePlugin["canHandle"] = function imagePlugin_canHandle(name) {
- return !Module.noImageDecoding && /\.(jpg|jpeg|png|bmp)$/i.test(name);
- };
- imagePlugin["handle"] = function imagePlugin_handle(byteArray, name, onload, onerror) {
- var b = null;
- if (Browser.hasBlobConstructor) {
- try {
- b = new Blob([ byteArray ], {
- type: Browser.getMimetype(name)
- });
- if (b.size !== byteArray.length) {
- b = new Blob([ (new Uint8Array(byteArray)).buffer ], {
- type: Browser.getMimetype(name)
- });
- }
- } catch (e) {
- Runtime.warnOnce("Blob constructor present but fails: " + e + "; falling back to blob builder");
- }
- }
- if (!b) {
- var bb = new Browser.BlobBuilder;
- bb.append((new Uint8Array(byteArray)).buffer);
- b = bb.getBlob();
- }
- var url = Browser.URLObject.createObjectURL(b);
- var img = new Image;
- img.onload = function img_onload() {
- assert(img.complete, "Image " + name + " could not be decoded");
- var canvas = document.createElement("canvas");
- canvas.width = img.width;
- canvas.height = img.height;
- var ctx = canvas.getContext("2d");
- ctx.drawImage(img, 0, 0);
- Module["preloadedImages"][name] = canvas;
- Browser.URLObject.revokeObjectURL(url);
- if (onload) onload(byteArray);
- };
- img.onerror = function img_onerror(event) {
- console.log("Image " + url + " could not be decoded");
- if (onerror) onerror();
- };
- img.src = url;
- };
- Module["preloadPlugins"].push(imagePlugin);
- var audioPlugin = {};
- audioPlugin["canHandle"] = function audioPlugin_canHandle(name) {
- return !Module.noAudioDecoding && name.substr(-4) in {
- ".ogg": 1,
- ".wav": 1,
- ".mp3": 1
- };
- };
- audioPlugin["handle"] = function audioPlugin_handle(byteArray, name, onload, onerror) {
- var done = false;
- function finish(audio) {
- if (done) return;
- done = true;
- Module["preloadedAudios"][name] = audio;
- if (onload) onload(byteArray);
- }
- function fail() {
- if (done) return;
- done = true;
- Module["preloadedAudios"][name] = new Audio;
- if (onerror) onerror();
- }
- if (Browser.hasBlobConstructor) {
- try {
- var b = new Blob([ byteArray ], {
- type: Browser.getMimetype(name)
- });
- } catch (e) {
- return fail();
- }
- var url = Browser.URLObject.createObjectURL(b);
- var audio = new Audio;
- audio.addEventListener("canplaythrough", (function() {
- finish(audio);
- }), false);
- audio.onerror = function audio_onerror(event) {
- if (done) return;
- console.log("warning: browser could not fully decode audio " + name + ", trying slower base64 approach");
- function encode64(data) {
- var BASE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
- var PAD = "=";
- var ret = "";
- var leftchar = 0;
- var leftbits = 0;
- for (var i = 0; i < data.length; i++) {
- leftchar = leftchar << 8 | data[i];
- leftbits += 8;
- while (leftbits >= 6) {
- var curr = leftchar >> leftbits - 6 & 63;
- leftbits -= 6;
- ret += BASE[curr];
- }
- }
- if (leftbits == 2) {
- ret += BASE[(leftchar & 3) << 4];
- ret += PAD + PAD;
- } else if (leftbits == 4) {
- ret += BASE[(leftchar & 15) << 2];
- ret += PAD;
- }
- return ret;
- }
- audio.src = "data:audio/x-" + name.substr(-3) + ";base64," + encode64(byteArray);
- finish(audio);
- };
- audio.src = url;
- Browser.safeSetTimeout((function() {
- finish(audio);
- }), 1e4);
- } else {
- return fail();
- }
- };
- Module["preloadPlugins"].push(audioPlugin);
- var canvas = Module["canvas"];
- function pointerLockChange() {
- Browser.pointerLock = document["pointerLockElement"] === canvas || document["mozPointerLockElement"] === canvas || document["webkitPointerLockElement"] === canvas || document["msPointerLockElement"] === canvas;
- }
- if (canvas) {
- canvas.requestPointerLock = canvas["requestPointerLock"] || canvas["mozRequestPointerLock"] || canvas["webkitRequestPointerLock"] || canvas["msRequestPointerLock"] || (function() {});
- canvas.exitPointerLock = document["exitPointerLock"] || document["mozExitPointerLock"] || document["webkitExitPointerLock"] || document["msExitPointerLock"] || (function() {});
- canvas.exitPointerLock = canvas.exitPointerLock.bind(document);
- document.addEventListener("pointerlockchange", pointerLockChange, false);
- document.addEventListener("mozpointerlockchange", pointerLockChange, false);
- document.addEventListener("webkitpointerlockchange", pointerLockChange, false);
- document.addEventListener("mspointerlockchange", pointerLockChange, false);
- if (Module["elementPointerLock"]) {
- canvas.addEventListener("click", (function(ev) {
- if (!Browser.pointerLock && canvas.requestPointerLock) {
- canvas.requestPointerLock();
- ev.preventDefault();
- }
- }), false);
- }
- }
- }),
- createContext: (function(canvas, useWebGL, setInModule, webGLContextAttributes) {
- if (useWebGL && Module.ctx && canvas == Module.canvas) return Module.ctx;
- var ctx;
- var contextHandle;
- if (useWebGL) {
- var contextAttributes = {
- antialias: false,
- alpha: false
- };
- if (webGLContextAttributes) {
- for (var attribute in webGLContextAttributes) {
- contextAttributes[attribute] = webGLContextAttributes[attribute];
- }
- }
- contextHandle = GL.createContext(canvas, contextAttributes);
- if (contextHandle) {
- ctx = GL.getContext(contextHandle).GLctx;
- }
- canvas.style.backgroundColor = "black";
- } else {
- ctx = canvas.getContext("2d");
- }
- if (!ctx) return null;
- if (setInModule) {
- if (!useWebGL) assert(typeof GLctx === "undefined", "cannot set in module if GLctx is used, but we are a non-GL context that would replace it");
- Module.ctx = ctx;
- if (useWebGL) GL.makeContextCurrent(contextHandle);
- Module.useWebGL = useWebGL;
- Browser.moduleContextCreatedCallbacks.forEach((function(callback) {
- callback();
- }));
- Browser.init();
- }
- return ctx;
- }),
- destroyContext: (function(canvas, useWebGL, setInModule) {}),
- fullScreenHandlersInstalled: false,
- lockPointer: undefined,
- resizeCanvas: undefined,
- requestFullScreen: (function(lockPointer, resizeCanvas, vrDevice) {
- Browser.lockPointer = lockPointer;
- Browser.resizeCanvas = resizeCanvas;
- Browser.vrDevice = vrDevice;
- if (typeof Browser.lockPointer === "undefined") Browser.lockPointer = true;
- if (typeof Browser.resizeCanvas === "undefined") Browser.resizeCanvas = false;
- if (typeof Browser.vrDevice === "undefined") Browser.vrDevice = null;
- var canvas = Module["canvas"];
- function fullScreenChange() {
- Browser.isFullScreen = false;
- var canvasContainer = canvas.parentNode;
- if ((document["webkitFullScreenElement"] || document["webkitFullscreenElement"] || document["mozFullScreenElement"] || document["mozFullscreenElement"] || document["fullScreenElement"] || document["fullscreenElement"] || document["msFullScreenElement"] || document["msFullscreenElement"] || document["webkitCurrentFullScreenElement"]) === canvasContainer) {
- canvas.cancelFullScreen = document["cancelFullScreen"] || document["mozCancelFullScreen"] || document["webkitCancelFullScreen"] || document["msExitFullscreen"] || document["exitFullscreen"] || (function() {});
- canvas.cancelFullScreen = canvas.cancelFullScreen.bind(document);
- if (Browser.lockPointer) canvas.requestPointerLock();
- Browser.isFullScreen = true;
- if (Browser.resizeCanvas) Browser.setFullScreenCanvasSize();
- } else {
- canvasContainer.parentNode.insertBefore(canvas, canvasContainer);
- canvasContainer.parentNode.removeChild(canvasContainer);
- if (Browser.resizeCanvas) Browser.setWindowedCanvasSize();
- }
- if (Module["onFullScreen"]) Module["onFullScreen"](Browser.isFullScreen);
- Browser.updateCanvasDimensions(canvas);
- }
- if (!Browser.fullScreenHandlersInstalled) {
- Browser.fullScreenHandlersInstalled = true;
- document.addEventListener("fullscreenchange", fullScreenChange, false);
- document.addEventListener("mozfullscreenchange", fullScreenChange, false);
- document.addEventListener("webkitfullscreenchange", fullScreenChange, false);
- document.addEventListener("MSFullscreenChange", fullScreenChange, false);
- }
- var canvasContainer = document.createElement("div");
- canvas.parentNode.insertBefore(canvasContainer, canvas);
- canvasContainer.appendChild(canvas);
- canvasContainer.requestFullScreen = canvasContainer["requestFullScreen"] || canvasContainer["mozRequestFullScreen"] || canvasContainer["msRequestFullscreen"] || (canvasContainer["webkitRequestFullScreen"] ? (function() {
- canvasContainer["webkitRequestFullScreen"](Element["ALLOW_KEYBOARD_INPUT"]);
- }) : null);
- if (vrDevice) {
- canvasContainer.requestFullScreen({
- vrDisplay: vrDevice
- });
- } else {
- canvasContainer.requestFullScreen();
- }
- }),
- nextRAF: 0,
- fakeRequestAnimationFrame: (function(func) {
- var now = Date.now();
- if (Browser.nextRAF === 0) {
- Browser.nextRAF = now + 1e3 / 60;
- } else {
- while (now + 2 >= Browser.nextRAF) {
- Browser.nextRAF += 1e3 / 60;
- }
- }
- var delay = Math.max(Browser.nextRAF - now, 0);
- setTimeout(func, delay);
- }),
- requestAnimationFrame: function requestAnimationFrame(func) {
- if (typeof window === "undefined") {
- Browser.fakeRequestAnimationFrame(func);
- } else {
- if (!window.requestAnimationFrame) {
- window.requestAnimationFrame = window["requestAnimationFrame"] || window["mozRequestAnimationFrame"] || window["webkitRequestAnimationFrame"] || window["msRequestAnimationFrame"] || window["oRequestAnimationFrame"] || Browser.fakeRequestAnimationFrame;
- }
- window.requestAnimationFrame(func);
- }
- },
- safeCallback: (function(func) {
- return (function() {
- if (!ABORT) return func.apply(null, arguments);
- });
- }),
- allowAsyncCallbacks: true,
- queuedAsyncCallbacks: [],
- pauseAsyncCallbacks: (function() {
- Browser.allowAsyncCallbacks = false;
- }),
- resumeAsyncCallbacks: (function() {
- Browser.allowAsyncCallbacks = true;
- if (Browser.queuedAsyncCallbacks.length > 0) {
- var callbacks = Browser.queuedAsyncCallbacks;
- Browser.queuedAsyncCallbacks = [];
- callbacks.forEach((function(func) {
- func();
- }));
- }
- }),
- safeRequestAnimationFrame: (function(func) {
- return Browser.requestAnimationFrame((function() {
- if (ABORT) return;
- if (Browser.allowAsyncCallbacks) {
- func();
- } else {
- Browser.queuedAsyncCallbacks.push(func);
- }
- }));
- }),
- safeSetTimeout: (function(func, timeout) {
- Module["noExitRuntime"] = true;
- return setTimeout((function() {
- if (ABORT) return;
- if (Browser.allowAsyncCallbacks) {
- func();
- } else {
- Browser.queuedAsyncCallbacks.push(func);
- }
- }), timeout);
- }),
- safeSetInterval: (function(func, timeout) {
- Module["noExitRuntime"] = true;
- return setInterval((function() {
- if (ABORT) return;
- if (Browser.allowAsyncCallbacks) {
- func();
- }
- }), timeout);
- }),
- getMimetype: (function(name) {
- return {
- "jpg": "image/jpeg",
- "jpeg": "image/jpeg",
- "png": "image/png",
- "bmp": "image/bmp",
- "ogg": "audio/ogg",
- "wav": "audio/wav",
- "mp3": "audio/mpeg"
- }[name.substr(name.lastIndexOf(".") + 1)];
- }),
- getUserMedia: (function(func) {
- if (!window.getUserMedia) {
- window.getUserMedia = navigator["getUserMedia"] || navigator["mozGetUserMedia"];
- }
- window.getUserMedia(func);
- }),
- getMovementX: (function(event) {
- return event["movementX"] || event["mozMovementX"] || event["webkitMovementX"] || 0;
- }),
- getMovementY: (function(event) {
- return event["movementY"] || event["mozMovementY"] || event["webkitMovementY"] || 0;
- }),
- getMouseWheelDelta: (function(event) {
- var delta = 0;
- switch (event.type) {
- case "DOMMouseScroll":
- delta = event.detail;
- break;
- case "mousewheel":
- delta = event.wheelDelta;
- break;
- case "wheel":
- delta = event["deltaY"];
- break;
- default:
- throw "unrecognized mouse wheel event: " + event.type;
- }
- return delta;
- }),
- mouseX: 0,
- mouseY: 0,
- mouseMovementX: 0,
- mouseMovementY: 0,
- touches: {},
- lastTouches: {},
- calculateMouseEvent: (function(event) {
- if (Browser.pointerLock) {
- if (event.type != "mousemove" && "mozMovementX" in event) {
- Browser.mouseMovementX = Browser.mouseMovementY = 0;
- } else {
- Browser.mouseMovementX = Browser.getMovementX(event);
- Browser.mouseMovementY = Browser.getMovementY(event);
- }
- if (typeof SDL != "undefined") {
- Browser.mouseX = SDL.mouseX + Browser.mouseMovementX;
- Browser.mouseY = SDL.mouseY + Browser.mouseMovementY;
- } else {
- Browser.mouseX += Browser.mouseMovementX;
- Browser.mouseY += Browser.mouseMovementY;
- }
- } else {
- var rect = Module["canvas"].getBoundingClientRect();
- var cw = Module["canvas"].width;
- var ch = Module["canvas"].height;
- var scrollX = typeof window.scrollX !== "undefined" ? window.scrollX : window.pageXOffset;
- var scrollY = typeof window.scrollY !== "undefined" ? window.scrollY : window.pageYOffset;
- if (event.type === "touchstart" || event.type === "touchend" || event.type === "touchmove") {
- var touch = event.touch;
- if (touch === undefined) {
- return;
- }
- var adjustedX = touch.pageX - (scrollX + rect.left);
- var adjustedY = touch.pageY - (scrollY + rect.top);
- adjustedX = adjustedX * (cw / rect.width);
- adjustedY = adjustedY * (ch / rect.height);
- var coords = {
- x: adjustedX,
- y: adjustedY
- };
- if (event.type === "touchstart") {
- Browser.lastTouches[touch.identifier] = coords;
- Browser.touches[touch.identifier] = coords;
- } else if (event.type === "touchend" || event.type === "touchmove") {
- var last = Browser.touches[touch.identifier];
- if (!last) last = coords;
- Browser.lastTouches[touch.identifier] = last;
- Browser.touches[touch.identifier] = coords;
- }
- return;
- }
- var x = event.pageX - (scrollX + rect.left);
- var y = event.pageY - (scrollY + rect.top);
- x = x * (cw / rect.width);
- y = y * (ch / rect.height);
- Browser.mouseMovementX = x - Browser.mouseX;
- Browser.mouseMovementY = y - Browser.mouseY;
- Browser.mouseX = x;
- Browser.mouseY = y;
- }
- }),
- xhrLoad: (function(url, onload, onerror) {
- var xhr = new XMLHttpRequest;
- xhr.open("GET", url, true);
- xhr.responseType = "arraybuffer";
- xhr.onload = function xhr_onload() {
- if (xhr.status == 200 || xhr.status == 0 && xhr.response) {
- onload(xhr.response);
- } else {
- onerror();
- }
- };
- xhr.onerror = onerror;
- xhr.send(null);
- }),
- asyncLoad: (function(url, onload, onerror, noRunDep) {
- Browser.xhrLoad(url, (function(arrayBuffer) {
- assert(arrayBuffer, 'Loading data file "' + url + '" failed (no arrayBuffer).');
- onload(new Uint8Array(arrayBuffer));
- if (!noRunDep) removeRunDependency("al " + url);
- }), (function(event) {
- if (onerror) {
- onerror();
- } else {
- throw 'Loading data file "' + url + '" failed.';
- }
- }));
- if (!noRunDep) addRunDependency("al " + url);
- }),
- resizeListeners: [],
- updateResizeListeners: (function() {
- var canvas = Module["canvas"];
- Browser.resizeListeners.forEach((function(listener) {
- listener(canvas.width, canvas.height);
- }));
- }),
- setCanvasSize: (function(width, height, noUpdates) {
- var canvas = Module["canvas"];
- Browser.updateCanvasDimensions(canvas, width, height);
- if (!noUpdates) Browser.updateResizeListeners();
- }),
- windowedWidth: 0,
- windowedHeight: 0,
- setFullScreenCanvasSize: (function() {
- if (typeof SDL != "undefined") {
- var flags = HEAPU32[SDL.screen + Runtime.QUANTUM_SIZE * 0 >> 2];
- flags = flags | 8388608;
- HEAP32[SDL.screen + Runtime.QUANTUM_SIZE * 0 >> 2] = flags;
- }
- Browser.updateResizeListeners();
- }),
- setWindowedCanvasSize: (function() {
- if (typeof SDL != "undefined") {
- var flags = HEAPU32[SDL.screen + Runtime.QUANTUM_SIZE * 0 >> 2];
- flags = flags & ~8388608;
- HEAP32[SDL.screen + Runtime.QUANTUM_SIZE * 0 >> 2] = flags;
- }
- Browser.updateResizeListeners();
- }),
- updateCanvasDimensions: (function(canvas, wNative, hNative) {
- if (wNative && hNative) {
- canvas.widthNative = wNative;
- canvas.heightNative = hNative;
- } else {
- wNative = canvas.widthNative;
- hNative = canvas.heightNative;
- }
- var w = wNative;
- var h = hNative;
- if (Module["forcedAspectRatio"] && Module["forcedAspectRatio"] > 0) {
- if (w / h < Module["forcedAspectRatio"]) {
- w = Math.round(h * Module["forcedAspectRatio"]);
- } else {
- h = Math.round(w / Module["forcedAspectRatio"]);
- }
- }
- if ((document["webkitFullScreenElement"] || document["webkitFullscreenElement"] || document["mozFullScreenElement"] || document["mozFullscreenElement"] || document["fullScreenElement"] || document["fullscreenElement"] || document["msFullScreenElement"] || document["msFullscreenElement"] || document["webkitCurrentFullScreenElement"]) === canvas.parentNode && typeof screen != "undefined") {
- var factor = Math.min(screen.width / w, screen.height / h);
- w = Math.round(w * factor);
- h = Math.round(h * factor);
- }
- if (Browser.resizeCanvas) {
- if (canvas.width != w) canvas.width = w;
- if (canvas.height != h) canvas.height = h;
- if (typeof canvas.style != "undefined") {
- canvas.style.removeProperty("width");
- canvas.style.removeProperty("height");
- }
- } else {
- if (canvas.width != wNative) canvas.width = wNative;
- if (canvas.height != hNative) canvas.height = hNative;
- if (typeof canvas.style != "undefined") {
- if (w != wNative || h != hNative) {
- canvas.style.setProperty("width", w + "px", "important");
- canvas.style.setProperty("height", h + "px", "important");
- } else {
- canvas.style.removeProperty("width");
- canvas.style.removeProperty("height");
- }
- }
- }
- }),
- wgetRequests: {},
- nextWgetRequestHandle: 0,
- getNextWgetRequestHandle: (function() {
- var handle = Browser.nextWgetRequestHandle;
- Browser.nextWgetRequestHandle++;
- return handle;
- })
-};
-function _pthread_setspecific(key, value) {
- if (!(key in PTHREAD_SPECIFIC)) {
- return ERRNO_CODES.EINVAL;
- }
- PTHREAD_SPECIFIC[key] = value;
- return 0;
-}
-function _malloc(bytes) {
- var ptr = Runtime.dynamicAlloc(bytes + 8);
- return ptr + 8 & 4294967288;
-}
-Module["_malloc"] = _malloc;
-function ___cxa_allocate_exception(size) {
- return _malloc(size);
-}
-var _ceilf = Math_ceil;
-var _llvm_ctlz_i32 = true;
+function _pthread_mutex_unlock() {}
function _time(ptr) {
var ret = Date.now() / 1e3 | 0;
if (ptr) {
@@ -6170,191 +5390,6 @@ function _time(ptr) {
}
return ret;
}
-var _emscripten_asm_const = true;
-function ___cxa_guard_acquire(variable) {
- if (!HEAP8[variable >> 0]) {
- HEAP8[variable >> 0] = 1;
- return 1;
- }
- return 0;
-}
-function ___cxa_begin_catch(ptr) {
- __ZSt18uncaught_exceptionv.uncaught_exception--;
- EXCEPTIONS.caught.push(ptr);
- EXCEPTIONS.addRef(EXCEPTIONS.deAdjust(ptr));
- return ptr;
-}
-function ___syscall6(which, varargs) {
- SYSCALLS.varargs = varargs;
- try {
- var stream = SYSCALLS.getStreamFromFD();
- FS.close(stream);
- return 0;
- } catch (e) {
- if (typeof FS === "undefined" || !(e instanceof FS.ErrnoError)) abort(e);
- return -e.errno;
- }
-}
-function _sysconf(name) {
- switch (name) {
- case 30:
- return PAGE_SIZE;
- case 85:
- return totalMemory / PAGE_SIZE;
- case 132:
- case 133:
- case 12:
- case 137:
- case 138:
- case 15:
- case 235:
- case 16:
- case 17:
- case 18:
- case 19:
- case 20:
- case 149:
- case 13:
- case 10:
- case 236:
- case 153:
- case 9:
- case 21:
- case 22:
- case 159:
- case 154:
- case 14:
- case 77:
- case 78:
- case 139:
- case 80:
- case 81:
- case 82:
- case 68:
- case 67:
- case 164:
- case 11:
- case 29:
- case 47:
- case 48:
- case 95:
- case 52:
- case 51:
- case 46:
- return 200809;
- case 79:
- return 0;
- case 27:
- case 246:
- case 127:
- case 128:
- case 23:
- case 24:
- case 160:
- case 161:
- case 181:
- case 182:
- case 242:
- case 183:
- case 184:
- case 243:
- case 244:
- case 245:
- case 165:
- case 178:
- case 179:
- case 49:
- case 50:
- case 168:
- case 169:
- case 175:
- case 170:
- case 171:
- case 172:
- case 97:
- case 76:
- case 32:
- case 173:
- case 35:
- return -1;
- case 176:
- case 177:
- case 7:
- case 155:
- case 8:
- case 157:
- case 125:
- case 126:
- case 92:
- case 93:
- case 129:
- case 130:
- case 131:
- case 94:
- case 91:
- return 1;
- case 74:
- case 60:
- case 69:
- case 70:
- case 4:
- return 1024;
- case 31:
- case 42:
- case 72:
- return 32;
- case 87:
- case 26:
- case 33:
- return 2147483647;
- case 34:
- case 1:
- return 47839;
- case 38:
- case 36:
- return 99;
- case 43:
- case 37:
- return 2048;
- case 0:
- return 2097152;
- case 3:
- return 65536;
- case 28:
- return 32768;
- case 44:
- return 32767;
- case 75:
- return 16384;
- case 39:
- return 1e3;
- case 89:
- return 700;
- case 71:
- return 256;
- case 40:
- return 255;
- case 2:
- return 100;
- case 180:
- return 64;
- case 25:
- return 20;
- case 5:
- return 16;
- case 6:
- return 6;
- case 73:
- return 4;
- case 84:
- {
- if (typeof navigator === "object") return navigator["hardwareConcurrency"] || 1;
- return 1;
- }
- }
- ___setErrNo(ERRNO_CODES.EINVAL);
- return -1;
-}
function _pthread_self() {
return 0;
}
@@ -6423,27 +5458,6 @@ if (ENVIRONMENT_IS_NODE) {
var NODEJS_PATH = require("path");
NODEFS.staticInit();
}
-Module["requestFullScreen"] = function Module_requestFullScreen(lockPointer, resizeCanvas, vrDevice) {
- Browser.requestFullScreen(lockPointer, resizeCanvas, vrDevice);
-};
-Module["requestAnimationFrame"] = function Module_requestAnimationFrame(func) {
- Browser.requestAnimationFrame(func);
-};
-Module["setCanvasSize"] = function Module_setCanvasSize(width, height, noUpdates) {
- Browser.setCanvasSize(width, height, noUpdates);
-};
-Module["pauseMainLoop"] = function Module_pauseMainLoop() {
- Browser.mainLoop.pause();
-};
-Module["resumeMainLoop"] = function Module_resumeMainLoop() {
- Browser.mainLoop.resume();
-};
-Module["getUserMedia"] = function Module_getUserMedia() {
- Browser.getUserMedia();
-};
-Module["createContext"] = function Module_createContext(canvas, useWebGL, setInModule, webGLContextAttributes) {
- return Browser.createContext(canvas, useWebGL, setInModule, webGLContextAttributes);
-};
STACK_BASE = STACKTOP = Runtime.alignMemory(STATICTOP);
staticSealed = true;
STACK_MAX = STACK_BASE + TOTAL_STACK;
@@ -6624,49 +5638,40 @@ Module.asmLibraryArg = {
"_strftime": _strftime,
"_pthread_cond_wait": _pthread_cond_wait,
"___resumeException": ___resumeException,
- "___syscall54": ___syscall54,
+ "_pthread_key_create": _pthread_key_create,
"_abort": _abort,
- "___cxa_guard_acquire": ___cxa_guard_acquire,
- "___setErrNo": ___setErrNo,
+ "_llvm_fabs_f64": _llvm_fabs_f64,
"___gxx_personality_v0": ___gxx_personality_v0,
- "_fabsf": _fabsf,
"___assert_fail": ___assert_fail,
"___cxa_allocate_exception": ___cxa_allocate_exception,
"___cxa_find_matching_catch": ___cxa_find_matching_catch,
- "_floor": _floor,
"_emscripten_asm_const_ii": _emscripten_asm_const_ii,
- "_pthread_cond_broadcast": _pthread_cond_broadcast,
+ "__isLeapYear": __isLeapYear,
"___cxa_guard_release": ___cxa_guard_release,
"_emscripten_asm_const_i": _emscripten_asm_const_i,
"__addDays": __addDays,
"_emscripten_asm_const_did": _emscripten_asm_const_did,
"_strftime_l": _strftime_l,
- "_pthread_key_create": _pthread_key_create,
- "_emscripten_set_main_loop_timing": _emscripten_set_main_loop_timing,
+ "___setErrNo": ___setErrNo,
"_emscripten_asm_const_id": _emscripten_asm_const_id,
"_sbrk": _sbrk,
- "_llvm_fabs_f64": _llvm_fabs_f64,
"___cxa_begin_catch": ___cxa_begin_catch,
"_emscripten_memcpy_big": _emscripten_memcpy_big,
"_emscripten_asm_const_v": _emscripten_asm_const_v,
"__ZSt18uncaught_exceptionv": __ZSt18uncaught_exceptionv,
"_sysconf": _sysconf,
- "_ceilf": _ceilf,
"_pthread_getspecific": _pthread_getspecific,
"_llvm_fabs_f32": _llvm_fabs_f32,
"__arraySum": __arraySum,
"_emscripten_asm_const_di": _emscripten_asm_const_di,
- "_fabs": _fabs,
+ "_emscripten_asm_const_dii": _emscripten_asm_const_dii,
"_pthread_self": _pthread_self,
"_pthread_mutex_unlock": _pthread_mutex_unlock,
"_pthread_once": _pthread_once,
- "_sqrt": _sqrt,
"_emscripten_asm_const_iid": _emscripten_asm_const_iid,
- "_floorf": _floorf,
- "_sqrtf": _sqrtf,
+ "___syscall54": ___syscall54,
"___unlock": ___unlock,
- "__isLeapYear": __isLeapYear,
- "_emscripten_set_main_loop": _emscripten_set_main_loop,
+ "_pthread_cond_broadcast": _pthread_cond_broadcast,
"_emscripten_asm_const_iii": _emscripten_asm_const_iii,
"_pthread_setspecific": _pthread_setspecific,
"___cxa_atexit": ___cxa_atexit,
@@ -6675,12 +5680,11 @@ Module.asmLibraryArg = {
"___lock": ___lock,
"___syscall6": ___syscall6,
"_pthread_cleanup_push": _pthread_cleanup_push,
- "_emscripten_asm_const_dii": _emscripten_asm_const_dii,
+ "_time": _time,
"_pthread_mutex_lock": _pthread_mutex_lock,
- "_ceil": _ceil,
+ "___cxa_guard_acquire": ___cxa_guard_acquire,
"_atexit": _atexit,
"___syscall140": ___syscall140,
- "_time": _time,
"___syscall145": ___syscall145,
"___syscall146": ___syscall146,
"STACKTOP": STACKTOP,
@@ -6780,49 +5784,40 @@ var asm = (function(global,env,buffer) {
var _strftime=env._strftime;
var _pthread_cond_wait=env._pthread_cond_wait;
var ___resumeException=env.___resumeException;
- var ___syscall54=env.___syscall54;
+ var _pthread_key_create=env._pthread_key_create;
var _abort=env._abort;
- var ___cxa_guard_acquire=env.___cxa_guard_acquire;
- var ___setErrNo=env.___setErrNo;
+ var _llvm_fabs_f64=env._llvm_fabs_f64;
var ___gxx_personality_v0=env.___gxx_personality_v0;
- var _fabsf=env._fabsf;
var ___assert_fail=env.___assert_fail;
var ___cxa_allocate_exception=env.___cxa_allocate_exception;
var ___cxa_find_matching_catch=env.___cxa_find_matching_catch;
- var _floor=env._floor;
var _emscripten_asm_const_ii=env._emscripten_asm_const_ii;
- var _pthread_cond_broadcast=env._pthread_cond_broadcast;
+ var __isLeapYear=env.__isLeapYear;
var ___cxa_guard_release=env.___cxa_guard_release;
var _emscripten_asm_const_i=env._emscripten_asm_const_i;
var __addDays=env.__addDays;
var _emscripten_asm_const_did=env._emscripten_asm_const_did;
var _strftime_l=env._strftime_l;
- var _pthread_key_create=env._pthread_key_create;
- var _emscripten_set_main_loop_timing=env._emscripten_set_main_loop_timing;
+ var ___setErrNo=env.___setErrNo;
var _emscripten_asm_const_id=env._emscripten_asm_const_id;
var _sbrk=env._sbrk;
- var _llvm_fabs_f64=env._llvm_fabs_f64;
var ___cxa_begin_catch=env.___cxa_begin_catch;
var _emscripten_memcpy_big=env._emscripten_memcpy_big;
var _emscripten_asm_const_v=env._emscripten_asm_const_v;
var __ZSt18uncaught_exceptionv=env.__ZSt18uncaught_exceptionv;
var _sysconf=env._sysconf;
- var _ceilf=env._ceilf;
var _pthread_getspecific=env._pthread_getspecific;
var _llvm_fabs_f32=env._llvm_fabs_f32;
var __arraySum=env.__arraySum;
var _emscripten_asm_const_di=env._emscripten_asm_const_di;
- var _fabs=env._fabs;
+ var _emscripten_asm_const_dii=env._emscripten_asm_const_dii;
var _pthread_self=env._pthread_self;
var _pthread_mutex_unlock=env._pthread_mutex_unlock;
var _pthread_once=env._pthread_once;
- var _sqrt=env._sqrt;
var _emscripten_asm_const_iid=env._emscripten_asm_const_iid;
- var _floorf=env._floorf;
- var _sqrtf=env._sqrtf;
+ var ___syscall54=env.___syscall54;
var ___unlock=env.___unlock;
- var __isLeapYear=env.__isLeapYear;
- var _emscripten_set_main_loop=env._emscripten_set_main_loop;
+ var _pthread_cond_broadcast=env._pthread_cond_broadcast;
var _emscripten_asm_const_iii=env._emscripten_asm_const_iii;
var _pthread_setspecific=env._pthread_setspecific;
var ___cxa_atexit=env.___cxa_atexit;
@@ -6831,12 +5826,11 @@ var asm = (function(global,env,buffer) {
var ___lock=env.___lock;
var ___syscall6=env.___syscall6;
var _pthread_cleanup_push=env._pthread_cleanup_push;
- var _emscripten_asm_const_dii=env._emscripten_asm_const_dii;
+ var _time=env._time;
var _pthread_mutex_lock=env._pthread_mutex_lock;
- var _ceil=env._ceil;
+ var ___cxa_guard_acquire=env.___cxa_guard_acquire;
var _atexit=env._atexit;
var ___syscall140=env.___syscall140;
- var _time=env._time;
var ___syscall145=env.___syscall145;
var ___syscall146=env.___syscall146;
var tempFloat = 0.0;
@@ -6856,6 +5850,7 @@ function _emscripten_replace_memory(newBuffer) {
}
// EMSCRIPTEN_START_FUNCS
+
function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73, i72, i74) {
i73 = i73 | 0;
i72 = i72 | 0;
@@ -6874,7 +5869,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
i62 = i76 + 560 | 0;
i64 = i76 + 548 | 0;
i65 = i76 + 536 | 0;
- i48 = i76 + 384 | 0;
+ i47 = i76 + 384 | 0;
i57 = i76 + 520 | 0;
i55 = i76 + 512 | 0;
i20 = i76 + 496 | 0;
@@ -6889,20 +5884,20 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
i51 = i76 + 396 | 0;
i52 = i76 + 372 | 0;
i39 = i76 + 360 | 0;
- i44 = i76 + 344 | 0;
+ i43 = i76 + 344 | 0;
i41 = i76 + 340 | 0;
i13 = i76 + 328 | 0;
- i16 = i76 + 304 | 0;
- i15 = i76 + 288 | 0;
+ i15 = i76 + 304 | 0;
+ i16 = i76 + 288 | 0;
i17 = i76 + 276 | 0;
i18 = i76 + 264 | 0;
- i25 = i76 + 240 | 0;
- i24 = i76 + 228 | 0;
+ i24 = i76 + 240 | 0;
+ i25 = i76 + 228 | 0;
i26 = i76 + 216 | 0;
i27 = i76 + 204 | 0;
i28 = i76 + 192 | 0;
- i32 = i76 + 168 | 0;
- i30 = i76 + 156 | 0;
+ i31 = i76 + 168 | 0;
+ i32 = i76 + 156 | 0;
i33 = i76 + 144 | 0;
i42 = i76 + 128 | 0;
i37 = i76 + 120 | 0;
@@ -6924,11 +5919,11 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
{
HEAP32[i71 >> 2] = 0;
i2 = __ZN10__cxxabiv112_GLOBAL__N_119parse_cv_qualifiersEPKcS2_Rj(i73, i72, i71) | 0;
- L5 : do if ((i2 | 0) != (i73 | 0) ? (i3 = HEAP8[i2 >> 0] | 0, i45 = i74 + 4 | 0, i10 = ((HEAP32[i45 >> 2] | 0) - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0, i43 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i2, i72, i74) | 0, i45 = ((HEAP32[i45 >> 2] | 0) - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0, (i43 | 0) != (i2 | 0)) : 0) {
- i16 = i3 << 24 >> 24 == 70;
- i15 = i74 + 20 | 0;
- i2 = HEAP32[i15 >> 2] | 0;
- L8 : do if (i16) {
+ L5 : do if ((i2 | 0) != (i73 | 0) ? (i3 = HEAP8[i2 >> 0] | 0, i45 = i74 + 4 | 0, i10 = ((HEAP32[i45 >> 2] | 0) - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0, i44 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i2, i72, i74) | 0, i45 = ((HEAP32[i45 >> 2] | 0) - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0, (i44 | 0) != (i2 | 0)) : 0) {
+ i15 = i3 << 24 >> 24 == 70;
+ i16 = i74 + 20 | 0;
+ i2 = HEAP32[i16 >> 2] | 0;
+ L8 : do if (i15) {
i3 = i2 + -16 | 0;
while (1) {
if ((i2 | 0) == (i3 | 0)) {
@@ -6936,27 +5931,27 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
break L8;
}
i73 = i2 + -16 | 0;
- HEAP32[i15 >> 2] = i73;
+ HEAP32[i16 >> 2] = i73;
__ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i73);
- i2 = HEAP32[i15 >> 2] | 0;
+ i2 = HEAP32[i16 >> 2] | 0;
}
} while (0);
- i8 = i74 + 16 | 0;
- i7 = HEAP32[i74 + 12 >> 2] | 0;
+ i7 = i74 + 16 | 0;
+ i8 = HEAP32[i74 + 12 >> 2] | 0;
i73 = HEAP32[i74 + 24 >> 2] | 0;
i3 = i73;
if (i2 >>> 0 < i73 >>> 0) {
HEAP32[i2 >> 2] = 0;
HEAP32[i2 + 4 >> 2] = 0;
HEAP32[i2 + 8 >> 2] = 0;
- HEAP32[i2 + 12 >> 2] = i7;
- HEAP32[i15 >> 2] = (HEAP32[i15 >> 2] | 0) + 16;
+ HEAP32[i2 + 12 >> 2] = i8;
+ HEAP32[i16 >> 2] = (HEAP32[i16 >> 2] | 0) + 16;
} else {
- i4 = HEAP32[i8 >> 2] | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
i73 = i2 - i4 | 0;
i6 = i73 >> 4;
i5 = i6 + 1 | 0;
- if ((i73 | 0) < -16) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i8);
+ if ((i73 | 0) < -16) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
i2 = i3 - i4 | 0;
if (i2 >> 4 >>> 0 < 1073741823) {
i2 = i2 >> 3;
@@ -6968,59 +5963,59 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
HEAP32[i72 >> 2] = 0;
HEAP32[i72 + 4 >> 2] = 0;
HEAP32[i72 + 8 >> 2] = 0;
- HEAP32[i72 + 12 >> 2] = i7;
+ HEAP32[i72 + 12 >> 2] = i8;
HEAP32[i73 >> 2] = i72 + 16;
- __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i8, i75);
+ __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i7, i75);
__ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i75);
}
- i14 = HEAP32[i71 >> 2] | 0;
- i12 = (i14 & 1 | 0) == 0;
- i13 = (i14 & 2 | 0) == 0;
- i14 = (i14 & 4 | 0) == 0;
- i11 = i75 + 8 | 0;
+ i13 = HEAP32[i71 >> 2] | 0;
+ i11 = (i13 & 1 | 0) == 0;
+ i12 = (i13 & 2 | 0) == 0;
+ i13 = (i13 & 4 | 0) == 0;
+ i14 = i75 + 8 | 0;
while (1) {
if (i10 >>> 0 >= i45 >>> 0) {
- i1 = i43;
+ i1 = i44;
break L5;
}
- if (i16) {
- i5 = HEAP32[i74 >> 2] | 0;
- i8 = i5 + (i10 * 24 | 0) + 12 | 0;
- i2 = HEAP8[i8 >> 0] | 0;
- i4 = (i2 & 1) == 0;
- if (i4) {
+ if (i15) {
+ i4 = HEAP32[i74 >> 2] | 0;
+ i8 = i4 + (i10 * 24 | 0) + 12 | 0;
+ i5 = HEAP8[i8 >> 0] | 0;
+ i2 = (i5 & 1) == 0;
+ if (i2) {
+ i6 = (i5 & 255) >>> 1;
i3 = i8 + 1 | 0;
- i7 = (i2 & 255) >>> 1;
} else {
- i3 = HEAP32[i5 + (i10 * 24 | 0) + 20 >> 2] | 0;
- i7 = HEAP32[i5 + (i10 * 24 | 0) + 16 >> 2] | 0;
+ i6 = HEAP32[i4 + (i10 * 24 | 0) + 16 >> 2] | 0;
+ i3 = HEAP32[i4 + (i10 * 24 | 0) + 20 >> 2] | 0;
}
- i6 = i7 + -2 | 0;
- if ((HEAP8[i3 + i6 >> 0] | 0) == 38) i2 = i7 + -3 | 0; else {
- if (i4) {
- i3 = (i2 & 255) >>> 1;
- i2 = i8 + 1 | 0;
+ i7 = i6 + -2 | 0;
+ if ((HEAP8[i3 + i7 >> 0] | 0) == 38) i2 = i6 + -3 | 0; else {
+ if (i2) {
+ i3 = i8 + 1 | 0;
+ i2 = (i5 & 255) >>> 1;
} else {
- i3 = HEAP32[i5 + (i10 * 24 | 0) + 16 >> 2] | 0;
- i2 = HEAP32[i5 + (i10 * 24 | 0) + 20 >> 2] | 0;
+ i3 = HEAP32[i4 + (i10 * 24 | 0) + 20 >> 2] | 0;
+ i2 = HEAP32[i4 + (i10 * 24 | 0) + 16 >> 2] | 0;
}
- i2 = (HEAP8[i2 + i3 + -1 >> 0] | 0) == 38 ? i6 : i7;
+ i2 = (HEAP8[i3 + i2 + -1 >> 0] | 0) == 38 ? i7 : i6;
}
- if (!i12) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i8, i2, 34006) | 0;
+ if (!i11) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i8, i2, 35470) | 0;
i2 = i2 + 6 | 0;
}
- if (!i13) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i74 >> 2] | 0) + (i10 * 24 | 0) + 12 | 0, i2, 34013) | 0;
+ if (!i12) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i74 >> 2] | 0) + (i10 * 24 | 0) + 12 | 0, i2, 35477) | 0;
i2 = i2 + 9 | 0;
}
- if (!i14) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i74 >> 2] | 0) + (i10 * 24 | 0) + 12 | 0, i2, 34023) | 0;
+ if (!i13) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i74 >> 2] | 0) + (i10 * 24 | 0) + 12 | 0, i2, 35487) | 0;
} else {
- if (!i12) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i74 >> 2] | 0) + (i10 * 24 | 0) | 0, 34006) | 0;
- if (!i13) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i74 >> 2] | 0) + (i10 * 24 | 0) | 0, 34013) | 0;
- if (!i14) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i74 >> 2] | 0) + (i10 * 24 | 0) | 0, 34023) | 0;
+ if (!i11) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i74 >> 2] | 0) + (i10 * 24 | 0) | 0, 35470) | 0;
+ if (!i12) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i74 >> 2] | 0) + (i10 * 24 | 0) | 0, 35477) | 0;
+ if (!i13) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i74 >> 2] | 0) + (i10 * 24 | 0) | 0, 35487) | 0;
}
- i7 = HEAP32[i15 >> 2] | 0;
+ i7 = HEAP32[i16 >> 2] | 0;
i2 = i7 + -16 | 0;
i8 = HEAP32[i74 >> 2] | 0;
i9 = i8 + (i10 * 24 | 0) | 0;
@@ -7040,10 +6035,10 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
i3 = i3 >>> 0 < i4 >>> 0 ? i4 : i3;
} else i3 = 2147483647;
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i75, i3, i6, i7 + -4 | 0);
- i73 = HEAP32[i11 >> 2] | 0;
+ i73 = HEAP32[i14 >> 2] | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i73, i9);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i73 + 12 | 0, i8 + (i10 * 24 | 0) + 12 | 0);
- HEAP32[i11 >> 2] = i73 + 24;
+ HEAP32[i14 >> 2] = i73 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i2, i75);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i75);
} else {
@@ -7075,25 +6070,25 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
i1 = i73;
break;
}
- i3 = i74 + 4 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((HEAP32[i74 >> 2] | 0) == (i2 | 0)) {
+ i2 = i74 + 4 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((HEAP32[i74 >> 2] | 0) == (i3 | 0)) {
i1 = i73;
break;
}
- i72 = i2 + -12 | 0;
+ i72 = i3 + -12 | 0;
i70 = HEAP8[i72 >> 0] | 0;
i71 = (i70 & 1) == 0;
- i70 = i71 ? (i70 & 255) >>> 1 : HEAP32[i2 + -8 >> 2] | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i75, i71 ? i72 + 1 | 0 : HEAP32[i2 + -4 >> 2] | 0, i70 >>> 0 < 2 ? i70 : 2);
+ i70 = i71 ? (i70 & 255) >>> 1 : HEAP32[i3 + -8 >> 2] | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i75, i71 ? i72 + 1 | 0 : HEAP32[i3 + -4 >> 2] | 0, i70 >>> 0 < 2 ? i70 : 2);
i70 = HEAP8[i75 >> 0] | 0;
i72 = (i70 & 1) == 0;
i70 = i72 ? (i70 & 255) >>> 1 : HEAP32[i75 + 4 >> 2] | 0;
i71 = i70 >>> 0 > 2;
- i72 = _memcmp(i72 ? i75 + 1 | 0 : HEAP32[i75 + 8 >> 2] | 0, 34347, i71 ? 2 : i70) | 0;
+ i72 = _memcmp(i72 ? i75 + 1 | 0 : HEAP32[i75 + 8 >> 2] | 0, 35811, i71 ? 2 : i70) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i75);
- if (!(((i72 | 0) == 0 ? (i70 >>> 0 < 2 ? -1 : i71 & 1) : i72) | 0)) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE5eraseEjj((HEAP32[i3 >> 2] | 0) + -12 | 0);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i3 >> 2] | 0) + -12 | 0, 0, 34350) | 0;
+ if (!(((i72 | 0) == 0 ? (i70 >>> 0 < 2 ? -1 : i71 & 1) : i72) | 0)) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE5eraseEjj((HEAP32[i2 >> 2] | 0) + -12 | 0);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i2 >> 2] | 0) + -12 | 0, 0, 35814) | 0;
break;
}
if ((i1 + -49 & 255) < 9) {
@@ -7112,65 +6107,65 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
i1 = i73;
break;
}
- i3 = i74 + 4 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((HEAP32[i74 >> 2] | 0) == (i2 | 0)) {
+ i2 = i74 + 4 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((HEAP32[i74 >> 2] | 0) == (i3 | 0)) {
i1 = i73;
break;
}
- i72 = i2 + -12 | 0;
+ i72 = i3 + -12 | 0;
i69 = HEAP8[i72 >> 0] | 0;
i70 = (i69 & 1) == 0;
- i69 = i70 ? (i69 & 255) >>> 1 : HEAP32[i2 + -8 >> 2] | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i71, i70 ? i72 + 1 | 0 : HEAP32[i2 + -4 >> 2] | 0, i69 >>> 0 < 2 ? i69 : 2);
+ i69 = i70 ? (i69 & 255) >>> 1 : HEAP32[i3 + -8 >> 2] | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i71, i70 ? i72 + 1 | 0 : HEAP32[i3 + -4 >> 2] | 0, i69 >>> 0 < 2 ? i69 : 2);
i69 = HEAP8[i71 >> 0] | 0;
i72 = (i69 & 1) == 0;
i69 = i72 ? (i69 & 255) >>> 1 : HEAP32[i71 + 4 >> 2] | 0;
i70 = i69 >>> 0 > 2;
- i72 = _memcmp(i72 ? i71 + 1 | 0 : HEAP32[i71 + 8 >> 2] | 0, 34347, i70 ? 2 : i69) | 0;
+ i72 = _memcmp(i72 ? i71 + 1 | 0 : HEAP32[i71 + 8 >> 2] | 0, 35811, i70 ? 2 : i69) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i71);
- if (!(((i72 | 0) == 0 ? (i69 >>> 0 < 2 ? -1 : i70 & 1) : i72) | 0)) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE5eraseEjj((HEAP32[i3 >> 2] | 0) + -12 | 0);
- i7 = (HEAP32[i3 >> 2] | 0) + -12 | 0;
- i5 = i6 - i14 | 0;
- if (i5 >>> 0 > 4294967279) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i53);
- if (i5 >>> 0 < 11) {
- HEAP8[i53 >> 0] = i5 << 1;
- i4 = i53 + 1 | 0;
+ if (!(((i72 | 0) == 0 ? (i69 >>> 0 < 2 ? -1 : i70 & 1) : i72) | 0)) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE5eraseEjj((HEAP32[i2 >> 2] | 0) + -12 | 0);
+ i7 = (HEAP32[i2 >> 2] | 0) + -12 | 0;
+ i4 = i6 - i14 | 0;
+ if (i4 >>> 0 > 4294967279) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i53);
+ if (i4 >>> 0 < 11) {
+ HEAP8[i53 >> 0] = i4 << 1;
+ i5 = i53 + 1 | 0;
} else {
- i72 = i5 + 16 & -16;
- i4 = _malloc(i72) | 0;
- HEAP32[i53 + 8 >> 2] = i4;
+ i72 = i4 + 16 & -16;
+ i5 = _malloc(i72) | 0;
+ HEAP32[i53 + 8 >> 2] = i5;
HEAP32[i53 >> 2] = i72 | 1;
- HEAP32[i53 + 4 >> 2] = i5;
+ HEAP32[i53 + 4 >> 2] = i4;
}
i2 = i14;
- i3 = i4;
+ i3 = i5;
while (1) {
if ((i2 | 0) == (i6 | 0)) break;
HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0;
i2 = i2 + 1 | 0;
i3 = i3 + 1 | 0;
}
- HEAP8[i4 + i5 >> 0] = 0;
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i53, 0, 34347) | 0;
- HEAP32[i50 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i50 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i50 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ HEAP8[i5 + i4 >> 0] = 0;
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i53, 0, 35811) | 0;
+ HEAP32[i50 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i50 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i50 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i50, 34354) | 0;
- HEAP32[i59 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i59 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i59 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i50, 35818) | 0;
+ HEAP32[i59 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i59 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i59 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
i72 = HEAP8[i59 >> 0] | 0;
i71 = (i72 & 1) == 0;
@@ -7181,17 +6176,17 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
break;
}
i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i14, i72, i74) | 0;
- if (((!((i1 | 0) == (i14 | 0) | (i1 | 0) == (i72 | 0)) ? (HEAP8[i1 >> 0] | 0) == 95 : 0) ? (i71 = i1 + 1 | 0, i47 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i71, i72, i74) | 0, (i47 | 0) != (i71 | 0)) : 0) ? (i34 = i74 + 4 | 0, i6 = HEAP32[i34 >> 2] | 0, ((i6 - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) : 0) {
+ if (((!((i1 | 0) == (i14 | 0) | (i1 | 0) == (i72 | 0)) ? (HEAP8[i1 >> 0] | 0) == 95 : 0) ? (i71 = i1 + 1 | 0, i48 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i71, i72, i74) | 0, (i48 | 0) != (i71 | 0)) : 0) ? (i34 = i74 + 4 | 0, i6 = HEAP32[i34 >> 2] | 0, ((i6 - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) : 0) {
__ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i63, i6 + -24 | 0);
i1 = HEAP32[i34 >> 2] | 0;
- i3 = i1 + -24 | 0;
- i2 = i1;
+ i2 = i1 + -24 | 0;
+ i3 = i1;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break;
- i72 = i2 + -24 | 0;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i72 = i3 + -24 | 0;
HEAP32[i34 >> 2] = i72;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i72);
- i2 = HEAP32[i34 >> 2] | 0;
+ i3 = HEAP32[i34 >> 2] | 0;
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i66, i1 + -48 | 0);
i1 = HEAP32[i34 >> 2] | 0;
@@ -7210,13 +6205,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
if (!(i1 & 1)) {
i2 = (i1 & 255) >>> 1;
if ((i1 & 255) < 22) {
- i8 = i2;
+ i8 = 1;
i4 = 10;
- i7 = 1;
+ i7 = i2;
} else {
- i8 = i2;
+ i8 = 1;
i4 = (i2 + 16 & 240) + -1 | 0;
- i7 = 1;
+ i7 = i2;
}
} else {
i8 = 0;
@@ -7227,26 +6222,26 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
if ((i4 | 0) == 10) {
i3 = i10 + 1 | 0;
i2 = HEAP32[i9 >> 2] | 0;
- if (i7) {
+ if (i8) {
_memcpy(i3 | 0, i2 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0;
_free(i2);
} else {
HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0;
_free(i2);
}
- HEAP8[i10 >> 0] = i8 << 1;
+ HEAP8[i10 >> 0] = i7 << 1;
break;
}
i2 = i4 + 1 | 0;
i3 = _malloc(i2) | 0;
if (!(i4 >>> 0 <= i5 >>> 0 & (i3 | 0) == 0)) {
- if (i7) _memcpy(i3 | 0, i10 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
+ if (i8) _memcpy(i3 | 0, i10 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
i72 = HEAP32[i9 >> 2] | 0;
HEAP8[i3 >> 0] = HEAP8[i72 >> 0] | 0;
_free(i72);
}
HEAP32[i10 >> 2] = i2 | 1;
- HEAP32[i6 >> 2] = i8;
+ HEAP32[i6 >> 2] = i7;
HEAP32[i9 >> 2] = i3;
}
}
@@ -7263,55 +6258,55 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
HEAP32[i63 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- i6 = i63 + 12 | 0;
- i70 = HEAP8[i6 >> 0] | 0;
+ i3 = i63 + 12 | 0;
+ i70 = HEAP8[i3 >> 0] | 0;
i72 = (i70 & 1) == 0;
i4 = i63 + 16 | 0;
i70 = i72 ? (i70 & 255) >>> 1 : HEAP32[i4 >> 2] | 0;
- i3 = i63 + 20 | 0;
- i5 = i6 + 1 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, i72 ? i5 : HEAP32[i3 >> 2] | 0, i70 >>> 0 < 2 ? i70 : 2);
+ i5 = i63 + 20 | 0;
+ i6 = i3 + 1 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, i72 ? i6 : HEAP32[i5 >> 2] | 0, i70 >>> 0 < 2 ? i70 : 2);
i70 = HEAP8[i56 >> 0] | 0;
i72 = (i70 & 1) == 0;
i70 = i72 ? (i70 & 255) >>> 1 : HEAP32[i56 + 4 >> 2] | 0;
i71 = i70 >>> 0 > 2;
- i72 = _memcmp(i72 ? i56 + 1 | 0 : HEAP32[i56 + 8 >> 2] | 0, 34347, i71 ? 2 : i70) | 0;
+ i72 = _memcmp(i72 ? i56 + 1 | 0 : HEAP32[i56 + 8 >> 2] | 0, 35811, i71 ? 2 : i70) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56);
- if (!(((i72 | 0) == 0 ? (i70 >>> 0 < 2 ? -1 : i71 & 1) : i72) | 0)) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE5eraseEjj(i6);
+ if (!(((i72 | 0) == 0 ? (i70 >>> 0 < 2 ? -1 : i71 & 1) : i72) | 0)) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE5eraseEjj(i3);
i7 = HEAP32[i34 >> 2] | 0;
i10 = i7 + -12 | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i48, i66);
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i48, 0, 34347) | 0;
- HEAP32[i65 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i65 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i65 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i47, i66);
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i47, 0, 35811) | 0;
+ HEAP32[i65 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i65 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i65 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i65, 34354) | 0;
- HEAP32[i64 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i64 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i64 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i65, 35818) | 0;
+ HEAP32[i64 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i64 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i64 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = HEAP8[i6 >> 0] | 0;
- i1 = (i2 & 1) == 0;
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i64, i1 ? i5 : HEAP32[i3 >> 2] | 0, i1 ? (i2 & 255) >>> 1 : HEAP32[i4 >> 2] | 0) | 0;
- HEAP32[i62 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i62 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i62 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = HEAP8[i3 >> 0] | 0;
+ i2 = (i1 & 1) == 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i64, i2 ? i6 : HEAP32[i5 >> 2] | 0, i2 ? (i1 & 255) >>> 1 : HEAP32[i4 >> 2] | 0) | 0;
+ HEAP32[i62 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i62 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i62 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
do if (HEAP8[i10 >> 0] & 1) {
i9 = i7 + -4 | 0;
@@ -7327,14 +6322,14 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
do if (!(i1 & 1)) {
i2 = (i1 & 255) >>> 1;
if ((i1 & 255) < 22) {
- i8 = i2;
+ i8 = 1;
i4 = 10;
- i7 = 1;
+ i7 = i2;
break;
}
- i8 = i2;
+ i8 = 1;
i4 = (i2 + 16 & 240) + -1 | 0;
- i7 = 1;
+ i7 = i2;
} else {
i8 = 0;
i4 = 10;
@@ -7344,26 +6339,26 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
if ((i4 | 0) == 10) {
i3 = i10 + 1 | 0;
i2 = HEAP32[i9 >> 2] | 0;
- if (i7) {
+ if (i8) {
_memcpy(i3 | 0, i2 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0;
_free(i2);
} else {
HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0;
_free(i2);
}
- HEAP8[i10 >> 0] = i8 << 1;
+ HEAP8[i10 >> 0] = i7 << 1;
break;
}
i2 = i4 + 1 | 0;
i3 = _malloc(i2) | 0;
if (i4 >>> 0 <= i5 >>> 0 & (i3 | 0) == 0) break;
- if (i7) _memcpy(i3 | 0, i10 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
+ if (i8) _memcpy(i3 | 0, i10 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
i72 = HEAP32[i9 >> 2] | 0;
HEAP8[i3 >> 0] = HEAP8[i72 >> 0] | 0;
_free(i72);
}
HEAP32[i10 >> 2] = i2 | 1;
- HEAP32[i6 >> 2] = i8;
+ HEAP32[i6 >> 2] = i7;
HEAP32[i9 >> 2] = i3;
}
} else {
@@ -7382,10 +6377,10 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i62);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i64);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i65);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i48);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i47);
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i66);
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i63);
- i1 = i47;
+ i1 = i48;
} else i1 = i73;
} else i1 = i73; while (0);
if ((i1 | 0) == (i73 | 0)) {
@@ -7459,7 +6454,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
i1 = i73;
break L1;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -24 | 0, 35588) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -24 | 0, 37052) | 0;
i6 = i74 + 16 | 0;
i2 = (HEAP32[i3 >> 2] | 0) + -24 | 0;
HEAP32[i8 >> 2] = HEAP32[i74 + 12 >> 2];
@@ -7520,12 +6515,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
}
i3 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i1, i72, i74) | 0;
if ((i3 | 0) != (i1 | 0)) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i75, 34356, 1);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i75, 35820, 1);
i11 = i74 + 4 | 0;
i10 = i75 + 4 | 0;
i7 = i71 + 8 | 0;
- i9 = i71 + 1 | 0;
- i8 = i71 + 4 | 0;
+ i8 = i71 + 1 | 0;
+ i9 = i71 + 4 | 0;
i2 = 0;
i1 = i3;
L225 : while (1) L227 : while (1) {
@@ -7567,60 +6562,60 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
default:
{}
}
- i4 = ((HEAP32[i11 >> 2] | 0) - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0;
+ i3 = ((HEAP32[i11 >> 2] | 0) - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0;
i5 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i1, i72, i74) | 0;
i6 = ((HEAP32[i11 >> 2] | 0) - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0;
- if ((i5 | 0) == (i1 | 0) | (i5 | 0) == (i72 | 0)) break L225; else i1 = i4;
+ if ((i5 | 0) == (i1 | 0) | (i5 | 0) == (i72 | 0)) break L225; else i1 = i3;
while (1) {
if (i1 >>> 0 >= i6 >>> 0) break;
i70 = HEAP8[i75 >> 0] | 0;
- if (((i70 & 1) == 0 ? (i70 & 255) >>> 1 : HEAP32[i10 >> 2] | 0) >>> 0 > 1) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i75, 34990) | 0;
+ if (((i70 & 1) == 0 ? (i70 & 255) >>> 1 : HEAP32[i10 >> 2] | 0) >>> 0 > 1) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i75, 36454) | 0;
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i71, (HEAP32[i74 >> 2] | 0) + (i1 * 24 | 0) | 0);
i70 = HEAP8[i71 >> 0] | 0;
i69 = (i70 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i75, i69 ? i9 : HEAP32[i7 >> 2] | 0, i69 ? (i70 & 255) >>> 1 : HEAP32[i8 >> 2] | 0) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i75, i69 ? i8 : HEAP32[i7 >> 2] | 0, i69 ? (i70 & 255) >>> 1 : HEAP32[i9 >> 2] | 0) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i71);
i1 = i1 + 1 | 0;
}
while (1) {
- if (i4 >>> 0 >= i6 >>> 0) {
+ if (i3 >>> 0 >= i6 >>> 0) {
i1 = i5;
continue L227;
}
- i1 = HEAP32[i11 >> 2] | 0;
- i3 = i1 + -24 | 0;
+ i4 = HEAP32[i11 >> 2] | 0;
+ i1 = i4 + -24 | 0;
while (1) {
- if ((i1 | 0) == (i3 | 0)) break;
- i70 = i1 + -24 | 0;
+ if ((i4 | 0) == (i1 | 0)) break;
+ i70 = i4 + -24 | 0;
HEAP32[i11 >> 2] = i70;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i70);
- i1 = HEAP32[i11 >> 2] | 0;
+ i4 = HEAP32[i11 >> 2] | 0;
}
- i4 = i4 + 1 | 0;
+ i3 = i3 + 1 | 0;
}
}
L250 : do if ((i67 | 0) == 170) {
- i1 = HEAP32[i11 >> 2] | 0;
- i2 = i1 + -24 | 0;
+ i2 = HEAP32[i11 >> 2] | 0;
+ i1 = i2 + -24 | 0;
while (1) {
- if ((i1 | 0) == (i2 | 0)) break L250;
- i74 = i1 + -24 | 0;
+ if ((i2 | 0) == (i1 | 0)) break L250;
+ i74 = i2 + -24 | 0;
HEAP32[i11 >> 2] = i74;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i74);
- i1 = HEAP32[i11 >> 2] | 0;
+ i2 = HEAP32[i11 >> 2] | 0;
}
} else if ((i67 | 0) == 174) {
i1 = i1 + 1 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i75, 34358) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i75, 35822) | 0;
switch (i2 | 0) {
case 1:
{
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i75, 35597) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i75, 37061) | 0;
break;
}
case 2:
{
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i75, 35600) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i75, 37064) | 0;
break;
}
default:
@@ -7628,7 +6623,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
}
i2 = HEAP32[i11 >> 2] | 0;
if ((HEAP32[i74 >> 2] | 0) != (i2 | 0)) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -24 | 0, 35447) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -24 | 0, 36911) | 0;
i72 = HEAP8[i75 >> 0] | 0;
i71 = (i72 & 1) == 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKcj((HEAP32[i11 >> 2] | 0) + -12 | 0, 0, i71 ? i75 + 1 | 0 : HEAP32[i75 + 8 >> 2] | 0, i71 ? (i72 & 255) >>> 1 : HEAP32[i10 >> 2] | 0) | 0;
@@ -7715,7 +6710,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
i1 = i73;
break L1;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -24 | 0, 35604) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -24 | 0, 37068) | 0;
i6 = i74 + 16 | 0;
i2 = (HEAP32[i3 >> 2] | 0) + -24 | 0;
HEAP32[i9 >> 2] = HEAP32[i74 + 12 >> 2];
@@ -7767,55 +6762,55 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
}
case 77:
{
- if (((i2 << 24 >> 24 == 77 ? (i70 = i73 + 1 | 0, i5 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i70, i72, i74) | 0, (i5 | 0) != (i70 | 0)) : 0) ? (i58 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i5, i72, i74) | 0, (i58 | 0) != (i5 | 0)) : 0) ? (i46 = i74 + 4 | 0, i4 = HEAP32[i46 >> 2] | 0, ((i4 - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) : 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i75, i4 + -24 | 0);
+ if (((i2 << 24 >> 24 == 77 ? (i70 = i73 + 1 | 0, i4 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i70, i72, i74) | 0, (i4 | 0) != (i70 | 0)) : 0) ? (i58 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i4, i72, i74) | 0, (i58 | 0) != (i4 | 0)) : 0) ? (i46 = i74 + 4 | 0, i5 = HEAP32[i46 >> 2] | 0, ((i5 - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) : 0) {
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i75, i5 + -24 | 0);
i1 = HEAP32[i46 >> 2] | 0;
- i3 = i1 + -24 | 0;
- i2 = i1;
+ i2 = i1 + -24 | 0;
+ i3 = i1;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break;
- i72 = i2 + -24 | 0;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i72 = i3 + -24 | 0;
HEAP32[i46 >> 2] = i72;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i72);
- i2 = HEAP32[i46 >> 2] | 0;
+ i3 = HEAP32[i46 >> 2] | 0;
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i71, i1 + -48 | 0);
i11 = i75 + 12 | 0;
i3 = HEAP32[i46 >> 2] | 0;
i10 = i3 + -24 | 0;
L299 : do if ((HEAP8[((HEAP8[i11 >> 0] & 1) == 0 ? i11 + 1 | 0 : HEAP32[i75 + 20 >> 2] | 0) >> 0] | 0) == 40) {
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i75, 34356) | 0;
- HEAP32[i53 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i53 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i53 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i75, 35820) | 0;
+ HEAP32[i53 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i53 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i53 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i63, i71);
- i2 = HEAP8[i63 >> 0] | 0;
- i1 = (i2 & 1) == 0;
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i53, i1 ? i63 + 1 | 0 : HEAP32[i63 + 8 >> 2] | 0, i1 ? (i2 & 255) >>> 1 : HEAP32[i63 + 4 >> 2] | 0) | 0;
- HEAP32[i50 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i50 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i50 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = HEAP8[i63 >> 0] | 0;
+ i2 = (i1 & 1) == 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i53, i2 ? i63 + 1 | 0 : HEAP32[i63 + 8 >> 2] | 0, i2 ? (i1 & 255) >>> 1 : HEAP32[i63 + 4 >> 2] | 0) | 0;
+ HEAP32[i50 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i50 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i50 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i50, 35615) | 0;
- HEAP32[i59 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i59 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i59 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i50, 37079) | 0;
+ HEAP32[i59 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i59 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i59 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
do if (HEAP8[i10 >> 0] & 1) {
i9 = i3 + -16 | 0;
@@ -7831,13 +6826,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
if (!(i1 & 1)) {
i2 = (i1 & 255) >>> 1;
if ((i1 & 255) < 22) {
- i8 = i2;
+ i8 = 1;
i4 = 10;
- i7 = 1;
+ i7 = i2;
} else {
- i8 = i2;
+ i8 = 1;
i4 = (i2 + 16 & 240) + -1 | 0;
- i7 = 1;
+ i7 = i2;
}
} else {
i8 = 0;
@@ -7848,26 +6843,26 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
if ((i4 | 0) == 10) {
i3 = i10 + 1 | 0;
i2 = HEAP32[i9 >> 2] | 0;
- if (i7) {
+ if (i8) {
_memcpy(i3 | 0, i2 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0;
_free(i2);
} else {
HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0;
_free(i2);
}
- HEAP8[i10 >> 0] = i8 << 1;
+ HEAP8[i10 >> 0] = i7 << 1;
break;
}
i2 = i4 + 1 | 0;
i3 = _malloc(i2) | 0;
if (!(i4 >>> 0 <= i5 >>> 0 & (i3 | 0) == 0)) {
- if (i7) _memcpy(i3 | 0, i10 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
+ if (i8) _memcpy(i3 | 0, i10 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
i72 = HEAP32[i9 >> 2] | 0;
HEAP8[i3 >> 0] = HEAP8[i72 >> 0] | 0;
_free(i72);
}
HEAP32[i10 >> 2] = i2 | 1;
- HEAP32[i6 >> 2] = i8;
+ HEAP32[i6 >> 2] = i7;
HEAP32[i9 >> 2] = i3;
}
}
@@ -7889,15 +6884,15 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i63);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i53);
i3 = HEAP32[i46 >> 2] | 0;
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i11, 0, 34358) | 0;
- HEAP32[i66 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i66 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i66 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i11, 0, 35822) | 0;
+ HEAP32[i66 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i66 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i66 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
i10 = i3 + -12 | 0;
do if (HEAP8[i10 >> 0] & 1) {
@@ -7914,13 +6909,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
if (!(i1 & 1)) {
i2 = (i1 & 255) >>> 1;
if ((i1 & 255) < 22) {
- i8 = i2;
+ i8 = 1;
i4 = 10;
- i7 = 1;
+ i7 = i2;
} else {
- i8 = i2;
+ i8 = 1;
i4 = (i2 + 16 & 240) + -1 | 0;
- i7 = 1;
+ i7 = i2;
}
} else {
i8 = 0;
@@ -7931,26 +6926,26 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
if ((i4 | 0) == 10) {
i3 = i10 + 1 | 0;
i2 = HEAP32[i9 >> 2] | 0;
- if (i7) {
+ if (i8) {
_memcpy(i3 | 0, i2 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0;
_free(i2);
} else {
HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0;
_free(i2);
}
- HEAP8[i10 >> 0] = i8 << 1;
+ HEAP8[i10 >> 0] = i7 << 1;
break;
}
i2 = i4 + 1 | 0;
i3 = _malloc(i2) | 0;
if (!(i4 >>> 0 <= i5 >>> 0 & (i3 | 0) == 0)) {
- if (i7) _memcpy(i3 | 0, i10 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
+ if (i8) _memcpy(i3 | 0, i10 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
i72 = HEAP32[i9 >> 2] | 0;
HEAP8[i3 >> 0] = HEAP8[i72 >> 0] | 0;
_free(i72);
}
HEAP32[i10 >> 2] = i2 | 1;
- HEAP32[i6 >> 2] = i8;
+ HEAP32[i6 >> 2] = i7;
HEAP32[i9 >> 2] = i3;
}
}
@@ -7969,38 +6964,38 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i66);
} else {
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i75, 35447) | 0;
- HEAP32[i64 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i64 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i64 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i75, 36911) | 0;
+ HEAP32[i64 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i64 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i64 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i65, i71);
- i2 = HEAP8[i65 >> 0] | 0;
- i1 = (i2 & 1) == 0;
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i64, i1 ? i65 + 1 | 0 : HEAP32[i65 + 8 >> 2] | 0, i1 ? (i2 & 255) >>> 1 : HEAP32[i65 + 4 >> 2] | 0) | 0;
- HEAP32[i62 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i62 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i62 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = HEAP8[i65 >> 0] | 0;
+ i2 = (i1 & 1) == 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i64, i2 ? i65 + 1 | 0 : HEAP32[i65 + 8 >> 2] | 0, i2 ? (i1 & 255) >>> 1 : HEAP32[i65 + 4 >> 2] | 0) | 0;
+ HEAP32[i62 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i62 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i62 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i62, 35615) | 0;
- HEAP32[i56 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i56 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i56 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i62, 37079) | 0;
+ HEAP32[i56 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i56 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i56 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
do if (HEAP8[i10 >> 0] & 1) {
i9 = i3 + -16 | 0;
@@ -8009,50 +7004,50 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
HEAP32[i6 >> 2] = 0;
i1 = HEAP8[i10 >> 0] | 0;
if (!(i1 & 1)) i5 = 10; else {
- i5 = HEAP32[i10 >> 2] | 0;
- i1 = i5 & 255;
- i5 = (i5 & -2) + -1 | 0;
+ i1 = HEAP32[i10 >> 2] | 0;
+ i5 = (i1 & -2) + -1 | 0;
+ i1 = i1 & 255;
}
if (!(i1 & 1)) {
i2 = (i1 & 255) >>> 1;
if ((i1 & 255) < 22) {
- i8 = i2;
+ i7 = i2;
+ i8 = 1;
i4 = 10;
- i7 = 1;
} else {
- i8 = i2;
+ i7 = i2;
+ i8 = 1;
i4 = (i2 + 16 & 240) + -1 | 0;
- i7 = 1;
}
} else {
+ i7 = 0;
i8 = 0;
i4 = 10;
- i7 = 0;
}
if ((i4 | 0) != (i5 | 0)) {
if ((i4 | 0) == 10) {
i3 = i10 + 1 | 0;
i2 = HEAP32[i9 >> 2] | 0;
- if (i7) {
+ if (i8) {
_memcpy(i3 | 0, i2 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0;
_free(i2);
} else {
HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0;
_free(i2);
}
- HEAP8[i10 >> 0] = i8 << 1;
+ HEAP8[i10 >> 0] = i7 << 1;
break;
}
i2 = i4 + 1 | 0;
i3 = _malloc(i2) | 0;
if (!(i4 >>> 0 <= i5 >>> 0 & (i3 | 0) == 0)) {
- if (i7) _memcpy(i3 | 0, i10 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
+ if (i8) _memcpy(i3 | 0, i10 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
i72 = HEAP32[i9 >> 2] | 0;
HEAP8[i3 >> 0] = HEAP8[i72 >> 0] | 0;
_free(i72);
}
HEAP32[i10 >> 2] = i2 | 1;
- HEAP32[i6 >> 2] = i8;
+ HEAP32[i6 >> 2] = i7;
HEAP32[i9 >> 2] = i3;
}
}
@@ -8089,43 +7084,43 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
if (!(i1 & 1)) {
i2 = (i1 & 255) >>> 1;
if ((i1 & 255) < 22) {
- i8 = i2;
i4 = 10;
- i7 = 1;
+ i7 = i2;
+ i8 = 1;
} else {
- i8 = i2;
i4 = (i2 + 16 & 240) + -1 | 0;
- i7 = 1;
+ i7 = i2;
+ i8 = 1;
}
} else {
- i8 = 0;
i4 = 10;
i7 = 0;
+ i8 = 0;
}
if ((i4 | 0) != (i5 | 0)) {
if ((i4 | 0) == 10) {
i3 = i10 + 1 | 0;
i2 = HEAP32[i9 >> 2] | 0;
- if (i7) {
+ if (i8) {
_memcpy(i3 | 0, i2 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0;
_free(i2);
} else {
HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0;
_free(i2);
}
- HEAP8[i10 >> 0] = i8 << 1;
+ HEAP8[i10 >> 0] = i7 << 1;
break;
}
i2 = i4 + 1 | 0;
i3 = _malloc(i2) | 0;
if (!(i4 >>> 0 <= i5 >>> 0 & (i3 | 0) == 0)) {
- if (i7) _memcpy(i3 | 0, i10 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
+ if (i8) _memcpy(i3 | 0, i10 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
i72 = HEAP32[i9 >> 2] | 0;
HEAP8[i3 >> 0] = HEAP8[i72 >> 0] | 0;
_free(i72);
}
HEAP32[i10 >> 2] = i2 | 1;
- HEAP32[i6 >> 2] = i8;
+ HEAP32[i6 >> 2] = i7;
HEAP32[i9 >> 2] = i3;
}
}
@@ -8206,33 +7201,33 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
}
case 79:
{
- i16 = i74 + 4 | 0;
- i9 = ((HEAP32[i16 >> 2] | 0) - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0;
+ i15 = i74 + 4 | 0;
+ i9 = ((HEAP32[i15 >> 2] | 0) - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0;
i71 = i73 + 1 | 0;
i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i71, i72, i74) | 0;
- i16 = ((HEAP32[i16 >> 2] | 0) - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0;
+ i15 = ((HEAP32[i15 >> 2] | 0) - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0;
if ((i1 | 0) == (i71 | 0)) {
i1 = i73;
break L1;
}
- i8 = i74 + 16 | 0;
- i7 = HEAP32[i74 + 12 >> 2] | 0;
- i15 = i74 + 20 | 0;
- i2 = HEAP32[i15 >> 2] | 0;
+ i7 = i74 + 16 | 0;
+ i8 = HEAP32[i74 + 12 >> 2] | 0;
+ i16 = i74 + 20 | 0;
+ i2 = HEAP32[i16 >> 2] | 0;
i71 = HEAP32[i74 + 24 >> 2] | 0;
i3 = i71;
if (i2 >>> 0 < i71 >>> 0) {
HEAP32[i2 >> 2] = 0;
HEAP32[i2 + 4 >> 2] = 0;
HEAP32[i2 + 8 >> 2] = 0;
- HEAP32[i2 + 12 >> 2] = i7;
- HEAP32[i15 >> 2] = (HEAP32[i15 >> 2] | 0) + 16;
+ HEAP32[i2 + 12 >> 2] = i8;
+ HEAP32[i16 >> 2] = (HEAP32[i16 >> 2] | 0) + 16;
} else {
- i4 = HEAP32[i8 >> 2] | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
i71 = i2 - i4 | 0;
i6 = i71 >> 4;
i5 = i6 + 1 | 0;
- if ((i71 | 0) < -16) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i8);
+ if ((i71 | 0) < -16) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
i2 = i3 - i4 | 0;
if (i2 >> 4 >>> 0 < 1073741823) {
i2 = i2 >> 3;
@@ -8244,17 +7239,17 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
HEAP32[i67 >> 2] = 0;
HEAP32[i67 + 4 >> 2] = 0;
HEAP32[i67 + 8 >> 2] = 0;
- HEAP32[i67 + 12 >> 2] = i7;
+ HEAP32[i67 + 12 >> 2] = i8;
HEAP32[i71 >> 2] = i67 + 16;
- __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i8, i75);
+ __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i7, i75);
__ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i75);
}
- i13 = i38 + 4 | 0;
- i11 = i38 + 8 | 0;
- i14 = i38 + 1 | 0;
- i12 = i75 + 8 | 0;
+ i11 = i38 + 4 | 0;
+ i12 = i38 + 8 | 0;
+ i13 = i38 + 1 | 0;
+ i14 = i75 + 8 | 0;
while (1) {
- if (i9 >>> 0 >= i16 >>> 0) break L1;
+ if (i9 >>> 0 >= i15 >>> 0) break L1;
i71 = HEAP32[i74 >> 2] | 0;
i67 = i71 + (i9 * 24 | 0) + 12 | 0;
i66 = HEAP8[i67 >> 0] | 0;
@@ -8263,38 +7258,38 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i38, i3 ? i67 + 1 | 0 : HEAP32[i71 + (i9 * 24 | 0) + 20 >> 2] | 0, i66 >>> 0 < 2 ? i66 : 2);
i66 = HEAP8[i38 >> 0] | 0;
i71 = (i66 & 1) == 0;
- i66 = i71 ? (i66 & 255) >>> 1 : HEAP32[i13 >> 2] | 0;
+ i66 = i71 ? (i66 & 255) >>> 1 : HEAP32[i11 >> 2] | 0;
i67 = i66 >>> 0 > 2;
- i71 = _memcmp(i71 ? i14 : HEAP32[i11 >> 2] | 0, 34347, i67 ? 2 : i66) | 0;
+ i71 = _memcmp(i71 ? i13 : HEAP32[i12 >> 2] | 0, 35811, i67 ? 2 : i66) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i38);
i3 = HEAP32[i74 >> 2] | 0;
if (((i71 | 0) == 0 ? (i66 >>> 0 < 2 ? -1 : i67 & 1) : i71) | 0) {
i2 = HEAP16[i3 + (i9 * 24 | 0) + 12 >> 1] | 0;
if (!(i2 & 1)) i2 = (i2 & 65535) >>> 8 & 255; else i2 = HEAP8[HEAP32[i3 + (i9 * 24 | 0) + 20 >> 2] >> 0] | 0;
if (i2 << 24 >> 24 == 40) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i3 + (i9 * 24 | 0) | 0, 34356) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i74 >> 2] | 0) + (i9 * 24 | 0) + 12 | 0, 0, 34358) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i3 + (i9 * 24 | 0) | 0, 35820) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i74 >> 2] | 0) + (i9 * 24 | 0) + 12 | 0, 0, 35822) | 0;
}
} else {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i3 + (i9 * 24 | 0) | 0, 34408) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i74 >> 2] | 0) + (i9 * 24 | 0) + 12 | 0, 0, 34358) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i3 + (i9 * 24 | 0) | 0, 35872) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i74 >> 2] | 0) + (i9 * 24 | 0) + 12 | 0, 0, 35822) | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i74 >> 2] | 0) + (i9 * 24 | 0) | 0, 34400) | 0;
- i6 = HEAP32[i15 >> 2] | 0;
- i8 = i6 + -16 | 0;
- i7 = HEAP32[i74 >> 2] | 0;
- i10 = i7 + (i9 * 24 | 0) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i74 >> 2] | 0) + (i9 * 24 | 0) | 0, 35864) | 0;
+ i6 = HEAP32[i16 >> 2] | 0;
+ i7 = i6 + -16 | 0;
+ i8 = HEAP32[i74 >> 2] | 0;
+ i10 = i8 + (i9 * 24 | 0) | 0;
i2 = i6 + -12 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i71 = HEAP32[i6 + -8 >> 2] | 0;
i4 = i71;
if ((i3 | 0) == (i71 | 0)) {
- i2 = HEAP32[i8 >> 2] | 0;
+ i2 = HEAP32[i7 >> 2] | 0;
i71 = i3 - i2 | 0;
i5 = (i71 | 0) / 24 | 0;
i3 = i5 + 1 | 0;
if ((i71 | 0) < -24) {
- i1 = i8;
+ i1 = i7;
break;
}
i2 = (i4 - i2 | 0) / 24 | 0;
@@ -8303,15 +7298,15 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
i2 = i2 >>> 0 < i3 >>> 0 ? i3 : i2;
} else i2 = 2147483647;
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i75, i2, i5, i6 + -4 | 0);
- i71 = HEAP32[i12 >> 2] | 0;
+ i71 = HEAP32[i14 >> 2] | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i71, i10);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i71 + 12 | 0, i7 + (i9 * 24 | 0) + 12 | 0);
- HEAP32[i12 >> 2] = i71 + 24;
- __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i75);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i71 + 12 | 0, i8 + (i9 * 24 | 0) + 12 | 0);
+ HEAP32[i14 >> 2] = i71 + 24;
+ __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i7, i75);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i75);
} else {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3, i10);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3 + 12 | 0, i7 + (i9 * 24 | 0) + 12 | 0);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3 + 12 | 0, i8 + (i9 * 24 | 0) + 12 | 0);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
}
i9 = i9 + 1 | 0;
@@ -8330,24 +7325,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
i1 = i73;
break L1;
}
- i8 = i74 + 16 | 0;
- i7 = HEAP32[i74 + 12 >> 2] | 0;
- i19 = i74 + 20 | 0;
- i2 = HEAP32[i19 >> 2] | 0;
+ i7 = i74 + 16 | 0;
+ i8 = HEAP32[i74 + 12 >> 2] | 0;
+ i22 = i74 + 20 | 0;
+ i2 = HEAP32[i22 >> 2] | 0;
i71 = HEAP32[i74 + 24 >> 2] | 0;
i3 = i71;
if (i2 >>> 0 < i71 >>> 0) {
HEAP32[i2 >> 2] = 0;
HEAP32[i2 + 4 >> 2] = 0;
HEAP32[i2 + 8 >> 2] = 0;
- HEAP32[i2 + 12 >> 2] = i7;
- HEAP32[i19 >> 2] = (HEAP32[i19 >> 2] | 0) + 16;
+ HEAP32[i2 + 12 >> 2] = i8;
+ HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + 16;
} else {
- i4 = HEAP32[i8 >> 2] | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
i71 = i2 - i4 | 0;
i6 = i71 >> 4;
i5 = i6 + 1 | 0;
- if ((i71 | 0) < -16) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i8);
+ if ((i71 | 0) < -16) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
i2 = i3 - i4 | 0;
if (i2 >> 4 >>> 0 < 1073741823) {
i2 = i2 >> 3;
@@ -8359,18 +7354,18 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
HEAP32[i66 >> 2] = 0;
HEAP32[i66 + 4 >> 2] = 0;
HEAP32[i66 + 8 >> 2] = 0;
- HEAP32[i66 + 12 >> 2] = i7;
+ HEAP32[i66 + 12 >> 2] = i8;
HEAP32[i71 >> 2] = i66 + 16;
- __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i8, i75);
+ __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i7, i75);
__ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i75);
}
- i16 = i51 + 4 | 0;
- i13 = i51 + 8 | 0;
- i18 = i51 + 1 | 0;
- i15 = i52 + 4 | 0;
- i12 = i52 + 8 | 0;
- i17 = i52 + 1 | 0;
- i14 = i75 + 8 | 0;
+ i13 = i51 + 4 | 0;
+ i14 = i51 + 8 | 0;
+ i15 = i51 + 1 | 0;
+ i16 = i52 + 4 | 0;
+ i17 = i52 + 8 | 0;
+ i18 = i52 + 1 | 0;
+ i19 = i75 + 8 | 0;
while (1) {
if (i9 >>> 0 >= i21 >>> 0) break L1;
i71 = HEAP32[i74 >> 2] | 0;
@@ -8381,21 +7376,21 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i51, i3 ? i66 + 1 | 0 : HEAP32[i71 + (i9 * 24 | 0) + 20 >> 2] | 0, i65 >>> 0 < 2 ? i65 : 2);
i65 = HEAP8[i51 >> 0] | 0;
i71 = (i65 & 1) == 0;
- i65 = i71 ? (i65 & 255) >>> 1 : HEAP32[i16 >> 2] | 0;
+ i65 = i71 ? (i65 & 255) >>> 1 : HEAP32[i13 >> 2] | 0;
i66 = i65 >>> 0 > 2;
- i71 = _memcmp(i71 ? i18 : HEAP32[i13 >> 2] | 0, 34347, i66 ? 2 : i65) | 0;
+ i71 = _memcmp(i71 ? i15 : HEAP32[i14 >> 2] | 0, 35811, i66 ? 2 : i65) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i51);
i3 = HEAP32[i74 >> 2] | 0;
if (((i71 | 0) == 0 ? (i65 >>> 0 < 2 ? -1 : i66 & 1) : i71) | 0) {
i2 = HEAP16[i3 + (i9 * 24 | 0) + 12 >> 1] | 0;
if (!(i2 & 1)) i2 = (i2 & 65535) >>> 8 & 255; else i2 = HEAP8[HEAP32[i3 + (i9 * 24 | 0) + 20 >> 2] >> 0] | 0;
if (i2 << 24 >> 24 == 40) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i3 + (i9 * 24 | 0) | 0, 34356) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i74 >> 2] | 0) + (i9 * 24 | 0) + 12 | 0, 0, 34358) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i3 + (i9 * 24 | 0) | 0, 35820) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i74 >> 2] | 0) + (i9 * 24 | 0) + 12 | 0, 0, 35822) | 0;
}
} else {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i3 + (i9 * 24 | 0) | 0, 34408) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i74 >> 2] | 0) + (i9 * 24 | 0) + 12 | 0, 0, 34358) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i3 + (i9 * 24 | 0) | 0, 35872) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i74 >> 2] | 0) + (i9 * 24 | 0) + 12 | 0, 0, 35822) | 0;
}
i3 = HEAP32[i74 >> 2] | 0;
i2 = i3 + (i9 * 24 | 0) | 0;
@@ -8406,105 +7401,107 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i52, i71 ? i2 + 1 | 0 : HEAP32[i3 + (i9 * 24 | 0) + 8 >> 2] | 0, i65 >>> 0 < 12 ? i65 : 12);
i65 = HEAP8[i52 >> 0] | 0;
i71 = (i65 & 1) == 0;
- i65 = i71 ? (i65 & 255) >>> 1 : HEAP32[i15 >> 2] | 0;
+ i65 = i71 ? (i65 & 255) >>> 1 : HEAP32[i16 >> 2] | 0;
i66 = i65 >>> 0 > 12;
- i71 = _memcmp(i71 ? i17 : HEAP32[i12 >> 2] | 0, 35619, i66 ? 12 : i65) | 0;
+ i71 = _memcmp(i71 ? i18 : HEAP32[i17 >> 2] | 0, 37083, i66 ? 12 : i65) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i52);
- i11 = HEAP32[i74 >> 2] | 0;
- i2 = i11 + (i9 * 24 | 0) | 0;
+ i12 = HEAP32[i74 >> 2] | 0;
+ i2 = i12 + (i9 * 24 | 0) | 0;
if (!(((i71 | 0) == 0 ? (i65 >>> 0 < 12 ? -1 : i66 & 1) : i71) | 0)) {
i3 = HEAP8[i2 >> 0] | 0;
if (!(i3 & 1)) {
- i10 = (i3 & 255) >>> 1;
- i5 = i10 >>> 0 < 11 ? i10 : 11;
+ i8 = (i3 & 255) >>> 1;
+ i11 = i8;
+ i8 = i8 >>> 0 < 11 ? i8 : 11;
i4 = 10;
} else {
- i10 = HEAP32[i11 + (i9 * 24 | 0) + 4 >> 2] | 0;
- i4 = HEAP32[i2 >> 2] | 0;
- i5 = i10 >>> 0 < 11 ? i10 : 11;
- i3 = i4 & 255;
- i4 = (i4 & -2) + -1 | 0;
+ i8 = HEAP32[i12 + (i9 * 24 | 0) + 4 >> 2] | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ i11 = i8;
+ i8 = i8 >>> 0 < 11 ? i8 : 11;
+ i4 = (i3 & -2) + -1 | 0;
+ i3 = i3 & 255;
}
- if ((i5 - i10 + i4 | 0) >>> 0 < 2) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE21__grow_by_and_replaceEjjjjjjPKc(i2, i4, 2 - i5 + i10 - i4 | 0, i10, 0, i5, 2, 35632);
+ if ((i8 - i11 + i4 | 0) >>> 0 < 2) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE21__grow_by_and_replaceEjjjjjjPKc(i2, i4, 2 - i8 + i11 - i4 | 0, i11, 0, i8, 2, 37096);
break;
}
- if (!(i3 & 1)) i8 = i2 + 1 | 0; else i8 = HEAP32[i11 + (i9 * 24 | 0) + 8 >> 2] | 0;
- do if ((i5 | 0) != 2) {
- i7 = i10 - i5 | 0;
- if ((i10 | 0) == (i5 | 0)) {
- i4 = i5;
- i3 = 2;
+ if (!(i3 & 1)) i10 = i2 + 1 | 0; else i10 = HEAP32[i12 + (i9 * 24 | 0) + 8 >> 2] | 0;
+ do if ((i8 | 0) != 2) {
+ i7 = i11 - i8 | 0;
+ if ((i11 | 0) == (i8 | 0)) {
+ i4 = i8;
i6 = 0;
- i5 = 35632;
+ i5 = 37096;
+ i3 = 2;
i67 = 402;
} else {
- if (i5 >>> 0 > 2) {
- HEAP8[i8 >> 0] = 105;
- HEAP8[i8 + 1 >> 0] = 100;
- _memmove(i8 + 2 | 0, i8 + i5 | 0, i7 | 0) | 0;
- i4 = i5;
+ if (i8 >>> 0 > 2) {
+ HEAP8[i10 >> 0] = 105;
+ HEAP8[i10 + 1 >> 0] = 100;
+ _memmove(i10 + 2 | 0, i10 + i8 | 0, i7 | 0) | 0;
+ i4 = i8;
i3 = 2;
break;
}
- do if (i8 >>> 0 < 35632 >>> 0 & (i8 + i10 | 0) >>> 0 > 35632 >>> 0) if ((i8 + i5 | 0) >>> 0 > 35632 >>> 0) {
- _memcpy(i8 | 0, 35632, i5 | 0) | 0;
+ do if (i10 >>> 0 < 37096 >>> 0 & (i10 + i11 | 0) >>> 0 > 37096 >>> 0) if ((i10 + i8 | 0) >>> 0 > 37096 >>> 0) {
+ _memcpy(i10 | 0, 37096, i8 | 0) | 0;
+ i6 = i8;
+ i5 = 37098;
i4 = 0;
- i3 = 2 - i5 | 0;
- i6 = i5;
- i5 = 35634;
+ i3 = 2 - i8 | 0;
break;
} else {
- i4 = i5;
- i3 = 2;
i6 = 0;
- i5 = 35632 + (2 - i5) | 0;
+ i5 = 37096 + (2 - i8) | 0;
+ i4 = i8;
+ i3 = 2;
break;
} else {
- i4 = i5;
- i3 = 2;
i6 = 0;
- i5 = 35632;
+ i5 = 37096;
+ i4 = i8;
+ i3 = 2;
} while (0);
- i67 = i8 + i6 | 0;
+ i67 = i10 + i6 | 0;
_memmove(i67 + i3 | 0, i67 + i4 | 0, i7 | 0) | 0;
i67 = 402;
}
} else {
i4 = 2;
- i3 = 2;
i6 = 0;
- i5 = 35632;
+ i5 = 37096;
+ i3 = 2;
i67 = 402;
} while (0);
if ((i67 | 0) == 402) {
i67 = 0;
- _memmove(i8 + i6 | 0, i5 | 0, i3 | 0) | 0;
+ _memmove(i10 + i6 | 0, i5 | 0, i3 | 0) | 0;
}
- i3 = i3 - i4 + i10 | 0;
- if (!(HEAP8[i2 >> 0] & 1)) HEAP8[i2 >> 0] = i3 << 1; else HEAP32[i11 + (i9 * 24 | 0) + 4 >> 2] = i3;
- HEAP8[i8 + i3 >> 0] = 0;
+ i3 = i3 - i4 + i11 | 0;
+ if (!(HEAP8[i2 >> 0] & 1)) HEAP8[i2 >> 0] = i3 << 1; else HEAP32[i12 + (i9 * 24 | 0) + 4 >> 2] = i3;
+ HEAP8[i10 + i3 >> 0] = 0;
} else i67 = 385;
} else i67 = 385; while (0);
if ((i67 | 0) == 385) {
i67 = 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2, 34477) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2, 35941) | 0;
}
- i6 = HEAP32[i19 >> 2] | 0;
- i8 = i6 + -16 | 0;
- i7 = HEAP32[i74 >> 2] | 0;
- i10 = i7 + (i9 * 24 | 0) | 0;
+ i6 = HEAP32[i22 >> 2] | 0;
+ i7 = i6 + -16 | 0;
+ i8 = HEAP32[i74 >> 2] | 0;
+ i10 = i8 + (i9 * 24 | 0) | 0;
i2 = i6 + -12 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i71 = HEAP32[i6 + -8 >> 2] | 0;
i4 = i71;
if ((i3 | 0) == (i71 | 0)) {
- i2 = HEAP32[i8 >> 2] | 0;
+ i2 = HEAP32[i7 >> 2] | 0;
i71 = i3 - i2 | 0;
i5 = (i71 | 0) / 24 | 0;
i3 = i5 + 1 | 0;
if ((i71 | 0) < -24) {
- i1 = i8;
+ i1 = i7;
break;
}
i2 = (i4 - i2 | 0) / 24 | 0;
@@ -8513,15 +7510,15 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
i2 = i2 >>> 0 < i3 >>> 0 ? i3 : i2;
} else i2 = 2147483647;
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i75, i2, i5, i6 + -4 | 0);
- i71 = HEAP32[i14 >> 2] | 0;
+ i71 = HEAP32[i19 >> 2] | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i71, i10);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i71 + 12 | 0, i7 + (i9 * 24 | 0) + 12 | 0);
- HEAP32[i14 >> 2] = i71 + 24;
- __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i75);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i71 + 12 | 0, i8 + (i9 * 24 | 0) + 12 | 0);
+ HEAP32[i19 >> 2] = i71 + 24;
+ __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i7, i75);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i75);
} else {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3, i10);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3 + 12 | 0, i7 + (i9 * 24 | 0) + 12 | 0);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3 + 12 | 0, i8 + (i9 * 24 | 0) + 12 | 0);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
}
i9 = i9 + 1 | 0;
@@ -8531,33 +7528,33 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
}
case 82:
{
- i16 = i74 + 4 | 0;
- i9 = ((HEAP32[i16 >> 2] | 0) - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0;
+ i15 = i74 + 4 | 0;
+ i9 = ((HEAP32[i15 >> 2] | 0) - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0;
i71 = i73 + 1 | 0;
i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i71, i72, i74) | 0;
- i16 = ((HEAP32[i16 >> 2] | 0) - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0;
+ i15 = ((HEAP32[i15 >> 2] | 0) - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0;
if ((i1 | 0) == (i71 | 0)) {
i1 = i73;
break L1;
}
- i8 = i74 + 16 | 0;
- i7 = HEAP32[i74 + 12 >> 2] | 0;
- i15 = i74 + 20 | 0;
- i2 = HEAP32[i15 >> 2] | 0;
+ i7 = i74 + 16 | 0;
+ i8 = HEAP32[i74 + 12 >> 2] | 0;
+ i16 = i74 + 20 | 0;
+ i2 = HEAP32[i16 >> 2] | 0;
i71 = HEAP32[i74 + 24 >> 2] | 0;
i3 = i71;
if (i2 >>> 0 < i71 >>> 0) {
HEAP32[i2 >> 2] = 0;
HEAP32[i2 + 4 >> 2] = 0;
HEAP32[i2 + 8 >> 2] = 0;
- HEAP32[i2 + 12 >> 2] = i7;
- HEAP32[i15 >> 2] = (HEAP32[i15 >> 2] | 0) + 16;
+ HEAP32[i2 + 12 >> 2] = i8;
+ HEAP32[i16 >> 2] = (HEAP32[i16 >> 2] | 0) + 16;
} else {
- i4 = HEAP32[i8 >> 2] | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
i71 = i2 - i4 | 0;
i6 = i71 >> 4;
i5 = i6 + 1 | 0;
- if ((i71 | 0) < -16) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i8);
+ if ((i71 | 0) < -16) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
i2 = i3 - i4 | 0;
if (i2 >> 4 >>> 0 < 1073741823) {
i2 = i2 >> 3;
@@ -8569,17 +7566,17 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
HEAP32[i67 >> 2] = 0;
HEAP32[i67 + 4 >> 2] = 0;
HEAP32[i67 + 8 >> 2] = 0;
- HEAP32[i67 + 12 >> 2] = i7;
+ HEAP32[i67 + 12 >> 2] = i8;
HEAP32[i71 >> 2] = i67 + 16;
- __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i8, i75);
+ __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i7, i75);
__ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i75);
}
- i13 = i39 + 4 | 0;
- i11 = i39 + 8 | 0;
- i14 = i39 + 1 | 0;
- i12 = i75 + 8 | 0;
+ i11 = i39 + 4 | 0;
+ i12 = i39 + 8 | 0;
+ i13 = i39 + 1 | 0;
+ i14 = i75 + 8 | 0;
while (1) {
- if (i9 >>> 0 >= i16 >>> 0) break L1;
+ if (i9 >>> 0 >= i15 >>> 0) break L1;
i71 = HEAP32[i74 >> 2] | 0;
i67 = i71 + (i9 * 24 | 0) + 12 | 0;
i66 = HEAP8[i67 >> 0] | 0;
@@ -8588,38 +7585,38 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i39, i3 ? i67 + 1 | 0 : HEAP32[i71 + (i9 * 24 | 0) + 20 >> 2] | 0, i66 >>> 0 < 2 ? i66 : 2);
i66 = HEAP8[i39 >> 0] | 0;
i71 = (i66 & 1) == 0;
- i66 = i71 ? (i66 & 255) >>> 1 : HEAP32[i13 >> 2] | 0;
+ i66 = i71 ? (i66 & 255) >>> 1 : HEAP32[i11 >> 2] | 0;
i67 = i66 >>> 0 > 2;
- i71 = _memcmp(i71 ? i14 : HEAP32[i11 >> 2] | 0, 34347, i67 ? 2 : i66) | 0;
+ i71 = _memcmp(i71 ? i13 : HEAP32[i12 >> 2] | 0, 35811, i67 ? 2 : i66) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i39);
i3 = HEAP32[i74 >> 2] | 0;
if (((i71 | 0) == 0 ? (i66 >>> 0 < 2 ? -1 : i67 & 1) : i71) | 0) {
i2 = HEAP16[i3 + (i9 * 24 | 0) + 12 >> 1] | 0;
if (!(i2 & 1)) i2 = (i2 & 65535) >>> 8 & 255; else i2 = HEAP8[HEAP32[i3 + (i9 * 24 | 0) + 20 >> 2] >> 0] | 0;
if (i2 << 24 >> 24 == 40) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i3 + (i9 * 24 | 0) | 0, 34356) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i74 >> 2] | 0) + (i9 * 24 | 0) + 12 | 0, 0, 34358) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i3 + (i9 * 24 | 0) | 0, 35820) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i74 >> 2] | 0) + (i9 * 24 | 0) + 12 | 0, 0, 35822) | 0;
}
} else {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i3 + (i9 * 24 | 0) | 0, 34408) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i74 >> 2] | 0) + (i9 * 24 | 0) + 12 | 0, 0, 34358) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i3 + (i9 * 24 | 0) | 0, 35872) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i74 >> 2] | 0) + (i9 * 24 | 0) + 12 | 0, 0, 35822) | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i74 >> 2] | 0) + (i9 * 24 | 0) | 0, 34411) | 0;
- i6 = HEAP32[i15 >> 2] | 0;
- i8 = i6 + -16 | 0;
- i7 = HEAP32[i74 >> 2] | 0;
- i10 = i7 + (i9 * 24 | 0) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i74 >> 2] | 0) + (i9 * 24 | 0) | 0, 35875) | 0;
+ i6 = HEAP32[i16 >> 2] | 0;
+ i7 = i6 + -16 | 0;
+ i8 = HEAP32[i74 >> 2] | 0;
+ i10 = i8 + (i9 * 24 | 0) | 0;
i2 = i6 + -12 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i71 = HEAP32[i6 + -8 >> 2] | 0;
i4 = i71;
if ((i3 | 0) == (i71 | 0)) {
- i2 = HEAP32[i8 >> 2] | 0;
+ i2 = HEAP32[i7 >> 2] | 0;
i71 = i3 - i2 | 0;
i5 = (i71 | 0) / 24 | 0;
i3 = i5 + 1 | 0;
if ((i71 | 0) < -24) {
- i1 = i8;
+ i1 = i7;
break;
}
i2 = (i4 - i2 | 0) / 24 | 0;
@@ -8628,15 +7625,15 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
i2 = i2 >>> 0 < i3 >>> 0 ? i3 : i2;
} else i2 = 2147483647;
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i75, i2, i5, i6 + -4 | 0);
- i71 = HEAP32[i12 >> 2] | 0;
+ i71 = HEAP32[i14 >> 2] | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i71, i10);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i71 + 12 | 0, i7 + (i9 * 24 | 0) + 12 | 0);
- HEAP32[i12 >> 2] = i71 + 24;
- __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i75);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i71 + 12 | 0, i8 + (i9 * 24 | 0) + 12 | 0);
+ HEAP32[i14 >> 2] = i71 + 24;
+ __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i7, i75);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i75);
} else {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3, i10);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3 + 12 | 0, i7 + (i9 * 24 | 0) + 12 | 0);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3 + 12 | 0, i8 + (i9 * 24 | 0) + 12 | 0);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
}
i9 = i9 + 1 | 0;
@@ -8690,17 +7687,17 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
__ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i18, i75);
__ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i75);
}
- i9 = i75 + 8 | 0;
+ i7 = i75 + 8 | 0;
i11 = i12;
while (1) {
if (i11 >>> 0 >= i13 >>> 0) break;
- i7 = HEAP32[i17 >> 2] | 0;
- i2 = i7 + -16 | 0;
- i8 = HEAP32[i74 >> 2] | 0;
- i10 = i8 + (i11 * 24 | 0) | 0;
- i3 = i7 + -12 | 0;
+ i8 = HEAP32[i17 >> 2] | 0;
+ i2 = i8 + -16 | 0;
+ i9 = HEAP32[i74 >> 2] | 0;
+ i10 = i9 + (i11 * 24 | 0) | 0;
+ i3 = i8 + -12 | 0;
i4 = HEAP32[i3 >> 2] | 0;
- i73 = HEAP32[i7 + -8 >> 2] | 0;
+ i73 = HEAP32[i8 + -8 >> 2] | 0;
i5 = i73;
if ((i4 | 0) == (i73 | 0)) {
i3 = HEAP32[i2 >> 2] | 0;
@@ -8716,16 +7713,16 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
i3 = i3 << 1;
i3 = i3 >>> 0 < i4 >>> 0 ? i4 : i3;
} else i3 = 2147483647;
- __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i75, i3, i6, i7 + -4 | 0);
- i73 = HEAP32[i9 >> 2] | 0;
+ __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i75, i3, i6, i8 + -4 | 0);
+ i73 = HEAP32[i7 >> 2] | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i73, i10);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i73 + 12 | 0, i8 + (i11 * 24 | 0) + 12 | 0);
- HEAP32[i9 >> 2] = i73 + 24;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i73 + 12 | 0, i9 + (i11 * 24 | 0) + 12 | 0);
+ HEAP32[i7 >> 2] = i73 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i2, i75);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i75);
} else {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i4, i10);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i4 + 12 | 0, i8 + (i11 * 24 | 0) + 12 | 0);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i4 + 12 | 0, i9 + (i11 * 24 | 0) + 12 | 0);
HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + 24;
}
i11 = i11 + 1 | 0;
@@ -8736,34 +7733,34 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
if ((i6 | 0) == (i1 | 0)) break L1;
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i71, (HEAP32[i15 >> 2] | 0) + -24 | 0);
i1 = HEAP32[i15 >> 2] | 0;
- i3 = i1 + -24 | 0;
- i2 = i1;
+ i2 = i1 + -24 | 0;
+ i3 = i1;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break;
- i73 = i2 + -24 | 0;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i73 = i3 + -24 | 0;
HEAP32[i15 >> 2] = i73;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i73);
- i2 = HEAP32[i15 >> 2] | 0;
+ i3 = HEAP32[i15 >> 2] | 0;
}
i73 = HEAP8[i71 >> 0] | 0;
i4 = (i73 & 1) == 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i1 + -48 | 0, i4 ? i71 + 1 | 0 : HEAP32[i71 + 8 >> 2] | 0, i4 ? (i73 & 255) >>> 1 : HEAP32[i71 + 4 >> 2] | 0) | 0;
i1 = (HEAP32[i15 >> 2] | 0) + -24 | 0;
HEAP32[i41 >> 2] = HEAP32[i14 >> 2];
- __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i44, i1, i41);
+ __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i43, i1, i41);
i1 = HEAP32[i17 >> 2] | 0;
i73 = HEAP32[i16 >> 2] | 0;
i4 = i73;
if (i1 >>> 0 < i73 >>> 0) {
- HEAP32[i1 + 12 >> 2] = HEAP32[i44 + 12 >> 2];
- HEAP32[i1 >> 2] = HEAP32[i44 >> 2];
- i75 = i44 + 4 | 0;
+ HEAP32[i1 + 12 >> 2] = HEAP32[i43 + 12 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i43 >> 2];
+ i75 = i43 + 4 | 0;
HEAP32[i1 + 4 >> 2] = HEAP32[i75 >> 2];
- i74 = i44 + 8 | 0;
+ i74 = i43 + 8 | 0;
HEAP32[i1 + 8 >> 2] = HEAP32[i74 >> 2];
HEAP32[i74 >> 2] = 0;
HEAP32[i75 >> 2] = 0;
- HEAP32[i44 >> 2] = 0;
+ HEAP32[i43 >> 2] = 0;
HEAP32[i17 >> 2] = (HEAP32[i17 >> 2] | 0) + 16;
} else {
i2 = HEAP32[i18 >> 2] | 0;
@@ -8779,20 +7776,20 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
__ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i75, i1, i5, i74 + 28 | 0);
i74 = i75 + 8 | 0;
i73 = HEAP32[i74 >> 2] | 0;
- HEAP32[i73 + 12 >> 2] = HEAP32[i44 + 12 >> 2];
- HEAP32[i73 >> 2] = HEAP32[i44 >> 2];
- i72 = i44 + 4 | 0;
+ HEAP32[i73 + 12 >> 2] = HEAP32[i43 + 12 >> 2];
+ HEAP32[i73 >> 2] = HEAP32[i43 >> 2];
+ i72 = i43 + 4 | 0;
HEAP32[i73 + 4 >> 2] = HEAP32[i72 >> 2];
- i70 = i44 + 8 | 0;
+ i70 = i43 + 8 | 0;
HEAP32[i73 + 8 >> 2] = HEAP32[i70 >> 2];
HEAP32[i70 >> 2] = 0;
HEAP32[i72 >> 2] = 0;
- HEAP32[i44 >> 2] = 0;
+ HEAP32[i43 >> 2] = 0;
HEAP32[i74 >> 2] = i73 + 16;
__ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i18, i75);
__ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i75);
}
- __ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i44);
+ __ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i43);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i71);
i1 = i6;
break L1;
@@ -8822,14 +7819,14 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i71, i2 + -24 | 0);
i2 = HEAP32[i7 >> 2] | 0;
- i4 = i2 + -24 | 0;
- i3 = i2;
+ i3 = i2 + -24 | 0;
+ i4 = i2;
while (1) {
- if ((i3 | 0) == (i4 | 0)) break;
- i73 = i3 + -24 | 0;
+ if ((i4 | 0) == (i3 | 0)) break;
+ i73 = i4 + -24 | 0;
HEAP32[i7 >> 2] = i73;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i73);
- i3 = HEAP32[i7 >> 2] | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
}
i73 = i2 + -48 | 0;
i70 = HEAP8[i73 >> 0] | 0;
@@ -8840,46 +7837,46 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
i73 = (i70 & 1) == 0;
i70 = i73 ? (i70 & 255) >>> 1 : HEAP32[i13 + 4 >> 2] | 0;
i72 = i70 >>> 0 > 9;
- i73 = _memcmp(i73 ? i13 + 1 | 0 : HEAP32[i13 + 8 >> 2] | 0, 35635, i72 ? 9 : i70) | 0;
+ i73 = _memcmp(i73 ? i13 + 1 | 0 : HEAP32[i13 + 8 >> 2] | 0, 37099, i72 ? 9 : i70) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i13);
if (!(((i73 | 0) == 0 ? (i70 >>> 0 < 9 ? -1 : i72 & 1) : i73) | 0)) {
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i59, (HEAP32[i7 >> 2] | 0) + -24 | 0);
- i2 = HEAP32[i7 >> 2] | 0;
- i3 = i2 + -24 | 0;
+ i3 = HEAP32[i7 >> 2] | 0;
+ i2 = i3 + -24 | 0;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break;
- i73 = i2 + -24 | 0;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i73 = i3 + -24 | 0;
HEAP32[i7 >> 2] = i73;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i73);
- i2 = HEAP32[i7 >> 2] | 0;
+ i3 = HEAP32[i7 >> 2] | 0;
}
i73 = HEAP8[i59 >> 0] | 0;
i72 = (i73 & 1) == 0;
i2 = i59 + 8 | 0;
- i4 = i59 + 1 | 0;
- i70 = i72 ? i4 : HEAP32[i2 >> 2] | 0;
- i3 = i59 + 4 | 0;
- i73 = __ZN10__cxxabiv112_GLOBAL__N_117parse_source_nameINS0_2DbEEEPKcS4_S4_RT_(i70 + 9 | 0, i70 + (i72 ? (i73 & 255) >>> 1 : HEAP32[i3 >> 2] | 0) | 0, i74) | 0;
- if ((i73 | 0) == (((HEAP8[i59 >> 0] & 1) == 0 ? i4 : HEAP32[i2 >> 2] | 0) + 9 | 0)) {
- __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EERKSB_PKS8_(i33, i71, 35447);
+ i3 = i59 + 1 | 0;
+ i70 = i72 ? i3 : HEAP32[i2 >> 2] | 0;
+ i4 = i59 + 4 | 0;
+ i73 = __ZN10__cxxabiv112_GLOBAL__N_117parse_source_nameINS0_2DbEEEPKcS4_S4_RT_(i70 + 9 | 0, i70 + (i72 ? (i73 & 255) >>> 1 : HEAP32[i4 >> 2] | 0) | 0, i74) | 0;
+ if ((i73 | 0) == (((HEAP8[i59 >> 0] & 1) == 0 ? i3 : HEAP32[i2 >> 2] | 0) + 9 | 0)) {
+ __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EERKSB_PKS8_(i33, i71, 36911);
i73 = HEAP8[i59 >> 0] | 0;
i72 = (i73 & 1) == 0;
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i33, i72 ? i4 : HEAP32[i2 >> 2] | 0, i72 ? (i73 & 255) >>> 1 : HEAP32[i3 >> 2] | 0) | 0;
- HEAP32[i30 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i30 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i30 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i33, i72 ? i3 : HEAP32[i2 >> 2] | 0, i72 ? (i73 & 255) >>> 1 : HEAP32[i4 >> 2] | 0) | 0;
+ HEAP32[i32 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i32 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i32 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i32, i30);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i31, i32);
i2 = HEAP32[i7 >> 2] | 0;
i73 = HEAP32[i74 + 8 >> 2] | 0;
i3 = i73;
if (i2 >>> 0 < i73 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i32);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i31);
HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + 24;
} else {
i4 = HEAP32[i74 >> 2] | 0;
@@ -8895,69 +7892,69 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i75, i2, i6, i74 + 12 | 0);
i73 = i75 + 8 | 0;
i72 = HEAP32[i73 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i72, i32);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i72, i31);
HEAP32[i73 >> 2] = i72 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i74, i75);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i75);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i32);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i30);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i31);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i32);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i33);
} else {
i4 = (HEAP32[i7 >> 2] | 0) + -24 | 0;
- __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EERKSB_PKS8_(i27, i71, 34988);
+ __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EERKSB_PKS8_(i27, i71, 36452);
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i28, (HEAP32[i7 >> 2] | 0) + -24 | 0);
- i3 = HEAP8[i28 >> 0] | 0;
- i2 = (i3 & 1) == 0;
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i27, i2 ? i28 + 1 | 0 : HEAP32[i28 + 8 >> 2] | 0, i2 ? (i3 & 255) >>> 1 : HEAP32[i28 + 4 >> 2] | 0) | 0;
- HEAP32[i26 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i26 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i26 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i2 = HEAP8[i28 >> 0] | 0;
+ i3 = (i2 & 1) == 0;
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i27, i3 ? i28 + 1 | 0 : HEAP32[i28 + 8 >> 2] | 0, i3 ? (i2 & 255) >>> 1 : HEAP32[i28 + 4 >> 2] | 0) | 0;
+ HEAP32[i26 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i26 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i26 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i26, 34403) | 0;
- HEAP32[i24 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i24 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i24 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i26, 35867) | 0;
+ HEAP32[i25 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i25 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i25 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i25, i24);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i4, i25);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i25);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i24);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i24, i25);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i4, i24);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i24);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i25);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i26);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i28);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i27);
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i59);
} else {
- i3 = (HEAP32[i7 >> 2] | 0) + -24 | 0;
- __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EERKSB_PKS8_(i17, i71, 35447);
+ i2 = (HEAP32[i7 >> 2] | 0) + -24 | 0;
+ __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EERKSB_PKS8_(i17, i71, 36911);
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i18, (HEAP32[i7 >> 2] | 0) + -24 | 0);
- i4 = HEAP8[i18 >> 0] | 0;
- i2 = (i4 & 1) == 0;
- i4 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i17, i2 ? i18 + 1 | 0 : HEAP32[i18 + 8 >> 2] | 0, i2 ? (i4 & 255) >>> 1 : HEAP32[i18 + 4 >> 2] | 0) | 0;
- HEAP32[i15 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i15 + 4 >> 2] = HEAP32[i4 + 4 >> 2];
- HEAP32[i15 + 8 >> 2] = HEAP32[i4 + 8 >> 2];
- i2 = 0;
+ i3 = HEAP8[i18 >> 0] | 0;
+ i4 = (i3 & 1) == 0;
+ i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i17, i4 ? i18 + 1 | 0 : HEAP32[i18 + 8 >> 2] | 0, i4 ? (i3 & 255) >>> 1 : HEAP32[i18 + 4 >> 2] | 0) | 0;
+ HEAP32[i16 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i16 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
+ HEAP32[i16 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ i4 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i4 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i4 | 0) == 3) break;
+ HEAP32[i3 + (i4 << 2) >> 2] = 0;
+ i4 = i4 + 1 | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i16, i15);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i16);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i16);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i15);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i15, i16);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i2, i15);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i15);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i16);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i18);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i17);
}
@@ -9085,14 +8082,14 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
if (((i2 - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) break L1;
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i71, i2 + -24 | 0);
i1 = HEAP32[i4 >> 2] | 0;
- i3 = i1 + -24 | 0;
- i2 = i1;
+ i2 = i1 + -24 | 0;
+ i3 = i1;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break;
- i73 = i2 + -24 | 0;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i73 = i3 + -24 | 0;
HEAP32[i4 >> 2] = i73;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i73);
- i2 = HEAP32[i4 >> 2] | 0;
+ i3 = HEAP32[i4 >> 2] | 0;
}
i5 = HEAP8[i71 >> 0] | 0;
i2 = (i5 & 1) == 0;
@@ -9156,30 +8153,30 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
switch (i1 << 24 >> 24 | 0) {
case 112:
{
- i13 = i74 + 4 | 0;
- i9 = ((HEAP32[i13 >> 2] | 0) - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0;
+ i12 = i74 + 4 | 0;
+ i9 = ((HEAP32[i12 >> 2] | 0) - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0;
i71 = i73 + 2 | 0;
i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i71, i72, i74) | 0;
- i13 = ((HEAP32[i13 >> 2] | 0) - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0;
+ i12 = ((HEAP32[i12 >> 2] | 0) - (HEAP32[i74 >> 2] | 0) | 0) / 24 | 0;
if ((i1 | 0) == (i71 | 0)) break L69;
- i8 = i74 + 16 | 0;
- i7 = HEAP32[i74 + 12 >> 2] | 0;
- i12 = i74 + 20 | 0;
- i2 = HEAP32[i12 >> 2] | 0;
+ i7 = i74 + 16 | 0;
+ i8 = HEAP32[i74 + 12 >> 2] | 0;
+ i13 = i74 + 20 | 0;
+ i2 = HEAP32[i13 >> 2] | 0;
i71 = HEAP32[i74 + 24 >> 2] | 0;
i3 = i71;
if (i2 >>> 0 < i71 >>> 0) {
HEAP32[i2 >> 2] = 0;
HEAP32[i2 + 4 >> 2] = 0;
HEAP32[i2 + 8 >> 2] = 0;
- HEAP32[i2 + 12 >> 2] = i7;
- HEAP32[i12 >> 2] = (HEAP32[i12 >> 2] | 0) + 16;
+ HEAP32[i2 + 12 >> 2] = i8;
+ HEAP32[i13 >> 2] = (HEAP32[i13 >> 2] | 0) + 16;
} else {
- i4 = HEAP32[i8 >> 2] | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
i71 = i2 - i4 | 0;
i6 = i71 >> 4;
i5 = i6 + 1 | 0;
- if ((i71 | 0) < -16) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i8);
+ if ((i71 | 0) < -16) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
i2 = i3 - i4 | 0;
if (i2 >> 4 >>> 0 < 1073741823) {
i2 = i2 >> 3;
@@ -9191,29 +8188,29 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
HEAP32[i67 >> 2] = 0;
HEAP32[i67 + 4 >> 2] = 0;
HEAP32[i67 + 8 >> 2] = 0;
- HEAP32[i67 + 12 >> 2] = i7;
+ HEAP32[i67 + 12 >> 2] = i8;
HEAP32[i71 >> 2] = i67 + 16;
- __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i8, i75);
+ __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i7, i75);
__ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i75);
}
i11 = i75 + 8 | 0;
while (1) {
- if (i9 >>> 0 >= i13 >>> 0) break L1;
- i6 = HEAP32[i12 >> 2] | 0;
- i8 = i6 + -16 | 0;
- i7 = HEAP32[i74 >> 2] | 0;
- i10 = i7 + (i9 * 24 | 0) | 0;
+ if (i9 >>> 0 >= i12 >>> 0) break L1;
+ i6 = HEAP32[i13 >> 2] | 0;
+ i7 = i6 + -16 | 0;
+ i8 = HEAP32[i74 >> 2] | 0;
+ i10 = i8 + (i9 * 24 | 0) | 0;
i2 = i6 + -12 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i71 = HEAP32[i6 + -8 >> 2] | 0;
i4 = i71;
if ((i3 | 0) == (i71 | 0)) {
- i2 = HEAP32[i8 >> 2] | 0;
+ i2 = HEAP32[i7 >> 2] | 0;
i71 = i3 - i2 | 0;
i5 = (i71 | 0) / 24 | 0;
i3 = i5 + 1 | 0;
if ((i71 | 0) < -24) {
- i1 = i8;
+ i1 = i7;
break;
}
i2 = (i4 - i2 | 0) / 24 | 0;
@@ -9224,13 +8221,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i75, i2, i5, i6 + -4 | 0);
i71 = HEAP32[i11 >> 2] | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i71, i10);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i71 + 12 | 0, i7 + (i9 * 24 | 0) + 12 | 0);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i71 + 12 | 0, i8 + (i9 * 24 | 0) + 12 | 0);
HEAP32[i11 >> 2] = i71 + 24;
- __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i75);
+ __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i7, i75);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i75);
} else {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3, i10);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3 + 12 | 0, i7 + (i9 * 24 | 0) + 12 | 0);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3 + 12 | 0, i8 + (i9 * 24 | 0) + 12 | 0);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
}
i9 = i9 + 1 | 0;
@@ -9330,25 +8327,25 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
}
i4 = i2 + -24 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i50, i5, i3);
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i50, 0, 35666) | 0;
- HEAP32[i59 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i59 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i59 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i50, 0, 37130) | 0;
+ HEAP32[i59 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i59 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i59 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i59, 34354) | 0;
- HEAP32[i71 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i71 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i71 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i59, 35818) | 0;
+ HEAP32[i71 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i71 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i71 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
i67 = HEAP8[i71 >> 0] | 0;
i66 = (i67 & 1) == 0;
@@ -9360,25 +8357,25 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
}
i1 = i1 + 2 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, i5, i3);
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i56, 0, 35675) | 0;
- HEAP32[i66 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i66 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i66 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i56, 0, 37139) | 0;
+ HEAP32[i66 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i66 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i66 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i66, 34354) | 0;
- HEAP32[i63 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i63 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i63 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i66, 35818) | 0;
+ HEAP32[i63 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i63 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i63 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i53, i63);
i2 = i74 + 4 | 0;
@@ -9428,18 +8425,18 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
HEAP8[i75 + 1 >> 0] = 0;
HEAP8[i75 >> 0] = 0;
} else {
- i6 = i75 + 8 | 0;
- i2 = HEAP32[i6 >> 2] | 0;
+ i5 = i75 + 8 | 0;
+ i2 = HEAP32[i5 >> 2] | 0;
HEAP8[i2 >> 0] = 0;
- i7 = i75 + 4 | 0;
- HEAP32[i7 >> 2] = 0;
- i5 = HEAP32[i75 >> 2] | 0;
- i8 = (i5 & -2) + -1 | 0;
- i3 = i5 & 255;
+ i6 = i75 + 4 | 0;
+ HEAP32[i6 >> 2] = 0;
+ i7 = HEAP32[i75 >> 2] | 0;
+ i8 = (i7 & -2) + -1 | 0;
+ i3 = i7 & 255;
do if (!(i3 & 1)) {
- i1 = i5 >>> 1 & 127;
+ i1 = i7 >>> 1 & 127;
if ((i3 & 255) < 22) {
- _memcpy(i75 + 1 | 0, i2 | 0, (i5 >>> 1 & 127) + 1 | 0) | 0;
+ _memcpy(i75 + 1 | 0, i2 | 0, (i7 >>> 1 & 127) + 1 | 0) | 0;
_free(i2);
break;
}
@@ -9448,10 +8445,10 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
if ((i4 | 0) == (i8 | 0)) break L811;
i3 = _malloc(i2) | 0;
if (i4 >>> 0 <= i8 >>> 0 & (i3 | 0) == 0) break L811;
- _memcpy(i3 | 0, i75 + 1 | 0, (i5 >>> 1 & 127) + 1 | 0) | 0;
+ _memcpy(i3 | 0, i75 + 1 | 0, (i7 >>> 1 & 127) + 1 | 0) | 0;
HEAP32[i75 >> 2] = i2 | 1;
- HEAP32[i7 >> 2] = i1;
- HEAP32[i6 >> 2] = i3;
+ HEAP32[i6 >> 2] = i1;
+ HEAP32[i5 >> 2] = i3;
break L811;
} else {
HEAP8[i75 + 1 >> 0] = 0;
@@ -9470,18 +8467,18 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
i1 = i1 + 1 | 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i62);
- i1 = HEAP32[i9 >> 2] | 0;
- i2 = i1 + -24 | 0;
+ i2 = HEAP32[i9 >> 2] | 0;
+ i1 = i2 + -24 | 0;
while (1) {
- if ((i1 | 0) == (i2 | 0)) {
+ if ((i2 | 0) == (i1 | 0)) {
i1 = i29;
i67 = 622;
break L807;
}
- i71 = i1 + -24 | 0;
+ i71 = i2 + -24 | 0;
HEAP32[i9 >> 2] = i71;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i71);
- i1 = HEAP32[i9 >> 2] | 0;
+ i2 = HEAP32[i9 >> 2] | 0;
}
}
} else {
@@ -9489,24 +8486,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
i67 = 622;
} while (0);
do if ((i67 | 0) == 622) {
- if ((((i1 | 0) != (i72 | 0) ? (HEAP8[i1 >> 0] | 0) == 95 : 0) ? (i31 = i1 + 1 | 0, (i31 | 0) != (i72 | 0)) : 0) ? (i35 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i31, i72, i74) | 0, (i35 | 0) != (i31 | 0)) : 0) {
+ if ((((i1 | 0) != (i72 | 0) ? (HEAP8[i1 >> 0] | 0) == 95 : 0) ? (i30 = i1 + 1 | 0, (i30 | 0) != (i72 | 0)) : 0) ? (i35 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i30, i72, i74) | 0, (i35 | 0) != (i30 | 0)) : 0) {
i1 = HEAP32[i74 + 4 >> 2] | 0;
if ((HEAP32[i74 >> 2] | 0) == (i1 | 0)) break;
- i3 = i1 + -24 | 0;
- __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i65, 35666, i75);
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i65, 34354) | 0;
+ i1 = i1 + -24 | 0;
+ __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i65, 37130, i75);
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i65, 35818) | 0;
HEAP32[i64 >> 2] = HEAP32[i2 >> 2];
HEAP32[i64 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
HEAP32[i64 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i3 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- i1 = HEAP8[i64 >> 0] | 0;
- i71 = (i1 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i3, i71 ? i64 + 1 | 0 : HEAP32[i64 + 8 >> 2] | 0, i71 ? (i1 & 255) >>> 1 : HEAP32[i64 + 4 >> 2] | 0) | 0;
+ i71 = HEAP8[i64 >> 0] | 0;
+ i67 = (i71 & 1) == 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i1, i67 ? i64 + 1 | 0 : HEAP32[i64 + 8 >> 2] | 0, i67 ? (i71 & 255) >>> 1 : HEAP32[i64 + 4 >> 2] | 0) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i64);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i65);
i1 = i35;
@@ -9637,198 +8634,199 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i73,
STACKTOP = i76;
return i1 | 0;
}
-function __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i136, i123, i134) {
- i136 = i136 | 0;
- i123 = i123 | 0;
- i134 = i134 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0, i37 = 0, i38 = 0, i39 = 0, i40 = 0, i41 = 0, i42 = 0, i43 = 0, i44 = 0, i45 = 0, i46 = 0, i47 = 0, i48 = 0, i49 = 0, i50 = 0, i51 = 0, i52 = 0, i53 = 0, i54 = 0, i55 = 0, i56 = 0, i57 = 0, i58 = 0, i59 = 0, i60 = 0, i61 = 0, i62 = 0, i63 = 0, i64 = 0, i65 = 0, i66 = 0, i67 = 0, i68 = 0, i69 = 0, i70 = 0, i71 = 0, i72 = 0, i73 = 0, i74 = 0, i75 = 0, i76 = 0, i77 = 0, i78 = 0, i79 = 0, i80 = 0, i81 = 0, i82 = 0, i83 = 0, i84 = 0, i85 = 0, i86 = 0, i87 = 0, i88 = 0, i89 = 0, i90 = 0, i91 = 0, i92 = 0, i93 = 0, i94 = 0, i95 = 0, i96 = 0, i97 = 0, i98 = 0, i99 = 0, i100 = 0, i101 = 0, i102 = 0, i103 = 0, i104 = 0, i105 = 0, i106 = 0, i107 = 0, i108 = 0, i109 = 0, i110 = 0, i111 = 0, i112 = 0, i113 = 0, i114 = 0, i115 = 0, i116 = 0, i117 = 0, i118 = 0, i119 = 0, i120 = 0, i121 = 0, i122 = 0, i124 = 0, i125 = 0, i126 = 0, i127 = 0, i128 = 0, i129 = 0, i130 = 0, i131 = 0, i132 = 0, i133 = 0, i135 = 0, i137 = 0, i138 = 0, i139 = 0, i140 = 0;
+
+function __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i1, i126, i135) {
+ i1 = i1 | 0;
+ i126 = i126 | 0;
+ i135 = i135 | 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0, i37 = 0, i38 = 0, i39 = 0, i40 = 0, i41 = 0, i42 = 0, i43 = 0, i44 = 0, i45 = 0, i46 = 0, i47 = 0, i48 = 0, i49 = 0, i50 = 0, i51 = 0, i52 = 0, i53 = 0, i54 = 0, i55 = 0, i56 = 0, i57 = 0, i58 = 0, i59 = 0, i60 = 0, i61 = 0, i62 = 0, i63 = 0, i64 = 0, i65 = 0, i66 = 0, i67 = 0, i68 = 0, i69 = 0, i70 = 0, i71 = 0, i72 = 0, i73 = 0, i74 = 0, i75 = 0, i76 = 0, i77 = 0, i78 = 0, i79 = 0, i80 = 0, i81 = 0, i82 = 0, i83 = 0, i84 = 0, i85 = 0, i86 = 0, i87 = 0, i88 = 0, i89 = 0, i90 = 0, i91 = 0, i92 = 0, i93 = 0, i94 = 0, i95 = 0, i96 = 0, i97 = 0, i98 = 0, i99 = 0, i100 = 0, i101 = 0, i102 = 0, i103 = 0, i104 = 0, i105 = 0, i106 = 0, i107 = 0, i108 = 0, i109 = 0, i110 = 0, i111 = 0, i112 = 0, i113 = 0, i114 = 0, i115 = 0, i116 = 0, i117 = 0, i118 = 0, i119 = 0, i120 = 0, i121 = 0, i122 = 0, i123 = 0, i124 = 0, i125 = 0, i127 = 0, i128 = 0, i129 = 0, i130 = 0, i131 = 0, i132 = 0, i133 = 0, i134 = 0, i136 = 0, i137 = 0, i138 = 0, i139 = 0, i140 = 0;
i140 = STACKTOP;
STACKTOP = STACKTOP + 1104 | 0;
i138 = i140 + 1072 | 0;
i139 = i140 + 1048 | 0;
i137 = i140 + 1032 | 0;
- i135 = i140 + 1020 | 0;
- i132 = i140 + 1008 | 0;
- i131 = i140 + 984 | 0;
- i133 = i140 + 972 | 0;
+ i136 = i140 + 1020 | 0;
+ i133 = i140 + 1008 | 0;
+ i132 = i140 + 984 | 0;
+ i134 = i140 + 972 | 0;
i124 = i140 + 596 | 0;
i125 = i140 + 572 | 0;
- i126 = i140 + 548 | 0;
+ i128 = i140 + 548 | 0;
i127 = i140 + 524 | 0;
i130 = i140 + 488 | 0;
- i129 = i140 + 460 | 0;
- i24 = i140 + 960 | 0;
- i33 = i140 + 948 | 0;
- i37 = i140 + 936 | 0;
- i43 = i140 + 924 | 0;
- i50 = i140 + 912 | 0;
- i55 = i140 + 900 | 0;
- i60 = i140 + 888 | 0;
- i114 = i140 + 876 | 0;
- i115 = i140 + 864 | 0;
- i116 = i140 + 852 | 0;
- i117 = i140 + 840 | 0;
- i25 = i140 + 828 | 0;
- i118 = i140 + 816 | 0;
- i119 = i140 + 804 | 0;
- i120 = i140 + 792 | 0;
- i121 = i140 + 780 | 0;
- i26 = i140 + 768 | 0;
- i27 = i140 + 756 | 0;
- i28 = i140 + 744 | 0;
- i29 = i140 + 732 | 0;
- i30 = i140 + 720 | 0;
- i31 = i140 + 708 | 0;
- i32 = i140 + 696 | 0;
- i99 = i140 + 672 | 0;
- i98 = i140 + 656 | 0;
+ i131 = i140 + 460 | 0;
+ i2 = i140 + 960 | 0;
+ i6 = i140 + 948 | 0;
+ i9 = i140 + 936 | 0;
+ i13 = i140 + 924 | 0;
+ i16 = i140 + 912 | 0;
+ i18 = i140 + 900 | 0;
+ i19 = i140 + 888 | 0;
+ i115 = i140 + 876 | 0;
+ i116 = i140 + 864 | 0;
+ i117 = i140 + 852 | 0;
+ i118 = i140 + 840 | 0;
+ i20 = i140 + 828 | 0;
+ i119 = i140 + 816 | 0;
+ i120 = i140 + 804 | 0;
+ i121 = i140 + 792 | 0;
+ i122 = i140 + 780 | 0;
+ i23 = i140 + 768 | 0;
+ i24 = i140 + 756 | 0;
+ i25 = i140 + 744 | 0;
+ i27 = i140 + 732 | 0;
+ i28 = i140 + 720 | 0;
+ i29 = i140 + 708 | 0;
+ i30 = i140 + 696 | 0;
+ i98 = i140 + 672 | 0;
+ i99 = i140 + 656 | 0;
i100 = i140 + 644 | 0;
i101 = i140 + 632 | 0;
i102 = i140 + 620 | 0;
- i34 = i140 + 608 | 0;
- i35 = i140 + 584 | 0;
- i36 = i140 + 560 | 0;
- i38 = i140 + 536 | 0;
- i39 = i140 + 512 | 0;
- i40 = i140 + 472 | 0;
- i41 = i140 + 448 | 0;
- i42 = i140 + 436 | 0;
- i64 = i140 + 424 | 0;
- i86 = i140 + 400 | 0;
+ i31 = i140 + 608 | 0;
+ i32 = i140 + 584 | 0;
+ i33 = i140 + 560 | 0;
+ i34 = i140 + 536 | 0;
+ i35 = i140 + 512 | 0;
+ i36 = i140 + 472 | 0;
+ i37 = i140 + 448 | 0;
+ i38 = i140 + 436 | 0;
+ i63 = i140 + 424 | 0;
+ i82 = i140 + 400 | 0;
i83 = i140 + 384 | 0;
- i87 = i140 + 372 | 0;
- i88 = i140 + 360 | 0;
- i44 = i140 + 348 | 0;
- i45 = i140 + 336 | 0;
- i46 = i140 + 324 | 0;
- i47 = i140 + 312 | 0;
- i48 = i140 + 300 | 0;
- i49 = i140 + 288 | 0;
- i51 = i140 + 276 | 0;
- i52 = i140 + 264 | 0;
- i53 = i140 + 252 | 0;
- i65 = i140 + 240 | 0;
- i89 = i140 + 216 | 0;
- i84 = i140 + 204 | 0;
- i90 = i140 + 192 | 0;
- i91 = i140 + 180 | 0;
- i54 = i140 + 168 | 0;
+ i84 = i140 + 372 | 0;
+ i85 = i140 + 360 | 0;
+ i39 = i140 + 348 | 0;
+ i40 = i140 + 336 | 0;
+ i41 = i140 + 324 | 0;
+ i42 = i140 + 312 | 0;
+ i43 = i140 + 300 | 0;
+ i44 = i140 + 288 | 0;
+ i45 = i140 + 276 | 0;
+ i48 = i140 + 264 | 0;
+ i49 = i140 + 252 | 0;
+ i64 = i140 + 240 | 0;
+ i86 = i140 + 216 | 0;
+ i87 = i140 + 204 | 0;
+ i88 = i140 + 192 | 0;
+ i89 = i140 + 180 | 0;
+ i50 = i140 + 168 | 0;
i108 = i140 + 144 | 0;
- i107 = i140 + 132 | 0;
- i109 = i140 + 120 | 0;
- i110 = i140 + 108 | 0;
- i111 = i140 + 96 | 0;
- i112 = i140 + 84 | 0;
- i113 = i140 + 72 | 0;
- i56 = i140 + 60 | 0;
- i57 = i140 + 48 | 0;
- i58 = i140 + 36 | 0;
- i59 = i140 + 24 | 0;
- i92 = i140;
- i103 = i123;
- i61 = i103 - i136 | 0;
- L1 : do if ((i61 | 0) > 1) {
- i23 = (i61 | 0) > 3;
- if (i23 ? (HEAP8[i136 >> 0] | 0) == 103 : 0) {
- i62 = (HEAP8[i136 + 1 >> 0] | 0) == 115;
- i85 = i62;
- i62 = i62 ? i136 + 2 | 0 : i136;
+ i109 = i140 + 132 | 0;
+ i110 = i140 + 120 | 0;
+ i111 = i140 + 108 | 0;
+ i112 = i140 + 96 | 0;
+ i113 = i140 + 84 | 0;
+ i114 = i140 + 72 | 0;
+ i53 = i140 + 60 | 0;
+ i55 = i140 + 48 | 0;
+ i57 = i140 + 36 | 0;
+ i58 = i140 + 24 | 0;
+ i90 = i140;
+ i103 = i126;
+ i59 = i103 - i1 | 0;
+ L1 : do if ((i59 | 0) > 1) {
+ i60 = (i59 | 0) > 3;
+ if (i60 ? (HEAP8[i1 >> 0] | 0) == 103 : 0) {
+ i61 = (HEAP8[i1 + 1 >> 0] | 0) == 115;
+ i91 = i61;
+ i61 = i61 ? i1 + 2 | 0 : i1;
} else {
- i85 = 0;
- i62 = i136;
+ i91 = 0;
+ i61 = i1;
}
- do switch (HEAP8[i62 >> 0] | 0) {
+ do switch (HEAP8[i61 >> 0] | 0) {
case 76:
{
- i1 = __ZN10__cxxabiv112_GLOBAL__N_118parse_expr_primaryINS0_2DbEEEPKcS4_S4_RT_(i136, i123, i134) | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_118parse_expr_primaryINS0_2DbEEEPKcS4_S4_RT_(i1, i126, i135) | 0;
break L1;
}
case 84:
{
- i1 = __ZN10__cxxabiv112_GLOBAL__N_120parse_template_paramINS0_2DbEEEPKcS4_S4_RT_(i136, i123, i134) | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_120parse_template_paramINS0_2DbEEEPKcS4_S4_RT_(i1, i126, i135) | 0;
break L1;
}
case 102:
{
- i1 = __ZN10__cxxabiv112_GLOBAL__N_120parse_function_paramINS0_2DbEEEPKcS4_S4_RT_(i136, i123, i134) | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_120parse_function_paramINS0_2DbEEEPKcS4_S4_RT_(i1, i126, i135) | 0;
break L1;
}
case 97:
- switch (HEAP8[i62 + 1 >> 0] | 0) {
+ switch (HEAP8[i61 + 1 >> 0] | 0) {
case 97:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i24, 34400, 2);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i24, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i24);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i2, 35864, 2);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i2, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i2);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 100:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i33, 34411, 1);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i33, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i33);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i6, 35875, 1);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i6, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i6);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 110:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i37, 34411, 1);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i37, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i37);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i9, 35875, 1);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i9, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i9);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 78:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i43, 34413, 2);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i43, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i43);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i13, 35877, 2);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i13, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i13);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 83:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i50, 34416, 1);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i50, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i50);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i16, 35880, 1);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i16, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i16);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 116:
{
- if (((((i61 | 0) > 2 ? (HEAP8[i136 >> 0] | 0) == 97 : 0) ? (HEAP8[i136 + 1 >> 0] | 0) == 116 : 0) ? (i135 = i136 + 2 | 0, i106 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i135, i123, i134) | 0, (i106 | 0) != (i135 | 0)) : 0) ? (i81 = HEAP32[i134 + 4 >> 2] | 0, (HEAP32[i134 >> 2] | 0) != (i81 | 0)) : 0) {
- i10 = i81 + -24 | 0;
+ if (((((i59 | 0) > 2 ? (HEAP8[i1 >> 0] | 0) == 97 : 0) ? (HEAP8[i1 + 1 >> 0] | 0) == 116 : 0) ? (i136 = i1 + 2 | 0, i105 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i136, i126, i135) | 0, (i105 | 0) != (i136 | 0)) : 0) ? (i79 = HEAP32[i135 + 4 >> 2] | 0, (HEAP32[i135 >> 2] | 0) != (i79 | 0)) : 0) {
+ i10 = i79 + -24 | 0;
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i137, i10);
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i137, 0, 34418) | 0;
- HEAP32[i139 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i139 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i139 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i137, 0, 35882) | 0;
+ HEAP32[i139 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i139 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i139 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i139, 34358) | 0;
- HEAP32[i138 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i138 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i138 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i139, 35822) | 0;
+ HEAP32[i138 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i138 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i138 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
do if (HEAP8[i10 >> 0] & 1) {
- i9 = i81 + -16 | 0;
+ i9 = i79 + -16 | 0;
HEAP8[HEAP32[i9 >> 2] >> 0] = 0;
- i6 = i81 + -20 | 0;
+ i6 = i79 + -20 | 0;
HEAP32[i6 >> 2] = 0;
i1 = HEAP8[i10 >> 0] | 0;
if (!(i1 & 1)) i5 = 10; else {
@@ -9839,43 +8837,43 @@ function __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_
if (!(i1 & 1)) {
i2 = (i1 & 255) >>> 1;
if ((i1 & 255) < 22) {
- i8 = i2;
i4 = 10;
- i7 = 1;
+ i8 = 1;
+ i7 = i2;
} else {
- i8 = i2;
i4 = (i2 + 16 & 240) + -1 | 0;
- i7 = 1;
+ i8 = 1;
+ i7 = i2;
}
} else {
- i8 = 0;
i4 = 10;
+ i8 = 0;
i7 = 0;
}
if ((i4 | 0) != (i5 | 0)) {
if ((i4 | 0) == 10) {
i3 = i10 + 1 | 0;
i2 = HEAP32[i9 >> 2] | 0;
- if (i7) {
+ if (i8) {
_memcpy(i3 | 0, i2 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0;
_free(i2);
} else {
HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0;
_free(i2);
}
- HEAP8[i10 >> 0] = i8 << 1;
+ HEAP8[i10 >> 0] = i7 << 1;
break;
}
i2 = i4 + 1 | 0;
i3 = _malloc(i2) | 0;
if (!(i4 >>> 0 <= i5 >>> 0 & (i3 | 0) == 0)) {
- if (i7) _memcpy(i3 | 0, i10 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
+ if (i8) _memcpy(i3 | 0, i10 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
i136 = HEAP32[i9 >> 2] | 0;
HEAP8[i3 >> 0] = HEAP8[i136 >> 0] | 0;
_free(i136);
}
HEAP32[i10 >> 2] = i2 | 1;
- HEAP32[i6 >> 2] = i8;
+ HEAP32[i6 >> 2] = i7;
HEAP32[i9 >> 2] = i3;
}
}
@@ -9895,34 +8893,34 @@ function __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i138);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i139);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i137);
- i1 = i106;
- } else i1 = i136;
+ i1 = i105;
+ }
break L1;
}
case 122:
{
- if (((((i61 | 0) > 2 ? (HEAP8[i136 >> 0] | 0) == 97 : 0) ? (HEAP8[i136 + 1 >> 0] | 0) == 122 : 0) ? (i135 = i136 + 2 | 0, i105 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i135, i123, i134) | 0, (i105 | 0) != (i135 | 0)) : 0) ? (i80 = HEAP32[i134 + 4 >> 2] | 0, (HEAP32[i134 >> 2] | 0) != (i80 | 0)) : 0) {
+ if (((((i59 | 0) > 2 ? (HEAP8[i1 >> 0] | 0) == 97 : 0) ? (HEAP8[i1 + 1 >> 0] | 0) == 122 : 0) ? (i136 = i1 + 2 | 0, i106 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i136, i126, i135) | 0, (i106 | 0) != (i136 | 0)) : 0) ? (i80 = HEAP32[i135 + 4 >> 2] | 0, (HEAP32[i135 >> 2] | 0) != (i80 | 0)) : 0) {
i10 = i80 + -24 | 0;
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i137, i10);
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i137, 0, 34418) | 0;
- HEAP32[i139 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i139 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i139 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i137, 0, 35882) | 0;
+ HEAP32[i139 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i139 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i139 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i139, 34358) | 0;
- HEAP32[i138 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i138 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i138 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i139, 35822) | 0;
+ HEAP32[i138 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i138 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i138 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
do if (HEAP8[i10 >> 0] & 1) {
i9 = i80 + -16 | 0;
@@ -9938,13 +8936,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_
if (!(i1 & 1)) {
i2 = (i1 & 255) >>> 1;
if ((i1 & 255) < 22) {
- i8 = i2;
+ i8 = 1;
i4 = 10;
- i7 = 1;
+ i7 = i2;
} else {
- i8 = i2;
+ i8 = 1;
i4 = (i2 + 16 & 240) + -1 | 0;
- i7 = 1;
+ i7 = i2;
}
} else {
i8 = 0;
@@ -9955,26 +8953,26 @@ function __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_
if ((i4 | 0) == 10) {
i3 = i10 + 1 | 0;
i2 = HEAP32[i9 >> 2] | 0;
- if (i7) {
+ if (i8) {
_memcpy(i3 | 0, i2 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0;
_free(i2);
} else {
HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0;
_free(i2);
}
- HEAP8[i10 >> 0] = i8 << 1;
+ HEAP8[i10 >> 0] = i7 << 1;
break;
}
i2 = i4 + 1 | 0;
i3 = _malloc(i2) | 0;
if (!(i4 >>> 0 <= i5 >>> 0 & (i3 | 0) == 0)) {
- if (i7) _memcpy(i3 | 0, i10 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
+ if (i8) _memcpy(i3 | 0, i10 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
i136 = HEAP32[i9 >> 2] | 0;
HEAP8[i3 >> 0] = HEAP8[i136 >> 0] | 0;
_free(i136);
}
HEAP32[i10 >> 2] = i2 | 1;
- HEAP32[i6 >> 2] = i8;
+ HEAP32[i6 >> 2] = i7;
HEAP32[i9 >> 2] = i3;
}
}
@@ -9994,2443 +8992,2313 @@ function __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i138);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i139);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i137);
- i1 = i105;
- } else i1 = i136;
+ i1 = i106;
+ }
break L1;
}
default:
- {
- i1 = i136;
- break L1;
- }
+ break L1;
}
case 99:
- switch (HEAP8[i62 + 1 >> 0] | 0) {
+ switch (HEAP8[i61 + 1 >> 0] | 0) {
case 99:
{
- if ((((((i61 | 0) > 2 ? (HEAP8[i136 >> 0] | 0) == 99 : 0) ? (HEAP8[i136 + 1 >> 0] | 0) == 99 : 0) ? (i130 = i136 + 2 | 0, i22 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i130, i123, i134) | 0, (i22 | 0) != (i130 | 0)) : 0) ? (i96 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i22, i123, i134) | 0, (i96 | 0) != (i22 | 0)) : 0) ? (i73 = i134 + 4 | 0, i12 = HEAP32[i73 >> 2] | 0, ((i12 - (HEAP32[i134 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) : 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i138, i12 + -24 | 0);
- i1 = HEAP32[i73 >> 2] | 0;
- i3 = i1 + -24 | 0;
- i2 = i1;
+ if ((((((i59 | 0) > 2 ? (HEAP8[i1 >> 0] | 0) == 99 : 0) ? (HEAP8[i1 + 1 >> 0] | 0) == 99 : 0) ? (i131 = i1 + 2 | 0, i21 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i131, i126, i135) | 0, (i21 | 0) != (i131 | 0)) : 0) ? (i95 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i21, i126, i135) | 0, (i95 | 0) != (i21 | 0)) : 0) ? (i70 = i135 + 4 | 0, i22 = HEAP32[i70 >> 2] | 0, ((i22 - (HEAP32[i135 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) : 0) {
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i138, i22 + -24 | 0);
+ i1 = HEAP32[i70 >> 2] | 0;
+ i2 = i1 + -24 | 0;
+ i3 = i1;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break;
- i136 = i2 + -24 | 0;
- HEAP32[i73 >> 2] = i136;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i136);
- i2 = HEAP32[i73 >> 2] | 0;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i135 = i3 + -24 | 0;
+ HEAP32[i70 >> 2] = i135;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i135);
+ i3 = HEAP32[i70 >> 2] | 0;
}
i3 = i1 + -48 | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i133, i3);
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i133, 0, 34428) | 0;
- HEAP32[i131 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i131 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i131 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i134, i3);
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i134, 0, 35892) | 0;
+ HEAP32[i132 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i132 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i132 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i131, 34440) | 0;
- HEAP32[i132 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i132 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i132 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i132, 35904) | 0;
+ HEAP32[i133 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i133 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i133 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = HEAP8[i138 >> 0] | 0;
- i1 = (i2 & 1) == 0;
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i132, i1 ? i138 + 1 | 0 : HEAP32[i138 + 8 >> 2] | 0, i1 ? (i2 & 255) >>> 1 : HEAP32[i138 + 4 >> 2] | 0) | 0;
- HEAP32[i135 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i135 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i135 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = HEAP8[i138 >> 0] | 0;
+ i2 = (i1 & 1) == 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i133, i2 ? i138 + 1 | 0 : HEAP32[i138 + 8 >> 2] | 0, i2 ? (i1 & 255) >>> 1 : HEAP32[i138 + 4 >> 2] | 0) | 0;
+ HEAP32[i136 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i136 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i136 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i135, 34358) | 0;
- HEAP32[i137 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i137 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i137 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i136, 35822) | 0;
+ HEAP32[i137 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i137 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i137 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i139, i137);
__ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i139);
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i139);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i137);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i135);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i132);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i131);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i136);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i133);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i132);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i134);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i138);
- i1 = i96;
- } else i1 = i136;
+ i1 = i95;
+ }
break L1;
}
case 108:
{
- L138 : do if ((((i23 ? (HEAP8[i136 >> 0] | 0) == 99 : 0) ? (HEAP8[i136 + 1 >> 0] | 0) == 108 : 0) ? (i137 = i136 + 2 | 0, i2 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i137, i123, i134) | 0, !((i2 | 0) == (i137 | 0) | (i2 | 0) == (i123 | 0))) : 0) ? (i122 = i134 + 4 | 0, i14 = HEAP32[i122 >> 2] | 0, (HEAP32[i134 >> 2] | 0) != (i14 | 0)) : 0) {
- i137 = i14 + -12 | 0;
- i3 = HEAP8[i137 >> 0] | 0;
- i1 = (i3 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i14 + -24 | 0, i1 ? i137 + 1 | 0 : HEAP32[i14 + -4 >> 2] | 0, i1 ? (i3 & 255) >>> 1 : HEAP32[i14 + -8 >> 2] | 0) | 0;
- i3 = HEAP32[i122 >> 2] | 0;
- i1 = 0;
+ L138 : do if ((((i60 ? (HEAP8[i1 >> 0] | 0) == 99 : 0) ? (HEAP8[i1 + 1 >> 0] | 0) == 108 : 0) ? (i137 = i1 + 2 | 0, i3 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i137, i126, i135) | 0, !((i3 | 0) == (i137 | 0) | (i3 | 0) == (i126 | 0))) : 0) ? (i123 = i135 + 4 | 0, i26 = HEAP32[i123 >> 2] | 0, (HEAP32[i135 >> 2] | 0) != (i26 | 0)) : 0) {
+ i137 = i26 + -12 | 0;
+ i4 = HEAP8[i137 >> 0] | 0;
+ i2 = (i4 & 1) == 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i26 + -24 | 0, i2 ? i137 + 1 | 0 : HEAP32[i26 + -4 >> 2] | 0, i2 ? (i4 & 255) >>> 1 : HEAP32[i26 + -8 >> 2] | 0) | 0;
+ i4 = HEAP32[i123 >> 2] | 0;
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i138 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i138 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i11 = i3 + -12 | 0;
- do if (HEAP8[i11 >> 0] & 1) {
- i10 = i3 + -4 | 0;
- HEAP8[HEAP32[i10 >> 2] >> 0] = 0;
- i7 = i3 + -8 | 0;
- HEAP32[i7 >> 2] = 0;
- i1 = HEAP8[i11 >> 0] | 0;
- if (!(i1 & 1)) i6 = 10; else {
- i6 = HEAP32[i11 >> 2] | 0;
- i1 = i6 & 255;
- i6 = (i6 & -2) + -1 | 0;
+ i12 = i4 + -12 | 0;
+ do if (HEAP8[i12 >> 0] & 1) {
+ i11 = i4 + -4 | 0;
+ HEAP8[HEAP32[i11 >> 2] >> 0] = 0;
+ i8 = i4 + -8 | 0;
+ HEAP32[i8 >> 2] = 0;
+ i2 = HEAP8[i12 >> 0] | 0;
+ if (!(i2 & 1)) i7 = 10; else {
+ i7 = HEAP32[i12 >> 2] | 0;
+ i2 = i7 & 255;
+ i7 = (i7 & -2) + -1 | 0;
}
- if (!(i1 & 1)) {
- i3 = (i1 & 255) >>> 1;
- if ((i1 & 255) < 22) {
- i9 = i3;
- i5 = 10;
- i8 = 1;
+ if (!(i2 & 1)) {
+ i4 = (i2 & 255) >>> 1;
+ if ((i2 & 255) < 22) {
+ i10 = 1;
+ i6 = 10;
+ i9 = i4;
} else {
- i9 = i3;
- i5 = (i3 + 16 & 240) + -1 | 0;
- i8 = 1;
+ i10 = 1;
+ i6 = (i4 + 16 & 240) + -1 | 0;
+ i9 = i4;
}
} else {
+ i10 = 0;
+ i6 = 10;
i9 = 0;
- i5 = 10;
- i8 = 0;
}
- if ((i5 | 0) != (i6 | 0)) {
- if ((i5 | 0) == 10) {
- i4 = i11 + 1 | 0;
- i3 = HEAP32[i10 >> 2] | 0;
- if (i8) {
- _memcpy(i4 | 0, i3 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0;
- _free(i3);
+ if ((i6 | 0) != (i7 | 0)) {
+ if ((i6 | 0) == 10) {
+ i5 = i12 + 1 | 0;
+ i4 = HEAP32[i11 >> 2] | 0;
+ if (i10) {
+ _memcpy(i5 | 0, i4 | 0, ((i2 & 255) >>> 1) + 1 | 0) | 0;
+ _free(i4);
} else {
- HEAP8[i4 >> 0] = HEAP8[i3 >> 0] | 0;
- _free(i3);
+ HEAP8[i5 >> 0] = HEAP8[i4 >> 0] | 0;
+ _free(i4);
}
- HEAP8[i11 >> 0] = i9 << 1;
+ HEAP8[i12 >> 0] = i9 << 1;
break;
}
- i3 = i5 + 1 | 0;
- i4 = _malloc(i3) | 0;
- if (!(i5 >>> 0 <= i6 >>> 0 & (i4 | 0) == 0)) {
- if (i8) _memcpy(i4 | 0, i11 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
- i137 = HEAP32[i10 >> 2] | 0;
- HEAP8[i4 >> 0] = HEAP8[i137 >> 0] | 0;
+ i4 = i6 + 1 | 0;
+ i5 = _malloc(i4) | 0;
+ if (!(i6 >>> 0 <= i7 >>> 0 & (i5 | 0) == 0)) {
+ if (i10) _memcpy(i5 | 0, i12 + 1 | 0, ((i2 & 255) >>> 1) + 1 | 0) | 0; else {
+ i137 = HEAP32[i11 >> 2] | 0;
+ HEAP8[i5 >> 0] = HEAP8[i137 >> 0] | 0;
_free(i137);
}
- HEAP32[i11 >> 2] = i3 | 1;
- HEAP32[i7 >> 2] = i9;
- HEAP32[i10 >> 2] = i4;
+ HEAP32[i12 >> 2] = i4 | 1;
+ HEAP32[i8 >> 2] = i9;
+ HEAP32[i11 >> 2] = i5;
}
}
} else {
- HEAP8[i11 + 1 >> 0] = 0;
- HEAP8[i11 >> 0] = 0;
+ HEAP8[i12 + 1 >> 0] = 0;
+ HEAP8[i12 >> 0] = 0;
} while (0);
- HEAP32[i11 >> 2] = HEAP32[i138 >> 2];
- HEAP32[i11 + 4 >> 2] = HEAP32[i138 + 4 >> 2];
- HEAP32[i11 + 8 >> 2] = HEAP32[i138 + 8 >> 2];
- i1 = 0;
+ HEAP32[i12 >> 2] = HEAP32[i138 >> 2];
+ HEAP32[i12 + 4 >> 2] = HEAP32[i138 + 4 >> 2];
+ HEAP32[i12 + 8 >> 2] = HEAP32[i138 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i138 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i138 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i138);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i122 >> 2] | 0) + -24 | 0, 34356) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i123 >> 2] | 0) + -24 | 0, 35820) | 0;
i7 = i139 + 4 | 0;
- i6 = i139 + 8 | 0;
- i8 = i139 + 1 | 0;
+ i8 = i139 + 8 | 0;
+ i9 = i139 + 1 | 0;
while (1) {
- if ((HEAP8[i2 >> 0] | 0) == 69) break;
- i5 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i123, i134) | 0;
- if ((i5 | 0) == (i2 | 0) | (i5 | 0) == (i123 | 0)) {
- i1 = i136;
- break L138;
- }
- i1 = HEAP32[i122 >> 2] | 0;
- if ((HEAP32[i134 >> 2] | 0) == (i1 | 0)) {
- i1 = i136;
- break L138;
- }
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i139, i1 + -24 | 0);
- i3 = HEAP32[i122 >> 2] | 0;
- i4 = i3 + -24 | 0;
- i1 = i3;
+ if ((HEAP8[i3 >> 0] | 0) == 69) break;
+ i6 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i3, i126, i135) | 0;
+ if ((i6 | 0) == (i3 | 0) | (i6 | 0) == (i126 | 0)) break L138;
+ i2 = HEAP32[i123 >> 2] | 0;
+ if ((HEAP32[i135 >> 2] | 0) == (i2 | 0)) break L138;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i139, i2 + -24 | 0);
+ i4 = HEAP32[i123 >> 2] | 0;
+ i5 = i4 + -24 | 0;
+ i2 = i4;
while (1) {
- if ((i1 | 0) == (i4 | 0)) break;
- i138 = i1 + -24 | 0;
- HEAP32[i122 >> 2] = i138;
+ if ((i2 | 0) == (i5 | 0)) break;
+ i138 = i2 + -24 | 0;
+ HEAP32[i123 >> 2] = i138;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i138);
- i1 = HEAP32[i122 >> 2] | 0;
+ i2 = HEAP32[i123 >> 2] | 0;
}
- i1 = HEAP8[i139 >> 0] | 0;
- i2 = (i1 & 1) == 0;
- i1 = i2 ? (i1 & 255) >>> 1 : HEAP32[i7 >> 2] | 0;
- if (i1 | 0) {
- if ((HEAP32[i134 >> 2] | 0) == (i4 | 0)) {
- i128 = 147;
+ i3 = HEAP8[i139 >> 0] | 0;
+ i2 = (i3 & 1) == 0;
+ i3 = i2 ? (i3 & 255) >>> 1 : HEAP32[i7 >> 2] | 0;
+ if (i3 | 0) {
+ if ((HEAP32[i135 >> 2] | 0) == (i5 | 0)) {
+ i129 = 147;
break;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i3 + -48 | 0, i2 ? i8 : HEAP32[i6 >> 2] | 0, i1) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i4 + -48 | 0, i2 ? i9 : HEAP32[i8 >> 2] | 0, i3) | 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i139);
- i2 = i5;
+ i3 = i6;
}
- if ((i128 | 0) == 147) {
+ if ((i129 | 0) == 147) {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i139);
- i1 = i136;
break;
}
- i1 = HEAP32[i122 >> 2] | 0;
- if ((HEAP32[i134 >> 2] | 0) != (i1 | 0)) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i1 + -24 | 0, 34358) | 0;
- i1 = i2 + 1 | 0;
- } else i1 = i136;
- } else i1 = i136; while (0);
+ i2 = HEAP32[i123 >> 2] | 0;
+ if ((HEAP32[i135 >> 2] | 0) != (i2 | 0)) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -24 | 0, 35822) | 0;
+ i1 = i3 + 1 | 0;
+ }
+ } while (0);
break L1;
}
case 109:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i55, 34443, 1);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i55, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i55);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i18, 35907, 1);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i18, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i18);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 111:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i60, 34445, 1);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i60, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i60);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i19, 35909, 1);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i19, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i19);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 118:
{
- L197 : do if ((((i61 | 0) > 2 ? (HEAP8[i136 >> 0] | 0) == 99 : 0) ? (HEAP8[i136 + 1 >> 0] | 0) == 118 : 0) ? (i129 = i134 + 63 | 0, i128 = HEAP8[i129 >> 0] | 0, HEAP8[i129 >> 0] = 0, i130 = i136 + 2 | 0, i63 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i130, i123, i134) | 0, HEAP8[i129 >> 0] = i128, !((i63 | 0) == (i130 | 0) | (i63 | 0) == (i123 | 0))) : 0) {
- if ((HEAP8[i63 >> 0] | 0) != 95) {
- i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i63, i123, i134) | 0;
- if ((i1 | 0) == (i63 | 0)) {
- i1 = i136;
- break;
- }
+ L197 : do if ((((i59 | 0) > 2 ? (HEAP8[i1 >> 0] | 0) == 99 : 0) ? (HEAP8[i1 + 1 >> 0] | 0) == 118 : 0) ? (i130 = i135 + 63 | 0, i129 = HEAP8[i130 >> 0] | 0, HEAP8[i130 >> 0] = 0, i131 = i1 + 2 | 0, i62 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i131, i126, i135) | 0, HEAP8[i130 >> 0] = i129, !((i62 | 0) == (i131 | 0) | (i62 | 0) == (i126 | 0))) : 0) {
+ if ((HEAP8[i62 >> 0] | 0) != 95) {
+ i2 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i62, i126, i135) | 0;
+ if ((i2 | 0) == (i62 | 0)) break;
} else {
- i1 = i63 + 1 | 0;
- if ((i1 | 0) == (i123 | 0)) {
- i1 = i136;
- break;
- }
- i2 = HEAP8[i1 >> 0] | 0;
- L205 : do if (i2 << 24 >> 24 == 69) {
- i5 = i134 + 4 | 0;
- i3 = HEAP32[i5 >> 2] | 0;
- i130 = HEAP32[i134 + 8 >> 2] | 0;
- i4 = i130;
- if (i3 >>> 0 < i130 >>> 0) {
- HEAP32[i3 >> 2] = 0;
- HEAP32[i3 + 4 >> 2] = 0;
- HEAP32[i3 + 8 >> 2] = 0;
- HEAP32[i3 + 12 >> 2] = 0;
- HEAP32[i3 + 16 >> 2] = 0;
- HEAP32[i3 + 20 >> 2] = 0;
- i2 = 0;
+ i2 = i62 + 1 | 0;
+ if ((i2 | 0) == (i126 | 0)) break;
+ i3 = HEAP8[i2 >> 0] | 0;
+ L205 : do if (i3 << 24 >> 24 == 69) {
+ i5 = i135 + 4 | 0;
+ i4 = HEAP32[i5 >> 2] | 0;
+ i131 = HEAP32[i135 + 8 >> 2] | 0;
+ i6 = i131;
+ if (i4 >>> 0 < i131 >>> 0) {
+ HEAP32[i4 >> 2] = 0;
+ HEAP32[i4 + 4 >> 2] = 0;
+ HEAP32[i4 + 8 >> 2] = 0;
+ HEAP32[i4 + 12 >> 2] = 0;
+ HEAP32[i4 + 16 >> 2] = 0;
+ HEAP32[i4 + 20 >> 2] = 0;
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i4 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- i3 = i3 + 12 | 0;
- i2 = 0;
+ i3 = i4 + 12 | 0;
+ i4 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i4 | 0) == 3) break;
+ HEAP32[i3 + (i4 << 2) >> 2] = 0;
+ i4 = i4 + 1 | 0;
}
HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 24;
break;
}
- i2 = HEAP32[i134 >> 2] | 0;
- i130 = i3 - i2 | 0;
- i5 = (i130 | 0) / 24 | 0;
- i3 = i5 + 1 | 0;
- if ((i130 | 0) < -24) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i134);
- i2 = (i4 - i2 | 0) / 24 | 0;
- if (i2 >>> 0 < 1073741823) {
- i2 = i2 << 1;
- i2 = i2 >>> 0 < i3 >>> 0 ? i3 : i2;
- } else i2 = 2147483647;
- __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i138, i2, i5, i134 + 12 | 0);
+ i3 = HEAP32[i135 >> 2] | 0;
+ i131 = i4 - i3 | 0;
+ i5 = (i131 | 0) / 24 | 0;
+ i4 = i5 + 1 | 0;
+ if ((i131 | 0) < -24) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i135);
+ i3 = (i6 - i3 | 0) / 24 | 0;
+ if (i3 >>> 0 < 1073741823) {
+ i3 = i3 << 1;
+ i3 = i3 >>> 0 < i4 >>> 0 ? i4 : i3;
+ } else i3 = 2147483647;
+ __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i138, i3, i5, i135 + 12 | 0);
i5 = i138 + 8 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- HEAP32[i4 >> 2] = 0;
- HEAP32[i4 + 4 >> 2] = 0;
- HEAP32[i4 + 8 >> 2] = 0;
- HEAP32[i4 + 12 >> 2] = 0;
- HEAP32[i4 + 16 >> 2] = 0;
- HEAP32[i4 + 20 >> 2] = 0;
- i2 = 0;
+ i6 = HEAP32[i5 >> 2] | 0;
+ HEAP32[i6 >> 2] = 0;
+ HEAP32[i6 + 4 >> 2] = 0;
+ HEAP32[i6 + 8 >> 2] = 0;
+ HEAP32[i6 + 12 >> 2] = 0;
+ HEAP32[i6 + 16 >> 2] = 0;
+ HEAP32[i6 + 20 >> 2] = 0;
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i4 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i6 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- i3 = i4 + 12 | 0;
- i2 = 0;
+ i3 = i6 + 12 | 0;
+ i4 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i4 | 0) == 3) break;
+ HEAP32[i3 + (i4 << 2) >> 2] = 0;
+ i4 = i4 + 1 | 0;
}
- HEAP32[i5 >> 2] = i4 + 24;
- __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i134, i138);
+ HEAP32[i5 >> 2] = i6 + 24;
+ __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i135, i138);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i138);
} else while (1) {
- if (i2 << 24 >> 24 == 69) break L205;
- i3 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i1, i123, i134) | 0;
- i2 = (i3 | 0) == (i1 | 0) | (i3 | 0) == (i123 | 0);
- if (i2) {
- i1 = i136;
- break L197;
- }
- i2 = HEAP8[(i2 ? i1 : i3) >> 0] | 0;
- i1 = i3;
+ if (i3 << 24 >> 24 == 69) break L205;
+ i4 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i126, i135) | 0;
+ i3 = (i4 | 0) == (i2 | 0) | (i4 | 0) == (i126 | 0);
+ if (i3) break L197;
+ i3 = HEAP8[(i3 ? i2 : i4) >> 0] | 0;
+ i2 = i4;
} while (0);
- i1 = i1 + 1 | 0;
+ i2 = i2 + 1 | 0;
}
- i5 = i134 + 4 | 0;
- i2 = HEAP32[i5 >> 2] | 0;
- if (((i2 - (HEAP32[i134 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i138, i2 + -24 | 0);
- i2 = HEAP32[i5 >> 2] | 0;
- i4 = i2 + -24 | 0;
- i3 = i2;
+ i5 = i135 + 4 | 0;
+ i3 = HEAP32[i5 >> 2] | 0;
+ if (((i3 - (HEAP32[i135 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) {
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i138, i3 + -24 | 0);
+ i1 = HEAP32[i5 >> 2] | 0;
+ i3 = i1 + -24 | 0;
+ i4 = i1;
while (1) {
- if ((i3 | 0) == (i4 | 0)) break;
- i136 = i3 + -24 | 0;
- HEAP32[i5 >> 2] = i136;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i136);
- i3 = HEAP32[i5 >> 2] | 0;
+ if ((i4 | 0) == (i3 | 0)) break;
+ i135 = i4 + -24 | 0;
+ HEAP32[i5 >> 2] = i135;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i135);
+ i4 = HEAP32[i5 >> 2] | 0;
}
- i4 = i2 + -48 | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i133, i4);
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i133, 0, 34356) | 0;
- HEAP32[i131 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i131 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i131 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i4 = i1 + -48 | 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i134, i4);
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i134, 0, 35820) | 0;
+ HEAP32[i132 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i132 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i132 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i1 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i131, 34447) | 0;
- HEAP32[i132 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i132 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i132 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i132, 35911) | 0;
+ HEAP32[i133 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i133 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i133 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i1 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- i3 = HEAP8[i138 >> 0] | 0;
- i2 = (i3 & 1) == 0;
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i132, i2 ? i138 + 1 | 0 : HEAP32[i138 + 8 >> 2] | 0, i2 ? (i3 & 255) >>> 1 : HEAP32[i138 + 4 >> 2] | 0) | 0;
- HEAP32[i135 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i135 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i135 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i1 = HEAP8[i138 >> 0] | 0;
+ i3 = (i1 & 1) == 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i133, i3 ? i138 + 1 | 0 : HEAP32[i138 + 8 >> 2] | 0, i3 ? (i1 & 255) >>> 1 : HEAP32[i138 + 4 >> 2] | 0) | 0;
+ HEAP32[i136 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i136 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i136 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i1 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i135, 34358) | 0;
- HEAP32[i137 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i137 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i137 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i136, 35822) | 0;
+ HEAP32[i137 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i137 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i137 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i1 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i139, i137);
__ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i4, i139);
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i139);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i137);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i135);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i132);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i131);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i136);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i133);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i132);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i134);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i138);
- } else i1 = i136;
- } else i1 = i136; while (0);
+ i1 = i2;
+ }
+ } while (0);
break L1;
}
default:
- {
- i1 = i136;
- break L1;
- }
+ break L1;
}
case 100:
- switch (HEAP8[i62 + 1 >> 0] | 0) {
+ switch (HEAP8[i61 + 1 >> 0] | 0) {
case 97:
{
- i139 = i62 + 2 | 0;
- i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i139, i123, i134) | 0;
- if ((i1 | 0) == (i139 | 0)) {
- i1 = i136;
- break L1;
- }
- i4 = i134 + 4 | 0;
- i5 = HEAP32[i4 >> 2] | 0;
- if ((HEAP32[i134 >> 2] | 0) == (i5 | 0)) {
- i1 = i136;
- break L1;
- }
- i11 = i5 + -24 | 0;
- L266 : do if (i85) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i116, 34450, 2); else {
- i2 = 0;
+ i139 = i61 + 2 | 0;
+ i11 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i139, i126, i135) | 0;
+ if ((i11 | 0) == (i139 | 0)) break L1;
+ i3 = i135 + 4 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if ((HEAP32[i135 >> 2] | 0) == (i4 | 0)) break L1;
+ i10 = i4 + -24 | 0;
+ L266 : do if (i91) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i117, 35914, 2); else {
+ i1 = 0;
while (1) {
- if ((i2 | 0) == 3) break L266;
- HEAP32[i116 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i1 | 0) == 3) break L266;
+ HEAP32[i117 + (i1 << 2) >> 2] = 0;
+ i1 = i1 + 1 | 0;
}
} while (0);
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i116, 34453) | 0;
- HEAP32[i115 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i115 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i115 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i117, 35917) | 0;
+ HEAP32[i116 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i116 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i116 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
i2 = 0;
while (1) {
if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i117, (HEAP32[i4 >> 2] | 0) + -24 | 0);
- i3 = HEAP8[i117 >> 0] | 0;
- i2 = (i3 & 1) == 0;
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i115, i2 ? i117 + 1 | 0 : HEAP32[i117 + 8 >> 2] | 0, i2 ? (i3 & 255) >>> 1 : HEAP32[i117 + 4 >> 2] | 0) | 0;
- HEAP32[i114 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i114 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i114 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i118, (HEAP32[i3 >> 2] | 0) + -24 | 0);
+ i1 = HEAP8[i118 >> 0] | 0;
+ i2 = (i1 & 1) == 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i116, i2 ? i118 + 1 | 0 : HEAP32[i118 + 8 >> 2] | 0, i2 ? (i1 & 255) >>> 1 : HEAP32[i118 + 4 >> 2] | 0) | 0;
+ HEAP32[i115 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i115 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i115 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
i2 = 0;
while (1) {
if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- do if (HEAP8[i11 >> 0] & 1) {
- i10 = i5 + -16 | 0;
- HEAP8[HEAP32[i10 >> 2] >> 0] = 0;
- i7 = i5 + -20 | 0;
- HEAP32[i7 >> 2] = 0;
- i2 = HEAP8[i11 >> 0] | 0;
- if (!(i2 & 1)) i6 = 10; else {
- i6 = HEAP32[i11 >> 2] | 0;
- i2 = i6 & 255;
- i6 = (i6 & -2) + -1 | 0;
+ do if (HEAP8[i10 >> 0] & 1) {
+ i9 = i4 + -16 | 0;
+ HEAP8[HEAP32[i9 >> 2] >> 0] = 0;
+ i6 = i4 + -20 | 0;
+ HEAP32[i6 >> 2] = 0;
+ i1 = HEAP8[i10 >> 0] | 0;
+ if (!(i1 & 1)) i5 = 10; else {
+ i5 = HEAP32[i10 >> 2] | 0;
+ i1 = i5 & 255;
+ i5 = (i5 & -2) + -1 | 0;
}
- if (!(i2 & 1)) {
- i3 = (i2 & 255) >>> 1;
- if ((i2 & 255) < 22) {
- i9 = i3;
- i5 = 10;
+ if (!(i1 & 1)) {
+ i2 = (i1 & 255) >>> 1;
+ if ((i1 & 255) < 22) {
i8 = 1;
+ i4 = 10;
+ i7 = i2;
} else {
- i9 = i3;
- i5 = (i3 + 16 & 240) + -1 | 0;
i8 = 1;
+ i4 = (i2 + 16 & 240) + -1 | 0;
+ i7 = i2;
}
} else {
- i9 = 0;
- i5 = 10;
i8 = 0;
+ i4 = 10;
+ i7 = 0;
}
- if ((i5 | 0) != (i6 | 0)) {
- if ((i5 | 0) == 10) {
- i4 = i11 + 1 | 0;
- i3 = HEAP32[i10 >> 2] | 0;
+ if ((i4 | 0) != (i5 | 0)) {
+ if ((i4 | 0) == 10) {
+ i3 = i10 + 1 | 0;
+ i2 = HEAP32[i9 >> 2] | 0;
if (i8) {
- _memcpy(i4 | 0, i3 | 0, ((i2 & 255) >>> 1) + 1 | 0) | 0;
- _free(i3);
+ _memcpy(i3 | 0, i2 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0;
+ _free(i2);
} else {
- HEAP8[i4 >> 0] = HEAP8[i3 >> 0] | 0;
- _free(i3);
+ HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0;
+ _free(i2);
}
- HEAP8[i11 >> 0] = i9 << 1;
+ HEAP8[i10 >> 0] = i7 << 1;
break;
}
- i3 = i5 + 1 | 0;
- i4 = _malloc(i3) | 0;
- if (!(i5 >>> 0 <= i6 >>> 0 & (i4 | 0) == 0)) {
- if (i8) _memcpy(i4 | 0, i11 + 1 | 0, ((i2 & 255) >>> 1) + 1 | 0) | 0; else {
- i139 = HEAP32[i10 >> 2] | 0;
- HEAP8[i4 >> 0] = HEAP8[i139 >> 0] | 0;
+ i2 = i4 + 1 | 0;
+ i3 = _malloc(i2) | 0;
+ if (!(i4 >>> 0 <= i5 >>> 0 & (i3 | 0) == 0)) {
+ if (i8) _memcpy(i3 | 0, i10 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
+ i139 = HEAP32[i9 >> 2] | 0;
+ HEAP8[i3 >> 0] = HEAP8[i139 >> 0] | 0;
_free(i139);
}
- HEAP32[i11 >> 2] = i3 | 1;
- HEAP32[i7 >> 2] = i9;
- HEAP32[i10 >> 2] = i4;
+ HEAP32[i10 >> 2] = i2 | 1;
+ HEAP32[i6 >> 2] = i7;
+ HEAP32[i9 >> 2] = i3;
}
}
} else {
- HEAP8[i11 + 1 >> 0] = 0;
- HEAP8[i11 >> 0] = 0;
+ HEAP8[i10 + 1 >> 0] = 0;
+ HEAP8[i10 >> 0] = 0;
} while (0);
- HEAP32[i11 >> 2] = HEAP32[i114 >> 2];
- HEAP32[i11 + 4 >> 2] = HEAP32[i114 + 4 >> 2];
- HEAP32[i11 + 8 >> 2] = HEAP32[i114 + 8 >> 2];
- i2 = 0;
+ HEAP32[i10 >> 2] = HEAP32[i115 >> 2];
+ HEAP32[i10 + 4 >> 2] = HEAP32[i115 + 4 >> 2];
+ HEAP32[i10 + 8 >> 2] = HEAP32[i115 + 8 >> 2];
+ i1 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i114 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i1 | 0) == 3) break;
+ HEAP32[i115 + (i1 << 2) >> 2] = 0;
+ i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i114);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i117);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i115);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i118);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i116);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i117);
+ i1 = i11;
break L1;
}
case 99:
{
- if ((((((i61 | 0) > 2 ? (HEAP8[i136 >> 0] | 0) == 100 : 0) ? (HEAP8[i136 + 1 >> 0] | 0) == 99 : 0) ? (i130 = i136 + 2 | 0, i21 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i130, i123, i134) | 0, (i21 | 0) != (i130 | 0)) : 0) ? (i95 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i21, i123, i134) | 0, (i95 | 0) != (i21 | 0)) : 0) ? (i72 = i134 + 4 | 0, i3 = HEAP32[i72 >> 2] | 0, ((i3 - (HEAP32[i134 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) : 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i138, i3 + -24 | 0);
- i1 = HEAP32[i72 >> 2] | 0;
- i3 = i1 + -24 | 0;
- i2 = i1;
+ if ((((((i59 | 0) > 2 ? (HEAP8[i1 >> 0] | 0) == 100 : 0) ? (HEAP8[i1 + 1 >> 0] | 0) == 99 : 0) ? (i131 = i1 + 2 | 0, i46 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i131, i126, i135) | 0, (i46 | 0) != (i131 | 0)) : 0) ? (i96 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i46, i126, i135) | 0, (i96 | 0) != (i46 | 0)) : 0) ? (i71 = i135 + 4 | 0, i47 = HEAP32[i71 >> 2] | 0, ((i47 - (HEAP32[i135 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) : 0) {
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i138, i47 + -24 | 0);
+ i1 = HEAP32[i71 >> 2] | 0;
+ i2 = i1 + -24 | 0;
+ i3 = i1;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break;
- i136 = i2 + -24 | 0;
- HEAP32[i72 >> 2] = i136;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i136);
- i2 = HEAP32[i72 >> 2] | 0;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i135 = i3 + -24 | 0;
+ HEAP32[i71 >> 2] = i135;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i135);
+ i3 = HEAP32[i71 >> 2] | 0;
}
i3 = i1 + -48 | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i133, i3);
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i133, 0, 34463) | 0;
- HEAP32[i131 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i131 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i131 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i134, i3);
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i134, 0, 35927) | 0;
+ HEAP32[i132 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i132 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i132 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i131, 34440) | 0;
- HEAP32[i132 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i132 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i132 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i132, 35904) | 0;
+ HEAP32[i133 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i133 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i133 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = HEAP8[i138 >> 0] | 0;
- i1 = (i2 & 1) == 0;
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i132, i1 ? i138 + 1 | 0 : HEAP32[i138 + 8 >> 2] | 0, i1 ? (i2 & 255) >>> 1 : HEAP32[i138 + 4 >> 2] | 0) | 0;
- HEAP32[i135 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i135 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i135 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = HEAP8[i138 >> 0] | 0;
+ i2 = (i1 & 1) == 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i133, i2 ? i138 + 1 | 0 : HEAP32[i138 + 8 >> 2] | 0, i2 ? (i1 & 255) >>> 1 : HEAP32[i138 + 4 >> 2] | 0) | 0;
+ HEAP32[i136 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i136 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i136 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i135, 34358) | 0;
- HEAP32[i137 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i137 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i137 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i136, 35822) | 0;
+ HEAP32[i137 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i137 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i137 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i139, i137);
__ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i139);
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i139);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i137);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i135);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i132);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i131);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i136);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i133);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i132);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i134);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i138);
- i1 = i95;
- } else i1 = i136;
+ i1 = i96;
+ }
break L1;
}
case 101:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i25, 34477, 1);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i25, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i25);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i20, 35941, 1);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i20, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i20);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 108:
{
- i139 = i62 + 2 | 0;
- i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i139, i123, i134) | 0;
- if ((i1 | 0) == (i139 | 0)) {
- i1 = i136;
- break L1;
- }
- i4 = i134 + 4 | 0;
- i5 = HEAP32[i4 >> 2] | 0;
- if ((HEAP32[i134 >> 2] | 0) == (i5 | 0)) {
- i1 = i136;
- break L1;
- }
- i11 = i5 + -24 | 0;
- L342 : do if (i85) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i120, 34450, 2); else {
- i2 = 0;
+ i139 = i61 + 2 | 0;
+ i11 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i139, i126, i135) | 0;
+ if ((i11 | 0) == (i139 | 0)) break L1;
+ i3 = i135 + 4 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if ((HEAP32[i135 >> 2] | 0) == (i4 | 0)) break L1;
+ i10 = i4 + -24 | 0;
+ L342 : do if (i91) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i121, 35914, 2); else {
+ i1 = 0;
while (1) {
- if ((i2 | 0) == 3) break L342;
- HEAP32[i120 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i1 | 0) == 3) break L342;
+ HEAP32[i121 + (i1 << 2) >> 2] = 0;
+ i1 = i1 + 1 | 0;
}
} while (0);
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i120, 34479) | 0;
- HEAP32[i119 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i119 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i119 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i121, 35943) | 0;
+ HEAP32[i120 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i120 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i120 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
i2 = 0;
while (1) {
if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i121, (HEAP32[i4 >> 2] | 0) + -24 | 0);
- i3 = HEAP8[i121 >> 0] | 0;
- i2 = (i3 & 1) == 0;
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i119, i2 ? i121 + 1 | 0 : HEAP32[i121 + 8 >> 2] | 0, i2 ? (i3 & 255) >>> 1 : HEAP32[i121 + 4 >> 2] | 0) | 0;
- HEAP32[i118 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i118 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i118 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i122, (HEAP32[i3 >> 2] | 0) + -24 | 0);
+ i1 = HEAP8[i122 >> 0] | 0;
+ i2 = (i1 & 1) == 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i120, i2 ? i122 + 1 | 0 : HEAP32[i122 + 8 >> 2] | 0, i2 ? (i1 & 255) >>> 1 : HEAP32[i122 + 4 >> 2] | 0) | 0;
+ HEAP32[i119 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i119 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i119 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
i2 = 0;
while (1) {
if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- do if (HEAP8[i11 >> 0] & 1) {
- i10 = i5 + -16 | 0;
- HEAP8[HEAP32[i10 >> 2] >> 0] = 0;
- i7 = i5 + -20 | 0;
- HEAP32[i7 >> 2] = 0;
- i2 = HEAP8[i11 >> 0] | 0;
- if (!(i2 & 1)) i6 = 10; else {
- i6 = HEAP32[i11 >> 2] | 0;
- i2 = i6 & 255;
- i6 = (i6 & -2) + -1 | 0;
+ do if (HEAP8[i10 >> 0] & 1) {
+ i9 = i4 + -16 | 0;
+ HEAP8[HEAP32[i9 >> 2] >> 0] = 0;
+ i6 = i4 + -20 | 0;
+ HEAP32[i6 >> 2] = 0;
+ i1 = HEAP8[i10 >> 0] | 0;
+ if (!(i1 & 1)) i5 = 10; else {
+ i5 = HEAP32[i10 >> 2] | 0;
+ i1 = i5 & 255;
+ i5 = (i5 & -2) + -1 | 0;
}
- if (!(i2 & 1)) {
- i3 = (i2 & 255) >>> 1;
- if ((i2 & 255) < 22) {
- i9 = i3;
- i5 = 10;
+ if (!(i1 & 1)) {
+ i2 = (i1 & 255) >>> 1;
+ if ((i1 & 255) < 22) {
i8 = 1;
+ i4 = 10;
+ i7 = i2;
} else {
- i9 = i3;
- i5 = (i3 + 16 & 240) + -1 | 0;
i8 = 1;
+ i4 = (i2 + 16 & 240) + -1 | 0;
+ i7 = i2;
}
} else {
- i9 = 0;
- i5 = 10;
i8 = 0;
+ i4 = 10;
+ i7 = 0;
}
- if ((i5 | 0) != (i6 | 0)) {
- if ((i5 | 0) == 10) {
- i4 = i11 + 1 | 0;
- i3 = HEAP32[i10 >> 2] | 0;
+ if ((i4 | 0) != (i5 | 0)) {
+ if ((i4 | 0) == 10) {
+ i3 = i10 + 1 | 0;
+ i2 = HEAP32[i9 >> 2] | 0;
if (i8) {
- _memcpy(i4 | 0, i3 | 0, ((i2 & 255) >>> 1) + 1 | 0) | 0;
- _free(i3);
+ _memcpy(i3 | 0, i2 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0;
+ _free(i2);
} else {
- HEAP8[i4 >> 0] = HEAP8[i3 >> 0] | 0;
- _free(i3);
+ HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0;
+ _free(i2);
}
- HEAP8[i11 >> 0] = i9 << 1;
+ HEAP8[i10 >> 0] = i7 << 1;
break;
}
- i3 = i5 + 1 | 0;
- i4 = _malloc(i3) | 0;
- if (!(i5 >>> 0 <= i6 >>> 0 & (i4 | 0) == 0)) {
- if (i8) _memcpy(i4 | 0, i11 + 1 | 0, ((i2 & 255) >>> 1) + 1 | 0) | 0; else {
- i139 = HEAP32[i10 >> 2] | 0;
- HEAP8[i4 >> 0] = HEAP8[i139 >> 0] | 0;
+ i2 = i4 + 1 | 0;
+ i3 = _malloc(i2) | 0;
+ if (!(i4 >>> 0 <= i5 >>> 0 & (i3 | 0) == 0)) {
+ if (i8) _memcpy(i3 | 0, i10 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
+ i139 = HEAP32[i9 >> 2] | 0;
+ HEAP8[i3 >> 0] = HEAP8[i139 >> 0] | 0;
_free(i139);
}
- HEAP32[i11 >> 2] = i3 | 1;
- HEAP32[i7 >> 2] = i9;
- HEAP32[i10 >> 2] = i4;
+ HEAP32[i10 >> 2] = i2 | 1;
+ HEAP32[i6 >> 2] = i7;
+ HEAP32[i9 >> 2] = i3;
}
}
} else {
- HEAP8[i11 + 1 >> 0] = 0;
- HEAP8[i11 >> 0] = 0;
+ HEAP8[i10 + 1 >> 0] = 0;
+ HEAP8[i10 >> 0] = 0;
} while (0);
- HEAP32[i11 >> 2] = HEAP32[i118 >> 2];
- HEAP32[i11 + 4 >> 2] = HEAP32[i118 + 4 >> 2];
- HEAP32[i11 + 8 >> 2] = HEAP32[i118 + 8 >> 2];
- i2 = 0;
+ HEAP32[i10 >> 2] = HEAP32[i119 >> 2];
+ HEAP32[i10 + 4 >> 2] = HEAP32[i119 + 4 >> 2];
+ HEAP32[i10 + 8 >> 2] = HEAP32[i119 + 8 >> 2];
+ i1 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i118 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i1 | 0) == 3) break;
+ HEAP32[i119 + (i1 << 2) >> 2] = 0;
+ i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i118);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i121);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i119);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i122);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i120);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i121);
+ i1 = i11;
break L1;
}
case 110:
{
- i1 = __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S4_RT_(i136, i123, i134) | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S4_RT_(i1, i126, i135) | 0;
break L1;
}
case 115:
{
- if ((((((i61 | 0) > 2 ? (HEAP8[i136 >> 0] | 0) == 100 : 0) ? (HEAP8[i136 + 1 >> 0] | 0) == 115 : 0) ? (i137 = i136 + 2 | 0, i20 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i137, i123, i134) | 0, (i20 | 0) != (i137 | 0)) : 0) ? (i76 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i20, i123, i134) | 0, (i76 | 0) != (i20 | 0)) : 0) ? (i71 = i134 + 4 | 0, i5 = HEAP32[i71 >> 2] | 0, ((i5 - (HEAP32[i134 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) : 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i138, i5 + -24 | 0);
- i1 = HEAP32[i71 >> 2] | 0;
- i3 = i1 + -24 | 0;
- i2 = i1;
+ if ((((((i59 | 0) > 2 ? (HEAP8[i1 >> 0] | 0) == 100 : 0) ? (HEAP8[i1 + 1 >> 0] | 0) == 115 : 0) ? (i137 = i1 + 2 | 0, i51 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i137, i126, i135) | 0, (i51 | 0) != (i137 | 0)) : 0) ? (i72 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i51, i126, i135) | 0, (i72 | 0) != (i51 | 0)) : 0) ? (i73 = i135 + 4 | 0, i52 = HEAP32[i73 >> 2] | 0, ((i52 - (HEAP32[i135 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) : 0) {
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i138, i52 + -24 | 0);
+ i1 = HEAP32[i73 >> 2] | 0;
+ i2 = i1 + -24 | 0;
+ i3 = i1;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break;
- i137 = i2 + -24 | 0;
- HEAP32[i71 >> 2] = i137;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i137 = i3 + -24 | 0;
+ HEAP32[i73 >> 2] = i137;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i137);
- i2 = HEAP32[i71 >> 2] | 0;
+ i3 = HEAP32[i73 >> 2] | 0;
}
- __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i139, 35394, i138);
+ __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i139, 36858, i138);
i137 = HEAP8[i139 >> 0] | 0;
i136 = (i137 & 1) == 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i1 + -48 | 0, i136 ? i139 + 1 | 0 : HEAP32[i139 + 8 >> 2] | 0, i136 ? (i137 & 255) >>> 1 : HEAP32[i139 + 4 >> 2] | 0) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i139);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i138);
- i1 = i76;
- } else i1 = i136;
+ i1 = i72;
+ }
break L1;
}
case 116:
{
- if ((((((i61 | 0) > 2 ? (HEAP8[i136 >> 0] | 0) == 100 : 0) ? (HEAP8[i136 + 1 >> 0] | 0) == 116 : 0) ? (i137 = i136 + 2 | 0, i19 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i137, i123, i134) | 0, (i19 | 0) != (i137 | 0)) : 0) ? (i75 = __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S4_RT_(i19, i123, i134) | 0, (i75 | 0) != (i19 | 0)) : 0) ? (i70 = i134 + 4 | 0, i6 = HEAP32[i70 >> 2] | 0, ((i6 - (HEAP32[i134 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) : 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i138, i6 + -24 | 0);
- i1 = HEAP32[i70 >> 2] | 0;
- i3 = i1 + -24 | 0;
- i2 = i1;
+ if ((((((i59 | 0) > 2 ? (HEAP8[i1 >> 0] | 0) == 100 : 0) ? (HEAP8[i1 + 1 >> 0] | 0) == 116 : 0) ? (i137 = i1 + 2 | 0, i54 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i137, i126, i135) | 0, (i54 | 0) != (i137 | 0)) : 0) ? (i74 = __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S4_RT_(i54, i126, i135) | 0, (i74 | 0) != (i54 | 0)) : 0) ? (i75 = i135 + 4 | 0, i56 = HEAP32[i75 >> 2] | 0, ((i56 - (HEAP32[i135 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) : 0) {
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i138, i56 + -24 | 0);
+ i1 = HEAP32[i75 >> 2] | 0;
+ i2 = i1 + -24 | 0;
+ i3 = i1;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break;
- i137 = i2 + -24 | 0;
- HEAP32[i70 >> 2] = i137;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i137 = i3 + -24 | 0;
+ HEAP32[i75 >> 2] = i137;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i137);
- i2 = HEAP32[i70 >> 2] | 0;
+ i3 = HEAP32[i75 >> 2] | 0;
}
- __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i139, 35397, i138);
+ __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i139, 36861, i138);
i137 = HEAP8[i139 >> 0] | 0;
i136 = (i137 & 1) == 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i1 + -48 | 0, i136 ? i139 + 1 | 0 : HEAP32[i139 + 8 >> 2] | 0, i136 ? (i137 & 255) >>> 1 : HEAP32[i139 + 4 >> 2] | 0) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i139);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i138);
- i1 = i75;
- } else i1 = i136;
+ i1 = i74;
+ }
break L1;
}
case 118:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i26, 35399, 1);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i26, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i26);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i23, 36863, 1);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i23, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i23);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 86:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i27, 35401, 2);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i27, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i27);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i24, 36865, 2);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i24, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i24);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
default:
- {
- i1 = i136;
- break L1;
- }
+ break L1;
}
case 101:
- switch (HEAP8[i62 + 1 >> 0] | 0) {
+ switch (HEAP8[i61 + 1 >> 0] | 0) {
case 111:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i28, 35404, 1);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i28, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i28);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i25, 36868, 1);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i25, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i25);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 79:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i29, 35406, 2);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i29, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i29);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i27, 36870, 2);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i27, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i27);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 113:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i30, 35409, 2);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i30, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i30);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i28, 36873, 2);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i28, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i28);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
default:
- {
- i1 = i136;
- break L1;
- }
+ break L1;
}
case 103:
- switch (HEAP8[i62 + 1 >> 0] | 0) {
+ switch (HEAP8[i61 + 1 >> 0] | 0) {
case 101:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i31, 35412, 2);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i31, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i31);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i29, 36876, 2);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i29, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i29);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 116:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i32, 34403, 1);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i32, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i32);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i30, 35867, 1);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i30, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i30);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
default:
- {
- i1 = i136;
- break L1;
- }
+ break L1;
}
case 105:
{
- if ((HEAP8[i62 + 1 >> 0] | 0) != 120) {
- i1 = i136;
- break L1;
- }
- i137 = i136 + 2 | 0;
- i2 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i137, i123, i134) | 0;
- if ((i2 | 0) == (i137 | 0)) {
- i1 = i136;
- break L1;
- }
- i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i123, i134) | 0;
- i5 = i134 + 4 | 0;
- if ((i1 | 0) == (i2 | 0)) {
- i1 = HEAP32[i5 >> 2] | 0;
- i2 = i1 + -24 | 0;
+ if ((HEAP8[i61 + 1 >> 0] | 0) != 120) break L1;
+ i137 = i1 + 2 | 0;
+ i2 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i137, i126, i135) | 0;
+ if ((i2 | 0) == (i137 | 0)) break L1;
+ i5 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i126, i135) | 0;
+ i4 = i135 + 4 | 0;
+ if ((i5 | 0) == (i2 | 0)) {
+ i3 = HEAP32[i4 >> 2] | 0;
+ i2 = i3 + -24 | 0;
while (1) {
- if ((i1 | 0) == (i2 | 0)) {
- i1 = i136;
- break L1;
- }
- i139 = i1 + -24 | 0;
- HEAP32[i5 >> 2] = i139;
+ if ((i3 | 0) == (i2 | 0)) break L1;
+ i139 = i3 + -24 | 0;
+ HEAP32[i4 >> 2] = i139;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i139);
- i1 = HEAP32[i5 >> 2] | 0;
+ i3 = HEAP32[i4 >> 2] | 0;
}
}
- i2 = HEAP32[i5 >> 2] | 0;
- if (((i2 - (HEAP32[i134 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) {
- i1 = i136;
- break L1;
- }
+ i2 = HEAP32[i4 >> 2] | 0;
+ if (((i2 - (HEAP32[i135 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) break L1;
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i138, i2 + -24 | 0);
- i2 = HEAP32[i5 >> 2] | 0;
- i4 = i2 + -24 | 0;
- i3 = i2;
+ i1 = HEAP32[i4 >> 2] | 0;
+ i2 = i1 + -24 | 0;
+ i3 = i1;
while (1) {
- if ((i3 | 0) == (i4 | 0)) break;
+ if ((i3 | 0) == (i2 | 0)) break;
i137 = i3 + -24 | 0;
- HEAP32[i5 >> 2] = i137;
+ HEAP32[i4 >> 2] = i137;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i137);
- i3 = HEAP32[i5 >> 2] | 0;
+ i3 = HEAP32[i4 >> 2] | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i139, i2 + -48 | 0);
- i4 = (HEAP32[i5 >> 2] | 0) + -24 | 0;
- __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i102, 34356, i139);
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i102, 35415) | 0;
- HEAP32[i101 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i101 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i101 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i139, i1 + -48 | 0);
+ i3 = (HEAP32[i4 >> 2] | 0) + -24 | 0;
+ __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i102, 35820, i139);
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i102, 36879) | 0;
+ HEAP32[i101 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i101 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i101 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
i2 = 0;
while (1) {
if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- i3 = HEAP8[i138 >> 0] | 0;
- i2 = (i3 & 1) == 0;
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i101, i2 ? i138 + 1 | 0 : HEAP32[i138 + 8 >> 2] | 0, i2 ? (i3 & 255) >>> 1 : HEAP32[i138 + 4 >> 2] | 0) | 0;
- HEAP32[i100 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i100 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i100 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ i1 = HEAP8[i138 >> 0] | 0;
+ i2 = (i1 & 1) == 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i101, i2 ? i138 + 1 | 0 : HEAP32[i138 + 8 >> 2] | 0, i2 ? (i1 & 255) >>> 1 : HEAP32[i138 + 4 >> 2] | 0) | 0;
+ HEAP32[i100 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i100 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i100 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
i2 = 0;
while (1) {
if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i100, 34354) | 0;
- HEAP32[i98 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i98 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i98 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i100, 35818) | 0;
+ HEAP32[i99 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i99 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i99 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
i2 = 0;
while (1) {
if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i99, i98);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i4, i99);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i99);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i98);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i98, i99);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i98);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i98);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i99);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i100);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i101);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i102);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i139);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i138);
+ i1 = i5;
break L1;
}
case 108:
- switch (HEAP8[i62 + 1 >> 0] | 0) {
+ switch (HEAP8[i61 + 1 >> 0] | 0) {
case 101:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i34, 35418, 2);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i34, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i34);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i31, 36882, 2);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i31, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i31);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 115:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i35, 35421, 2);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i35, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i35);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i32, 36885, 2);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i32, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i32);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 83:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i36, 35424, 3);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i36, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i36);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i33, 36888, 3);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i33, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i33);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 116:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i38, 34988, 1);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i38, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i38);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i34, 36452, 1);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i34, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i34);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
default:
- {
- i1 = i136;
- break L1;
- }
+ break L1;
}
case 109:
- switch (HEAP8[i62 + 1 >> 0] | 0) {
+ switch (HEAP8[i61 + 1 >> 0] | 0) {
case 105:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i39, 35428, 1);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i39, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i39);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i35, 36892, 1);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i35, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i35);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 73:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i40, 35430, 2);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i40, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i40);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i36, 36894, 2);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i36, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i36);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 108:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i41, 34477, 1);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i41, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i41);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i37, 35941, 1);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i37, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i37);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 76:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i42, 35433, 2);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i42, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i42);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i38, 36897, 2);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i38, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i38);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 109:
{
- i2 = i136 + 2 | 0;
- if ((i2 | 0) != (i123 | 0) ? (HEAP8[i2 >> 0] | 0) == 95 : 0) {
- i139 = i136 + 3 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i64, 35436, 2);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i64, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i64);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
- break L1;
- }
- i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i123, i134) | 0;
- if ((i1 | 0) == (i2 | 0)) {
- i1 = i136;
+ i2 = i1 + 2 | 0;
+ if ((i2 | 0) != (i126 | 0) ? (HEAP8[i2 >> 0] | 0) == 95 : 0) {
+ i138 = i1 + 3 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i63, 36900, 2);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i63, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i63);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
- i2 = HEAP32[i134 + 4 >> 2] | 0;
- if ((HEAP32[i134 >> 2] | 0) == (i2 | 0)) {
- i1 = i136;
- break L1;
- }
- i4 = i2 + -24 | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i88, i4);
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i88, 0, 34356) | 0;
- HEAP32[i87 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i87 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i87 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ i4 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i126, i135) | 0;
+ if ((i4 | 0) == (i2 | 0)) break L1;
+ i2 = HEAP32[i135 + 4 >> 2] | 0;
+ if ((HEAP32[i135 >> 2] | 0) == (i2 | 0)) break L1;
+ i3 = i2 + -24 | 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i85, i3);
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i85, 0, 35820) | 0;
+ HEAP32[i84 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i84 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i84 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
i2 = 0;
while (1) {
if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i87, 35439) | 0;
- HEAP32[i83 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i83 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i83 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i84, 36903) | 0;
+ HEAP32[i83 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i83 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i83 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
i2 = 0;
while (1) {
if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i86, i83);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i4, i86);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i86);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i82, i83);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i82);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i82);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i83);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i87);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i88);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i84);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i85);
+ i1 = i4;
break L1;
}
default:
- {
- i1 = i136;
- break L1;
- }
+ break L1;
}
case 110:
- switch (HEAP8[i62 + 1 >> 0] | 0) {
+ switch (HEAP8[i61 + 1 >> 0] | 0) {
case 119:
case 97:
{
- L479 : do if (i23) {
- i1 = HEAP8[i136 >> 0] | 0;
- if (i1 << 24 >> 24 == 103) {
- i14 = (HEAP8[i136 + 1 >> 0] | 0) == 115;
- i2 = i14 ? i136 + 2 | 0 : i136;
- i1 = HEAP8[i2 >> 0] | 0;
+ L479 : do if (i60) {
+ i2 = HEAP8[i1 >> 0] | 0;
+ if (i2 << 24 >> 24 == 103) {
+ i15 = (HEAP8[i1 + 1 >> 0] | 0) == 115;
+ i3 = i15 ? i1 + 2 | 0 : i1;
+ i2 = HEAP8[i3 >> 0] | 0;
} else {
- i14 = 0;
- i2 = i136;
+ i15 = 0;
+ i3 = i1;
}
- if (i1 << 24 >> 24 == 110) {
- i1 = HEAP8[i2 + 1 >> 0] | 0;
- switch (i1 << 24 >> 24) {
+ if (i2 << 24 >> 24 == 110) {
+ i2 = HEAP8[i3 + 1 >> 0] | 0;
+ switch (i2 << 24 >> 24) {
case 97:
case 119:
break;
default:
- {
- i1 = i136;
- break L479;
- }
+ break L479;
}
- i12 = i1 << 24 >> 24 == 97;
- i1 = i2 + 2 | 0;
- L486 : do if ((i1 | 0) != (i123 | 0)) {
- i4 = 0;
+ i13 = i2 << 24 >> 24 == 97;
+ i2 = i3 + 2 | 0;
+ L486 : do if ((i2 | 0) != (i126 | 0)) {
+ i5 = 0;
while (1) {
- if ((HEAP8[i1 >> 0] | 0) == 95) break;
- i2 = i1;
- i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i1, i123, i134) | 0;
- i2 = (i1 | 0) == (i2 | 0);
- i3 = (i1 | 0) == (i123 | 0);
- if (i2 | i3) break L486; else i4 = i4 | (i2 | i3) ^ 1;
+ if ((HEAP8[i2 >> 0] | 0) == 95) break;
+ i3 = i2;
+ i2 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i126, i135) | 0;
+ i3 = (i2 | 0) == (i3 | 0);
+ i4 = (i2 | 0) == (i126 | 0);
+ if (i3 | i4) break L486; else i5 = i5 | (i3 | i4) ^ 1;
}
- i122 = i1 + 1 | 0;
- i2 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i122, i123, i134) | 0;
- if (!((i2 | 0) == (i122 | 0) | (i2 | 0) == (i123 | 0))) {
- i1 = HEAP8[i2 >> 0] | 0;
- L492 : do if (!((i103 - i2 | 0) > 2 & i1 << 24 >> 24 == 112)) if (i1 << 24 >> 24 == 69) {
- i11 = 0;
- i13 = i2;
+ i123 = i2 + 1 | 0;
+ i3 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i123, i126, i135) | 0;
+ if (!((i3 | 0) == (i123 | 0) | (i3 | 0) == (i126 | 0))) {
+ i2 = HEAP8[i3 >> 0] | 0;
+ L492 : do if (!((i103 - i3 | 0) > 2 & i2 << 24 >> 24 == 112)) if (i2 << 24 >> 24 == 69) {
+ i12 = 0;
+ i14 = i3;
} else break L486; else {
- if ((HEAP8[i2 + 1 >> 0] | 0) != 105) break L486;
- i1 = i2 + 2 | 0;
+ if ((HEAP8[i3 + 1 >> 0] | 0) != 105) break L486;
+ i2 = i3 + 2 | 0;
while (1) {
- if ((HEAP8[i1 >> 0] | 0) == 69) {
- i11 = 1;
- i13 = i1;
+ if ((HEAP8[i2 >> 0] | 0) == 69) {
+ i12 = 1;
+ i14 = i2;
break L492;
}
- i122 = i1;
- i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i1, i123, i134) | 0;
- if ((i1 | 0) == (i122 | 0) | (i1 | 0) == (i123 | 0)) break L486;
+ i123 = i2;
+ i2 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i126, i135) | 0;
+ if ((i2 | 0) == (i123 | 0) | (i2 | 0) == (i126 | 0)) break L486;
}
} while (0);
- i1 = 0;
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i139 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i139 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- L504 : do if (i11) {
- i10 = i134 + 4 | 0;
- i1 = HEAP32[i10 >> 2] | 0;
- if ((HEAP32[i134 >> 2] | 0) == (i1 | 0)) {
+ L504 : do if (i12) {
+ i11 = i135 + 4 | 0;
+ i2 = HEAP32[i11 >> 2] | 0;
+ if ((HEAP32[i135 >> 2] | 0) == (i2 | 0)) {
+ i3 = i1;
i2 = 1;
- i1 = i136;
} else {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i137, i1 + -24 | 0);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i137, i2 + -24 | 0);
L507 : do if (!(HEAP8[i139 >> 0] & 1)) {
HEAP8[i139 + 1 >> 0] = 0;
HEAP8[i139 >> 0] = 0;
} else {
i7 = i139 + 8 | 0;
- i2 = HEAP32[i7 >> 2] | 0;
- HEAP8[i2 >> 0] = 0;
+ i3 = HEAP32[i7 >> 2] | 0;
+ HEAP8[i3 >> 0] = 0;
i8 = i139 + 4 | 0;
HEAP32[i8 >> 2] = 0;
- i6 = HEAP32[i139 >> 2] | 0;
- i9 = (i6 & -2) + -1 | 0;
- i3 = i6 & 255;
- do if (!(i3 & 1)) {
- i1 = i6 >>> 1 & 127;
- if ((i3 & 255) < 22) {
- _memcpy(i139 + 1 | 0, i2 | 0, (i6 >>> 1 & 127) + 1 | 0) | 0;
- _free(i2);
+ i9 = HEAP32[i139 >> 2] | 0;
+ i10 = (i9 & -2) + -1 | 0;
+ i4 = i9 & 255;
+ do if (!(i4 & 1)) {
+ i2 = i9 >>> 1 & 127;
+ if ((i4 & 255) < 22) {
+ _memcpy(i139 + 1 | 0, i3 | 0, (i9 >>> 1 & 127) + 1 | 0) | 0;
+ _free(i3);
break;
}
- i2 = i1 + 16 & 240;
- i5 = i2 + -1 | 0;
- if ((i5 | 0) == (i9 | 0)) break L507;
- i3 = _malloc(i2) | 0;
- if (i5 >>> 0 <= i9 >>> 0 & (i3 | 0) == 0) break L507;
- _memcpy(i3 | 0, i139 + 1 | 0, (i6 >>> 1 & 127) + 1 | 0) | 0;
- HEAP32[i139 >> 2] = i2 | 1;
- HEAP32[i8 >> 2] = i1;
- HEAP32[i7 >> 2] = i3;
+ i3 = i2 + 16 & 240;
+ i6 = i3 + -1 | 0;
+ if ((i6 | 0) == (i10 | 0)) break L507;
+ i4 = _malloc(i3) | 0;
+ if (i6 >>> 0 <= i10 >>> 0 & (i4 | 0) == 0) break L507;
+ _memcpy(i4 | 0, i139 + 1 | 0, (i9 >>> 1 & 127) + 1 | 0) | 0;
+ HEAP32[i139 >> 2] = i3 | 1;
+ HEAP32[i8 >> 2] = i2;
+ HEAP32[i7 >> 2] = i4;
break L507;
} else {
HEAP8[i139 + 1 >> 0] = 0;
- _free(i2);
- i1 = 0;
+ _free(i3);
+ i2 = 0;
} while (0);
- HEAP8[i139 >> 0] = i1 << 1;
+ HEAP8[i139 >> 0] = i2 << 1;
} while (0);
HEAP32[i139 >> 2] = HEAP32[i137 >> 2];
HEAP32[i139 + 4 >> 2] = HEAP32[i137 + 4 >> 2];
HEAP32[i139 + 8 >> 2] = HEAP32[i137 + 8 >> 2];
- i1 = 0;
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i137 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i137 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i137);
- i1 = HEAP32[i10 >> 2] | 0;
- i2 = i1 + -24 | 0;
+ i2 = HEAP32[i11 >> 2] | 0;
+ i3 = i2 + -24 | 0;
while (1) {
- if ((i1 | 0) == (i2 | 0)) {
- i5 = i134;
- i128 = 409;
+ if ((i2 | 0) == (i3 | 0)) {
+ i6 = i135;
+ i2 = i3;
+ i129 = 409;
break L504;
}
- i137 = i1 + -24 | 0;
- HEAP32[i10 >> 2] = i137;
+ i137 = i2 + -24 | 0;
+ HEAP32[i11 >> 2] = i137;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i137);
- i1 = HEAP32[i10 >> 2] | 0;
+ i2 = HEAP32[i11 >> 2] | 0;
}
}
} else {
- i10 = i134 + 4 | 0;
- i2 = HEAP32[i10 >> 2] | 0;
- i5 = i134;
- i128 = 409;
+ i2 = i135 + 4 | 0;
+ i11 = i2;
+ i6 = i135;
+ i2 = HEAP32[i2 >> 2] | 0;
+ i129 = 409;
} while (0);
- if ((i128 | 0) == 409) if ((HEAP32[i5 >> 2] | 0) == (i2 | 0)) {
+ if ((i129 | 0) == 409) if ((HEAP32[i6 >> 2] | 0) == (i2 | 0)) {
+ i3 = i1;
i2 = 1;
- i1 = i136;
} else {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i135, i2 + -24 | 0);
- i2 = HEAP32[i10 >> 2] | 0;
- i3 = i2 + -24 | 0;
- i1 = i2;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i136, i2 + -24 | 0);
+ i3 = HEAP32[i11 >> 2] | 0;
+ i4 = i3 + -24 | 0;
+ i2 = i3;
while (1) {
- if ((i1 | 0) == (i3 | 0)) break;
- i137 = i1 + -24 | 0;
- HEAP32[i10 >> 2] = i137;
+ if ((i2 | 0) == (i4 | 0)) break;
+ i137 = i2 + -24 | 0;
+ HEAP32[i11 >> 2] = i137;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i137);
- i1 = HEAP32[i10 >> 2] | 0;
+ i2 = HEAP32[i11 >> 2] | 0;
}
- i1 = 0;
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i132 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i133 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- L539 : do if (i4) if ((HEAP32[i5 >> 2] | 0) == (i3 | 0)) {
+ L539 : do if (i5) if ((HEAP32[i6 >> 2] | 0) == (i4 | 0)) {
+ i3 = i1;
i2 = 1;
- i1 = i136;
} else {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i131, i2 + -48 | 0);
- L542 : do if (!(HEAP8[i132 >> 0] & 1)) {
- HEAP8[i132 + 1 >> 0] = 0;
- HEAP8[i132 >> 0] = 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i132, i3 + -48 | 0);
+ L542 : do if (!(HEAP8[i133 >> 0] & 1)) {
+ HEAP8[i133 + 1 >> 0] = 0;
+ HEAP8[i133 >> 0] = 0;
} else {
- i7 = i132 + 8 | 0;
- i2 = HEAP32[i7 >> 2] | 0;
- HEAP8[i2 >> 0] = 0;
- i8 = i132 + 4 | 0;
+ i7 = i133 + 8 | 0;
+ i3 = HEAP32[i7 >> 2] | 0;
+ HEAP8[i3 >> 0] = 0;
+ i8 = i133 + 4 | 0;
HEAP32[i8 >> 2] = 0;
- i6 = HEAP32[i132 >> 2] | 0;
- i9 = (i6 & -2) + -1 | 0;
- i3 = i6 & 255;
- do if (!(i3 & 1)) {
- i1 = i6 >>> 1 & 127;
- if ((i3 & 255) < 22) {
- _memcpy(i132 + 1 | 0, i2 | 0, (i6 >>> 1 & 127) + 1 | 0) | 0;
- _free(i2);
+ i9 = HEAP32[i133 >> 2] | 0;
+ i10 = (i9 & -2) + -1 | 0;
+ i4 = i9 & 255;
+ do if (!(i4 & 1)) {
+ i2 = i9 >>> 1 & 127;
+ if ((i4 & 255) < 22) {
+ _memcpy(i133 + 1 | 0, i3 | 0, (i9 >>> 1 & 127) + 1 | 0) | 0;
+ _free(i3);
break;
}
- i2 = i1 + 16 & 240;
- i5 = i2 + -1 | 0;
- if ((i5 | 0) == (i9 | 0)) break L542;
- i3 = _malloc(i2) | 0;
- if (i5 >>> 0 <= i9 >>> 0 & (i3 | 0) == 0) break L542;
- _memcpy(i3 | 0, i132 + 1 | 0, (i6 >>> 1 & 127) + 1 | 0) | 0;
- HEAP32[i132 >> 2] = i2 | 1;
- HEAP32[i8 >> 2] = i1;
- HEAP32[i7 >> 2] = i3;
+ i3 = i2 + 16 & 240;
+ i6 = i3 + -1 | 0;
+ if ((i6 | 0) == (i10 | 0)) break L542;
+ i4 = _malloc(i3) | 0;
+ if (i6 >>> 0 <= i10 >>> 0 & (i4 | 0) == 0) break L542;
+ _memcpy(i4 | 0, i133 + 1 | 0, (i9 >>> 1 & 127) + 1 | 0) | 0;
+ HEAP32[i133 >> 2] = i3 | 1;
+ HEAP32[i8 >> 2] = i2;
+ HEAP32[i7 >> 2] = i4;
break L542;
} else {
- HEAP8[i132 + 1 >> 0] = 0;
- _free(i2);
- i1 = 0;
+ HEAP8[i133 + 1 >> 0] = 0;
+ _free(i3);
+ i2 = 0;
} while (0);
- HEAP8[i132 >> 0] = i1 << 1;
+ HEAP8[i133 >> 0] = i2 << 1;
} while (0);
- HEAP32[i132 >> 2] = HEAP32[i131 >> 2];
- HEAP32[i132 + 4 >> 2] = HEAP32[i131 + 4 >> 2];
- HEAP32[i132 + 8 >> 2] = HEAP32[i131 + 8 >> 2];
- i1 = 0;
+ HEAP32[i133 >> 2] = HEAP32[i132 >> 2];
+ HEAP32[i133 + 4 >> 2] = HEAP32[i132 + 4 >> 2];
+ HEAP32[i133 + 8 >> 2] = HEAP32[i132 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i131 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i132 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i131);
- i1 = HEAP32[i10 >> 2] | 0;
- i2 = i1 + -24 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i132);
+ i3 = HEAP32[i11 >> 2] | 0;
+ i2 = i3 + -24 | 0;
while (1) {
- if ((i1 | 0) == (i2 | 0)) {
- i128 = 434;
+ if ((i3 | 0) == (i2 | 0)) {
+ i129 = 434;
break L539;
}
- i137 = i1 + -24 | 0;
- HEAP32[i10 >> 2] = i137;
+ i137 = i3 + -24 | 0;
+ HEAP32[i11 >> 2] = i137;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i137);
- i1 = HEAP32[i10 >> 2] | 0;
+ i3 = HEAP32[i11 >> 2] | 0;
}
- } else i128 = 434; while (0);
- if ((i128 | 0) == 434) {
- i1 = 0;
+ } else i129 = 434; while (0);
+ if ((i129 | 0) == 434) {
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i133 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i134 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- if (i14) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6assignEPKcj(i133, 34450, 2);
- if (i12) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i133, 35443) | 0; else __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i133, 35447) | 0;
- if (i4) {
- __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i125, 34356, i132);
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i125, 34405) | 0;
+ if (i15) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6assignEPKcj(i134, 35914, 2);
+ if (i13) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i134, 36907) | 0; else __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i134, 36911) | 0;
+ if (i5) {
+ __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i125, 35820, i133);
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i125, 35869) | 0;
HEAP32[i124 >> 2] = HEAP32[i2 >> 2];
HEAP32[i124 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
HEAP32[i124 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i3 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
i137 = HEAP8[i124 >> 0] | 0;
- i131 = (i137 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i133, i131 ? i124 + 1 | 0 : HEAP32[i124 + 8 >> 2] | 0, i131 ? (i137 & 255) >>> 1 : HEAP32[i124 + 4 >> 2] | 0) | 0;
+ i132 = (i137 & 1) == 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i134, i132 ? i124 + 1 | 0 : HEAP32[i124 + 8 >> 2] | 0, i132 ? (i137 & 255) >>> 1 : HEAP32[i124 + 4 >> 2] | 0) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i124);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i125);
}
- i137 = HEAP8[i135 >> 0] | 0;
- i131 = (i137 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i133, i131 ? i135 + 1 | 0 : HEAP32[i135 + 8 >> 2] | 0, i131 ? (i137 & 255) >>> 1 : HEAP32[i135 + 4 >> 2] | 0) | 0;
- if (i11) {
- __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i127, 34408, i139);
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i127, 34358) | 0;
- HEAP32[i126 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i126 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i126 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i137 = HEAP8[i136 >> 0] | 0;
+ i132 = (i137 & 1) == 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i134, i132 ? i136 + 1 | 0 : HEAP32[i136 + 8 >> 2] | 0, i132 ? (i137 & 255) >>> 1 : HEAP32[i136 + 4 >> 2] | 0) | 0;
+ if (i12) {
+ __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i127, 35872, i139);
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i127, 35822) | 0;
+ HEAP32[i128 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i128 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i128 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- i137 = HEAP8[i126 >> 0] | 0;
- i131 = (i137 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i133, i131 ? i126 + 1 | 0 : HEAP32[i126 + 8 >> 2] | 0, i131 ? (i137 & 255) >>> 1 : HEAP32[i126 + 4 >> 2] | 0) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i126);
+ i137 = HEAP8[i128 >> 0] | 0;
+ i132 = (i137 & 1) == 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i134, i132 ? i128 + 1 | 0 : HEAP32[i128 + 8 >> 2] | 0, i132 ? (i137 & 255) >>> 1 : HEAP32[i128 + 4 >> 2] | 0) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i128);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i127);
};
- HEAP32[i129 >> 2] = HEAP32[i133 >> 2];
- HEAP32[i129 + 4 >> 2] = HEAP32[i133 + 4 >> 2];
- HEAP32[i129 + 8 >> 2] = HEAP32[i133 + 8 >> 2];
- i1 = 0;
+ HEAP32[i131 >> 2] = HEAP32[i134 >> 2];
+ HEAP32[i131 + 4 >> 2] = HEAP32[i134 + 4 >> 2];
+ HEAP32[i131 + 8 >> 2] = HEAP32[i134 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i133 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i134 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i130, i129);
- i1 = HEAP32[i10 >> 2] | 0;
- i137 = HEAP32[i134 + 8 >> 2] | 0;
- i4 = i137;
- if (i1 >>> 0 < i137 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i1, i130);
- HEAP32[i10 >> 2] = (HEAP32[i10 >> 2] | 0) + 24;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i130, i131);
+ i2 = HEAP32[i11 >> 2] | 0;
+ i137 = HEAP32[i135 + 8 >> 2] | 0;
+ i5 = i137;
+ if (i2 >>> 0 < i137 >>> 0) {
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i130);
+ HEAP32[i11 >> 2] = (HEAP32[i11 >> 2] | 0) + 24;
} else {
- i2 = HEAP32[i134 >> 2] | 0;
- i137 = i1 - i2 | 0;
- i5 = (i137 | 0) / 24 | 0;
- i3 = i5 + 1 | 0;
- if ((i137 | 0) < -24) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i134);
- i1 = (i4 - i2 | 0) / 24 | 0;
- if (i1 >>> 0 < 1073741823) {
- i1 = i1 << 1;
- i1 = i1 >>> 0 < i3 >>> 0 ? i3 : i1;
- } else i1 = 2147483647;
- __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i138, i1, i5, i134 + 12 | 0);
+ i3 = HEAP32[i135 >> 2] | 0;
+ i137 = i2 - i3 | 0;
+ i6 = (i137 | 0) / 24 | 0;
+ i4 = i6 + 1 | 0;
+ if ((i137 | 0) < -24) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i135);
+ i2 = (i5 - i3 | 0) / 24 | 0;
+ if (i2 >>> 0 < 1073741823) {
+ i2 = i2 << 1;
+ i2 = i2 >>> 0 < i4 >>> 0 ? i4 : i2;
+ } else i2 = 2147483647;
+ __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i138, i2, i6, i135 + 12 | 0);
i137 = i138 + 8 | 0;
- i131 = HEAP32[i137 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i131, i130);
- HEAP32[i137 >> 2] = i131 + 24;
- __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i134, i138);
+ i132 = HEAP32[i137 >> 2] | 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i132, i130);
+ HEAP32[i137 >> 2] = i132 + 24;
+ __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i135, i138);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i138);
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i130);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i129);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i133);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i131);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i134);
+ i3 = i14 + 1 | 0;
i2 = 0;
- i1 = i13 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i132);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i135);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i133);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i136);
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i139);
- if (!i2) break L479;
+ if (!i2) {
+ i1 = i3;
+ break L479;
+ }
}
} while (0);
- i1 = i136;
- } else i1 = i136;
- } else i1 = i136; while (0);
+ }
+ } while (0);
break L1;
}
case 101:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i44, 35449, 2);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i44, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i44);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i39, 36913, 2);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i39, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i39);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 103:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i45, 35428, 1);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i45, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i45);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i40, 36892, 1);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i40, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i40);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 116:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i46, 35452, 1);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i46, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i46);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i41, 36916, 1);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i41, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i41);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 120:
{
- i12 = i136 + 2 | 0;
- i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i12, i123, i134) | 0;
- if ((i1 | 0) != (i12 | 0) ? (i82 = HEAP32[i134 + 4 >> 2] | 0, (HEAP32[i134 >> 2] | 0) != (i82 | 0)) : 0) {
- i11 = i82 + -24 | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i137, i11);
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i137, 0, 35454) | 0;
+ i13 = i1 + 2 | 0;
+ i2 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i13, i126, i135) | 0;
+ if ((i2 | 0) != (i13 | 0) ? (i81 = HEAP32[i135 + 4 >> 2] | 0, (HEAP32[i135 >> 2] | 0) != (i81 | 0)) : 0) {
+ i12 = i81 + -24 | 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i137, i12);
+ i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i137, 0, 36918) | 0;
HEAP32[i139 >> 2] = HEAP32[i3 >> 2];
HEAP32[i139 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
HEAP32[i139 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i4 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i4 | 0) == 3) break;
+ HEAP32[i3 + (i4 << 2) >> 2] = 0;
+ i4 = i4 + 1 | 0;
}
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i139, 34358) | 0;
+ i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i139, 35822) | 0;
HEAP32[i138 >> 2] = HEAP32[i3 >> 2];
HEAP32[i138 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
HEAP32[i138 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i4 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i4 | 0) == 3) break;
+ HEAP32[i3 + (i4 << 2) >> 2] = 0;
+ i4 = i4 + 1 | 0;
}
- do if (HEAP8[i11 >> 0] & 1) {
- i10 = i82 + -16 | 0;
- HEAP8[HEAP32[i10 >> 2] >> 0] = 0;
- i7 = i82 + -20 | 0;
- HEAP32[i7 >> 2] = 0;
- i2 = HEAP8[i11 >> 0] | 0;
- if (!(i2 & 1)) i6 = 10; else {
- i6 = HEAP32[i11 >> 2] | 0;
- i2 = i6 & 255;
- i6 = (i6 & -2) + -1 | 0;
+ do if (HEAP8[i12 >> 0] & 1) {
+ i11 = i81 + -16 | 0;
+ HEAP8[HEAP32[i11 >> 2] >> 0] = 0;
+ i8 = i81 + -20 | 0;
+ HEAP32[i8 >> 2] = 0;
+ i3 = HEAP8[i12 >> 0] | 0;
+ if (!(i3 & 1)) i7 = 10; else {
+ i7 = HEAP32[i12 >> 2] | 0;
+ i3 = i7 & 255;
+ i7 = (i7 & -2) + -1 | 0;
}
- if (!(i2 & 1)) {
- i3 = (i2 & 255) >>> 1;
- if ((i2 & 255) < 22) {
- i9 = i3;
- i5 = 10;
- i8 = 1;
+ if (!(i3 & 1)) {
+ i4 = (i3 & 255) >>> 1;
+ if ((i3 & 255) < 22) {
+ i6 = 10;
+ i9 = i4;
+ i10 = 1;
} else {
- i9 = i3;
- i5 = (i3 + 16 & 240) + -1 | 0;
- i8 = 1;
+ i6 = (i4 + 16 & 240) + -1 | 0;
+ i9 = i4;
+ i10 = 1;
}
} else {
+ i6 = 10;
i9 = 0;
- i5 = 10;
- i8 = 0;
+ i10 = 0;
}
- if ((i5 | 0) != (i6 | 0)) {
- if ((i5 | 0) == 10) {
- i4 = i11 + 1 | 0;
- i3 = HEAP32[i10 >> 2] | 0;
- if (i8) {
- _memcpy(i4 | 0, i3 | 0, ((i2 & 255) >>> 1) + 1 | 0) | 0;
- _free(i3);
+ if ((i6 | 0) != (i7 | 0)) {
+ if ((i6 | 0) == 10) {
+ i5 = i12 + 1 | 0;
+ i4 = HEAP32[i11 >> 2] | 0;
+ if (i10) {
+ _memcpy(i5 | 0, i4 | 0, ((i3 & 255) >>> 1) + 1 | 0) | 0;
+ _free(i4);
} else {
- HEAP8[i4 >> 0] = HEAP8[i3 >> 0] | 0;
- _free(i3);
+ HEAP8[i5 >> 0] = HEAP8[i4 >> 0] | 0;
+ _free(i4);
}
- HEAP8[i11 >> 0] = i9 << 1;
+ HEAP8[i12 >> 0] = i9 << 1;
break;
}
- i3 = i5 + 1 | 0;
- i4 = _malloc(i3) | 0;
- if (!(i5 >>> 0 <= i6 >>> 0 & (i4 | 0) == 0)) {
- if (i8) _memcpy(i4 | 0, i11 + 1 | 0, ((i2 & 255) >>> 1) + 1 | 0) | 0; else {
- i135 = HEAP32[i10 >> 2] | 0;
- HEAP8[i4 >> 0] = HEAP8[i135 >> 0] | 0;
- _free(i135);
+ i4 = i6 + 1 | 0;
+ i5 = _malloc(i4) | 0;
+ if (!(i6 >>> 0 <= i7 >>> 0 & (i5 | 0) == 0)) {
+ if (i10) _memcpy(i5 | 0, i12 + 1 | 0, ((i3 & 255) >>> 1) + 1 | 0) | 0; else {
+ i136 = HEAP32[i11 >> 2] | 0;
+ HEAP8[i5 >> 0] = HEAP8[i136 >> 0] | 0;
+ _free(i136);
}
- HEAP32[i11 >> 2] = i3 | 1;
- HEAP32[i7 >> 2] = i9;
- HEAP32[i10 >> 2] = i4;
+ HEAP32[i12 >> 2] = i4 | 1;
+ HEAP32[i8 >> 2] = i9;
+ HEAP32[i11 >> 2] = i5;
}
}
} else {
- HEAP8[i11 + 1 >> 0] = 0;
- HEAP8[i11 >> 0] = 0;
+ HEAP8[i12 + 1 >> 0] = 0;
+ HEAP8[i12 >> 0] = 0;
} while (0);
- HEAP32[i11 >> 2] = HEAP32[i138 >> 2];
- HEAP32[i11 + 4 >> 2] = HEAP32[i138 + 4 >> 2];
- HEAP32[i11 + 8 >> 2] = HEAP32[i138 + 8 >> 2];
- i2 = 0;
+ HEAP32[i12 >> 2] = HEAP32[i138 >> 2];
+ HEAP32[i12 + 4 >> 2] = HEAP32[i138 + 4 >> 2];
+ HEAP32[i12 + 8 >> 2] = HEAP32[i138 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i138 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i138 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i138);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i139);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i137);
- } else i1 = i12;
- i1 = (i1 | 0) == (i12 | 0) ? i136 : i1;
+ } else i2 = i13;
+ i1 = (i2 | 0) == (i13 | 0) ? i1 : i2;
break L1;
}
default:
- {
- i1 = i136;
- break L1;
- }
+ break L1;
}
case 111:
- switch (HEAP8[i62 + 1 >> 0] | 0) {
+ switch (HEAP8[i61 + 1 >> 0] | 0) {
case 110:
{
- i1 = __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S4_RT_(i136, i123, i134) | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S4_RT_(i1, i126, i135) | 0;
break L1;
}
case 111:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i47, 35465, 2);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i47, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i47);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i42, 36929, 2);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i42, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i42);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 114:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i48, 35468, 1);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i48, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i48);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i43, 36932, 1);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i43, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i43);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 82:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i49, 35470, 2);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i49, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i49);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i44, 36934, 2);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i44, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i44);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
default:
- {
- i1 = i136;
- break L1;
- }
+ break L1;
}
case 112:
- switch (HEAP8[i62 + 1 >> 0] | 0) {
+ switch (HEAP8[i61 + 1 >> 0] | 0) {
case 109:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i51, 35473, 3);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i51, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i51);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i45, 36937, 3);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i45, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i45);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 108:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i52, 35477, 1);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i52, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i52);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i48, 36941, 1);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i48, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i48);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 76:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i53, 35479, 2);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i53, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i53);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i49, 36943, 2);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i49, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i49);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 112:
{
- i2 = i136 + 2 | 0;
- if ((i2 | 0) != (i123 | 0) ? (HEAP8[i2 >> 0] | 0) == 95 : 0) {
- i139 = i136 + 3 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i65, 35482, 2);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i65, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i65);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
- break L1;
- }
- i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i123, i134) | 0;
- if ((i1 | 0) == (i2 | 0)) {
- i1 = i136;
- break L1;
- }
- i2 = HEAP32[i134 + 4 >> 2] | 0;
- if ((HEAP32[i134 >> 2] | 0) == (i2 | 0)) {
- i1 = i136;
+ i2 = i1 + 2 | 0;
+ if ((i2 | 0) != (i126 | 0) ? (HEAP8[i2 >> 0] | 0) == 95 : 0) {
+ i138 = i1 + 3 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i64, 36946, 2);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i64, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i64);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
- i4 = i2 + -24 | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i91, i4);
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i91, 0, 34356) | 0;
- HEAP32[i90 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i90 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i90 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ i4 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i126, i135) | 0;
+ if ((i4 | 0) == (i2 | 0)) break L1;
+ i2 = HEAP32[i135 + 4 >> 2] | 0;
+ if ((HEAP32[i135 >> 2] | 0) == (i2 | 0)) break L1;
+ i3 = i2 + -24 | 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i89, i3);
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i89, 0, 35820) | 0;
+ HEAP32[i88 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i88 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i88 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
i2 = 0;
while (1) {
if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i90, 35485) | 0;
- HEAP32[i84 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i84 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i84 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i88, 36949) | 0;
+ HEAP32[i87 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i87 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i87 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
i2 = 0;
while (1) {
if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i89, i84);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i4, i89);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i89);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i84);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i90);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i91);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i86, i87);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i86);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i86);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i87);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i88);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i89);
+ i1 = i4;
break L1;
}
case 115:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i54, 35477, 1);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i54, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i54);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i50, 36941, 1);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i50, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i50);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 116:
{
- if ((i61 | 0) <= 2) {
- i1 = i136;
- break L1;
- }
- if ((HEAP8[i136 >> 0] | 0) != 112) {
- i1 = i136;
- break L1;
- }
- if ((HEAP8[i136 + 1 >> 0] | 0) != 116) {
- i1 = i136;
- break L1;
- }
- i139 = i136 + 2 | 0;
- i2 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i139, i123, i134) | 0;
- if ((i2 | 0) == (i139 | 0)) {
- i1 = i136;
- break L1;
- }
- i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i123, i134) | 0;
- if ((i1 | 0) == (i2 | 0)) {
- i1 = i136;
- break L1;
- }
- i5 = i134 + 4 | 0;
- i2 = HEAP32[i5 >> 2] | 0;
- if (((i2 - (HEAP32[i134 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) {
- i1 = i136;
- break L1;
- }
+ if ((i59 | 0) <= 2) break L1;
+ if ((HEAP8[i1 >> 0] | 0) != 112) break L1;
+ if ((HEAP8[i1 + 1 >> 0] | 0) != 116) break L1;
+ i139 = i1 + 2 | 0;
+ i2 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i139, i126, i135) | 0;
+ if ((i2 | 0) == (i139 | 0)) break L1;
+ i5 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i126, i135) | 0;
+ if ((i5 | 0) == (i2 | 0)) break L1;
+ i4 = i135 + 4 | 0;
+ i2 = HEAP32[i4 >> 2] | 0;
+ if (((i2 - (HEAP32[i135 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) break L1;
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i138, i2 + -24 | 0);
- i2 = HEAP32[i5 >> 2] | 0;
- i4 = i2 + -24 | 0;
- i3 = i2;
+ i1 = HEAP32[i4 >> 2] | 0;
+ i2 = i1 + -24 | 0;
+ i3 = i1;
while (1) {
- if ((i3 | 0) == (i4 | 0)) break;
+ if ((i3 | 0) == (i2 | 0)) break;
i139 = i3 + -24 | 0;
- HEAP32[i5 >> 2] = i139;
+ HEAP32[i4 >> 2] = i139;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i139);
- i3 = HEAP32[i5 >> 2] | 0;
+ i3 = HEAP32[i4 >> 2] | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -48 | 0, 35489) | 0;
- i139 = HEAP8[i138 >> 0] | 0;
- i137 = (i139 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj((HEAP32[i5 >> 2] | 0) + -24 | 0, i137 ? i138 + 1 | 0 : HEAP32[i138 + 8 >> 2] | 0, i137 ? (i139 & 255) >>> 1 : HEAP32[i138 + 4 >> 2] | 0) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i1 + -48 | 0, 36953) | 0;
+ i1 = HEAP8[i138 >> 0] | 0;
+ i139 = (i1 & 1) == 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj((HEAP32[i4 >> 2] | 0) + -24 | 0, i139 ? i138 + 1 | 0 : HEAP32[i138 + 8 >> 2] | 0, i139 ? (i1 & 255) >>> 1 : HEAP32[i138 + 4 >> 2] | 0) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i138);
+ i1 = i5;
break L1;
}
default:
- {
- i1 = i136;
- break L1;
- }
+ break L1;
}
case 113:
{
- if ((HEAP8[i62 + 1 >> 0] | 0) != 117) {
- i1 = i136;
- break L1;
- }
- i135 = i136 + 2 | 0;
- i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i135, i123, i134) | 0;
- if ((i1 | 0) == (i135 | 0)) {
- i1 = i136;
- break L1;
- }
- i2 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i1, i123, i134) | 0;
- if ((i2 | 0) == (i1 | 0)) {
- i2 = i134 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- i3 = i1 + -24 | 0;
+ if ((HEAP8[i61 + 1 >> 0] | 0) != 117) break L1;
+ i136 = i1 + 2 | 0;
+ i2 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i136, i126, i135) | 0;
+ if ((i2 | 0) == (i136 | 0)) break L1;
+ i3 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i126, i135) | 0;
+ if ((i3 | 0) == (i2 | 0)) {
+ i2 = i135 + 4 | 0;
+ i4 = HEAP32[i2 >> 2] | 0;
+ i3 = i4 + -24 | 0;
while (1) {
- if ((i1 | 0) == (i3 | 0)) {
- i1 = i136;
- break L1;
- }
- i139 = i1 + -24 | 0;
+ if ((i4 | 0) == (i3 | 0)) break L1;
+ i139 = i4 + -24 | 0;
HEAP32[i2 >> 2] = i139;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i139);
- i1 = HEAP32[i2 >> 2] | 0;
+ i4 = HEAP32[i2 >> 2] | 0;
}
}
- i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i123, i134) | 0;
- i5 = i134 + 4 | 0;
- if ((i1 | 0) == (i2 | 0)) {
- i2 = HEAP32[i5 >> 2] | 0;
- i1 = i2 + -24 | 0;
- i3 = i2;
+ i4 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i3, i126, i135) | 0;
+ i5 = i135 + 4 | 0;
+ if ((i4 | 0) == (i3 | 0)) {
+ i3 = HEAP32[i5 >> 2] | 0;
+ i2 = i3 + -24 | 0;
+ i4 = i3;
while (1) {
- if ((i3 | 0) == (i1 | 0)) break;
- i139 = i3 + -24 | 0;
+ if ((i4 | 0) == (i2 | 0)) break;
+ i139 = i4 + -24 | 0;
HEAP32[i5 >> 2] = i139;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i139);
- i3 = HEAP32[i5 >> 2] | 0;
+ i4 = HEAP32[i5 >> 2] | 0;
}
- i2 = i2 + -48 | 0;
+ i3 = i3 + -48 | 0;
while (1) {
- if ((i1 | 0) == (i2 | 0)) {
- i1 = i136;
- break L1;
- }
- i139 = i1 + -24 | 0;
+ if ((i2 | 0) == (i3 | 0)) break L1;
+ i139 = i2 + -24 | 0;
HEAP32[i5 >> 2] = i139;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i139);
- i1 = HEAP32[i5 >> 2] | 0;
+ i2 = HEAP32[i5 >> 2] | 0;
}
}
i2 = HEAP32[i5 >> 2] | 0;
- if (((i2 - (HEAP32[i134 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 3) {
- i1 = i136;
- break L1;
- }
+ if (((i2 - (HEAP32[i135 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 3) break L1;
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i138, i2 + -24 | 0);
- i2 = HEAP32[i5 >> 2] | 0;
- i4 = i2 + -24 | 0;
- i3 = i2;
+ i1 = HEAP32[i5 >> 2] | 0;
+ i2 = i1 + -24 | 0;
+ i3 = i1;
while (1) {
- if ((i3 | 0) == (i4 | 0)) break;
+ if ((i3 | 0) == (i2 | 0)) break;
i136 = i3 + -24 | 0;
HEAP32[i5 >> 2] = i136;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i136);
i3 = HEAP32[i5 >> 2] | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i139, i2 + -48 | 0);
- i2 = HEAP32[i5 >> 2] | 0;
- i4 = i2 + -24 | 0;
- i3 = i2;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i139, i1 + -48 | 0);
+ i1 = HEAP32[i5 >> 2] | 0;
+ i2 = i1 + -24 | 0;
+ i3 = i1;
while (1) {
- if ((i3 | 0) == (i4 | 0)) break;
+ if ((i3 | 0) == (i2 | 0)) break;
i136 = i3 + -24 | 0;
HEAP32[i5 >> 2] = i136;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i136);
i3 = HEAP32[i5 >> 2] | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i137, i2 + -48 | 0);
- i4 = (HEAP32[i5 >> 2] | 0) + -24 | 0;
- __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i113, 34356, i137);
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i113, 35492) | 0;
- HEAP32[i112 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i112 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i112 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i137, i1 + -48 | 0);
+ i3 = (HEAP32[i5 >> 2] | 0) + -24 | 0;
+ __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i114, 35820, i137);
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i114, 36956) | 0;
+ HEAP32[i113 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i113 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i113 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
i2 = 0;
while (1) {
if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- i3 = HEAP8[i139 >> 0] | 0;
- i2 = (i3 & 1) == 0;
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i112, i2 ? i139 + 1 | 0 : HEAP32[i139 + 8 >> 2] | 0, i2 ? (i3 & 255) >>> 1 : HEAP32[i139 + 4 >> 2] | 0) | 0;
- HEAP32[i111 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i111 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i111 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ i1 = HEAP8[i139 >> 0] | 0;
+ i2 = (i1 & 1) == 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i113, i2 ? i139 + 1 | 0 : HEAP32[i139 + 8 >> 2] | 0, i2 ? (i1 & 255) >>> 1 : HEAP32[i139 + 4 >> 2] | 0) | 0;
+ HEAP32[i112 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i112 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i112 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
i2 = 0;
while (1) {
if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i111, 35498) | 0;
- HEAP32[i110 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i110 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i110 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i112, 36962) | 0;
+ HEAP32[i111 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i111 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i111 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
i2 = 0;
while (1) {
if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- i3 = HEAP8[i138 >> 0] | 0;
- i2 = (i3 & 1) == 0;
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i110, i2 ? i138 + 1 | 0 : HEAP32[i138 + 8 >> 2] | 0, i2 ? (i3 & 255) >>> 1 : HEAP32[i138 + 4 >> 2] | 0) | 0;
- HEAP32[i109 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i109 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i109 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ i1 = HEAP8[i138 >> 0] | 0;
+ i2 = (i1 & 1) == 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i111, i2 ? i138 + 1 | 0 : HEAP32[i138 + 8 >> 2] | 0, i2 ? (i1 & 255) >>> 1 : HEAP32[i138 + 4 >> 2] | 0) | 0;
+ HEAP32[i110 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i110 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i110 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
i2 = 0;
while (1) {
if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i109, 34358) | 0;
- HEAP32[i107 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i107 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i107 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i110, 35822) | 0;
+ HEAP32[i109 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i109 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i109 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
i2 = 0;
while (1) {
if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i108, i107);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i4, i108);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i108, i109);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i108);
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i108);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i107);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i109);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i110);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i111);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i112);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i113);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i114);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i137);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i139);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i138);
+ i1 = i4;
break L1;
}
case 114:
- switch (HEAP8[i62 + 1 >> 0] | 0) {
+ switch (HEAP8[i61 + 1 >> 0] | 0) {
case 99:
{
- if ((((((i61 | 0) > 2 ? (HEAP8[i136 >> 0] | 0) == 114 : 0) ? (HEAP8[i136 + 1 >> 0] | 0) == 99 : 0) ? (i130 = i136 + 2 | 0, i18 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i130, i123, i134) | 0, (i18 | 0) != (i130 | 0)) : 0) ? (i94 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i18, i123, i134) | 0, (i94 | 0) != (i18 | 0)) : 0) ? (i69 = i134 + 4 | 0, i7 = HEAP32[i69 >> 2] | 0, ((i7 - (HEAP32[i134 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) : 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i138, i7 + -24 | 0);
- i1 = HEAP32[i69 >> 2] | 0;
- i3 = i1 + -24 | 0;
- i2 = i1;
+ if ((((((i59 | 0) > 2 ? (HEAP8[i1 >> 0] | 0) == 114 : 0) ? (HEAP8[i1 + 1 >> 0] | 0) == 99 : 0) ? (i131 = i1 + 2 | 0, i4 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i131, i126, i135) | 0, (i4 | 0) != (i131 | 0)) : 0) ? (i93 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i4, i126, i135) | 0, (i93 | 0) != (i4 | 0)) : 0) ? (i65 = i135 + 4 | 0, i5 = HEAP32[i65 >> 2] | 0, ((i5 - (HEAP32[i135 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) : 0) {
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i138, i5 + -24 | 0);
+ i1 = HEAP32[i65 >> 2] | 0;
+ i2 = i1 + -24 | 0;
+ i3 = i1;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break;
- i136 = i2 + -24 | 0;
- HEAP32[i69 >> 2] = i136;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i136);
- i2 = HEAP32[i69 >> 2] | 0;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i135 = i3 + -24 | 0;
+ HEAP32[i65 >> 2] = i135;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i135);
+ i3 = HEAP32[i65 >> 2] | 0;
}
i3 = i1 + -48 | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i133, i3);
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i133, 0, 35504) | 0;
- HEAP32[i131 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i131 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i131 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i134, i3);
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i134, 0, 36968) | 0;
+ HEAP32[i132 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i132 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i132 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i131, 34440) | 0;
- HEAP32[i132 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i132 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i132 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i132, 35904) | 0;
+ HEAP32[i133 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i133 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i133 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = HEAP8[i138 >> 0] | 0;
- i1 = (i2 & 1) == 0;
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i132, i1 ? i138 + 1 | 0 : HEAP32[i138 + 8 >> 2] | 0, i1 ? (i2 & 255) >>> 1 : HEAP32[i138 + 4 >> 2] | 0) | 0;
- HEAP32[i135 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i135 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i135 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = HEAP8[i138 >> 0] | 0;
+ i2 = (i1 & 1) == 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i133, i2 ? i138 + 1 | 0 : HEAP32[i138 + 8 >> 2] | 0, i2 ? (i1 & 255) >>> 1 : HEAP32[i138 + 4 >> 2] | 0) | 0;
+ HEAP32[i136 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i136 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i136 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i135, 34358) | 0;
- HEAP32[i137 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i137 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i137 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i136, 35822) | 0;
+ HEAP32[i137 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i137 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i137 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i139, i137);
__ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i139);
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i139);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i137);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i135);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i132);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i131);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i136);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i133);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i132);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i134);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i138);
- i1 = i94;
- } else i1 = i136;
+ i1 = i93;
+ }
break L1;
}
case 109:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 35522, 1);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i56, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i53, 36986, 1);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i53, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i53);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 77:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i57, 35524, 2);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i57, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i57);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i55, 36988, 2);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i55, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i55);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 115:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i58, 35527, 2);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i58, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i58);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i57, 36991, 2);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i57, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i57);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 83:
{
- i139 = i136 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i59, 35530, 3);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i139, i123, i59, i134) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i59);
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ i138 = i1 + 2 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i58, 36994, 3);
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i138, i126, i58, i135) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i58);
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
default:
- {
- i1 = i136;
- break L1;
- }
+ break L1;
}
case 115:
- switch (HEAP8[i62 + 1 >> 0] | 0) {
+ switch (HEAP8[i61 + 1 >> 0] | 0) {
case 99:
{
- if ((((((i61 | 0) > 2 ? (HEAP8[i136 >> 0] | 0) == 115 : 0) ? (HEAP8[i136 + 1 >> 0] | 0) == 99 : 0) ? (i130 = i136 + 2 | 0, i17 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i130, i123, i134) | 0, (i17 | 0) != (i130 | 0)) : 0) ? (i93 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i17, i123, i134) | 0, (i93 | 0) != (i17 | 0)) : 0) ? (i68 = i134 + 4 | 0, i8 = HEAP32[i68 >> 2] | 0, ((i8 - (HEAP32[i134 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) : 0) {
+ if ((((((i59 | 0) > 2 ? (HEAP8[i1 >> 0] | 0) == 115 : 0) ? (HEAP8[i1 + 1 >> 0] | 0) == 99 : 0) ? (i131 = i1 + 2 | 0, i7 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i131, i126, i135) | 0, (i7 | 0) != (i131 | 0)) : 0) ? (i94 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i7, i126, i135) | 0, (i94 | 0) != (i7 | 0)) : 0) ? (i66 = i135 + 4 | 0, i8 = HEAP32[i66 >> 2] | 0, ((i8 - (HEAP32[i135 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) : 0) {
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i138, i8 + -24 | 0);
- i1 = HEAP32[i68 >> 2] | 0;
- i3 = i1 + -24 | 0;
- i2 = i1;
+ i1 = HEAP32[i66 >> 2] | 0;
+ i2 = i1 + -24 | 0;
+ i3 = i1;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break;
- i136 = i2 + -24 | 0;
- HEAP32[i68 >> 2] = i136;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i136);
- i2 = HEAP32[i68 >> 2] | 0;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i135 = i3 + -24 | 0;
+ HEAP32[i66 >> 2] = i135;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i135);
+ i3 = HEAP32[i66 >> 2] | 0;
}
i3 = i1 + -48 | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i133, i3);
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i133, 0, 35534) | 0;
- HEAP32[i131 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i131 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i131 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i134, i3);
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i134, 0, 36998) | 0;
+ HEAP32[i132 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i132 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i132 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i131, 34440) | 0;
- HEAP32[i132 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i132 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i132 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i132, 35904) | 0;
+ HEAP32[i133 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i133 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i133 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = HEAP8[i138 >> 0] | 0;
- i1 = (i2 & 1) == 0;
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i132, i1 ? i138 + 1 | 0 : HEAP32[i138 + 8 >> 2] | 0, i1 ? (i2 & 255) >>> 1 : HEAP32[i138 + 4 >> 2] | 0) | 0;
- HEAP32[i135 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i135 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i135 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = HEAP8[i138 >> 0] | 0;
+ i2 = (i1 & 1) == 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i133, i2 ? i138 + 1 | 0 : HEAP32[i138 + 8 >> 2] | 0, i2 ? (i1 & 255) >>> 1 : HEAP32[i138 + 4 >> 2] | 0) | 0;
+ HEAP32[i136 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i136 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i136 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i135, 34358) | 0;
- HEAP32[i137 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i137 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i137 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i136, 35822) | 0;
+ HEAP32[i137 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i137 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i137 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i139, i137);
__ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i139);
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i139);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i137);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i135);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i132);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i131);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i136);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i133);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i132);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i134);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i138);
- i1 = i93;
- } else i1 = i136;
+ i1 = i94;
+ }
break L1;
}
case 112:
{
- if ((i61 | 0) <= 2) {
- i1 = i136;
- break L1;
- }
- if ((HEAP8[i136 >> 0] | 0) != 115) {
- i1 = i136;
- break L1;
- }
- if ((HEAP8[i136 + 1 >> 0] | 0) != 112) {
- i1 = i136;
- break L1;
- }
- i139 = i136 + 2 | 0;
- i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i139, i123, i134) | 0;
- i1 = (i1 | 0) == (i139 | 0) ? i136 : i1;
+ if ((i59 | 0) <= 2) break L1;
+ if ((HEAP8[i1 >> 0] | 0) != 115) break L1;
+ if ((HEAP8[i1 + 1 >> 0] | 0) != 112) break L1;
+ i138 = i1 + 2 | 0;
+ i139 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i138, i126, i135) | 0;
+ i1 = (i139 | 0) == (i138 | 0) ? i1 : i139;
break L1;
}
case 114:
{
- i1 = __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S4_RT_(i136, i123, i134) | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S4_RT_(i1, i126, i135) | 0;
break L1;
}
case 116:
{
- if (((((i61 | 0) > 2 ? (HEAP8[i136 >> 0] | 0) == 115 : 0) ? (HEAP8[i136 + 1 >> 0] | 0) == 116 : 0) ? (i133 = i136 + 2 | 0, i79 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i133, i123, i134) | 0, (i79 | 0) != (i133 | 0)) : 0) ? (i9 = HEAP32[i134 + 4 >> 2] | 0, (HEAP32[i134 >> 2] | 0) != (i9 | 0)) : 0) {
- i3 = i9 + -24 | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i135, i3);
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i135, 0, 35547) | 0;
- HEAP32[i137 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i137 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i137 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ if (((((i59 | 0) > 2 ? (HEAP8[i1 >> 0] | 0) == 115 : 0) ? (HEAP8[i1 + 1 >> 0] | 0) == 116 : 0) ? (i134 = i1 + 2 | 0, i76 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i134, i126, i135) | 0, (i76 | 0) != (i134 | 0)) : 0) ? (i10 = HEAP32[i135 + 4 >> 2] | 0, (HEAP32[i135 >> 2] | 0) != (i10 | 0)) : 0) {
+ i3 = i10 + -24 | 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i136, i3);
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i136, 0, 37011) | 0;
+ HEAP32[i137 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i137 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i137 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i137, 34358) | 0;
- HEAP32[i139 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i139 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i139 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i137, 35822) | 0;
+ HEAP32[i139 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i139 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i139 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i138, i139);
__ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i138);
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i138);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i139);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i137);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i135);
- i1 = i79;
- } else i1 = i136;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i136);
+ i1 = i76;
+ }
break L1;
}
case 122:
{
- if (((((i61 | 0) > 2 ? (HEAP8[i136 >> 0] | 0) == 115 : 0) ? (HEAP8[i136 + 1 >> 0] | 0) == 122 : 0) ? (i133 = i136 + 2 | 0, i78 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i133, i123, i134) | 0, (i78 | 0) != (i133 | 0)) : 0) ? (i10 = HEAP32[i134 + 4 >> 2] | 0, (HEAP32[i134 >> 2] | 0) != (i10 | 0)) : 0) {
- i3 = i10 + -24 | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i135, i3);
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i135, 0, 35547) | 0;
- HEAP32[i137 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i137 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i137 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ if (((((i59 | 0) > 2 ? (HEAP8[i1 >> 0] | 0) == 115 : 0) ? (HEAP8[i1 + 1 >> 0] | 0) == 122 : 0) ? (i134 = i1 + 2 | 0, i77 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i134, i126, i135) | 0, (i77 | 0) != (i134 | 0)) : 0) ? (i11 = HEAP32[i135 + 4 >> 2] | 0, (HEAP32[i135 >> 2] | 0) != (i11 | 0)) : 0) {
+ i3 = i11 + -24 | 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i136, i3);
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i136, 0, 37011) | 0;
+ HEAP32[i137 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i137 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i137 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i137, 34358) | 0;
- HEAP32[i139 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i139 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i139 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i137, 35822) | 0;
+ HEAP32[i139 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i139 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i139 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i138, i139);
__ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i138);
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i138);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i139);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i137);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i135);
- i1 = i78;
- } else i1 = i136;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i136);
+ i1 = i77;
+ }
break L1;
}
case 90:
{
- if ((i103 - i62 | 0) <= 2) {
- i1 = i136;
- break L1;
- }
- switch (HEAP8[i62 + 2 >> 0] | 0) {
+ if ((i103 - i61 | 0) <= 2) break L1;
+ switch (HEAP8[i61 + 2 >> 0] | 0) {
case 84:
break;
case 102:
{
- if ((((((i61 | 0) > 2 ? (HEAP8[i136 >> 0] | 0) == 115 : 0) ? (HEAP8[i136 + 1 >> 0] | 0) == 90 : 0) ? (i16 = i136 + 2 | 0, (HEAP8[i16 >> 0] | 0) == 102) : 0) ? (i77 = __ZN10__cxxabiv112_GLOBAL__N_120parse_function_paramINS0_2DbEEEPKcS4_S4_RT_(i16, i123, i134) | 0, (i77 | 0) != (i16 | 0)) : 0) ? (i11 = HEAP32[i134 + 4 >> 2] | 0, (HEAP32[i134 >> 2] | 0) != (i11 | 0)) : 0) {
- i3 = i11 + -24 | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i135, i3);
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i135, 0, 35556) | 0;
- HEAP32[i137 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i137 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i137 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ if ((((((i59 | 0) > 2 ? (HEAP8[i1 >> 0] | 0) == 115 : 0) ? (HEAP8[i1 + 1 >> 0] | 0) == 90 : 0) ? (i14 = i1 + 2 | 0, (HEAP8[i14 >> 0] | 0) == 102) : 0) ? (i78 = __ZN10__cxxabiv112_GLOBAL__N_120parse_function_paramINS0_2DbEEEPKcS4_S4_RT_(i14, i126, i135) | 0, (i78 | 0) != (i14 | 0)) : 0) ? (i15 = HEAP32[i135 + 4 >> 2] | 0, (HEAP32[i135 >> 2] | 0) != (i15 | 0)) : 0) {
+ i3 = i15 + -24 | 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i136, i3);
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i136, 0, 37020) | 0;
+ HEAP32[i137 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i137 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i137 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i137, 34358) | 0;
- HEAP32[i139 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i139 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i139 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i137, 35822) | 0;
+ HEAP32[i139 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i139 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i139 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i138, i139);
__ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i138);
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i138);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i139);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i137);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i135);
- i1 = i77;
- } else i1 = i136;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i136);
+ i1 = i78;
+ }
break L1;
}
default:
- {
- i1 = i136;
- break L1;
- }
+ break L1;
}
- if (((((i61 | 0) > 2 ? (HEAP8[i136 >> 0] | 0) == 115 : 0) ? (HEAP8[i136 + 1 >> 0] | 0) == 90 : 0) ? (i15 = i136 + 2 | 0, (HEAP8[i15 >> 0] | 0) == 84) : 0) ? (i104 = i134 + 4 | 0, i97 = ((HEAP32[i104 >> 2] | 0) - (HEAP32[i134 >> 2] | 0) | 0) / 24 | 0, i1 = __ZN10__cxxabiv112_GLOBAL__N_120parse_template_paramINS0_2DbEEEPKcS4_S4_RT_(i15, i123, i134) | 0, i66 = HEAP32[i134 >> 2] | 0, i4 = ((HEAP32[i104 >> 2] | 0) - i66 | 0) / 24 | 0, i66, (i1 | 0) != (i15 | 0)) : 0) {
+ if (((((i59 | 0) > 2 ? (HEAP8[i1 >> 0] | 0) == 115 : 0) ? (HEAP8[i1 + 1 >> 0] | 0) == 90 : 0) ? (i12 = i1 + 2 | 0, (HEAP8[i12 >> 0] | 0) == 84) : 0) ? (i104 = i135 + 4 | 0, i97 = ((HEAP32[i104 >> 2] | 0) - (HEAP32[i135 >> 2] | 0) | 0) / 24 | 0, i107 = __ZN10__cxxabiv112_GLOBAL__N_120parse_template_paramINS0_2DbEEEPKcS4_S4_RT_(i12, i126, i135) | 0, i67 = HEAP32[i135 >> 2] | 0, i92 = ((HEAP32[i104 >> 2] | 0) - i67 | 0) / 24 | 0, i67, (i107 | 0) != (i12 | 0)) : 0) {
HEAP8[i139 >> 0] = 20;
- i2 = i139 + 1 | 0;
- i3 = 35556;
- i5 = i2 + 10 | 0;
+ i1 = i139 + 1 | 0;
+ i2 = 37020;
+ i3 = i1 + 10 | 0;
do {
- HEAP8[i2 >> 0] = HEAP8[i3 >> 0] | 0;
+ HEAP8[i1 >> 0] = HEAP8[i2 >> 0] | 0;
+ i1 = i1 + 1 | 0;
i2 = i2 + 1 | 0;
- i3 = i3 + 1 | 0;
- } while ((i2 | 0) < (i5 | 0));
+ } while ((i1 | 0) < (i3 | 0));
HEAP8[i139 + 11 >> 0] = 0;
- L867 : do if ((i97 | 0) != (i4 | 0)) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i137, i66 + (i97 * 24 | 0) | 0);
- i6 = HEAP8[i137 >> 0] | 0;
- i8 = (i6 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i139, i8 ? i137 + 1 | 0 : HEAP32[i137 + 8 >> 2] | 0, i8 ? (i6 & 255) >>> 1 : HEAP32[i137 + 4 >> 2] | 0) | 0;
+ L867 : do if ((i97 | 0) != (i92 | 0)) {
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i137, i67 + (i97 * 24 | 0) | 0);
+ i4 = HEAP8[i137 >> 0] | 0;
+ i5 = (i4 & 1) == 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i139, i5 ? i137 + 1 | 0 : HEAP32[i137 + 8 >> 2] | 0, i5 ? (i4 & 255) >>> 1 : HEAP32[i137 + 4 >> 2] | 0) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i137);
- i6 = i135 + 8 | 0;
- i8 = i135 + 1 | 0;
- i7 = i135 + 4 | 0;
- i2 = i97;
+ i4 = i136 + 8 | 0;
+ i5 = i136 + 1 | 0;
+ i6 = i136 + 4 | 0;
+ i1 = i97;
while (1) {
- i2 = i2 + 1 | 0;
- if ((i2 | 0) == (i4 | 0)) break L867;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i132, (HEAP32[i134 >> 2] | 0) + (i2 * 24 | 0) | 0);
- i5 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i132, 0, 34990) | 0;
- HEAP32[i135 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i135 + 4 >> 2] = HEAP32[i5 + 4 >> 2];
- HEAP32[i135 + 8 >> 2] = HEAP32[i5 + 8 >> 2];
+ i1 = i1 + 1 | 0;
+ if ((i1 | 0) == (i92 | 0)) break L867;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i133, (HEAP32[i135 >> 2] | 0) + (i1 * 24 | 0) | 0);
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i133, 0, 36454) | 0;
+ HEAP32[i136 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i136 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i136 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
i3 = 0;
while (1) {
if ((i3 | 0) == 3) break;
- HEAP32[i5 + (i3 << 2) >> 2] = 0;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
i3 = i3 + 1 | 0;
}
- i137 = HEAP8[i135 >> 0] | 0;
- i136 = (i137 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i139, i136 ? i8 : HEAP32[i6 >> 2] | 0, i136 ? (i137 & 255) >>> 1 : HEAP32[i7 >> 2] | 0) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i135);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i132);
+ i137 = HEAP8[i136 >> 0] | 0;
+ i131 = (i137 & 1) == 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i139, i131 ? i5 : HEAP32[i4 >> 2] | 0, i131 ? (i137 & 255) >>> 1 : HEAP32[i6 >> 2] | 0) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i136);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i133);
}
} while (0);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i139, 34358) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i139, 35822) | 0;
+ i3 = i92;
while (1) {
- if ((i4 | 0) == (i97 | 0)) break;
+ if ((i3 | 0) == (i97 | 0)) break;
i2 = HEAP32[i104 >> 2] | 0;
- i3 = i2 + -24 | 0;
+ i1 = i2 + -24 | 0;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break;
+ if ((i2 | 0) == (i1 | 0)) break;
i137 = i2 + -24 | 0;
HEAP32[i104 >> 2] = i137;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i137);
i2 = HEAP32[i104 >> 2] | 0;
}
- i4 = i4 + -1 | 0;
+ i3 = i3 + -1 | 0;
}
- HEAP32[i133 >> 2] = HEAP32[i139 >> 2];
- HEAP32[i133 + 4 >> 2] = HEAP32[i139 + 4 >> 2];
- HEAP32[i133 + 8 >> 2] = HEAP32[i139 + 8 >> 2];
- i2 = 0;
+ HEAP32[i134 >> 2] = HEAP32[i139 >> 2];
+ HEAP32[i134 + 4 >> 2] = HEAP32[i139 + 4 >> 2];
+ HEAP32[i134 + 8 >> 2] = HEAP32[i139 + 8 >> 2];
+ i1 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i139 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i1 | 0) == 3) break;
+ HEAP32[i139 + (i1 << 2) >> 2] = 0;
+ i1 = i1 + 1 | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i131, i133);
- i2 = HEAP32[i104 >> 2] | 0;
- i137 = HEAP32[i134 + 8 >> 2] | 0;
- i5 = i137;
- if (i2 >>> 0 < i137 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i131);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i132, i134);
+ i1 = HEAP32[i104 >> 2] | 0;
+ i137 = HEAP32[i135 + 8 >> 2] | 0;
+ i4 = i137;
+ if (i1 >>> 0 < i137 >>> 0) {
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i1, i132);
HEAP32[i104 >> 2] = (HEAP32[i104 >> 2] | 0) + 24;
} else {
- i3 = HEAP32[i134 >> 2] | 0;
- i137 = i2 - i3 | 0;
- i6 = (i137 | 0) / 24 | 0;
- i4 = i6 + 1 | 0;
- if ((i137 | 0) < -24) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i134);
- i2 = (i5 - i3 | 0) / 24 | 0;
- if (i2 >>> 0 < 1073741823) {
- i2 = i2 << 1;
- i2 = i2 >>> 0 < i4 >>> 0 ? i4 : i2;
- } else i2 = 2147483647;
- __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i138, i2, i6, i134 + 12 | 0);
+ i2 = HEAP32[i135 >> 2] | 0;
+ i137 = i1 - i2 | 0;
+ i5 = (i137 | 0) / 24 | 0;
+ i3 = i5 + 1 | 0;
+ if ((i137 | 0) < -24) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i135);
+ i1 = (i4 - i2 | 0) / 24 | 0;
+ if (i1 >>> 0 < 1073741823) {
+ i1 = i1 << 1;
+ i1 = i1 >>> 0 < i3 >>> 0 ? i3 : i1;
+ } else i1 = 2147483647;
+ __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i138, i1, i5, i135 + 12 | 0);
i137 = i138 + 8 | 0;
i136 = HEAP32[i137 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i136, i131);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i136, i132);
HEAP32[i137 >> 2] = i136 + 24;
- __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i134, i138);
+ __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i135, i138);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i138);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i131);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i133);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i132);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i134);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i139);
- } else i1 = i136;
+ i1 = i107;
+ }
break L1;
}
default:
- {
- i1 = i136;
- break L1;
- }
+ break L1;
}
case 116:
- switch (HEAP8[i62 + 1 >> 0] | 0) {
+ switch (HEAP8[i61 + 1 >> 0] | 0) {
case 105:
case 101:
{
- L903 : do if ((i61 | 0) > 2 ? (HEAP8[i136 >> 0] | 0) == 116 : 0) {
- i1 = HEAP8[i136 + 1 >> 0] | 0;
- switch (i1 << 24 >> 24) {
+ L903 : do if ((i59 | 0) > 2 ? (HEAP8[i1 >> 0] | 0) == 116 : 0) {
+ i2 = HEAP8[i1 + 1 >> 0] | 0;
+ switch (i2 << 24 >> 24) {
case 105:
case 101:
break;
default:
- {
- i1 = i136;
- break L903;
- }
+ break L903;
}
- i2 = i136 + 2 | 0;
- if (i1 << 24 >> 24 == 101) i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i123, i134) | 0; else i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i2, i123, i134) | 0;
- if ((i1 | 0) != (i2 | 0) ? (i67 = HEAP32[i134 + 4 >> 2] | 0, (HEAP32[i134 >> 2] | 0) != (i67 | 0)) : 0) {
- i4 = i67 + -24 | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i135, i4);
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i135, 0, 35567) | 0;
- HEAP32[i137 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i137 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i137 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ i3 = i1 + 2 | 0;
+ if (i2 << 24 >> 24 == 101) i4 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i3, i126, i135) | 0; else i4 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i3, i126, i135) | 0;
+ if ((i4 | 0) != (i3 | 0) ? (i68 = HEAP32[i135 + 4 >> 2] | 0, (HEAP32[i135 >> 2] | 0) != (i68 | 0)) : 0) {
+ i3 = i68 + -24 | 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i136, i3);
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i136, 0, 37031) | 0;
+ HEAP32[i137 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i137 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i137 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
i2 = 0;
while (1) {
if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i137, 34358) | 0;
- HEAP32[i139 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i139 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i139 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i137, 35822) | 0;
+ HEAP32[i139 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i139 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i139 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
i2 = 0;
while (1) {
if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i138, i139);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i4, i138);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i138);
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i138);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i139);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i137);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i135);
- } else i1 = i136;
- } else i1 = i136; while (0);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i136);
+ i1 = i4;
+ }
+ } while (0);
break L1;
}
case 114:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj6EEERAT__Kc(i92, 35575);
- i1 = i134 + 4 | 0;
- i2 = HEAP32[i1 >> 2] | 0;
- i139 = HEAP32[i134 + 8 >> 2] | 0;
- i3 = i139;
- if (i2 >>> 0 < i139 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i92);
- HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj6EEERAT__Kc(i90, 37039);
+ i2 = i135 + 4 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ i139 = HEAP32[i135 + 8 >> 2] | 0;
+ i4 = i139;
+ if (i3 >>> 0 < i139 >>> 0) {
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i90);
+ HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
- i1 = HEAP32[i134 >> 2] | 0;
- i139 = i2 - i1 | 0;
- i4 = (i139 | 0) / 24 | 0;
- i2 = i4 + 1 | 0;
- if ((i139 | 0) < -24) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i134);
- i1 = (i3 - i1 | 0) / 24 | 0;
- if (i1 >>> 0 < 1073741823) {
- i1 = i1 << 1;
- i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
- } else i1 = 2147483647;
- __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i138, i1, i4, i134 + 12 | 0);
+ i2 = HEAP32[i135 >> 2] | 0;
+ i139 = i3 - i2 | 0;
+ i5 = (i139 | 0) / 24 | 0;
+ i3 = i5 + 1 | 0;
+ if ((i139 | 0) < -24) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i135);
+ i2 = (i4 - i2 | 0) / 24 | 0;
+ if (i2 >>> 0 < 1073741823) {
+ i2 = i2 << 1;
+ i2 = i2 >>> 0 < i3 >>> 0 ? i3 : i2;
+ } else i2 = 2147483647;
+ __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i138, i2, i5, i135 + 12 | 0);
i139 = i138 + 8 | 0;
i137 = HEAP32[i139 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i137, i92);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i137, i90);
HEAP32[i139 >> 2] = i137 + 24;
- __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i134, i138);
+ __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i135, i138);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i138);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i92);
- i1 = i136 + 2 | 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i90);
+ i1 = i1 + 2 | 0;
break L1;
}
case 119:
{
- if (((((i61 | 0) > 2 ? (HEAP8[i136 >> 0] | 0) == 116 : 0) ? (HEAP8[i136 + 1 >> 0] | 0) == 119 : 0) ? (i135 = i136 + 2 | 0, i74 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i135, i123, i134) | 0, (i74 | 0) != (i135 | 0)) : 0) ? (i13 = HEAP32[i134 + 4 >> 2] | 0, (HEAP32[i134 >> 2] | 0) != (i13 | 0)) : 0) {
- i2 = i13 + -24 | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i137, i2);
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i137, 0, 35581) | 0;
- HEAP32[i139 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i139 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i139 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i1 = 0;
+ if (((((i59 | 0) > 2 ? (HEAP8[i1 >> 0] | 0) == 116 : 0) ? (HEAP8[i1 + 1 >> 0] | 0) == 119 : 0) ? (i136 = i1 + 2 | 0, i69 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i136, i126, i135) | 0, (i69 | 0) != (i136 | 0)) : 0) ? (i17 = HEAP32[i135 + 4 >> 2] | 0, (HEAP32[i135 >> 2] | 0) != (i17 | 0)) : 0) {
+ i1 = i17 + -24 | 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i137, i1);
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i137, 0, 37045) | 0;
+ HEAP32[i139 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i139 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i139 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i3 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i138, i139);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i2, i138);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i1, i138);
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i138);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i139);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i137);
- i1 = i74;
- } else i1 = i136;
+ i1 = i69;
+ }
break L1;
}
default:
- {
- i1 = i136;
- break L1;
- }
+ break L1;
}
case 57:
case 56:
@@ -12442,16 +11310,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_
case 50:
case 49:
{
- i1 = __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S4_RT_(i136, i123, i134) | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S4_RT_(i1, i126, i135) | 0;
break L1;
}
default:
- {
- i1 = i136;
- break L1;
- }
+ break L1;
} while (0);
- } else i1 = i136; while (0);
+ } while (0);
STACKTOP = i140;
return i1 | 0;
}
@@ -12466,64 +11331,64 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
i129 = i135 + 40 | 0;
i130 = i135 + 368 | 0;
i80 = i135 + 692 | 0;
- i52 = i135 + 688 | 0;
+ i54 = i135 + 688 | 0;
i4 = i135 + 684 | 0;
- i11 = i135 + 680 | 0;
+ i7 = i135 + 680 | 0;
i19 = i135 + 676 | 0;
- i27 = i135 + 672 | 0;
- i28 = i135 + 668 | 0;
- i5 = i135 + 656 | 0;
- i6 = i135 + 652 | 0;
- i7 = i135 + 648 | 0;
- i8 = i135 + 644 | 0;
- i9 = i135 + 640 | 0;
- i10 = i135 + 636 | 0;
+ i31 = i135 + 672 | 0;
+ i32 = i135 + 668 | 0;
+ i8 = i135 + 656 | 0;
+ i9 = i135 + 652 | 0;
+ i10 = i135 + 648 | 0;
+ i11 = i135 + 644 | 0;
+ i5 = i135 + 640 | 0;
+ i6 = i135 + 636 | 0;
i22 = i135 + 632 | 0;
- i29 = i135 + 628 | 0;
- i61 = i135 + 616 | 0;
- i30 = i135 + 604 | 0;
- i12 = i135 + 600 | 0;
- i13 = i135 + 596 | 0;
- i14 = i135 + 592 | 0;
+ i26 = i135 + 628 | 0;
+ i55 = i135 + 616 | 0;
+ i27 = i135 + 604 | 0;
+ i13 = i135 + 600 | 0;
+ i14 = i135 + 596 | 0;
+ i15 = i135 + 592 | 0;
i23 = i135 + 588 | 0;
- i20 = i135 + 56 | 0;
- i15 = i135 + 584 | 0;
- i16 = i135 + 580 | 0;
- i37 = i135 + 576 | 0;
- i42 = i135 + 572 | 0;
- i49 = i135 + 568 | 0;
- i38 = i135 + 564 | 0;
- i47 = i135 + 552 | 0;
+ i16 = i135 + 56 | 0;
+ i17 = i135 + 584 | 0;
+ i18 = i135 + 580 | 0;
+ i34 = i135 + 576 | 0;
+ i41 = i135 + 572 | 0;
+ i43 = i135 + 568 | 0;
+ i35 = i135 + 564 | 0;
+ i44 = i135 + 552 | 0;
i24 = i135 + 548 | 0;
i25 = i135 + 544 | 0;
- i17 = i135 + 532 | 0;
- i18 = i135 + 528 | 0;
- i31 = i135 + 524 | 0;
- i32 = i135 + 520 | 0;
- i33 = i135 + 516 | 0;
- i39 = i135 + 512 | 0;
- i40 = i135 + 508 | 0;
- i34 = i135 + 504 | 0;
- i35 = i135 + 500 | 0;
- i41 = i135 + 496 | 0;
- i43 = i135 + 484 | 0;
- i44 = i135 + 480 | 0;
- i36 = i135 + 476 | 0;
- i90 = i135 + 472 | 0;
+ i20 = i135 + 532 | 0;
+ i21 = i135 + 528 | 0;
+ i28 = i135 + 524 | 0;
+ i29 = i135 + 520 | 0;
+ i30 = i135 + 516 | 0;
+ i36 = i135 + 512 | 0;
+ i37 = i135 + 508 | 0;
+ i38 = i135 + 504 | 0;
+ i39 = i135 + 500 | 0;
+ i42 = i135 + 496 | 0;
+ i45 = i135 + 484 | 0;
+ i46 = i135 + 480 | 0;
+ i40 = i135 + 476 | 0;
+ i91 = i135 + 472 | 0;
i93 = i135 + 468 | 0;
- i45 = i135 + 464 | 0;
+ i47 = i135 + 464 | 0;
i48 = i135 + 460 | 0;
- i46 = i135 + 456 | 0;
+ i49 = i135 + 456 | 0;
i50 = i135 + 452 | 0;
- i87 = i135 + 448 | 0;
- i81 = i135 + 444 | 0;
- i26 = i135 + 440 | 0;
+ i83 = i135 + 448 | 0;
+ i84 = i135 + 444 | 0;
+ i33 = i135 + 440 | 0;
i125 = i135 + 220 | 0;
- i62 = i135 + 436 | 0;
- i53 = i135 + 432 | 0;
- i54 = i135 + 428 | 0;
+ i56 = i135 + 436 | 0;
+ i57 = i135 + 432 | 0;
+ i58 = i135 + 428 | 0;
i51 = i135 + 424 | 0;
- i66 = i135 + 420 | 0;
+ i68 = i135 + 420 | 0;
i63 = i135 + 416 | 0;
i89 = i135 + 412 | 0;
i64 = i135 + 408 | 0;
@@ -12534,188 +11399,188 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
i79 = i135 + 372 | 0;
i98 = i135 + 364 | 0;
i101 = i135 + 360 | 0;
- i105 = i135 + 356 | 0;
+ i103 = i135 + 356 | 0;
i107 = i135 + 352 | 0;
- i103 = i135 + 348 | 0;
+ i104 = i135 + 348 | 0;
i114 = i135 + 344 | 0;
- i67 = i135 + 340 | 0;
- i68 = i135 + 328 | 0;
+ i69 = i135 + 340 | 0;
+ i70 = i135 + 328 | 0;
i96 = i135 + 324 | 0;
i94 = i135 + 320 | 0;
- i71 = i135 + 316 | 0;
- i72 = i135 + 312 | 0;
- i73 = i135 + 300 | 0;
- i74 = i135 + 288 | 0;
+ i72 = i135 + 316 | 0;
+ i73 = i135 + 312 | 0;
+ i74 = i135 + 300 | 0;
+ i75 = i135 + 288 | 0;
i97 = i135 + 284 | 0;
- i104 = i135 + 280 | 0;
- i109 = i135 + 276 | 0;
- i82 = i135 + 272 | 0;
- i83 = i135 + 268 | 0;
- i84 = i135 + 256 | 0;
- i85 = i135 + 244 | 0;
+ i105 = i135 + 280 | 0;
+ i108 = i135 + 276 | 0;
+ i85 = i135 + 272 | 0;
+ i86 = i135 + 268 | 0;
+ i87 = i135 + 256 | 0;
+ i88 = i135 + 244 | 0;
i102 = i135 + 240 | 0;
- i110 = i135 + 236 | 0;
- i112 = i135 + 232 | 0;
- i108 = i135 + 228 | 0;
+ i109 = i135 + 236 | 0;
+ i111 = i135 + 232 | 0;
+ i110 = i135 + 228 | 0;
i113 = i135 + 224 | 0;
- i111 = i135 + 216 | 0;
+ i112 = i135 + 216 | 0;
i124 = i135 + 212 | 0;
i127 = i135 + 208 | 0;
i126 = i135 + 204 | 0;
i128 = i135 + 200 | 0;
- i55 = i135 + 196 | 0;
- i56 = i135 + 192 | 0;
- i57 = i135 + 188 | 0;
- i58 = i135 + 184 | 0;
- i88 = i135 + 180 | 0;
- i75 = i135 + 176 | 0;
- i91 = i135 + 172 | 0;
- i86 = i135 + 164 | 0;
- i69 = i135 + 160 | 0;
- i70 = i135 + 148 | 0;
+ i59 = i135 + 196 | 0;
+ i60 = i135 + 192 | 0;
+ i61 = i135 + 188 | 0;
+ i62 = i135 + 184 | 0;
+ i81 = i135 + 180 | 0;
+ i71 = i135 + 176 | 0;
+ i90 = i135 + 172 | 0;
+ i82 = i135 + 164 | 0;
+ i66 = i135 + 160 | 0;
+ i67 = i135 + 148 | 0;
i92 = i135 + 144 | 0;
- i121 = i135 + 168 | 0;
+ i122 = i135 + 168 | 0;
i99 = i135 + 140 | 0;
i100 = i135 + 16 | 0;
- i120 = i135 + 32 | 0;
+ i121 = i135 + 32 | 0;
i115 = i135 + 136 | 0;
i116 = i135 + 124 | 0;
i117 = i135 + 120 | 0;
- i123 = i135;
- i118 = i135 + 108 | 0;
- i119 = i135 + 96 | 0;
- i59 = i135 + 84 | 0;
- i60 = i135 + 80 | 0;
+ i118 = i135;
+ i119 = i135 + 108 | 0;
+ i120 = i135 + 96 | 0;
+ i52 = i135 + 84 | 0;
+ i53 = i135 + 80 | 0;
i133 = HEAP32[i132 >> 2] | 0;
- HEAP32[i52 >> 2] = HEAP32[i131 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i52 >> 2];
+ HEAP32[i54 >> 2] = HEAP32[i131 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i54 >> 2];
__ZN4wasm14AstStackHelperC2EN6cashew3RefE(i80, i134);
if ((HEAP32[i133 + 44 >> 2] | 0) > 1) {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38004, 20765) | 0;
- __ZN6cashew5Value9stringifyERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEb(HEAP32[i131 >> 2] | 0, 38004, 0);
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(38004, 10) | 0;
- }
- i52 = __ZN6cashew3RefixEj(i131, 0) | 0;
- i52 = __ZN6cashew5Value10getIStringEv(HEAP32[i52 >> 2] | 0) | 0;
- i52 = HEAP32[i52 >> 2] | 0;
- L4 : do if ((i52 | 0) != (HEAP32[9231] | 0)) {
- if ((i52 | 0) == (HEAP32[9232] | 0)) {
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 0) | 0, 36932) | 0) {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39476, 21353) | 0;
+ __ZN6cashew5Value9stringifyERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEb(HEAP32[i131 >> 2] | 0, 39476, 0);
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(39476, 10) | 0;
+ }
+ i54 = __ZN6cashew3RefixEj(i131, 0) | 0;
+ i54 = __ZN6cashew5Value10getIStringEv(HEAP32[i54 >> 2] | 0) | 0;
+ i54 = HEAP32[i54 >> 2] | 0;
+ L4 : do if ((i54 | 0) != (HEAP32[9599] | 0)) {
+ if ((i54 | 0) == (HEAP32[9600] | 0)) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 0) | 0, 38404) | 0) {
i130 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 1) | 0;
i130 = __ZN6cashew5Value10getIStringEv(HEAP32[i130 >> 2] | 0) | 0;
HEAP32[i129 >> 2] = HEAP32[i130 >> 2];
do if (!(__ZNKSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE4findIS2_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS2_PvEEEERKT_(HEAP32[i132 + 8 >> 2] | 0, i129) | 0)) {
i1 = i133 + 48 | 0;
- if ((__ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i1, i129) | 0) == (i133 + 52 | 0)) ___assert_fail(20770, 12455, 801, 34529); else {
+ if ((__ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i1, i129) | 0) == (i133 + 52 | 0)) ___assert_fail(21358, 13029, 800, 35993); else {
i130 = __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEEixERSA_(i1, i129) | 0;
i129 = HEAP32[i130 >> 2] | 0;
i130 = HEAP32[i130 + 4 >> 2] | 0;
i133 = i133 + 4 | 0;
- i21 = __ZN10MixedArena5allocIN4wasm5StoreEEEPT_v(HEAP32[i133 >> 2] | 0) | 0;
+ i12 = __ZN10MixedArena5allocIN4wasm5StoreEEEPT_v(HEAP32[i133 >> 2] | 0) | 0;
i128 = __ZN4wasm15getWasmTypeSizeENS_8WasmTypeE(i130) | 0;
- HEAP32[i21 + 8 >> 2] = i128;
- HEAP32[i21 + 12 >> 2] = 0;
- HEAP32[i21 + 16 >> 2] = i128;
+ HEAP32[i12 + 8 >> 2] = i128;
+ HEAP32[i12 + 12 >> 2] = 0;
+ HEAP32[i12 + 16 >> 2] = i128;
i133 = __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(HEAP32[i133 >> 2] | 0) | 0;
HEAP32[i133 + 8 >> 2] = 1;
HEAP32[i133 + 16 >> 2] = i129;
- HEAP32[i21 + 20 >> 2] = i133;
+ HEAP32[i12 + 20 >> 2] = i133;
i133 = HEAP32[i132 + 4 >> 2] | 0;
i132 = __ZN6cashew3RefixEj(i131, 3) | 0;
HEAP32[i19 >> 2] = HEAP32[i132 >> 2];
HEAP32[i134 >> 2] = HEAP32[i19 >> 2];
i134 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i133, i134) | 0;
- HEAP32[i21 + 24 >> 2] = i134;
- HEAP32[i21 + 4 >> 2] = i130;
+ HEAP32[i12 + 24 >> 2] = i134;
+ HEAP32[i12 + 4 >> 2] = i130;
break;
}
} else {
- i21 = __ZN10MixedArena5allocIN4wasm8SetLocalEEEPT_v(HEAP32[i133 + 4 >> 2] | 0) | 0;
+ i12 = __ZN10MixedArena5allocIN4wasm8SetLocalEEEPT_v(HEAP32[i133 + 4 >> 2] | 0) | 0;
i133 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 1) | 0;
i133 = __ZN6cashew5Value10getIStringEv(HEAP32[i133 >> 2] | 0) | 0;
- HEAP32[i21 + 8 >> 2] = HEAP32[i133 >> 2];
+ HEAP32[i12 + 8 >> 2] = HEAP32[i133 >> 2];
i133 = HEAP32[i132 + 4 >> 2] | 0;
i132 = __ZN6cashew3RefixEj(i131, 3) | 0;
- HEAP32[i11 >> 2] = HEAP32[i132 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i11 >> 2];
+ HEAP32[i7 >> 2] = HEAP32[i132 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i7 >> 2];
i134 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i133, i134) | 0;
- HEAP32[i21 + 12 >> 2] = i134;
- HEAP32[i21 + 4 >> 2] = HEAP32[i134 + 4 >> 2];
+ HEAP32[i12 + 12 >> 2] = i134;
+ HEAP32[i12 + 4 >> 2] = HEAP32[i134 + 4 >> 2];
} while (0);
- i1 = i21;
+ i1 = i12;
break;
}
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 0) | 0, 36980) | 0)) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i5, 20871, 16);
- HEAP32[i6 >> 2] = HEAP32[i131 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i6 >> 2];
- __ZN4wasmL8abort_onENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew3RefE(i5, i134);
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 0) | 0, 38452) | 0)) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i8, 21459, 16);
+ HEAP32[i9 >> 2] = HEAP32[i131 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i9 >> 2];
+ __ZN4wasmL8abort_onENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew3RefE(i8, i134);
}
i128 = __ZN6cashew3RefixEj(i131, 2) | 0;
HEAP32[i129 >> 2] = HEAP32[i128 >> 2];
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i129, 1) | 0, 0) | 0, 36932) | 0)) ___assert_fail(20818, 12455, 816, 34529);
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i129, 1) | 0, 0) | 0, 38404) | 0)) ___assert_fail(21406, 13029, 814, 35993);
i1 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i129, 1) | 0, 1) | 0;
i1 = __ZN6cashew5Value10getIStringEv(HEAP32[i1 >> 2] | 0) | 0;
HEAP32[i130 >> 2] = HEAP32[i1 >> 2];
i1 = i133 + 60 | 0;
- if ((__ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i1, i130) | 0) == (i133 + 64 | 0)) ___assert_fail(20839, 12455, 818, 34529);
+ if ((__ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i1, i130) | 0) == (i133 + 64 | 0)) ___assert_fail(21427, 13029, 816, 35993);
i4 = __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEEixERSA_(i1, i130) | 0;
i6 = i133 + 4 | 0;
i1 = __ZN10MixedArena5allocIN4wasm5StoreEEEPT_v(HEAP32[i6 >> 2] | 0) | 0;
- i5 = HEAP32[i4 >> 2] | 0;
- HEAP32[i1 + 8 >> 2] = i5;
- HEAP32[i1 + 12 >> 2] = 0;
- HEAP32[i1 + 16 >> 2] = i5;
- i5 = HEAP32[i132 + 12 >> 2] | 0;
- i2 = __ZN6cashew3RefixEj(i129, 2) | 0;
- HEAP32[i27 >> 2] = HEAP32[i2 >> 2];
i2 = HEAP32[i4 >> 2] | 0;
- HEAP32[i134 >> 2] = HEAP32[i27 >> 2];
- i2 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEjEEclES5_j(i5, i134, i2) | 0;
- HEAP32[i1 + 20 >> 2] = i2;
- i2 = HEAP32[i132 + 4 >> 2] | 0;
- i5 = __ZN6cashew3RefixEj(i131, 3) | 0;
- HEAP32[i28 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i28 >> 2];
- i2 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i134) | 0;
- i5 = i1 + 24 | 0;
- HEAP32[i5 >> 2] = i2;
+ HEAP32[i1 + 8 >> 2] = i2;
+ HEAP32[i1 + 12 >> 2] = 0;
+ HEAP32[i1 + 16 >> 2] = i2;
+ i2 = HEAP32[i132 + 12 >> 2] | 0;
+ i5 = __ZN6cashew3RefixEj(i129, 2) | 0;
+ HEAP32[i31 >> 2] = HEAP32[i5 >> 2];
+ i5 = HEAP32[i4 >> 2] | 0;
+ HEAP32[i134 >> 2] = HEAP32[i31 >> 2];
+ i5 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEjEEclES5_j(i2, i134, i5) | 0;
+ HEAP32[i1 + 20 >> 2] = i5;
+ i5 = HEAP32[i132 + 4 >> 2] | 0;
+ i2 = __ZN6cashew3RefixEj(i131, 3) | 0;
+ HEAP32[i32 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i32 >> 2];
+ i5 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i5, i134) | 0;
+ i2 = i1 + 24 | 0;
+ HEAP32[i2 >> 2] = i5;
i4 = __ZN4wasm13asmToWasmTypeE7AsmType(HEAP32[i4 + 8 >> 2] | 0) | 0;
HEAP32[i1 + 4 >> 2] = i4;
- i2 = HEAP32[(HEAP32[i5 >> 2] | 0) + 4 >> 2] | 0;
- do if ((i4 | 0) != (i2 | 0)) if ((i4 | 0) == 3 & (i2 | 0) == 4) {
+ i5 = HEAP32[(HEAP32[i2 >> 2] | 0) + 4 >> 2] | 0;
+ do if ((i4 | 0) != (i5 | 0)) if ((i4 | 0) == 3 & (i5 | 0) == 4) {
i134 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i6 >> 2] | 0) | 0;
HEAP32[i134 + 8 >> 2] = 23;
- HEAP32[i134 + 12 >> 2] = HEAP32[i5 >> 2];
+ HEAP32[i134 + 12 >> 2] = HEAP32[i2 >> 2];
HEAP32[i134 + 4 >> 2] = 3;
- HEAP32[i5 >> 2] = i134;
+ HEAP32[i2 >> 2] = i134;
break;
} else _abort(); while (0);
break;
}
- if ((i52 | 0) == (HEAP32[9237] | 0)) {
- if (!(!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i131, 1) | 0, 37064) | 0) ? !(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i131, 1) | 0, 37128) | 0) : 0)) i106 = 27;
- if (((i106 | 0) == 27 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 3) | 0, 0) | 0, 36988) | 0 : 0) ? (i128 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 3) | 0, 1) | 0, i128 = __ZN6cashew5Value9getNumberEv(HEAP32[i128 >> 2] | 0) | 0, +HEAPF64[i128 >> 3] == 0.0) : 0) {
+ if ((i54 | 0) == (HEAP32[9605] | 0)) {
+ if (!(!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i131, 1) | 0, 38536) | 0) ? !(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i131, 1) | 0, 38600) | 0) : 0)) i106 = 27;
+ if (((i106 | 0) == 27 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 3) | 0, 0) | 0, 38460) | 0 : 0) ? (i128 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 3) | 0, 1) | 0, i128 = __ZN6cashew5Value9getNumberEv(HEAP32[i128 >> 2] | 0) | 0, +HEAPF64[i128 >> 3] == 0.0) : 0) {
i1 = HEAP32[i132 + 4 >> 2] | 0;
i132 = __ZN6cashew3RefixEj(i131, 2) | 0;
- HEAP32[i7 >> 2] = HEAP32[i132 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i7 >> 2];
+ HEAP32[i10 >> 2] = HEAP32[i132 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i10 >> 2];
i1 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i1, i134) | 0;
__ZN4wasm15Asm2WasmBuilder11fixCallTypeEPNS_10ExpressionENS_8WasmTypeE(i133, i1, 1);
break;
}
- i1 = __ZN6cashew3RefixEj(i131, 1) | 0;
- i1 = __ZN6cashew5Value10getIStringEv(HEAP32[i1 >> 2] | 0) | 0;
- HEAP32[i8 >> 2] = HEAP32[i1 >> 2];
- i1 = __ZN6cashew3RefixEj(i131, 2) | 0;
- HEAP32[i9 >> 2] = HEAP32[i1 >> 2];
- i1 = __ZN6cashew3RefixEj(i131, 3) | 0;
- HEAP32[i10 >> 2] = HEAP32[i1 >> 2];
- i1 = HEAP32[i132 + 16 >> 2] | 0;
- HEAP32[i130 >> 2] = HEAP32[i8 >> 2];
- HEAP32[i129 >> 2] = HEAP32[i9 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i10 >> 2];
- i130 = __ZN4wasm15Asm2WasmBuilder16parseAsmBinaryOpEN6cashew7IStringENS1_3RefES3_P7AsmData(i133, i130, i129, i134, i1) | 0;
+ i9 = __ZN6cashew3RefixEj(i131, 1) | 0;
+ i9 = __ZN6cashew5Value10getIStringEv(HEAP32[i9 >> 2] | 0) | 0;
+ HEAP32[i11 >> 2] = HEAP32[i9 >> 2];
+ i9 = __ZN6cashew3RefixEj(i131, 2) | 0;
+ HEAP32[i5 >> 2] = HEAP32[i9 >> 2];
+ i9 = __ZN6cashew3RefixEj(i131, 3) | 0;
+ HEAP32[i6 >> 2] = HEAP32[i9 >> 2];
+ i9 = HEAP32[i132 + 16 >> 2] | 0;
+ HEAP32[i130 >> 2] = HEAP32[i11 >> 2];
+ HEAP32[i129 >> 2] = HEAP32[i5 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i6 >> 2];
+ i130 = __ZN4wasm15Asm2WasmBuilder16parseAsmBinaryOpEN6cashew7IStringENS1_3RefES3_P7AsmData(i133, i130, i129, i134, i9) | 0;
i9 = i133 + 4 | 0;
i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i9 >> 2] | 0) | 0;
HEAP32[i1 + 8 >> 2] = i130;
@@ -12729,99 +11594,98 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
HEAP32[i8 >> 2] = i132;
i7 = HEAP32[i7 >> 2] | 0;
i132 = __ZN6cashew3RefixEj(i131, 3) | 0;
- HEAP32[i29 >> 2] = HEAP32[i132 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i29 >> 2];
+ HEAP32[i26 >> 2] = HEAP32[i132 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i26 >> 2];
i134 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i7, i134) | 0;
i7 = i1 + 16 | 0;
HEAP32[i7 >> 2] = i134;
__ZN4wasm6Binary8finalizeEv(i1);
if ((i130 | 0) == 5 ? ((HEAP32[i1 + 4 >> 2] | 0) + -3 | 0) >>> 0 < 2 : 0) {
i1 = __ZN10MixedArena5allocIN4wasm10CallImportEEEPT_v(HEAP32[i9 >> 2] | 0) | 0;
- HEAP32[i1 + 20 >> 2] = HEAP32[9170];
- i6 = i1 + 8 | 0;
- i4 = i1 + 12 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- i5 = i1 + 16 | 0;
- if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) {
- __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i6, i8);
- i2 = HEAP32[i4 >> 2] | 0;
+ HEAP32[i1 + 20 >> 2] = HEAP32[9536];
+ i4 = i1 + 8 | 0;
+ i5 = i1 + 12 | 0;
+ i2 = HEAP32[i5 >> 2] | 0;
+ i6 = i1 + 16 | 0;
+ if ((i2 | 0) == (HEAP32[i6 >> 2] | 0)) {
+ __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i4, i8);
+ i2 = HEAP32[i5 >> 2] | 0;
} else {
HEAP32[i2 >> 2] = HEAP32[i8 >> 2];
- i2 = (HEAP32[i4 >> 2] | 0) + 4 | 0;
- HEAP32[i4 >> 2] = i2;
+ i2 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
+ HEAP32[i5 >> 2] = i2;
}
- if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i6, i7); else {
+ if ((i2 | 0) == (HEAP32[i6 >> 2] | 0)) __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i4, i7); else {
HEAP32[i2 >> 2] = HEAP32[i7 >> 2];
- HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4;
+ HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 4;
}
HEAP32[i1 + 4 >> 2] = 4;
- if (HEAP8[42899] | 0) break;
- HEAP8[42899] = 1;
+ if (HEAP8[44371] | 0) break;
+ HEAP8[44371] = 1;
i134 = __ZN10MixedArena5allocIN4wasm6ImportEEEPT_v(HEAP32[i9 >> 2] | 0) | 0;
- HEAP32[i134 >> 2] = HEAP32[9170];
- HEAP32[i134 + 4 >> 2] = HEAP32[9169];
- HEAP32[i134 + 8 >> 2] = HEAP32[9170];
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i61, 20888, 3);
- i132 = __ZN4wasm18ensureFunctionTypeENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleER10MixedArena(i61, HEAP32[i133 >> 2] | 0, HEAP32[i9 >> 2] | 0) | 0;
+ HEAP32[i134 >> 2] = HEAP32[9536];
+ HEAP32[i134 + 4 >> 2] = HEAP32[9535];
+ HEAP32[i134 + 8 >> 2] = HEAP32[9536];
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i55, 21476, 3);
+ i132 = __ZN4wasm18ensureFunctionTypeENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleER10MixedArena(i55, HEAP32[i133 >> 2] | 0, HEAP32[i9 >> 2] | 0) | 0;
HEAP32[i134 + 12 >> 2] = i132;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i61);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i55);
__ZN4wasm6Module9addImportEPNS_6ImportE(HEAP32[i133 >> 2] | 0, i134);
break;
}
break;
}
- if ((i52 | 0) == (HEAP32[9247] | 0)) {
+ if ((i54 | 0) == (HEAP32[9615] | 0)) {
i1 = __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(HEAP32[i133 + 4 >> 2] | 0) | 0;
i134 = __ZN6cashew3RefixEj(i131, 1) | 0;
i134 = __ZN6cashew5Value9getNumberEv(HEAP32[i134 >> 2] | 0) | 0;
d3 = +HEAPF64[i134 >> 3];
- do if (!(__ZN4wasm12isSInteger32Ed(d3) | 0)) {
- i2 = i1 + 8 | 0;
- if (__ZN4wasm12isUInteger32Ed(d3) | 0) {
- HEAP32[i2 >> 2] = 1;
- i134 = __ZN4wasm12toUInteger32Ed(d3) | 0;
- HEAP32[i1 + 16 >> 2] = i134;
- break;
- } else {
- HEAP32[i2 >> 2] = 4;
- HEAPF64[i1 + 16 >> 3] = d3;
- break;
- }
+ do if (!(__ZN4wasm12isSInteger32Ed(d3) | 0)) if (__ZN4wasm12isUInteger32Ed(d3) | 0) {
+ i2 = __ZN4wasm12toUInteger32Ed(d3) | 0;
+ HEAP32[i1 + 8 >> 2] = 1;
+ HEAP32[i1 + 16 >> 2] = i2;
+ i2 = 1;
+ break;
+ } else {
+ HEAP32[i1 + 8 >> 2] = 4;
+ HEAPF64[i1 + 16 >> 3] = d3;
+ i2 = 4;
+ break;
} else {
- i2 = i1 + 8 | 0;
- HEAP32[i2 >> 2] = 1;
- i134 = __ZN4wasm12toSInteger32Ed(d3) | 0;
- HEAP32[i1 + 16 >> 2] = i134;
+ i2 = __ZN4wasm12toSInteger32Ed(d3) | 0;
+ HEAP32[i1 + 8 >> 2] = 1;
+ HEAP32[i1 + 16 >> 2] = i2;
+ i2 = 1;
} while (0);
- HEAP32[i1 + 4 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i1 + 4 >> 2] = i2;
break;
}
- if ((i52 | 0) == (HEAP32[9233] | 0)) {
+ if ((i54 | 0) == (HEAP32[9601] | 0)) {
i1 = __ZN6cashew3RefixEj(i131, 1) | 0;
i1 = __ZN6cashew5Value10getIStringEv(HEAP32[i1 >> 2] | 0) | 0;
i1 = HEAP32[i1 >> 2] | 0;
HEAP32[i134 >> 2] = i1;
do if (!(__ZNKSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE4findIS2_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS2_PvEEEERKT_(HEAP32[i132 + 8 >> 2] | 0, i134) | 0)) {
- if ((i1 | 0) == (HEAP32[9177] | 0)) {
+ if ((i1 | 0) == (HEAP32[9543] | 0)) {
i1 = i133 + 4 | 0;
i2 = __ZN10MixedArena5allocIN4wasm10CallImportEEEPT_v(HEAP32[i1 >> 2] | 0) | 0;
- HEAP32[i2 + 20 >> 2] = HEAP32[9177];
+ HEAP32[i2 + 20 >> 2] = HEAP32[9543];
HEAP32[i2 + 4 >> 2] = 0;
- if (HEAP8[42900] | 0) break;
- HEAP8[42900] = 1;
+ if (HEAP8[44372] | 0) break;
+ HEAP8[44372] = 1;
i134 = __ZN10MixedArena5allocIN4wasm6ImportEEEPT_v(HEAP32[i1 >> 2] | 0) | 0;
- HEAP32[i134 >> 2] = HEAP32[9177];
- HEAP32[i134 + 4 >> 2] = HEAP32[9169];
- HEAP32[i134 + 8 >> 2] = HEAP32[9177];
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i30, 20892, 1);
- i132 = __ZN4wasm18ensureFunctionTypeENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleER10MixedArena(i30, HEAP32[i133 >> 2] | 0, HEAP32[i1 >> 2] | 0) | 0;
+ HEAP32[i134 >> 2] = HEAP32[9543];
+ HEAP32[i134 + 4 >> 2] = HEAP32[9535];
+ HEAP32[i134 + 8 >> 2] = HEAP32[9543];
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i27, 21480, 1);
+ i132 = __ZN4wasm18ensureFunctionTypeENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleER10MixedArena(i27, HEAP32[i133 >> 2] | 0, HEAP32[i1 >> 2] | 0) | 0;
HEAP32[i134 + 12 >> 2] = i132;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i30);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i27);
__ZN4wasm6Module9addImportEPNS_6ImportE(HEAP32[i133 >> 2] | 0, i134);
break;
}
i1 = i133 + 48 | 0;
- if ((__ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i1, i134) | 0) == (i133 + 52 | 0)) ___assert_fail(20770, 12455, 915, 34529); else {
+ if ((__ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i1, i134) | 0) == (i133 + 52 | 0)) ___assert_fail(21358, 13029, 910, 35993); else {
i134 = __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEEixERSA_(i1, i134) | 0;
i132 = HEAP32[i134 >> 2] | 0;
i134 = HEAP32[i134 + 4 >> 2] | 0;
@@ -12848,15 +11712,15 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
i1 = i2;
break;
}
- if ((i52 | 0) == (HEAP32[9245] | 0)) {
- i61 = __ZN6cashew3RefixEj(i131, 1) | 0;
- HEAP32[i129 >> 2] = HEAP32[i61 >> 2];
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i129, 0) | 0, 36932) | 0)) ___assert_fail(20894, 12455, 930, 34529);
+ if ((i54 | 0) == (HEAP32[9613] | 0)) {
+ i55 = __ZN6cashew3RefixEj(i131, 1) | 0;
+ HEAP32[i129 >> 2] = HEAP32[i55 >> 2];
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i129, 0) | 0, 38404) | 0)) ___assert_fail(21482, 13029, 924, 35993);
i2 = __ZN6cashew3RefixEj(i129, 1) | 0;
i2 = __ZN6cashew5Value10getIStringEv(HEAP32[i2 >> 2] | 0) | 0;
HEAP32[i130 >> 2] = HEAP32[i2 >> 2];
i2 = i133 + 60 | 0;
- if ((__ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i2, i130) | 0) == (i133 + 64 | 0)) ___assert_fail(20839, 12455, 932, 34529); else {
+ if ((__ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i2, i130) | 0) == (i133 + 64 | 0)) ___assert_fail(21427, 13029, 926, 35993); else {
i130 = __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEEixERSA_(i2, i130) | 0;
i1 = __ZN10MixedArena5allocIN4wasm4LoadEEEPT_v(HEAP32[i133 + 4 >> 2] | 0) | 0;
i133 = HEAP32[i130 >> 2] | 0;
@@ -12866,9 +11730,9 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
HEAP32[i1 + 20 >> 2] = i133;
i132 = HEAP32[i132 + 12 >> 2] | 0;
i133 = __ZN6cashew3RefixEj(i131, 2) | 0;
- HEAP32[i12 >> 2] = HEAP32[i133 >> 2];
+ HEAP32[i13 >> 2] = HEAP32[i133 >> 2];
i133 = HEAP32[i130 >> 2] | 0;
- HEAP32[i134 >> 2] = HEAP32[i12 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i13 >> 2];
i134 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEjEEclES5_j(i132, i134, i133) | 0;
HEAP32[i1 + 24 >> 2] = i134;
i134 = __ZN4wasm11getWasmTypeEjb(HEAP32[i130 >> 2] | 0, (HEAP8[i130 + 4 >> 0] | 0) == 0) | 0;
@@ -12876,16 +11740,16 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
break;
}
}
- if ((i52 | 0) == (HEAP32[9256] | 0)) {
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i131, 1) | 0, 37056) | 0) {
- HEAP32[i13 >> 2] = HEAP32[i131 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i13 >> 2];
+ if ((i54 | 0) == (HEAP32[9624] | 0)) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i131, 1) | 0, 38528) | 0) {
+ HEAP32[i14 >> 2] = HEAP32[i131 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i14 >> 2];
__ZN4wasm15Asm2WasmBuilder12checkLiteralEN6cashew3RefE(i129, i133, i134);
L95 : do if (!(HEAP32[i129 >> 2] | 0)) {
i1 = HEAP32[i132 + 4 >> 2] | 0;
i132 = __ZN6cashew3RefixEj(i131, 2) | 0;
- HEAP32[i14 >> 2] = HEAP32[i132 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i14 >> 2];
+ HEAP32[i15 >> 2] = HEAP32[i132 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i15 >> 2];
i1 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i1, i134) | 0;
switch (HEAP32[i1 + 4 >> 2] | 0) {
case 1:
@@ -12927,13 +11791,13 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
} while (0);
break;
}
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i131, 1) | 0, 37060) | 0) {
- do if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 0) | 0, 36988) | 0)) {
- if ((__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 0) | 0, 37024) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 1) | 0, 37056) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 2) | 0, 0) | 0, 36988) | 0 : 0) break;
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i131, 1) | 0, 38532) | 0) {
+ do if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 0) | 0, 38460) | 0)) {
+ if ((__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 0) | 0, 38496) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 1) | 0, 38528) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 2) | 0, 0) | 0, 38460) | 0 : 0) break;
i4 = __ZN6cashew3RefixEj(i131, 2) | 0;
- HEAP32[i16 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i18 >> 2] = HEAP32[i4 >> 2];
i4 = HEAP32[i132 + 16 >> 2] | 0;
- HEAP32[i134 >> 2] = HEAP32[i16 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i18 >> 2];
i4 = __ZN4wasm15Asm2WasmBuilder13detectAsmTypeEN6cashew3RefEP7AsmData(i133, i134, i4) | 0;
i1 = i133 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
@@ -12947,8 +11811,8 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
HEAP32[i133 + 12 >> 2] = i1;
i1 = HEAP32[i132 + 4 >> 2] | 0;
i132 = __ZN6cashew3RefixEj(i131, 2) | 0;
- HEAP32[i37 >> 2] = HEAP32[i132 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i37 >> 2];
+ HEAP32[i34 >> 2] = HEAP32[i132 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i34 >> 2];
i1 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i1, i134) | 0;
HEAP32[i133 + 16 >> 2] = i1;
HEAP32[i133 + 4 >> 2] = 1;
@@ -12959,8 +11823,8 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
HEAP32[i1 + 8 >> 2] = 3;
i133 = HEAP32[i132 + 4 >> 2] | 0;
i132 = __ZN6cashew3RefixEj(i131, 2) | 0;
- HEAP32[i42 >> 2] = HEAP32[i132 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i42 >> 2];
+ HEAP32[i41 >> 2] = HEAP32[i132 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i41 >> 2];
i134 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i133, i134) | 0;
HEAP32[i1 + 12 >> 2] = i134;
switch (i4 | 0) {
@@ -12981,22 +11845,22 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
} while (0);
i1 = __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(HEAP32[i133 + 4 >> 2] | 0) | 0;
i132 = i1 + 8 | 0;
- HEAP32[i15 >> 2] = HEAP32[i131 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i15 >> 2];
- __ZN4wasm15Asm2WasmBuilder10getLiteralEN6cashew3RefE(i20, i133, i134);
- HEAP32[i132 >> 2] = HEAP32[i20 >> 2];
- HEAP32[i132 + 4 >> 2] = HEAP32[i20 + 4 >> 2];
- HEAP32[i132 + 8 >> 2] = HEAP32[i20 + 8 >> 2];
- HEAP32[i132 + 12 >> 2] = HEAP32[i20 + 12 >> 2];
+ HEAP32[i17 >> 2] = HEAP32[i131 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i17 >> 2];
+ __ZN4wasm15Asm2WasmBuilder10getLiteralEN6cashew3RefE(i16, i133, i134);
+ HEAP32[i132 >> 2] = HEAP32[i16 >> 2];
+ HEAP32[i132 + 4 >> 2] = HEAP32[i16 + 4 >> 2];
+ HEAP32[i132 + 8 >> 2] = HEAP32[i16 + 8 >> 2];
+ HEAP32[i132 + 12 >> 2] = HEAP32[i16 + 12 >> 2];
HEAP32[i1 + 4 >> 2] = HEAP32[i132 >> 2];
break;
}
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i131, 1) | 0, 37080) | 0)) {
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i131, 1) | 0, 37076) | 0)) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i17, 20948, 9);
- HEAP32[i18 >> 2] = HEAP32[i131 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i18 >> 2];
- __ZN4wasmL8abort_onENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew3RefE(i17, i134);
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i131, 1) | 0, 38552) | 0)) {
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i131, 1) | 0, 38548) | 0)) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i20, 21536, 9);
+ HEAP32[i21 >> 2] = HEAP32[i131 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i21 >> 2];
+ __ZN4wasmL8abort_onENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew3RefE(i20, i134);
}
i129 = i133 + 4 | 0;
i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i129 >> 2] | 0) | 0;
@@ -13016,35 +11880,35 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
if ((HEAP32[(HEAP32[i130 >> 2] | 0) + 4 >> 2] | 0) == 1) {
__ZN4wasm6Binary8finalizeEv(i1);
break;
- } else ___assert_fail(20912, 12455, 1033, 34529);
+ } else ___assert_fail(21500, 13029, 1027, 35993);
}
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 0) | 0, 37024) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 1) | 0, 37080) | 0 : 0) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 0) | 0, 38496) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 1) | 0, 38552) | 0 : 0) {
i6 = i133 + 4 | 0;
i1 = __ZN10MixedArena5allocIN4wasm10CallImportEEEPT_v(HEAP32[i6 >> 2] | 0) | 0;
- HEAP32[i1 + 20 >> 2] = HEAP32[9171];
- i5 = HEAP32[i132 + 4 >> 2] | 0;
+ HEAP32[i1 + 20 >> 2] = HEAP32[9537];
+ i2 = HEAP32[i132 + 4 >> 2] | 0;
i4 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 2) | 0;
- HEAP32[i38 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i38 >> 2];
- i5 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i5, i134) | 0;
- HEAP32[i49 >> 2] = i5;
+ HEAP32[i35 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i35 >> 2];
+ i2 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i134) | 0;
+ HEAP32[i43 >> 2] = i2;
i4 = i1 + 12 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i1 + 16 >> 2] | 0) >>> 0) {
- HEAP32[i2 >> 2] = i5;
+ i5 = HEAP32[i4 >> 2] | 0;
+ if (i5 >>> 0 < (HEAP32[i1 + 16 >> 2] | 0) >>> 0) {
+ HEAP32[i5 >> 2] = i2;
HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i1 + 8 | 0, i49);
+ } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i1 + 8 | 0, i43);
HEAP32[i1 + 4 >> 2] = 1;
- if (HEAP8[42901] | 0) break;
- HEAP8[42901] = 1;
+ if (HEAP8[44373] | 0) break;
+ HEAP8[44373] = 1;
i134 = __ZN10MixedArena5allocIN4wasm6ImportEEEPT_v(HEAP32[i6 >> 2] | 0) | 0;
- HEAP32[i134 >> 2] = HEAP32[9171];
- HEAP32[i134 + 4 >> 2] = HEAP32[9169];
- HEAP32[i134 + 8 >> 2] = HEAP32[9171];
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i47, 35632, 2);
- i132 = __ZN4wasm18ensureFunctionTypeENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleER10MixedArena(i47, HEAP32[i133 >> 2] | 0, HEAP32[i6 >> 2] | 0) | 0;
+ HEAP32[i134 >> 2] = HEAP32[9537];
+ HEAP32[i134 + 4 >> 2] = HEAP32[9535];
+ HEAP32[i134 + 8 >> 2] = HEAP32[9537];
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i44, 37096, 2);
+ i132 = __ZN4wasm18ensureFunctionTypeENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleER10MixedArena(i44, HEAP32[i133 >> 2] | 0, HEAP32[i6 >> 2] | 0) | 0;
HEAP32[i134 + 12 >> 2] = i132;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i47);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i44);
__ZN4wasm6Module9addImportEPNS_6ImportE(HEAP32[i133 >> 2] | 0, i134);
break;
}
@@ -13065,72 +11929,72 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
HEAP32[i1 + 4 >> 2] = 1;
break;
}
- if ((i52 | 0) == (HEAP32[9239] | 0)) {
+ if ((i54 | 0) == (HEAP32[9607] | 0)) {
i1 = __ZN10MixedArena5allocIN4wasm2IfEEEPT_v(HEAP32[i133 + 4 >> 2] | 0) | 0;
i2 = i132 + 4 | 0;
i133 = HEAP32[i2 >> 2] | 0;
i132 = __ZN6cashew3RefixEj(i131, 1) | 0;
- HEAP32[i31 >> 2] = HEAP32[i132 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i31 >> 2];
+ HEAP32[i28 >> 2] = HEAP32[i132 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i28 >> 2];
i133 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i133, i134) | 0;
HEAP32[i1 + 8 >> 2] = i133;
i133 = HEAP32[i2 >> 2] | 0;
i132 = __ZN6cashew3RefixEj(i131, 2) | 0;
- HEAP32[i32 >> 2] = HEAP32[i132 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i32 >> 2];
+ HEAP32[i29 >> 2] = HEAP32[i132 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i29 >> 2];
i133 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i133, i134) | 0;
HEAP32[i1 + 12 >> 2] = i133;
if (__ZN6cashew3RefntEv(__ZN6cashew3RefixEj(i131, 3) | 0) | 0) i2 = 0; else {
i2 = HEAP32[i2 >> 2] | 0;
i133 = __ZN6cashew3RefixEj(i131, 3) | 0;
- HEAP32[i33 >> 2] = HEAP32[i133 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i33 >> 2];
+ HEAP32[i30 >> 2] = HEAP32[i133 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i30 >> 2];
i2 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i134) | 0;
}
HEAP32[i1 + 16 >> 2] = i2;
break;
}
- if ((i52 | 0) == (HEAP32[9191] | 0)) {
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 1) | 0, 0) | 0, 36932) | 0)) {
+ if ((i54 | 0) == (HEAP32[9558] | 0)) {
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 1) | 0, 0) | 0, 38404) | 0)) {
i2 = __ZN10MixedArena5allocIN4wasm12CallIndirectEEEPT_v(HEAP32[i133 + 4 >> 2] | 0) | 0;
HEAP32[i129 >> 2] = i2;
- i61 = __ZN6cashew3RefixEj(i131, 1) | 0;
- HEAP32[i130 >> 2] = HEAP32[i61 >> 2];
- if ((((__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i130, 0) | 0, 36980) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i130, 1) | 0, 0) | 0, 36932) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i130, 2) | 0, 0) | 0, 36948) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i130, 2) | 0, 1) | 0, 37068) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i130, 2) | 0, 3) | 0, 0) | 0, 36988) | 0 : 0) {
+ i55 = __ZN6cashew3RefixEj(i131, 1) | 0;
+ HEAP32[i130 >> 2] = HEAP32[i55 >> 2];
+ if ((((__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i130, 0) | 0, 38452) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i130, 1) | 0, 0) | 0, 38404) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i130, 2) | 0, 0) | 0, 38420) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i130, 2) | 0, 1) | 0, 38540) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i130, 2) | 0, 3) | 0, 0) | 0, 38460) | 0 : 0) {
i8 = i132 + 4 | 0;
i1 = HEAP32[i8 >> 2] | 0;
- i7 = __ZN6cashew3RefixEj(i130, 2) | 0;
- HEAP32[i26 >> 2] = HEAP32[i7 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i26 >> 2];
+ i6 = __ZN6cashew3RefixEj(i130, 2) | 0;
+ HEAP32[i33 >> 2] = HEAP32[i6 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i33 >> 2];
i1 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i1, i134) | 0;
HEAP32[i2 + 24 >> 2] = i1;
i1 = __ZN6cashew3RefixEj(i131, 2) | 0;
i1 = HEAP32[i1 >> 2] | 0;
HEAP32[i125 >> 2] = i1;
- i7 = i2 + 8 | 0;
- i6 = i2 + 12 | 0;
+ i6 = i2 + 8 | 0;
+ i7 = i2 + 12 | 0;
i4 = i2 + 16 | 0;
i5 = 0;
while (1) {
if (i5 >>> 0 >= (__ZN6cashew5Value4sizeEv(i1) | 0) >>> 0) break;
- i2 = HEAP32[i8 >> 2] | 0;
- i1 = __ZN6cashew3RefixEj(i125, i5) | 0;
- HEAP32[i53 >> 2] = HEAP32[i1 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i53 >> 2];
- i2 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i134) | 0;
- HEAP32[i62 >> 2] = i2;
- i1 = HEAP32[i6 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i4 >> 2] | 0) >>> 0) {
- HEAP32[i1 >> 2] = i2;
- HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i7, i62);
+ i1 = HEAP32[i8 >> 2] | 0;
+ i2 = __ZN6cashew3RefixEj(i125, i5) | 0;
+ HEAP32[i57 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i57 >> 2];
+ i1 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i1, i134) | 0;
+ HEAP32[i56 >> 2] = i1;
+ i2 = HEAP32[i7 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i4 >> 2] | 0) >>> 0) {
+ HEAP32[i2 >> 2] = i1;
+ HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + 4;
+ } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i6, i56);
i1 = HEAP32[i125 >> 2] | 0;
i5 = i5 + 1 | 0;
}
i1 = __ZN4wasm14AstStackHelper9getParentEv(i80) | 0;
- HEAP32[i54 >> 2] = i1;
+ HEAP32[i58 >> 2] = i1;
i1 = HEAP32[i129 >> 2] | 0;
- HEAP32[i134 >> 2] = HEAP32[i54 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i58 >> 2];
i134 = __ZN4wasm15Asm2WasmBuilder15getFunctionTypeEN6cashew3RefERNSt3__16vectorIPNS_10ExpressionENS3_9allocatorIS6_EEEE(i133, i134, i1 + 8 | 0) | 0;
HEAP32[i1 + 20 >> 2] = i134;
HEAP32[i1 + 4 >> 2] = HEAP32[i134 + 4 >> 2];
@@ -13141,55 +12005,55 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
i1 = HEAP32[i129 >> 2] | 0;
break;
}
- ___assert_fail(21022, 12455, 1167, 34529);
+ ___assert_fail(21610, 13029, 1161, 35993);
}
i4 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 1) | 0, 1) | 0;
i4 = __ZN6cashew5Value10getIStringEv(HEAP32[i4 >> 2] | 0) | 0;
i4 = HEAP32[i4 >> 2] | 0;
- i7 = i4;
- if ((i7 | 0) == (HEAP32[i133 + 72 >> 2] | 0)) {
- i62 = __ZN6cashew3RefixEj(i131, 2) | 0;
- if ((__ZN6cashew5Value4sizeEv(HEAP32[i62 >> 2] | 0) | 0) == 2) {
+ i6 = i4;
+ if ((i6 | 0) == (HEAP32[i133 + 72 >> 2] | 0)) {
+ i58 = __ZN6cashew3RefixEj(i131, 2) | 0;
+ if ((__ZN6cashew5Value4sizeEv(HEAP32[i58 >> 2] | 0) | 0) == 2) {
i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i133 + 4 >> 2] | 0) | 0;
HEAP32[i1 + 8 >> 2] = 2;
i133 = i132 + 4 | 0;
i132 = HEAP32[i133 >> 2] | 0;
i130 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 0) | 0;
- HEAP32[i39 >> 2] = HEAP32[i130 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i39 >> 2];
+ HEAP32[i36 >> 2] = HEAP32[i130 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i36 >> 2];
i132 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i132, i134) | 0;
HEAP32[i1 + 12 >> 2] = i132;
i133 = HEAP32[i133 >> 2] | 0;
i132 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 1) | 0;
- HEAP32[i40 >> 2] = HEAP32[i132 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i40 >> 2];
+ HEAP32[i37 >> 2] = HEAP32[i132 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i37 >> 2];
i134 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i133, i134) | 0;
HEAP32[i1 + 16 >> 2] = i134;
HEAP32[i1 + 4 >> 2] = 1;
break;
- } else ___assert_fail(20958, 12455, 1048, 34529);
+ } else ___assert_fail(21546, 13029, 1042, 35993);
}
- if ((i7 | 0) == (HEAP32[i133 + 76 >> 2] | 0)) {
- i62 = __ZN6cashew3RefixEj(i131, 2) | 0;
- if ((__ZN6cashew5Value4sizeEv(HEAP32[i62 >> 2] | 0) | 0) == 1) {
+ if ((i6 | 0) == (HEAP32[i133 + 76 >> 2] | 0)) {
+ i58 = __ZN6cashew3RefixEj(i131, 2) | 0;
+ if ((__ZN6cashew5Value4sizeEv(HEAP32[i58 >> 2] | 0) | 0) == 1) {
i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i133 + 4 >> 2] | 0) | 0;
HEAP32[i1 + 8 >> 2] = 0;
i133 = HEAP32[i132 + 4 >> 2] | 0;
i132 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 0) | 0;
- HEAP32[i34 >> 2] = HEAP32[i132 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i34 >> 2];
+ HEAP32[i38 >> 2] = HEAP32[i132 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i38 >> 2];
i134 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i133, i134) | 0;
HEAP32[i1 + 12 >> 2] = i134;
HEAP32[i1 + 4 >> 2] = 1;
break;
- } else ___assert_fail(20978, 12455, 1057, 34529);
+ } else ___assert_fail(21566, 13029, 1051, 35993);
}
- if ((i7 | 0) == (HEAP32[i133 + 80 >> 2] | 0)) {
+ if ((i6 | 0) == (HEAP32[i133 + 80 >> 2] | 0)) {
i130 = __ZN6cashew3RefixEj(i131, 2) | 0;
- if ((__ZN6cashew5Value4sizeEv(HEAP32[i130 >> 2] | 0) | 0) != 1) ___assert_fail(20978, 12455, 1065, 34529);
+ if ((__ZN6cashew5Value4sizeEv(HEAP32[i130 >> 2] | 0) | 0) != 1) ___assert_fail(21566, 13029, 1059, 35993);
i130 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 0) | 0;
- HEAP32[i35 >> 2] = HEAP32[i130 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i35 >> 2];
+ HEAP32[i39 >> 2] = HEAP32[i130 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i39 >> 2];
__ZN4wasm15Asm2WasmBuilder12checkLiteralEN6cashew3RefE(i129, i133, i134);
L184 : do switch (HEAP32[i129 >> 2] | 0) {
case 1:
@@ -13215,8 +12079,8 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i133 + 4 >> 2] | 0) | 0;
i2 = HEAP32[i132 + 4 >> 2] | 0;
i4 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 0) | 0;
- HEAP32[i41 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i41 >> 2];
+ HEAP32[i42 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i42 >> 2];
i2 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i134) | 0;
HEAP32[i1 + 12 >> 2] = i2;
i4 = i2 + 4 | 0;
@@ -13244,11 +12108,11 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
}
default:
{
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i43, 20998, 23);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i45, 21586, 23);
i133 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 0) | 0;
- HEAP32[i44 >> 2] = HEAP32[i133 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i44 >> 2];
- __ZN4wasmL8abort_onENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew3RefE(i43, i134);
+ HEAP32[i46 >> 2] = HEAP32[i133 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i46 >> 2];
+ __ZN4wasmL8abort_onENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew3RefE(i45, i134);
}
}
HEAP32[i1 + 4 >> 2] = 3;
@@ -13256,13 +12120,13 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
} while (0);
break;
}
- if ((i7 | 0) == (HEAP32[i133 + 84 >> 2] | 0)) {
- i6 = HEAP32[i132 + 4 >> 2] | 0;
+ if ((i6 | 0) == (HEAP32[i133 + 84 >> 2] | 0)) {
+ i7 = HEAP32[i132 + 4 >> 2] | 0;
i2 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 0) | 0;
- HEAP32[i36 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i36 >> 2];
- i6 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i6, i134) | 0;
- i2 = i6 + 4 | 0;
+ HEAP32[i40 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i40 >> 2];
+ i7 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i7, i134) | 0;
+ i2 = i7 + 4 | 0;
switch (HEAP32[i2 >> 2] | 0) {
case 1:
{
@@ -13272,24 +12136,24 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
HEAP8[i1 >> 0] = 1;
i1 = HEAP32[HEAP32[i5 + 4 >> 2] >> 2] | 0;
HEAP32[i129 >> 2] = 1;
- i4 = i1 + 24 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i1 + 28 >> 2] | 0) >>> 0) {
- HEAP32[i2 >> 2] = HEAP32[9176];
- HEAP32[i2 + 4 >> 2] = 1;
- HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 8;
- } else __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRN6cashew7IStringENS1_8WasmTypeEEEEvDpOT_(i1 + 20 | 0, 36704, i129);
- __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE15__insert_uniqueERKS2_(i134, HEAP32[i5 + 8 >> 2] | 0, 36704);
+ i2 = i1 + 24 | 0;
+ i4 = HEAP32[i2 >> 2] | 0;
+ if (i4 >>> 0 < (HEAP32[i1 + 28 >> 2] | 0) >>> 0) {
+ HEAP32[i4 >> 2] = HEAP32[9542];
+ HEAP32[i4 + 4 >> 2] = 1;
+ HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 8;
+ } else __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRN6cashew7IStringENS1_8WasmTypeEEEEvDpOT_(i1 + 20 | 0, 38168, i129);
+ __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE15__insert_uniqueERKS2_(i134, HEAP32[i5 + 8 >> 2] | 0, 38168);
i132 = HEAP32[i5 + 12 >> 2] | 0;
- HEAP32[i130 >> 2] = HEAP32[9176];
+ HEAP32[i130 >> 2] = HEAP32[9542];
HEAP32[i134 >> 2] = HEAP32[i130 >> 2];
__ZN7AsmData6addVarEN6cashew7IStringE7AsmType(i132, i134, 0);
}
i4 = i133 + 4 | 0;
- i8 = __ZN10MixedArena5allocIN4wasm8SetLocalEEEPT_v(HEAP32[i4 >> 2] | 0) | 0;
- HEAP32[i8 + 8 >> 2] = HEAP32[9176];
- HEAP32[i8 + 12 >> 2] = i6;
- HEAP32[i8 + 4 >> 2] = 1;
+ i6 = __ZN10MixedArena5allocIN4wasm8SetLocalEEEPT_v(HEAP32[i4 >> 2] | 0) | 0;
+ HEAP32[i6 + 8 >> 2] = HEAP32[9542];
+ HEAP32[i6 + 12 >> 2] = i7;
+ HEAP32[i6 + 4 >> 2] = 1;
HEAP32[i134 >> 2] = i133;
i5 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i4 >> 2] | 0) | 0;
HEAP32[i5 + 8 >> 2] = 19;
@@ -13302,15 +12166,15 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
HEAP32[i5 + 16 >> 2] = i1;
__ZN4wasm6Binary8finalizeEv(i5);
i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i4 >> 2] | 0) | 0;
- i9 = i1 + 12 | 0;
- HEAP32[i90 >> 2] = i8;
- i6 = i1 + 16 | 0;
- i2 = HEAP32[i6 >> 2] | 0;
- i7 = i1 + 20 | 0;
- if (i2 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
- HEAP32[i2 >> 2] = i8;
- HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i9, i90);
+ i7 = i1 + 12 | 0;
+ HEAP32[i91 >> 2] = i6;
+ i8 = i1 + 16 | 0;
+ i2 = HEAP32[i8 >> 2] | 0;
+ i9 = i1 + 20 | 0;
+ if (i2 >>> 0 < (HEAP32[i9 >> 2] | 0) >>> 0) {
+ HEAP32[i2 >> 2] = i6;
+ HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 4;
+ } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i7, i91);
i2 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i4 >> 2] | 0) | 0;
HEAP32[i2 + 8 >> 2] = 1;
i133 = __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(HEAP32[i4 >> 2] | 0) | 0;
@@ -13322,17 +12186,17 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
HEAP32[i2 + 16 >> 2] = i133;
HEAP32[i2 + 4 >> 2] = 1;
i4 = __ZN10MixedArena5allocIN4wasm6SelectEEEPT_v(HEAP32[i4 >> 2] | 0) | 0;
- HEAP32[i4 + 8 >> 2] = i5;
- HEAP32[i4 + 12 >> 2] = i2;
+ HEAP32[i4 + 8 >> 2] = i2;
i2 = __ZZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_ENKUlvE_clEv(i134) | 0;
- HEAP32[i4 + 16 >> 2] = i2;
+ HEAP32[i4 + 12 >> 2] = i2;
+ HEAP32[i4 + 16 >> 2] = i5;
HEAP32[i4 + 4 >> 2] = 1;
HEAP32[i93 >> 2] = i4;
- i2 = HEAP32[i6 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
+ i2 = HEAP32[i8 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i9 >> 2] | 0) >>> 0) {
HEAP32[i2 >> 2] = i4;
- HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i9, i93);
+ HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 4;
+ } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i7, i93);
HEAP32[i1 + 4 >> 2] = 1;
break L4;
}
@@ -13341,7 +12205,7 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
{
i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i133 + 4 >> 2] | 0) | 0;
HEAP32[i1 + 8 >> 2] = 4;
- HEAP32[i1 + 12 >> 2] = i6;
+ HEAP32[i1 + 12 >> 2] = i7;
HEAP32[i1 + 4 >> 2] = HEAP32[i2 >> 2];
break L4;
}
@@ -13350,16 +12214,16 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
}
}
i5 = i133 + 88 | 0;
- if ((i7 | 0) != (HEAP32[i5 >> 2] | 0) ? (i7 | 0) != (HEAP32[i133 + 92 >> 2] | 0) : 0) {
+ if ((i6 | 0) != (HEAP32[i5 >> 2] | 0) ? (i6 | 0) != (HEAP32[i133 + 92 >> 2] | 0) : 0) {
i130 = HEAP32[i133 >> 2] | 0;
HEAP32[i48 >> 2] = i4;
if ((__ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_(i130 + 60 | 0, i48) | 0) == (i130 + 64 | 0)) i1 = __ZN10MixedArena5allocIN4wasm4CallEEEPT_v(HEAP32[i133 + 4 >> 2] | 0) | 0; else {
i130 = __ZN4wasm14AstStackHelper9getParentEv(i80) | 0;
HEAP32[i129 >> 2] = i130;
if (__ZN6cashew3RefntEv(i129) | 0) i1 = 0; else {
- HEAP32[i46 >> 2] = HEAP32[i129 >> 2];
+ HEAP32[i49 >> 2] = HEAP32[i129 >> 2];
i1 = HEAP32[i132 + 16 >> 2] | 0;
- HEAP32[i134 >> 2] = HEAP32[i46 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i49 >> 2];
i1 = __ZN4wasm15Asm2WasmBuilder14detectWasmTypeEN6cashew3RefEP7AsmData(i133, i134, i1) | 0;
}
i130 = __ZN10MixedArena5allocIN4wasm10CallImportEEEPT_v(HEAP32[i133 + 4 >> 2] | 0) | 0;
@@ -13380,17 +12244,17 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
i8 = 0;
while (1) {
if (i8 >>> 0 >= (__ZN6cashew5Value4sizeEv(i2) | 0) >>> 0) break;
- i4 = HEAP32[i5 >> 2] | 0;
- i2 = __ZN6cashew3RefixEj(i129, i8) | 0;
- HEAP32[i81 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i81 >> 2];
- i4 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i4, i134) | 0;
- HEAP32[i87 >> 2] = i4;
- i2 = HEAP32[i6 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
- HEAP32[i2 >> 2] = i4;
+ i2 = HEAP32[i5 >> 2] | 0;
+ i4 = __ZN6cashew3RefixEj(i129, i8) | 0;
+ HEAP32[i84 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i84 >> 2];
+ i2 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i134) | 0;
+ HEAP32[i83 >> 2] = i2;
+ i4 = HEAP32[i6 >> 2] | 0;
+ if (i4 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
+ HEAP32[i4 >> 2] = i2;
HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i9, i87);
+ } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i9, i83);
i2 = HEAP32[i129 >> 2] | 0;
i8 = i8 + 1 | 0;
}
@@ -13398,46 +12262,44 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
}
i2 = HEAP32[i132 + 4 >> 2] | 0;
i4 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 2) | 0, 0) | 0;
- HEAP32[i45 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i45 >> 2];
+ HEAP32[i47 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i47 >> 2];
i2 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i134) | 0;
i4 = i2 + 4 | 0;
if (((HEAP32[i4 >> 2] | 0) + -3 | 0) >>> 0 < 2) {
i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i133 + 4 >> 2] | 0) | 0;
- HEAP32[i1 + 8 >> 2] = (i7 | 0) == (HEAP32[i5 >> 2] | 0) ? 6 : 9;
+ HEAP32[i1 + 8 >> 2] = (i6 | 0) == (HEAP32[i5 >> 2] | 0) ? 6 : 9;
HEAP32[i1 + 12 >> 2] = i2;
HEAP32[i1 + 4 >> 2] = HEAP32[i4 >> 2];
break;
} else _abort();
}
- if ((i52 | 0) == (HEAP32[9238] | 0)) {
- if (__ZN6cashew3RefntEv(__ZN6cashew3RefixEj(i131, 1) | 0) | 0) i1 = 0; else {
- i1 = __ZN6cashew3RefixEj(i131, 1) | 0;
- HEAP32[i51 >> 2] = HEAP32[i1 >> 2];
- i1 = HEAP32[i132 + 16 >> 2] | 0;
+ if ((i54 | 0) == (HEAP32[9606] | 0)) {
+ if (__ZN6cashew3RefntEv(__ZN6cashew3RefixEj(i131, 1) | 0) | 0) i2 = 0; else {
+ i2 = __ZN6cashew3RefixEj(i131, 1) | 0;
+ HEAP32[i51 >> 2] = HEAP32[i2 >> 2];
+ i2 = HEAP32[i132 + 16 >> 2] | 0;
HEAP32[i134 >> 2] = HEAP32[i51 >> 2];
- i1 = __ZN4wasm15Asm2WasmBuilder14detectWasmTypeEN6cashew3RefEP7AsmData(i133, i134, i1) | 0;
+ i2 = __ZN4wasm15Asm2WasmBuilder14detectWasmTypeEN6cashew3RefEP7AsmData(i133, i134, i2) | 0;
}
- i2 = (HEAP32[HEAP32[i132 + 28 >> 2] >> 2] | 0) + 4 | 0;
+ i1 = (HEAP32[HEAP32[i132 + 28 >> 2] >> 2] | 0) + 4 | 0;
if (HEAP8[HEAP32[i132 + 24 >> 2] >> 0] | 0) {
- if ((HEAP32[i2 >> 2] | 0) != (i1 | 0)) ___assert_fail(21138, 12455, 1180, 34529);
- } else HEAP32[i2 >> 2] = i1;
- HEAP8[HEAP32[i132 + 32 >> 2] >> 0] = 1;
- i1 = __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(HEAP32[i133 + 4 >> 2] | 0) | 0;
- HEAP32[i1 + 12 >> 2] = HEAP32[9155];
+ if ((HEAP32[i1 >> 2] | 0) != (i2 | 0)) ___assert_fail(21726, 13029, 1174, 35993);
+ } else HEAP32[i1 >> 2] = i2;
+ i1 = __ZN10MixedArena5allocIN4wasm6ReturnEEEPT_v(HEAP32[i133 + 4 >> 2] | 0) | 0;
if (__ZN6cashew3RefntEv(__ZN6cashew3RefixEj(i131, 1) | 0) | 0) i2 = 0; else {
i2 = HEAP32[i132 + 4 >> 2] | 0;
i133 = __ZN6cashew3RefixEj(i131, 1) | 0;
- HEAP32[i66 >> 2] = HEAP32[i133 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i66 >> 2];
+ HEAP32[i68 >> 2] = HEAP32[i133 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i68 >> 2];
i2 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i134) | 0;
}
- HEAP32[i1 + 16 >> 2] = i2;
+ HEAP32[i1 + 8 >> 2] = i2;
break;
}
- if ((i52 | 0) == (HEAP32[9230] | 0)) {
+ if ((i54 | 0) == (HEAP32[9598] | 0)) {
HEAP32[i129 >> 2] = 0;
- i4 = i132 + 36 | 0;
+ i4 = i132 + 32 | 0;
i1 = HEAP32[i4 >> 2] | 0;
do if (HEAP32[i1 >> 2] | 0) {
HEAP32[i63 >> 2] = HEAP32[i1 >> 2];
@@ -13446,14 +12308,14 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
i6 = i2;
HEAP32[i129 >> 2] = i6;
HEAP32[HEAP32[i4 >> 2] >> 2] = 0;
- i5 = HEAP32[i132 + 44 >> 2] | 0;
- i4 = i5 + 4 | 0;
- i1 = HEAP32[i4 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i5 + 8 >> 2] | 0)) {
- __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i5, i129);
+ i1 = HEAP32[i132 + 40 >> 2] | 0;
+ i4 = i1 + 4 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ if ((i5 | 0) == (HEAP32[i1 + 8 >> 2] | 0)) {
+ __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i1, i129);
break;
} else {
- HEAP32[i1 >> 2] = i6;
+ HEAP32[i5 >> 2] = i6;
HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4;
break;
}
@@ -13461,7 +12323,7 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
i2 = 0;
i6 = 0;
} while (0);
- i1 = HEAP32[i132 + 48 >> 2] | 0;
+ i1 = HEAP32[i132 + 44 >> 2] | 0;
i7 = __ZN6cashew3RefixEj(i131, 1) | 0;
HEAP32[i89 >> 2] = HEAP32[i7 >> 2];
HEAP32[i134 >> 2] = HEAP32[i89 >> 2];
@@ -13469,14 +12331,14 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
HEAP32[i130 >> 2] = i1;
i7 = i1;
do if (i2) {
- i4 = (HEAP32[i132 + 44 >> 2] | 0) + 4 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- i5 = i2 + -4 | 0;
+ i2 = (HEAP32[i132 + 40 >> 2] | 0) + 4 | 0;
+ i5 = HEAP32[i2 >> 2] | 0;
+ i4 = i5 + -4 | 0;
while (1) {
- if ((i2 | 0) == (i5 | 0)) break;
- i134 = i2 + -4 | 0;
- HEAP32[i4 >> 2] = i134;
- i2 = i134;
+ if ((i5 | 0) == (i4 | 0)) break;
+ i134 = i5 + -4 | 0;
+ HEAP32[i2 >> 2] = i134;
+ i5 = i134;
}
i2 = __ZN4wasm10Expression8dyn_castINS_5BlockEEEPT_v(i1) | 0;
if (i2 | 0 ? (i95 = i2 + 8 | 0, (HEAP32[i95 >> 2] | 0) == 0) : 0) {
@@ -13485,21 +12347,21 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
}
i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i133 + 4 >> 2] | 0) | 0;
HEAP32[i1 + 8 >> 2] = i6;
- i4 = i1 + 16 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 20 >> 2] | 0)) __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i1 + 12 | 0, i130); else {
- HEAP32[i2 >> 2] = i7;
- HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4;
+ i2 = i1 + 16 | 0;
+ i4 = HEAP32[i2 >> 2] | 0;
+ if ((i4 | 0) == (HEAP32[i1 + 20 >> 2] | 0)) __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i1 + 12 | 0, i130); else {
+ HEAP32[i4 >> 2] = i7;
+ HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4;
}
HEAP32[i130 >> 2] = i1;
} while (0);
break;
}
- if ((i52 | 0) == (HEAP32[9249] | 0)) {
+ if ((i54 | 0) == (HEAP32[9617] | 0)) {
i1 = __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(HEAP32[i133 + 4 >> 2] | 0) | 0;
- i2 = i132 + 44 | 0;
+ i2 = i132 + 40 | 0;
i133 = HEAP32[i2 >> 2] | 0;
- if ((HEAP32[i133 + 4 >> 2] | 0) == (HEAP32[i133 >> 2] | 0)) ___assert_fail(21163, 12455, 1213, 34529);
+ if ((HEAP32[i133 + 4 >> 2] | 0) == (HEAP32[i133 >> 2] | 0)) ___assert_fail(21751, 13029, 1205, 35993);
if (__ZN6cashew3RefntEv(__ZN6cashew3RefixEj(i131, 1) | 0) | 0) i2 = HEAP32[(HEAP32[(HEAP32[i2 >> 2] | 0) + 4 >> 2] | 0) + -4 >> 2] | 0; else {
i2 = __ZN6cashew3RefixEj(i131, 1) | 0;
i2 = __ZN6cashew5Value10getIStringEv(HEAP32[i2 >> 2] | 0) | 0;
@@ -13510,11 +12372,11 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
HEAP32[i1 + 12 >> 2] = i2;
break;
}
- if ((i52 | 0) == (HEAP32[9250] | 0)) {
+ if ((i54 | 0) == (HEAP32[9618] | 0)) {
i1 = __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(HEAP32[i133 + 4 >> 2] | 0) | 0;
- i2 = i132 + 52 | 0;
+ i2 = i132 + 48 | 0;
i133 = HEAP32[i2 >> 2] | 0;
- if ((HEAP32[i133 + 4 >> 2] | 0) == (HEAP32[i133 >> 2] | 0)) ___assert_fail(21185, 12455, 1218, 34529);
+ if ((HEAP32[i133 + 4 >> 2] | 0) == (HEAP32[i133 >> 2] | 0)) ___assert_fail(21773, 13029, 1210, 35993);
if (__ZN6cashew3RefntEv(__ZN6cashew3RefixEj(i131, 1) | 0) | 0) i2 = HEAP32[(HEAP32[(HEAP32[i2 >> 2] | 0) + 4 >> 2] | 0) + -4 >> 2] | 0; else {
i2 = __ZN6cashew3RefixEj(i131, 1) | 0;
i2 = __ZN6cashew5Value10getIStringEv(HEAP32[i2 >> 2] | 0) | 0;
@@ -13525,8 +12387,8 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
HEAP32[i1 + 12 >> 2] = i2;
break;
}
- if ((i52 | 0) == (HEAP32[9241] | 0)) {
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 1) | 0, 0) | 0, 36988) | 0) {
+ if ((i54 | 0) == (HEAP32[9609] | 0)) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 1) | 0, 0) | 0, 38460) | 0) {
i8 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 1) | 0, 1) | 0;
i8 = (__ZN6cashew5Value10getIntegerEv(HEAP32[i8 >> 2] | 0) | 0) == 1;
} else i8 = 0;
@@ -13534,17 +12396,17 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
i1 = __ZN10MixedArena5allocIN4wasm4LoopEEEPT_v(HEAP32[i13 >> 2] | 0) | 0;
HEAP32[i129 >> 2] = 0;
HEAP32[i130 >> 2] = 0;
- i2 = i132 + 36 | 0;
+ i2 = i132 + 32 | 0;
i4 = HEAP32[i2 >> 2] | 0;
if (!(HEAP32[i4 >> 2] | 0)) {
- i4 = i132 + 60 | 0;
+ i4 = i132 + 56 | 0;
i2 = HEAP32[i4 >> 2] | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i78, 21210, 9);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i78, 21798, 9);
i2 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__8clENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i2, i78) | 0;
HEAP32[i129 >> 2] = i2;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i78);
i4 = HEAP32[i4 >> 2] | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i79, 21220, 8);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i79, 21808, 8);
i4 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__8clENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i4, i79) | 0;
HEAP32[i130 >> 2] = i4;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i79);
@@ -13563,20 +12425,20 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
HEAP32[i1 + 8 >> 2] = i2;
i11 = i1 + 12 | 0;
HEAP32[i11 >> 2] = i4;
- i12 = i132 + 44 | 0;
- i7 = HEAP32[i12 >> 2] | 0;
- i6 = i7 + 4 | 0;
- i5 = HEAP32[i6 >> 2] | 0;
- if ((i5 | 0) == (HEAP32[i7 + 8 >> 2] | 0)) __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i7, i129); else {
- HEAP32[i5 >> 2] = i2;
+ i12 = i132 + 40 | 0;
+ i5 = HEAP32[i12 >> 2] | 0;
+ i6 = i5 + 4 | 0;
+ i7 = HEAP32[i6 >> 2] | 0;
+ if ((i7 | 0) == (HEAP32[i5 + 8 >> 2] | 0)) __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i5, i129); else {
+ HEAP32[i7 >> 2] = i2;
HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4;
}
- i10 = i132 + 52 | 0;
- i7 = HEAP32[i10 >> 2] | 0;
- i6 = i7 + 4 | 0;
- i5 = HEAP32[i6 >> 2] | 0;
- if ((i5 | 0) == (HEAP32[i7 + 8 >> 2] | 0)) __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i7, i130); else {
- HEAP32[i5 >> 2] = i4;
+ i10 = i132 + 48 | 0;
+ i5 = HEAP32[i10 >> 2] | 0;
+ i6 = i5 + 4 | 0;
+ i7 = HEAP32[i6 >> 2] | 0;
+ if ((i7 | 0) == (HEAP32[i5 + 8 >> 2] | 0)) __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i5, i130); else {
+ HEAP32[i7 >> 2] = i4;
HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4;
}
if (i8) {
@@ -13588,40 +12450,40 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
i7 = i1 + 16 | 0;
HEAP32[i7 >> 2] = i2;
} else {
- i9 = __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(HEAP32[i13 >> 2] | 0) | 0;
- HEAP32[i9 + 12 >> 2] = i2;
- i8 = __ZN10MixedArena5allocIN4wasm2IfEEEPT_v(HEAP32[i13 >> 2] | 0) | 0;
+ i7 = __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(HEAP32[i13 >> 2] | 0) | 0;
+ HEAP32[i7 + 12 >> 2] = i2;
+ i6 = __ZN10MixedArena5allocIN4wasm2IfEEEPT_v(HEAP32[i13 >> 2] | 0) | 0;
i5 = i132 + 4 | 0;
i2 = HEAP32[i5 >> 2] | 0;
- i6 = __ZN6cashew3RefixEj(i131, 1) | 0;
- HEAP32[i101 >> 2] = HEAP32[i6 >> 2];
+ i8 = __ZN6cashew3RefixEj(i131, 1) | 0;
+ HEAP32[i101 >> 2] = HEAP32[i8 >> 2];
HEAP32[i134 >> 2] = HEAP32[i101 >> 2];
i2 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i134) | 0;
- HEAP32[i8 + 8 >> 2] = i2;
+ HEAP32[i6 + 8 >> 2] = i2;
i2 = __ZN10MixedArena5allocIN4wasm3NopEEEPT_v(HEAP32[i13 >> 2] | 0) | 0;
- HEAP32[i8 + 12 >> 2] = i2;
- HEAP32[i8 + 16 >> 2] = i9;
+ HEAP32[i6 + 12 >> 2] = i2;
+ HEAP32[i6 + 16 >> 2] = i7;
i2 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i13 >> 2] | 0) | 0;
- i9 = i2 + 12 | 0;
- HEAP32[i105 >> 2] = i8;
- i6 = i2 + 16 | 0;
- i4 = HEAP32[i6 >> 2] | 0;
- i7 = i2 + 20 | 0;
- if (i4 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i8;
- HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i9, i105);
- i5 = HEAP32[i5 >> 2] | 0;
- i4 = __ZN6cashew3RefixEj(i131, 2) | 0;
- HEAP32[i103 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i103 >> 2];
- i5 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i5, i134) | 0;
- HEAP32[i107 >> 2] = i5;
- i4 = HEAP32[i6 >> 2] | 0;
- if (i4 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i5;
- HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i9, i107);
+ i7 = i2 + 12 | 0;
+ HEAP32[i103 >> 2] = i6;
+ i8 = i2 + 16 | 0;
+ i4 = HEAP32[i8 >> 2] | 0;
+ i9 = i2 + 20 | 0;
+ if (i4 >>> 0 < (HEAP32[i9 >> 2] | 0) >>> 0) {
+ HEAP32[i4 >> 2] = i6;
+ HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 4;
+ } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i7, i103);
+ i4 = HEAP32[i5 >> 2] | 0;
+ i5 = __ZN6cashew3RefixEj(i131, 2) | 0;
+ HEAP32[i104 >> 2] = HEAP32[i5 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i104 >> 2];
+ i4 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i4, i134) | 0;
+ HEAP32[i107 >> 2] = i4;
+ i5 = HEAP32[i8 >> 2] | 0;
+ if (i5 >>> 0 < (HEAP32[i9 >> 2] | 0) >>> 0) {
+ HEAP32[i5 >> 2] = i4;
+ HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 4;
+ } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i7, i107);
i7 = i1 + 16 | 0;
HEAP32[i7 >> 2] = i2;
}
@@ -13629,102 +12491,102 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
i5 = __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(HEAP32[i13 >> 2] | 0) | 0;
HEAP32[i5 + 12 >> 2] = HEAP32[i11 >> 2];
HEAP32[i114 >> 2] = i5;
- i4 = i6 + 16 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i6 + 20 >> 2] | 0) >>> 0) {
- HEAP32[i2 >> 2] = i5;
- HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4;
+ i2 = i6 + 16 | 0;
+ i4 = HEAP32[i2 >> 2] | 0;
+ if (i4 >>> 0 < (HEAP32[i6 + 20 >> 2] | 0) >>> 0) {
+ HEAP32[i4 >> 2] = i5;
+ HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4;
} else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i6 + 12 | 0, i114);
HEAP32[i7 >> 2] = i6;
- i4 = (HEAP32[i10 >> 2] | 0) + 4 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- i5 = i2 + -4 | 0;
+ i2 = (HEAP32[i10 >> 2] | 0) + 4 | 0;
+ i5 = HEAP32[i2 >> 2] | 0;
+ i4 = i5 + -4 | 0;
while (1) {
- if ((i2 | 0) == (i5 | 0)) break;
- i134 = i2 + -4 | 0;
- HEAP32[i4 >> 2] = i134;
- i2 = i134;
+ if ((i5 | 0) == (i4 | 0)) break;
+ i134 = i5 + -4 | 0;
+ HEAP32[i2 >> 2] = i134;
+ i5 = i134;
}
- i4 = (HEAP32[i12 >> 2] | 0) + 4 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- i5 = i2 + -4 | 0;
+ i2 = (HEAP32[i12 >> 2] | 0) + 4 | 0;
+ i5 = HEAP32[i2 >> 2] | 0;
+ i4 = i5 + -4 | 0;
while (1) {
- if ((i2 | 0) == (i5 | 0)) break;
- i134 = i2 + -4 | 0;
- HEAP32[i4 >> 2] = i134;
- i2 = i134;
+ if ((i5 | 0) == (i4 | 0)) break;
+ i134 = i5 + -4 | 0;
+ HEAP32[i2 >> 2] = i134;
+ i5 = i134;
}
break;
}
- if ((i52 | 0) == (HEAP32[9242] | 0)) {
- do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 1) | 0, 0) | 0, 36988) | 0) {
+ if ((i54 | 0) == (HEAP32[9610] | 0)) {
+ do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 1) | 0, 0) | 0, 38460) | 0) {
i128 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i131, 1) | 0, 1) | 0;
i128 = __ZN6cashew5Value9getNumberEv(HEAP32[i128 >> 2] | 0) | 0;
if (!(+HEAPF64[i128 >> 3] == 0.0)) break;
i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i133 + 4 >> 2] | 0) | 0;
HEAP32[i129 >> 2] = 0;
- i2 = i132 + 36 | 0;
+ i2 = i132 + 32 | 0;
i4 = HEAP32[i2 >> 2] | 0;
if (!(HEAP32[i4 >> 2] | 0)) {
- i2 = HEAP32[i132 + 60 >> 2] | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i68, 21229, 7);
- i2 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__8clENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i2, i68) | 0;
+ i2 = HEAP32[i132 + 56 >> 2] | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i70, 21817, 7);
+ i2 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__8clENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i2, i70) | 0;
HEAP32[i129 >> 2] = i2;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i68);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i70);
} else {
- HEAP32[i67 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i67 >> 2];
+ HEAP32[i69 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i69 >> 2];
i133 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__6clENS1_7IStringE(i134) | 0;
HEAP32[i129 >> 2] = i133;
HEAP32[HEAP32[i2 >> 2] >> 2] = 0;
i2 = i133;
}
HEAP32[i1 + 8 >> 2] = i2;
- i7 = i132 + 44 | 0;
- i6 = HEAP32[i7 >> 2] | 0;
- i5 = i6 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- if ((i4 | 0) == (HEAP32[i6 + 8 >> 2] | 0)) __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i6, i129); else {
- HEAP32[i4 >> 2] = i2;
+ i7 = i132 + 40 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i5 = i4 + 4 | 0;
+ i6 = HEAP32[i5 >> 2] | 0;
+ if ((i6 | 0) == (HEAP32[i4 + 8 >> 2] | 0)) __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i4, i129); else {
+ HEAP32[i6 >> 2] = i2;
HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 4;
}
- i6 = i132 + 52 | 0;
- i5 = HEAP32[i6 >> 2] | 0;
- i4 = i5 + 4 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i5 + 8 >> 2] | 0)) __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i5, 36656); else {
- HEAP32[i2 >> 2] = HEAP32[9164];
+ i6 = i132 + 48 | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ i4 = i2 + 4 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ if ((i5 | 0) == (HEAP32[i2 + 8 >> 2] | 0)) __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i2, 38120); else {
+ HEAP32[i5 >> 2] = HEAP32[9530];
HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4;
}
- i5 = HEAP32[i132 + 4 >> 2] | 0;
+ i2 = HEAP32[i132 + 4 >> 2] | 0;
i4 = __ZN6cashew3RefixEj(i131, 2) | 0;
HEAP32[i94 >> 2] = HEAP32[i4 >> 2];
HEAP32[i134 >> 2] = HEAP32[i94 >> 2];
- i5 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i5, i134) | 0;
- HEAP32[i96 >> 2] = i5;
+ i2 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i134) | 0;
+ HEAP32[i96 >> 2] = i2;
i4 = i1 + 16 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i1 + 20 >> 2] | 0) >>> 0) {
- HEAP32[i2 >> 2] = i5;
+ i5 = HEAP32[i4 >> 2] | 0;
+ if (i5 >>> 0 < (HEAP32[i1 + 20 >> 2] | 0) >>> 0) {
+ HEAP32[i5 >> 2] = i2;
HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4;
} else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i1 + 12 | 0, i96);
- i4 = (HEAP32[i6 >> 2] | 0) + 4 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- i5 = i2 + -4 | 0;
+ i2 = (HEAP32[i6 >> 2] | 0) + 4 | 0;
+ i5 = HEAP32[i2 >> 2] | 0;
+ i4 = i5 + -4 | 0;
while (1) {
- if ((i2 | 0) == (i5 | 0)) break;
- i134 = i2 + -4 | 0;
- HEAP32[i4 >> 2] = i134;
- i2 = i134;
- }
- i4 = (HEAP32[i7 >> 2] | 0) + 4 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- i5 = i2 + -4 | 0;
+ if ((i5 | 0) == (i4 | 0)) break;
+ i134 = i5 + -4 | 0;
+ HEAP32[i2 >> 2] = i134;
+ i5 = i134;
+ }
+ i2 = (HEAP32[i7 >> 2] | 0) + 4 | 0;
+ i5 = HEAP32[i2 >> 2] | 0;
+ i4 = i5 + -4 | 0;
while (1) {
- if ((i2 | 0) == (i5 | 0)) break;
- i134 = i2 + -4 | 0;
- HEAP32[i4 >> 2] = i134;
- i2 = i134;
+ if ((i5 | 0) == (i4 | 0)) break;
+ i134 = i5 + -4 | 0;
+ HEAP32[i2 >> 2] = i134;
+ i5 = i134;
}
break L4;
} while (0);
@@ -13732,27 +12594,27 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
i1 = __ZN10MixedArena5allocIN4wasm4LoopEEEPT_v(HEAP32[i11 >> 2] | 0) | 0;
HEAP32[i129 >> 2] = 0;
HEAP32[i130 >> 2] = 0;
- i2 = i132 + 36 | 0;
+ i2 = i132 + 32 | 0;
i4 = HEAP32[i2 >> 2] | 0;
if (!(HEAP32[i4 >> 2] | 0)) {
- i4 = i132 + 60 | 0;
+ i4 = i132 + 56 | 0;
i2 = HEAP32[i4 >> 2] | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i73, 21237, 6);
- i2 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__8clENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i2, i73) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i74, 21825, 6);
+ i2 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__8clENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i2, i74) | 0;
HEAP32[i129 >> 2] = i2;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i73);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i74);
i4 = HEAP32[i4 >> 2] | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i74, 21244, 5);
- i4 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__8clENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i4, i74) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i75, 21832, 5);
+ i4 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__8clENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i4, i75) | 0;
HEAP32[i130 >> 2] = i4;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i74);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i75);
} else {
- HEAP32[i71 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i71 >> 2];
+ HEAP32[i72 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i72 >> 2];
i128 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__6clENS1_7IStringE(i134) | 0;
HEAP32[i129 >> 2] = i128;
- HEAP32[i72 >> 2] = HEAP32[HEAP32[i2 >> 2] >> 2];
- HEAP32[i134 >> 2] = HEAP32[i72 >> 2];
+ HEAP32[i73 >> 2] = HEAP32[HEAP32[i2 >> 2] >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i73 >> 2];
i4 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__7clENS1_7IStringE(i134) | 0;
HEAP32[i130 >> 2] = i4;
HEAP32[HEAP32[i2 >> 2] >> 2] = 0;
@@ -13761,68 +12623,68 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
i10 = i4;
HEAP32[i1 + 8 >> 2] = i2;
HEAP32[i1 + 12 >> 2] = i10;
- i9 = i132 + 44 | 0;
- i6 = HEAP32[i9 >> 2] | 0;
- i5 = i6 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- if ((i4 | 0) == (HEAP32[i6 + 8 >> 2] | 0)) __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i6, i129); else {
- HEAP32[i4 >> 2] = i2;
+ i9 = i132 + 40 | 0;
+ i4 = HEAP32[i9 >> 2] | 0;
+ i5 = i4 + 4 | 0;
+ i6 = HEAP32[i5 >> 2] | 0;
+ if ((i6 | 0) == (HEAP32[i4 + 8 >> 2] | 0)) __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i4, i129); else {
+ HEAP32[i6 >> 2] = i2;
HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 4;
}
- i6 = i132 + 52 | 0;
- i5 = HEAP32[i6 >> 2] | 0;
- i4 = i5 + 4 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i5 + 8 >> 2] | 0)) __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i5, i130); else {
- HEAP32[i2 >> 2] = i10;
+ i6 = i132 + 48 | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ i4 = i2 + 4 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ if ((i5 | 0) == (HEAP32[i2 + 8 >> 2] | 0)) __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i2, i130); else {
+ HEAP32[i5 >> 2] = i10;
HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4;
}
i7 = i132 + 4 | 0;
- i4 = HEAP32[i7 >> 2] | 0;
+ i2 = HEAP32[i7 >> 2] | 0;
i8 = __ZN6cashew3RefixEj(i131, 2) | 0;
HEAP32[i97 >> 2] = HEAP32[i8 >> 2];
HEAP32[i134 >> 2] = HEAP32[i97 >> 2];
- i4 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i4, i134) | 0;
+ i2 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i134) | 0;
i8 = i1 + 16 | 0;
- HEAP32[i8 >> 2] = i4;
- i4 = (HEAP32[i6 >> 2] | 0) + 4 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- i5 = i2 + -4 | 0;
+ HEAP32[i8 >> 2] = i2;
+ i2 = (HEAP32[i6 >> 2] | 0) + 4 | 0;
+ i5 = HEAP32[i2 >> 2] | 0;
+ i4 = i5 + -4 | 0;
while (1) {
- if ((i2 | 0) == (i5 | 0)) break;
- i132 = i2 + -4 | 0;
- HEAP32[i4 >> 2] = i132;
- i2 = i132;
- }
- i4 = (HEAP32[i9 >> 2] | 0) + 4 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- i5 = i2 + -4 | 0;
+ if ((i5 | 0) == (i4 | 0)) break;
+ i132 = i5 + -4 | 0;
+ HEAP32[i2 >> 2] = i132;
+ i5 = i132;
+ }
+ i2 = (HEAP32[i9 >> 2] | 0) + 4 | 0;
+ i5 = HEAP32[i2 >> 2] | 0;
+ i4 = i5 + -4 | 0;
while (1) {
- if ((i2 | 0) == (i5 | 0)) break;
- i132 = i2 + -4 | 0;
- HEAP32[i4 >> 2] = i132;
- i2 = i132;
+ if ((i5 | 0) == (i4 | 0)) break;
+ i132 = i5 + -4 | 0;
+ HEAP32[i2 >> 2] = i132;
+ i5 = i132;
}
i6 = __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(HEAP32[i11 >> 2] | 0) | 0;
HEAP32[i6 + 12 >> 2] = i10;
- i5 = HEAP32[i7 >> 2] | 0;
+ i2 = HEAP32[i7 >> 2] | 0;
i4 = __ZN6cashew3RefixEj(i131, 1) | 0;
- HEAP32[i104 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i104 >> 2];
- i5 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i5, i134) | 0;
- HEAP32[i6 + 8 >> 2] = i5;
- i5 = __ZN4wasm15Asm2WasmBuilder8blockifyEPNS_10ExpressionE(i133, HEAP32[i8 >> 2] | 0) | 0;
- HEAP32[i109 >> 2] = i6;
- i4 = i5 + 16 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i5 + 20 >> 2] | 0) >>> 0) {
- HEAP32[i2 >> 2] = i6;
+ HEAP32[i105 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i105 >> 2];
+ i2 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i134) | 0;
+ HEAP32[i6 + 8 >> 2] = i2;
+ i2 = __ZN4wasm15Asm2WasmBuilder8blockifyEPNS_10ExpressionE(i133, HEAP32[i8 >> 2] | 0) | 0;
+ HEAP32[i108 >> 2] = i6;
+ i4 = i2 + 16 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ if (i5 >>> 0 < (HEAP32[i2 + 20 >> 2] | 0) >>> 0) {
+ HEAP32[i5 >> 2] = i6;
HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i5 + 12 | 0, i109);
- HEAP32[i8 >> 2] = i5;
+ } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i2 + 12 | 0, i108);
+ HEAP32[i8 >> 2] = i2;
break;
}
- if ((i52 | 0) == (HEAP32[9243] | 0)) {
+ if ((i54 | 0) == (HEAP32[9611] | 0)) {
i15 = __ZN6cashew3RefixEj(i131, 1) | 0;
i15 = HEAP32[i15 >> 2] | 0;
i7 = __ZN6cashew3RefixEj(i131, 2) | 0;
@@ -13835,27 +12697,27 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
i16 = __ZN10MixedArena5allocIN4wasm4LoopEEEPT_v(HEAP32[i14 >> 2] | 0) | 0;
HEAP32[i129 >> 2] = 0;
HEAP32[i130 >> 2] = 0;
- i1 = i132 + 36 | 0;
+ i1 = i132 + 32 | 0;
i2 = HEAP32[i1 >> 2] | 0;
if (!(HEAP32[i2 >> 2] | 0)) {
- i2 = i132 + 60 | 0;
+ i2 = i132 + 56 | 0;
i1 = HEAP32[i2 >> 2] | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i84, 21250, 7);
- i1 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__8clENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i1, i84) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i87, 21838, 7);
+ i1 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__8clENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i1, i87) | 0;
HEAP32[i129 >> 2] = i1;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i84);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i87);
i2 = HEAP32[i2 >> 2] | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i85, 21258, 6);
- i2 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__8clENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i2, i85) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i88, 21846, 6);
+ i2 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__8clENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i2, i88) | 0;
HEAP32[i130 >> 2] = i2;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i85);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i88);
} else {
- HEAP32[i82 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i82 >> 2];
+ HEAP32[i85 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i85 >> 2];
i131 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__6clENS1_7IStringE(i134) | 0;
HEAP32[i129 >> 2] = i131;
- HEAP32[i83 >> 2] = HEAP32[HEAP32[i1 >> 2] >> 2];
- HEAP32[i134 >> 2] = HEAP32[i83 >> 2];
+ HEAP32[i86 >> 2] = HEAP32[HEAP32[i1 >> 2] >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i86 >> 2];
i2 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__7clENS1_7IStringE(i134) | 0;
HEAP32[i130 >> 2] = i2;
HEAP32[HEAP32[i1 >> 2] >> 2] = 0;
@@ -13864,107 +12726,107 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
HEAP32[i16 + 8 >> 2] = i1;
i10 = i16 + 12 | 0;
HEAP32[i10 >> 2] = i2;
- i13 = i132 + 44 | 0;
- i6 = HEAP32[i13 >> 2] | 0;
- i5 = i6 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- if ((i4 | 0) == (HEAP32[i6 + 8 >> 2] | 0)) __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i6, i129); else {
- HEAP32[i4 >> 2] = i1;
+ i13 = i132 + 40 | 0;
+ i4 = HEAP32[i13 >> 2] | 0;
+ i5 = i4 + 4 | 0;
+ i6 = HEAP32[i5 >> 2] | 0;
+ if ((i6 | 0) == (HEAP32[i4 + 8 >> 2] | 0)) __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i4, i129); else {
+ HEAP32[i6 >> 2] = i1;
HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 4;
}
- i8 = i132 + 52 | 0;
- i6 = HEAP32[i8 >> 2] | 0;
- i5 = i6 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- if ((i4 | 0) == (HEAP32[i6 + 8 >> 2] | 0)) __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i6, i130); else {
- HEAP32[i4 >> 2] = i2;
+ i8 = i132 + 48 | 0;
+ i4 = HEAP32[i8 >> 2] | 0;
+ i5 = i4 + 4 | 0;
+ i6 = HEAP32[i5 >> 2] | 0;
+ if ((i6 | 0) == (HEAP32[i4 + 8 >> 2] | 0)) __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i4, i130); else {
+ HEAP32[i6 >> 2] = i2;
HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 4;
}
- i6 = __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(HEAP32[i14 >> 2] | 0) | 0;
- HEAP32[i6 + 12 >> 2] = i1;
+ i4 = __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(HEAP32[i14 >> 2] | 0) | 0;
+ HEAP32[i4 + 12 >> 2] = i1;
i2 = __ZN10MixedArena5allocIN4wasm2IfEEEPT_v(HEAP32[i14 >> 2] | 0) | 0;
i9 = i132 + 4 | 0;
- i4 = HEAP32[i9 >> 2] | 0;
+ i5 = HEAP32[i9 >> 2] | 0;
HEAP32[i102 >> 2] = i7;
HEAP32[i134 >> 2] = HEAP32[i102 >> 2];
- i7 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i4, i134) | 0;
+ i7 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i5, i134) | 0;
HEAP32[i2 + 8 >> 2] = i7;
i7 = __ZN10MixedArena5allocIN4wasm3NopEEEPT_v(HEAP32[i14 >> 2] | 0) | 0;
HEAP32[i2 + 12 >> 2] = i7;
- HEAP32[i2 + 16 >> 2] = i6;
+ HEAP32[i2 + 16 >> 2] = i4;
i7 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i14 >> 2] | 0) | 0;
- i6 = i7 + 12 | 0;
- HEAP32[i110 >> 2] = i2;
- i4 = i7 + 16 | 0;
- i1 = HEAP32[i4 >> 2] | 0;
- i5 = i7 + 20 | 0;
- if (i1 >>> 0 < (HEAP32[i5 >> 2] | 0) >>> 0) {
- HEAP32[i1 >> 2] = i2;
- HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i6, i110);
- i2 = HEAP32[i9 >> 2] | 0;
- HEAP32[i108 >> 2] = i11;
- HEAP32[i134 >> 2] = HEAP32[i108 >> 2];
- i2 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i134) | 0;
- HEAP32[i112 >> 2] = i2;
- i1 = HEAP32[i4 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i5 >> 2] | 0) >>> 0) {
- HEAP32[i1 >> 2] = i2;
- HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i6, i112);
- i2 = HEAP32[i9 >> 2] | 0;
- HEAP32[i111 >> 2] = i12;
- HEAP32[i134 >> 2] = HEAP32[i111 >> 2];
- i2 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i134) | 0;
- HEAP32[i113 >> 2] = i2;
- i1 = HEAP32[i4 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i5 >> 2] | 0) >>> 0) {
+ i4 = i7 + 12 | 0;
+ HEAP32[i109 >> 2] = i2;
+ i5 = i7 + 16 | 0;
+ i1 = HEAP32[i5 >> 2] | 0;
+ i6 = i7 + 20 | 0;
+ if (i1 >>> 0 < (HEAP32[i6 >> 2] | 0) >>> 0) {
HEAP32[i1 >> 2] = i2;
- HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i6, i113);
+ HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 4;
+ } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i4, i109);
+ i1 = HEAP32[i9 >> 2] | 0;
+ HEAP32[i110 >> 2] = i11;
+ HEAP32[i134 >> 2] = HEAP32[i110 >> 2];
+ i1 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i1, i134) | 0;
+ HEAP32[i111 >> 2] = i1;
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i6 >> 2] | 0) >>> 0) {
+ HEAP32[i2 >> 2] = i1;
+ HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 4;
+ } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i4, i111);
+ i1 = HEAP32[i9 >> 2] | 0;
+ HEAP32[i112 >> 2] = i12;
+ HEAP32[i134 >> 2] = HEAP32[i112 >> 2];
+ i1 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i1, i134) | 0;
+ HEAP32[i113 >> 2] = i1;
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i6 >> 2] | 0) >>> 0) {
+ HEAP32[i2 >> 2] = i1;
+ HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 4;
+ } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i4, i113);
i6 = i16 + 16 | 0;
HEAP32[i6 >> 2] = i7;
i4 = __ZN4wasm15Asm2WasmBuilder8blockifyEPNS_10ExpressionE(i133, i7) | 0;
i5 = __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(HEAP32[i14 >> 2] | 0) | 0;
HEAP32[i5 + 12 >> 2] = HEAP32[i10 >> 2];
HEAP32[i124 >> 2] = i5;
- i2 = i4 + 16 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i4 + 20 >> 2] | 0) >>> 0) {
- HEAP32[i1 >> 2] = i5;
- HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4;
+ i1 = i4 + 16 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i4 + 20 >> 2] | 0) >>> 0) {
+ HEAP32[i2 >> 2] = i5;
+ HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 4;
} else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i4 + 12 | 0, i124);
HEAP32[i6 >> 2] = i4;
- i2 = (HEAP32[i8 >> 2] | 0) + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- i4 = i1 + -4 | 0;
+ i1 = (HEAP32[i8 >> 2] | 0) + 4 | 0;
+ i4 = HEAP32[i1 >> 2] | 0;
+ i2 = i4 + -4 | 0;
while (1) {
- if ((i1 | 0) == (i4 | 0)) break;
- i133 = i1 + -4 | 0;
- HEAP32[i2 >> 2] = i133;
- i1 = i133;
+ if ((i4 | 0) == (i2 | 0)) break;
+ i133 = i4 + -4 | 0;
+ HEAP32[i1 >> 2] = i133;
+ i4 = i133;
}
- i2 = (HEAP32[i13 >> 2] | 0) + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- i4 = i1 + -4 | 0;
+ i1 = (HEAP32[i13 >> 2] | 0) + 4 | 0;
+ i4 = HEAP32[i1 >> 2] | 0;
+ i2 = i4 + -4 | 0;
while (1) {
- if ((i1 | 0) == (i4 | 0)) break;
- i133 = i1 + -4 | 0;
- HEAP32[i2 >> 2] = i133;
- i1 = i133;
+ if ((i4 | 0) == (i2 | 0)) break;
+ i133 = i4 + -4 | 0;
+ HEAP32[i1 >> 2] = i133;
+ i4 = i133;
}
i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i14 >> 2] | 0) | 0;
i7 = i1 + 12 | 0;
- i4 = HEAP32[i9 >> 2] | 0;
+ i2 = HEAP32[i9 >> 2] | 0;
HEAP32[i126 >> 2] = i15;
HEAP32[i134 >> 2] = HEAP32[i126 >> 2];
- i4 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i4, i134) | 0;
- HEAP32[i127 >> 2] = i4;
+ i2 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i134) | 0;
+ HEAP32[i127 >> 2] = i2;
i5 = i1 + 16 | 0;
- i2 = HEAP32[i5 >> 2] | 0;
+ i4 = HEAP32[i5 >> 2] | 0;
i6 = i1 + 20 | 0;
- if (i2 >>> 0 < (HEAP32[i6 >> 2] | 0) >>> 0) {
- HEAP32[i2 >> 2] = i4;
+ if (i4 >>> 0 < (HEAP32[i6 >> 2] | 0) >>> 0) {
+ HEAP32[i4 >> 2] = i2;
i2 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i2;
} else {
@@ -13978,105 +12840,105 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
} else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i7, i128);
break;
}
- if ((i52 | 0) == (HEAP32[9248] | 0)) {
- i2 = HEAP32[i132 + 36 >> 2] | 0;
+ if ((i54 | 0) == (HEAP32[9616] | 0)) {
+ i2 = HEAP32[i132 + 32 >> 2] | 0;
if (!(HEAP32[i2 >> 2] | 0)) {
i1 = __ZN6cashew3RefixEj(i131, 1) | 0;
i1 = __ZN6cashew5Value10getIStringEv(HEAP32[i1 >> 2] | 0) | 0;
HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
i1 = HEAP32[i132 + 4 >> 2] | 0;
i133 = __ZN6cashew3RefixEj(i131, 2) | 0;
- HEAP32[i55 >> 2] = HEAP32[i133 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i55 >> 2];
+ HEAP32[i59 >> 2] = HEAP32[i133 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i59 >> 2];
i1 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i1, i134) | 0;
break;
- } else ___assert_fail(13278, 12455, 1348, 34529);
+ } else ___assert_fail(13852, 13029, 1340, 35993);
}
- if ((i52 | 0) == (HEAP32[9236] | 0)) {
+ if ((i54 | 0) == (HEAP32[9604] | 0)) {
i1 = __ZN10MixedArena5allocIN4wasm2IfEEEPT_v(HEAP32[i133 + 4 >> 2] | 0) | 0;
i132 = i132 + 4 | 0;
i130 = HEAP32[i132 >> 2] | 0;
i133 = __ZN6cashew3RefixEj(i131, 1) | 0;
- HEAP32[i56 >> 2] = HEAP32[i133 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i56 >> 2];
+ HEAP32[i60 >> 2] = HEAP32[i133 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i60 >> 2];
i130 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i130, i134) | 0;
HEAP32[i1 + 8 >> 2] = i130;
i130 = HEAP32[i132 >> 2] | 0;
i133 = __ZN6cashew3RefixEj(i131, 2) | 0;
- HEAP32[i57 >> 2] = HEAP32[i133 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i57 >> 2];
+ HEAP32[i61 >> 2] = HEAP32[i133 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i61 >> 2];
i130 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i130, i134) | 0;
i133 = i1 + 12 | 0;
HEAP32[i133 >> 2] = i130;
i132 = HEAP32[i132 >> 2] | 0;
i131 = __ZN6cashew3RefixEj(i131, 3) | 0;
- HEAP32[i58 >> 2] = HEAP32[i131 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i58 >> 2];
+ HEAP32[i62 >> 2] = HEAP32[i131 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i62 >> 2];
i134 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i132, i134) | 0;
HEAP32[i1 + 16 >> 2] = i134;
HEAP32[i1 + 4 >> 2] = HEAP32[(HEAP32[i133 >> 2] | 0) + 4 >> 2];
break;
}
- if ((i52 | 0) == (HEAP32[9244] | 0)) {
+ if ((i54 | 0) == (HEAP32[9612] | 0)) {
i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i133 + 4 >> 2] | 0) | 0;
i8 = i1 + 12 | 0;
i5 = i132 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
+ i2 = HEAP32[i5 >> 2] | 0;
i6 = __ZN6cashew3RefixEj(i131, 1) | 0;
- HEAP32[i75 >> 2] = HEAP32[i6 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i75 >> 2];
- i4 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i4, i134) | 0;
- HEAP32[i88 >> 2] = i4;
+ HEAP32[i71 >> 2] = HEAP32[i6 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i71 >> 2];
+ i2 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i134) | 0;
+ HEAP32[i81 >> 2] = i2;
i6 = i1 + 16 | 0;
- i2 = HEAP32[i6 >> 2] | 0;
+ i4 = HEAP32[i6 >> 2] | 0;
i7 = i1 + 20 | 0;
- if (i2 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
- HEAP32[i2 >> 2] = i4;
+ if (i4 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
+ HEAP32[i4 >> 2] = i2;
HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i8, i88);
- i4 = HEAP32[i5 >> 2] | 0;
- i2 = __ZN6cashew3RefixEj(i131, 2) | 0;
- HEAP32[i86 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i86 >> 2];
- i4 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i4, i134) | 0;
- HEAP32[i91 >> 2] = i4;
- i2 = HEAP32[i6 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
- HEAP32[i2 >> 2] = i4;
+ } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i8, i81);
+ i2 = HEAP32[i5 >> 2] | 0;
+ i4 = __ZN6cashew3RefixEj(i131, 2) | 0;
+ HEAP32[i82 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i82 >> 2];
+ i2 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i134) | 0;
+ HEAP32[i90 >> 2] = i2;
+ i4 = HEAP32[i6 >> 2] | 0;
+ if (i4 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
+ HEAP32[i4 >> 2] = i2;
HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i8, i91);
+ } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i8, i90);
HEAP32[i1 + 4 >> 2] = HEAP32[(HEAP32[(HEAP32[i8 >> 2] | 0) + 4 >> 2] | 0) + 4 >> 2];
break;
}
- if ((i52 | 0) != (HEAP32[9251] | 0)) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i59, 21392, 20);
- HEAP32[i60 >> 2] = HEAP32[i131 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i60 >> 2];
- __ZN4wasmL8abort_onENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew3RefE(i59, i134);
+ if ((i54 | 0) != (HEAP32[9619] | 0)) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i52, 21980, 20);
+ HEAP32[i53 >> 2] = HEAP32[i131 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i53 >> 2];
+ __ZN4wasmL8abort_onENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew3RefE(i52, i134);
}
HEAP32[i129 >> 2] = 0;
- i2 = i132 + 36 | 0;
+ i2 = i132 + 32 | 0;
i4 = HEAP32[i2 >> 2] | 0;
if (!(HEAP32[i4 >> 2] | 0)) {
- i2 = HEAP32[i132 + 60 >> 2] | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i70, 26697, 6);
- i2 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__8clENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i2, i70) | 0;
+ i2 = HEAP32[i132 + 56 >> 2] | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i67, 28049, 6);
+ i2 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__8clENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i2, i67) | 0;
HEAP32[i129 >> 2] = i2;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i70);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i67);
} else {
- HEAP32[i69 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i134 >> 2] = HEAP32[i69 >> 2];
+ HEAP32[i66 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i134 >> 2] = HEAP32[i66 >> 2];
i128 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__6clENS1_7IStringE(i134) | 0;
HEAP32[i129 >> 2] = i128;
HEAP32[HEAP32[i2 >> 2] >> 2] = 0;
i2 = i128;
}
- i18 = i132 + 44 | 0;
- i6 = HEAP32[i18 >> 2] | 0;
- i5 = i6 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- if ((i4 | 0) == (HEAP32[i6 + 8 >> 2] | 0)) __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i6, i129); else {
- HEAP32[i4 >> 2] = i2;
+ i18 = i132 + 40 | 0;
+ i4 = HEAP32[i18 >> 2] | 0;
+ i5 = i4 + 4 | 0;
+ i6 = HEAP32[i5 >> 2] | 0;
+ if ((i6 | 0) == (HEAP32[i4 + 8 >> 2] | 0)) __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i4, i129); else {
+ HEAP32[i6 >> 2] = i2;
HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 4;
}
i16 = i133 + 4 | 0;
@@ -14089,7 +12951,7 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
i129 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i129, i134) | 0;
i8 = i17 + 12 | 0;
HEAP32[i8 >> 2] = i129;
- if ((HEAP32[i129 + 4 >> 2] | 0) != 1) ___assert_fail(21265, 12455, 1376, 34529);
+ if ((HEAP32[i129 + 4 >> 2] | 0) != 1) ___assert_fail(21853, 13029, 1368, 35993);
i5 = __ZN6cashew3RefixEj(i131, 2) | 0;
i5 = HEAP32[i5 >> 2] | 0;
HEAP32[i130 >> 2] = i5;
@@ -14098,20 +12960,20 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
i4 = 0;
L477 : while (1) {
if (i7 >>> 0 >= (__ZN6cashew5Value4sizeEv(i5) | 0) >>> 0) {
- i122 = i6;
+ i123 = i6;
break;
}
i131 = __ZN6cashew3RefixEj(i130, i7) | 0;
HEAP32[i125 >> 2] = HEAP32[i131 >> 2];
i131 = __ZN6cashew3RefixEj(i125, 0) | 0;
i131 = HEAP32[i131 >> 2] | 0;
- HEAP32[i121 >> 2] = i131;
+ HEAP32[i122 >> 2] = i131;
do if ((HEAP32[i131 >> 2] | 0) == 3) i2 = i6; else {
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i121, 0) | 0, 36988) | 0) ? !(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i121, 0) | 0, 37024) | 0) : 0) {
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i122, 0) | 0, 38460) | 0) ? !(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i122, 0) | 0, 38496) | 0) : 0) {
i106 = 350;
break L477;
}
- HEAP32[i99 >> 2] = HEAP32[i121 >> 2];
+ HEAP32[i99 >> 2] = HEAP32[i122 >> 2];
HEAP32[i134 >> 2] = HEAP32[i99 >> 2];
__ZN4wasm15Asm2WasmBuilder10getLiteralEN6cashew3RefE(i100, i133, i134);
i2 = __ZN4wasm7Literal6geti32Ev(i100) | 0;
@@ -14126,26 +12988,26 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
i7 = i7 + 1 | 0;
i6 = i2;
}
- if ((i106 | 0) == 350) ___assert_fail(21289, 12455, 1384, 34529);
+ if ((i106 | 0) == 350) ___assert_fail(21877, 13029, 1376, 35993);
i7 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i16 >> 2] | 0) | 0;
HEAP32[i7 + 8 >> 2] = 1;
HEAP32[i7 + 12 >> 2] = HEAP32[i8 >> 2];
- i9 = __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(HEAP32[i16 >> 2] | 0) | 0;
- HEAP32[i9 + 8 >> 2] = 1;
- HEAP32[i9 + 16 >> 2] = i122;
- HEAP32[i9 + 4 >> 2] = 1;
- HEAP32[i7 + 16 >> 2] = i9;
+ i15 = __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(HEAP32[i16 >> 2] | 0) | 0;
+ HEAP32[i15 + 8 >> 2] = 1;
+ HEAP32[i15 + 16 >> 2] = i123;
+ HEAP32[i15 + 4 >> 2] = 1;
+ HEAP32[i7 + 16 >> 2] = i15;
HEAP32[i7 + 4 >> 2] = 1;
HEAP32[i8 >> 2] = i7;
- i7 = i132 + 48 | 0;
- i9 = i120 + 4 | 0;
+ i7 = i132 + 44 | 0;
+ i8 = i121 + 4 | 0;
i15 = i17 + 28 | 0;
- i8 = i132 + 60 | 0;
+ i9 = i132 + 56 | 0;
i10 = i17 + 36 | 0;
i11 = i17 + 40 | 0;
i12 = i17 + 32 | 0;
- i14 = i17 + 16 | 0;
- i13 = i17 + 20 | 0;
+ i13 = i17 + 16 | 0;
+ i14 = i17 + 20 | 0;
i6 = 0;
while (1) {
if (i6 >>> 0 >= (__ZN6cashew5Value4sizeEv(HEAP32[i130 >> 2] | 0) | 0) >>> 0) {
@@ -14155,55 +13017,55 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
i131 = __ZN6cashew3RefixEj(i130, i6) | 0;
HEAP32[i125 >> 2] = HEAP32[i131 >> 2];
i131 = __ZN6cashew3RefixEj(i125, 0) | 0;
- HEAP32[i121 >> 2] = HEAP32[i131 >> 2];
+ HEAP32[i122 >> 2] = HEAP32[i131 >> 2];
i131 = __ZN6cashew3RefixEj(i125, 1) | 0;
i131 = HEAP32[i131 >> 2] | 0;
- HEAP32[i120 >> 2] = 0;
+ HEAP32[i121 >> 2] = 0;
i132 = HEAP32[i7 >> 2] | 0;
HEAP32[i115 >> 2] = i131;
HEAP32[i134 >> 2] = HEAP32[i115 >> 2];
i132 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEjEEclES5_j(i132, i134, 0) | 0;
- HEAP32[i9 >> 2] = i132;
- if ((HEAP32[HEAP32[i121 >> 2] >> 2] | 0) == 3) {
- i132 = HEAP32[i8 >> 2] | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i116, 21341, 14);
+ HEAP32[i8 >> 2] = i132;
+ if ((HEAP32[HEAP32[i122 >> 2] >> 2] | 0) == 3) {
+ i132 = HEAP32[i9 >> 2] | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i116, 21929, 14);
i132 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__8clENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i132, i116) | 0;
HEAP32[i15 >> 2] = i132;
- HEAP32[i120 >> 2] = i132;
+ HEAP32[i121 >> 2] = i132;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i116);
} else {
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i121, 0) | 0, 36988) | 0) ? !(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i121, 0) | 0, 37024) | 0) : 0) {
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i122, 0) | 0, 38460) | 0) ? !(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i122, 0) | 0, 38496) | 0) : 0) {
i106 = 360;
break;
}
- HEAP32[i117 >> 2] = HEAP32[i121 >> 2];
+ HEAP32[i117 >> 2] = HEAP32[i122 >> 2];
HEAP32[i134 >> 2] = HEAP32[i117 >> 2];
- __ZN4wasm15Asm2WasmBuilder10getLiteralEN6cashew3RefE(i123, i133, i134);
- i2 = __ZN4wasm7Literal6geti32Ev(i123) | 0;
- if ((i2 | 0) < (i122 | 0)) {
+ __ZN4wasm15Asm2WasmBuilder10getLiteralEN6cashew3RefE(i118, i133, i134);
+ i2 = __ZN4wasm7Literal6geti32Ev(i118) | 0;
+ if ((i2 | 0) < (i123 | 0)) {
i106 = 362;
break;
}
- i5 = i2 - i122 | 0;
- if ((i5 | 0) <= -1) {
+ i4 = i2 - i123 | 0;
+ if ((i4 | 0) <= -1) {
i106 = 364;
break;
}
- i4 = HEAP32[i8 >> 2] | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i118, 21380, 11);
- i4 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__8clENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i4, i118) | 0;
- HEAP32[i120 >> 2] = i4;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i118);
- i2 = HEAP32[i14 >> 2] | 0;
- if ((HEAP32[i13 >> 2] | 0) - i2 >> 2 >>> 0 <= i5 >>> 0) {
- __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEE6resizeEj(i14, i5 + 1 | 0);
- i2 = HEAP32[i14 >> 2] | 0;
+ i5 = HEAP32[i9 >> 2] | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i119, 21968, 11);
+ i5 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__8clENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i5, i119) | 0;
+ HEAP32[i121 >> 2] = i5;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i119);
+ i2 = HEAP32[i13 >> 2] | 0;
+ if ((HEAP32[i14 >> 2] | 0) - i2 >> 2 >>> 0 <= i4 >>> 0) {
+ __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEE6resizeEj(i13, i4 + 1 | 0);
+ i2 = HEAP32[i13 >> 2] | 0;
}
- HEAP32[i2 + (i5 << 2) >> 2] = i4;
+ HEAP32[i2 + (i4 << 2) >> 2] = i5;
}
i2 = HEAP32[i10 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i11 >> 2] | 0)) __ZNSt3__16vectorIN4wasm6Switch4CaseENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i12, i120); else {
- i129 = i120;
+ if ((i2 | 0) == (HEAP32[i11 >> 2] | 0)) __ZNSt3__16vectorIN4wasm6Switch4CaseENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i12, i121); else {
+ i129 = i121;
i131 = HEAP32[i129 + 4 >> 2] | 0;
i132 = i2;
HEAP32[i132 >> 2] = HEAP32[i129 >> 2];
@@ -14215,12 +13077,12 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
if ((i106 | 0) == 355) {
if (!(HEAP32[i15 >> 2] | 0)) {
HEAP32[i134 >> 2] = 0;
- i1 = HEAP32[i8 >> 2] | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i119, 21341, 14);
- i1 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__8clENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i1, i119) | 0;
+ i1 = HEAP32[i9 >> 2] | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i120, 21929, 14);
+ i1 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__8clENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i1, i120) | 0;
HEAP32[i15 >> 2] = i1;
HEAP32[i134 >> 2] = i1;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i119);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i120);
i1 = __ZN10MixedArena5allocIN4wasm3NopEEEPT_v(HEAP32[i16 >> 2] | 0) | 0;
HEAP32[i134 + 4 >> 2] = i1;
i1 = HEAP32[i10 >> 2] | 0;
@@ -14235,24 +13097,24 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
i2 = 0;
} else i2 = 0;
while (1) {
- i1 = HEAP32[i14 >> 2] | 0;
- if (i2 >>> 0 >= (HEAP32[i13 >> 2] | 0) - i1 >> 2 >>> 0) break;
+ i1 = HEAP32[i13 >> 2] | 0;
+ if (i2 >>> 0 >= (HEAP32[i14 >> 2] | 0) - i1 >> 2 >>> 0) break;
i1 = i1 + (i2 << 2) | 0;
if (!(HEAP32[i1 >> 2] | 0)) HEAP32[i1 >> 2] = HEAP32[i15 >> 2];
i2 = i2 + 1 | 0;
}
- i2 = (HEAP32[i18 >> 2] | 0) + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- i4 = i1 + -4 | 0;
+ i1 = (HEAP32[i18 >> 2] | 0) + 4 | 0;
+ i4 = HEAP32[i1 >> 2] | 0;
+ i2 = i4 + -4 | 0;
while (1) {
- if ((i1 | 0) == (i4 | 0)) break;
- i134 = i1 + -4 | 0;
- HEAP32[i2 >> 2] = i134;
- i1 = i134;
+ if ((i4 | 0) == (i2 | 0)) break;
+ i134 = i4 + -4 | 0;
+ HEAP32[i1 >> 2] = i134;
+ i4 = i134;
}
i1 = i17;
break;
- } else if ((i106 | 0) == 360) ___assert_fail(21289, 12455, 1409, 34529); else if ((i106 | 0) == 362) ___assert_fail(21356, 12455, 1411, 34529); else if ((i106 | 0) == 364) ___assert_fail(21369, 12455, 1413, 34529);
+ } else if ((i106 | 0) == 360) ___assert_fail(21877, 13029, 1401, 35993); else if ((i106 | 0) == 362) ___assert_fail(21944, 13029, 1403, 35993); else if ((i106 | 0) == 364) ___assert_fail(21957, 13029, 1405, 35993);
} else {
i1 = HEAP32[i132 + 4 >> 2] | 0;
i133 = __ZN6cashew3RefixEj(i131, 1) | 0;
@@ -14260,17 +13122,18 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_
HEAP32[i134 >> 2] = HEAP32[i4 >> 2];
i1 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i1, i134) | 0;
} while (0);
- i2 = HEAP32[9216] | 0;
- i4 = i2 + -4 | 0;
+ i4 = HEAP32[9583] | 0;
+ i2 = i4 + -4 | 0;
while (1) {
- if ((i2 | 0) == (i4 | 0)) break;
- i134 = i2 + -4 | 0;
- HEAP32[9216] = i134;
- i2 = i134;
+ if ((i4 | 0) == (i2 | 0)) break;
+ i134 = i4 + -4 | 0;
+ HEAP32[9583] = i134;
+ i4 = i134;
}
STACKTOP = i135;
return i1 | 0;
}
+
function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_RT_(i53, i1, i52) {
i53 = i53 | 0;
i1 = i1 | 0;
@@ -14280,57 +13143,57 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
STACKTOP = STACKTOP + 1136 | 0;
i51 = i54 + 1104 | 0;
i5 = i54 + 1080 | 0;
- i45 = i54 + 1056 | 0;
- i9 = i54 + 1032 | 0;
- i15 = i54 + 1008 | 0;
- i29 = i54 + 984 | 0;
- i39 = i54 + 960 | 0;
- i44 = i54 + 936 | 0;
- i46 = i54 + 912 | 0;
- i47 = i54 + 888 | 0;
+ i6 = i54 + 1056 | 0;
+ i17 = i54 + 1032 | 0;
+ i28 = i54 + 1008 | 0;
+ i39 = i54 + 984 | 0;
+ i46 = i54 + 960 | 0;
+ i47 = i54 + 936 | 0;
+ i48 = i54 + 912 | 0;
+ i49 = i54 + 888 | 0;
i50 = i54 + 864 | 0;
- i48 = i54 + 840 | 0;
- i49 = i54 + 816 | 0;
- i6 = i54 + 792 | 0;
- i7 = i54 + 768 | 0;
- i8 = i54 + 744 | 0;
- i10 = i54 + 720 | 0;
- i11 = i54 + 696 | 0;
- i12 = i54 + 672 | 0;
- i13 = i54 + 648 | 0;
- i14 = i54 + 624 | 0;
- i16 = i54 + 600 | 0;
- i17 = i54 + 576 | 0;
- i18 = i54 + 552 | 0;
- i19 = i54 + 528 | 0;
- i20 = i54 + 504 | 0;
- i21 = i54 + 480 | 0;
- i22 = i54 + 456 | 0;
- i23 = i54 + 432 | 0;
- i24 = i54 + 408 | 0;
- i25 = i54 + 384 | 0;
- i26 = i54 + 360 | 0;
- i27 = i54 + 336 | 0;
- i28 = i54 + 312 | 0;
- i30 = i54 + 288 | 0;
- i31 = i54 + 264 | 0;
- i32 = i54 + 240 | 0;
- i33 = i54 + 216 | 0;
- i34 = i54 + 192 | 0;
- i35 = i54 + 168 | 0;
- i36 = i54 + 144 | 0;
- i37 = i54 + 120 | 0;
- i38 = i54 + 96 | 0;
- i40 = i54 + 72 | 0;
- i41 = i54 + 48 | 0;
- i42 = i54 + 24 | 0;
- i43 = i54;
+ i7 = i54 + 840 | 0;
+ i8 = i54 + 816 | 0;
+ i9 = i54 + 792 | 0;
+ i10 = i54 + 768 | 0;
+ i11 = i54 + 744 | 0;
+ i12 = i54 + 720 | 0;
+ i13 = i54 + 696 | 0;
+ i14 = i54 + 672 | 0;
+ i15 = i54 + 648 | 0;
+ i16 = i54 + 624 | 0;
+ i18 = i54 + 600 | 0;
+ i19 = i54 + 576 | 0;
+ i20 = i54 + 552 | 0;
+ i21 = i54 + 528 | 0;
+ i22 = i54 + 504 | 0;
+ i23 = i54 + 480 | 0;
+ i24 = i54 + 456 | 0;
+ i25 = i54 + 432 | 0;
+ i26 = i54 + 408 | 0;
+ i27 = i54 + 384 | 0;
+ i29 = i54 + 360 | 0;
+ i30 = i54 + 336 | 0;
+ i31 = i54 + 312 | 0;
+ i32 = i54 + 288 | 0;
+ i33 = i54 + 264 | 0;
+ i34 = i54 + 240 | 0;
+ i35 = i54 + 216 | 0;
+ i36 = i54 + 192 | 0;
+ i37 = i54 + 168 | 0;
+ i38 = i54 + 144 | 0;
+ i40 = i54 + 120 | 0;
+ i41 = i54 + 96 | 0;
+ i42 = i54 + 72 | 0;
+ i43 = i54 + 48 | 0;
+ i44 = i54 + 24 | 0;
+ i45 = i54;
L1 : do if ((i1 - i53 | 0) > 1) do switch (HEAP8[i53 >> 0] | 0) {
case 97:
switch (HEAP8[i53 + 1 >> 0] | 0) {
case 97:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i5, 34487);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i5, 35951);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
@@ -14364,13 +13227,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
case 110:
case 100:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i45, 34498);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i6, 35962);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i45);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i6);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -14386,24 +13249,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i45);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i6);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i45);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i6);
i1 = i53 + 2 | 0;
break L1;
}
case 78:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i9, 34508);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i17, 35972);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i9);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i17);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -14419,24 +13282,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i9);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i17);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i9);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i17);
i1 = i53 + 2 | 0;
break L1;
}
case 83:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i15, 34519);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i28, 35983);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i15);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i28);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -14452,12 +13315,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i15);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i28);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i15);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i28);
i1 = i53 + 2 | 0;
break L1;
}
@@ -14471,13 +13334,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
switch (HEAP8[i53 + 1 >> 0] | 0) {
case 108:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i29, 34529);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i39, 35993);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i29);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i39);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -14493,24 +13356,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i29);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i39);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i29);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i39);
i1 = i53 + 2 | 0;
break L1;
}
case 109:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i39, 34540);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i46, 36004);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i39);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i46);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -14526,24 +13389,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i39);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i46);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i39);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i46);
i1 = i53 + 2 | 0;
break L1;
}
case 111:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i44, 34550);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i47, 36014);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i44);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i47);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -14559,12 +13422,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i44);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i47);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i44);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i47);
i1 = i53 + 2 | 0;
break L1;
}
@@ -14585,7 +13448,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
i1 = i53;
break L1;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 34560) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 36024) | 0;
HEAP8[i52 + 60 >> 0] = 1;
break L1;
}
@@ -14599,13 +13462,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
switch (HEAP8[i53 + 1 >> 0] | 0) {
case 97:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj18EEERAT__Kc(i46, 34570);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj18EEERAT__Kc(i48, 36034);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i46);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i48);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -14621,24 +13484,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i46);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i48);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i46);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i48);
i1 = i53 + 2 | 0;
break L1;
}
case 101:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i47, 34588);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i49, 36052);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i47);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i49);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -14653,13 +13516,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
} else i1 = 2147483647;
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
- i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i47);
- HEAP32[i50 >> 2] = i49 + 24;
+ i48 = HEAP32[i50 >> 2] | 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i48, i49);
+ HEAP32[i50 >> 2] = i48 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i47);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i49);
i1 = i53 + 2 | 0;
break L1;
}
@@ -14670,7 +13533,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
HEAP32[i50 >> 2] = 17;
HEAP32[i50 + 4 >> 2] = 15;
i2 = i1;
- i3 = 34598;
+ i3 = 36062;
i4 = i2 + 15 | 0;
do {
HEAP8[i2 >> 0] = HEAP8[i3 >> 0] | 0;
@@ -14678,12 +13541,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
i3 = i3 + 1 | 0;
} while ((i2 | 0) < (i4 | 0));
HEAP8[i1 + 15 >> 0] = 0;
- i2 = i50 + 12 | 0;
- i1 = 0;
+ i1 = i50 + 12 | 0;
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
@@ -14717,13 +13580,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
}
case 118:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i48, 34614);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i7, 36078);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i48);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i7);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -14739,24 +13602,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i48);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i7);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i48);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7);
i1 = i53 + 2 | 0;
break L1;
}
case 86:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i49, 34624);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i8, 36088);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i49);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i8);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -14771,13 +13634,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
} else i1 = 2147483647;
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
- i48 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i48, i49);
- HEAP32[i50 >> 2] = i48 + 24;
+ i49 = HEAP32[i50 >> 2] | 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i8);
+ HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i49);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8);
i1 = i53 + 2 | 0;
break L1;
}
@@ -14791,13 +13654,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
switch (HEAP8[i53 + 1 >> 0] | 0) {
case 111:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i6, 34635);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i9, 36099);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i6);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i9);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -14813,24 +13676,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i6);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i9);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i6);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i9);
i1 = i53 + 2 | 0;
break L1;
}
case 79:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i7, 34645);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i10, 36109);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i7);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i10);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -14846,24 +13709,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i7);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i10);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i10);
i1 = i53 + 2 | 0;
break L1;
}
case 113:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i8, 34656);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i11, 36120);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i8);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i11);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -14879,12 +13742,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i8);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i11);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i11);
i1 = i53 + 2 | 0;
break L1;
}
@@ -14898,13 +13761,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
switch (HEAP8[i53 + 1 >> 0] | 0) {
case 101:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i10, 34667);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i12, 36131);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i10);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i12);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -14920,24 +13783,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i10);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i12);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i10);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i12);
i1 = i53 + 2 | 0;
break L1;
}
case 116:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i11, 34678);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i13, 36142);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i11);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i13);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -14953,12 +13816,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i11);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i13);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i11);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i13);
i1 = i53 + 2 | 0;
break L1;
}
@@ -14974,13 +13837,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
i1 = i53;
break L1;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i12, 34688);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i14, 36152);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i12);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i14);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -14996,12 +13859,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i12);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i14);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i12);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i14);
i1 = i53 + 2 | 0;
break L1;
}
@@ -15009,13 +13872,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
switch (HEAP8[i53 + 1 >> 0] | 0) {
case 101:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i13, 34699);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i15, 36163);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i13);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i15);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15031,12 +13894,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i13);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i15);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i13);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i15);
i1 = i53 + 2 | 0;
break L1;
}
@@ -15053,18 +13916,18 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
i1 = i53;
break L1;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 34710) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 36174) | 0;
break L1;
}
case 115:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i14, 34722);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i16, 36186);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i14);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i16);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15080,24 +13943,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i14);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i16);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i14);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i16);
i1 = i53 + 2 | 0;
break L1;
}
case 83:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj12EEERAT__Kc(i16, 34733);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj12EEERAT__Kc(i18, 36197);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i16);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i18);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15113,24 +13976,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i16);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i18);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i16);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i18);
i1 = i53 + 2 | 0;
break L1;
}
case 116:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i17, 34745);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i19, 36209);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i17);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i19);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15146,12 +14009,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i17);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i19);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i17);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i19);
i1 = i53 + 2 | 0;
break L1;
}
@@ -15165,13 +14028,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
switch (HEAP8[i53 + 1 >> 0] | 0) {
case 105:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i18, 34755);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i20, 36219);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i18);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i20);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15187,24 +14050,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i18);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i20);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i18);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i20);
i1 = i53 + 2 | 0;
break L1;
}
case 73:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i19, 34765);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i21, 36229);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i19);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i21);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15220,24 +14083,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i19);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i21);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i19);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i21);
i1 = i53 + 2 | 0;
break L1;
}
case 108:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i20, 34588);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i22, 36052);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i20);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i22);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15253,24 +14116,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i20);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i22);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i20);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i22);
i1 = i53 + 2 | 0;
break L1;
}
case 76:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i21, 34776);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i23, 36240);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i21);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i23);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15286,24 +14149,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i21);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i23);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i21);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i23);
i1 = i53 + 2 | 0;
break L1;
}
case 109:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i22, 34787);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i24, 36251);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i22);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i24);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15319,12 +14182,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i22);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i24);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i22);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i24);
i1 = i53 + 2 | 0;
break L1;
}
@@ -15338,13 +14201,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
switch (HEAP8[i53 + 1 >> 0] | 0) {
case 97:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj15EEERAT__Kc(i23, 34798);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj15EEERAT__Kc(i25, 36262);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i23);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i25);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15360,24 +14223,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i23);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i25);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i23);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i25);
i1 = i53 + 2 | 0;
break L1;
}
case 101:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i24, 34813);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i26, 36277);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i24);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i26);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15393,24 +14256,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i24);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i26);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i24);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i26);
i1 = i53 + 2 | 0;
break L1;
}
case 103:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i25, 34755);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i27, 36219);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i25);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i27);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15426,24 +14289,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i25);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i27);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i25);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i27);
i1 = i53 + 2 | 0;
break L1;
}
case 116:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i26, 34824);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i29, 36288);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i26);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i29);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15459,24 +14322,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i26);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i29);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i26);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i29);
i1 = i53 + 2 | 0;
break L1;
}
case 119:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj13EEERAT__Kc(i27, 34834);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj13EEERAT__Kc(i30, 36298);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i27);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i30);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15492,12 +14355,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i27);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i30);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i27);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i30);
i1 = i53 + 2 | 0;
break L1;
}
@@ -15511,13 +14374,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
switch (HEAP8[i53 + 1 >> 0] | 0) {
case 111:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i28, 34847);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i31, 36311);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i28);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i31);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15533,24 +14396,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i28);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i31);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i28);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i31);
i1 = i53 + 2 | 0;
break L1;
}
case 114:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i30, 34858);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i32, 36322);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i30);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i32);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15566,24 +14429,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i30);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i32);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i30);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i32);
i1 = i53 + 2 | 0;
break L1;
}
case 82:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i31, 34868);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i33, 36332);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i31);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i33);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15599,12 +14462,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i31);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i33);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i31);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i33);
i1 = i53 + 2 | 0;
break L1;
}
@@ -15618,13 +14481,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
switch (HEAP8[i53 + 1 >> 0] | 0) {
case 109:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj12EEERAT__Kc(i32, 34879);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj12EEERAT__Kc(i34, 36343);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i32);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i34);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15640,24 +14503,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i32);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i34);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i32);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i34);
i1 = i53 + 2 | 0;
break L1;
}
case 108:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i33, 34891);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i35, 36355);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i33);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i35);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15673,24 +14536,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i33);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i35);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i33);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i35);
i1 = i53 + 2 | 0;
break L1;
}
case 76:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i34, 34901);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i36, 36365);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i34);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i36);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15706,24 +14569,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i34);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i36);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i34);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i36);
i1 = i53 + 2 | 0;
break L1;
}
case 112:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i35, 34912);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i37, 36376);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i35);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i37);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15739,24 +14602,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i35);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i37);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i35);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i37);
i1 = i53 + 2 | 0;
break L1;
}
case 115:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i36, 34891);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i38, 36355);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i36);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i38);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15772,24 +14635,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i36);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i38);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i36);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i38);
i1 = i53 + 2 | 0;
break L1;
}
case 116:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i37, 34923);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i40, 36387);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i37);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i40);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15805,12 +14668,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i37);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i40);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i37);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i40);
i1 = i53 + 2 | 0;
break L1;
}
@@ -15826,13 +14689,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
i1 = i53;
break L1;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i38, 34934);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i41, 36398);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i38);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i41);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15848,12 +14711,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i38);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i41);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i38);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i41);
i1 = i53 + 2 | 0;
break L1;
}
@@ -15861,13 +14724,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
switch (HEAP8[i53 + 1 >> 0] | 0) {
case 109:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i40, 34944);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i42, 36408);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i40);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i42);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15883,24 +14746,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i40);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i42);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i40);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i42);
i1 = i53 + 2 | 0;
break L1;
}
case 77:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i41, 34954);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i43, 36418);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i41);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i43);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15916,24 +14779,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i41);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i43);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i41);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i43);
i1 = i53 + 2 | 0;
break L1;
}
case 115:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i42, 34965);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i44, 36429);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i42);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i44);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15949,24 +14812,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i42);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i44);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i42);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i44);
i1 = i53 + 2 | 0;
break L1;
}
case 83:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj12EEERAT__Kc(i43, 34976);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj12EEERAT__Kc(i45, 36440);
i1 = i52 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i50 = HEAP32[i52 + 8 >> 2] | 0;
i3 = i50;
if (i2 >>> 0 < i50 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i43);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i45);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i52 >> 2] | 0;
@@ -15982,12 +14845,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i51, i1, i4, i52 + 12 | 0);
i50 = i51 + 8 | 0;
i49 = HEAP32[i50 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i43);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i49, i45);
HEAP32[i50 >> 2] = i49 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i52, i51);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i43);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i45);
i1 = i53 + 2 | 0;
break L1;
}
@@ -16014,7 +14877,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
i1 = i53;
break L1;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 34560) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 36024) | 0;
break L1;
}
default:
@@ -16026,7 +14889,6 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_
STACKTOP = i54;
return i1 | 0;
}
-
function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_RT_(i1, i3, i36) {
i1 = i1 | 0;
i3 = i3 | 0;
@@ -16037,25 +14899,25 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
i35 = i37 + 696 | 0;
i6 = i37 + 672 | 0;
i32 = i37 + 648 | 0;
- i22 = i37 + 624 | 0;
- i10 = i37 + 600 | 0;
- i11 = i37 + 576 | 0;
- i12 = i37 + 552 | 0;
- i13 = i37 + 528 | 0;
- i14 = i37 + 504 | 0;
- i15 = i37 + 480 | 0;
- i16 = i37 + 456 | 0;
- i17 = i37 + 432 | 0;
- i18 = i37 + 408 | 0;
- i19 = i37 + 384 | 0;
+ i15 = i37 + 624 | 0;
+ i17 = i37 + 600 | 0;
+ i18 = i37 + 576 | 0;
+ i19 = i37 + 552 | 0;
+ i20 = i37 + 528 | 0;
+ i21 = i37 + 504 | 0;
+ i22 = i37 + 480 | 0;
+ i23 = i37 + 456 | 0;
+ i7 = i37 + 432 | 0;
+ i8 = i37 + 408 | 0;
+ i9 = i37 + 384 | 0;
i34 = i37 + 360 | 0;
- i20 = i37 + 336 | 0;
- i21 = i37 + 312 | 0;
- i23 = i37 + 288 | 0;
+ i10 = i37 + 336 | 0;
+ i11 = i37 + 312 | 0;
+ i12 = i37 + 288 | 0;
i33 = i37 + 264 | 0;
- i7 = i37 + 240 | 0;
- i8 = i37 + 216 | 0;
- i9 = i37 + 192 | 0;
+ i13 = i37 + 240 | 0;
+ i14 = i37 + 216 | 0;
+ i16 = i37 + 192 | 0;
i24 = i37 + 168 | 0;
i25 = i37 + 144 | 0;
i26 = i37 + 120 | 0;
@@ -16067,7 +14929,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
L1 : do if ((i1 | 0) != (i3 | 0)) do switch (HEAP8[i1 >> 0] | 0) {
case 118:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj5EEERAT__Kc(i6, 34033);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj5EEERAT__Kc(i6, 35497);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
@@ -16101,21 +14963,21 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
case 119:
{
HEAP8[i32 >> 0] = 14;
- i3 = i32 + 1 | 0;
- HEAP8[i3 >> 0] = HEAP8[34038] | 0;
- HEAP8[i3 + 1 >> 0] = HEAP8[34039] | 0;
- HEAP8[i3 + 2 >> 0] = HEAP8[34040] | 0;
- HEAP8[i3 + 3 >> 0] = HEAP8[34041] | 0;
- HEAP8[i3 + 4 >> 0] = HEAP8[34042] | 0;
- HEAP8[i3 + 5 >> 0] = HEAP8[34043] | 0;
- HEAP8[i3 + 6 >> 0] = HEAP8[34044] | 0;
+ i2 = i32 + 1 | 0;
+ HEAP8[i2 >> 0] = HEAP8[35502] | 0;
+ HEAP8[i2 + 1 >> 0] = HEAP8[35503] | 0;
+ HEAP8[i2 + 2 >> 0] = HEAP8[35504] | 0;
+ HEAP8[i2 + 3 >> 0] = HEAP8[35505] | 0;
+ HEAP8[i2 + 4 >> 0] = HEAP8[35506] | 0;
+ HEAP8[i2 + 5 >> 0] = HEAP8[35507] | 0;
+ HEAP8[i2 + 6 >> 0] = HEAP8[35508] | 0;
HEAP8[i32 + 8 >> 0] = 0;
- i3 = i32 + 12 | 0;
- i2 = 0;
+ i2 = i32 + 12 | 0;
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
@@ -16149,13 +15011,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
}
case 98:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj5EEERAT__Kc(i22, 34046);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj5EEERAT__Kc(i15, 35510);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
i4 = i34;
if (i3 >>> 0 < i34 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i22);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i15);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
i2 = HEAP32[i36 >> 2] | 0;
@@ -16171,24 +15033,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i35, i2, i5, i36 + 12 | 0);
i34 = i35 + 8 | 0;
i33 = HEAP32[i34 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i22);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i15);
HEAP32[i34 >> 2] = i33 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i36, i35);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i35);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i22);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i15);
i1 = i1 + 1 | 0;
break L1;
}
case 99:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj5EEERAT__Kc(i10, 34051);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj5EEERAT__Kc(i17, 35515);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
i4 = i34;
if (i3 >>> 0 < i34 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i10);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i17);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
i2 = HEAP32[i36 >> 2] | 0;
@@ -16204,24 +15066,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i35, i2, i5, i36 + 12 | 0);
i34 = i35 + 8 | 0;
i33 = HEAP32[i34 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i10);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i17);
HEAP32[i34 >> 2] = i33 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i36, i35);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i35);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i10);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i17);
i1 = i1 + 1 | 0;
break L1;
}
case 97:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj12EEERAT__Kc(i11, 34056);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj12EEERAT__Kc(i18, 35520);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
i4 = i34;
if (i3 >>> 0 < i34 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i11);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i18);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
i2 = HEAP32[i36 >> 2] | 0;
@@ -16237,24 +15099,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i35, i2, i5, i36 + 12 | 0);
i34 = i35 + 8 | 0;
i33 = HEAP32[i34 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i11);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i18);
HEAP32[i34 >> 2] = i33 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i36, i35);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i35);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i11);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i18);
i1 = i1 + 1 | 0;
break L1;
}
case 104:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj14EEERAT__Kc(i12, 34068);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj14EEERAT__Kc(i19, 35532);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
i4 = i34;
if (i3 >>> 0 < i34 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i12);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i19);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
i2 = HEAP32[i36 >> 2] | 0;
@@ -16270,24 +15132,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i35, i2, i5, i36 + 12 | 0);
i34 = i35 + 8 | 0;
i33 = HEAP32[i34 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i12);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i19);
HEAP32[i34 >> 2] = i33 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i36, i35);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i35);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i12);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i19);
i1 = i1 + 1 | 0;
break L1;
}
case 115:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj6EEERAT__Kc(i13, 34082);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj6EEERAT__Kc(i20, 35546);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
i4 = i34;
if (i3 >>> 0 < i34 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i13);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i20);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
i2 = HEAP32[i36 >> 2] | 0;
@@ -16303,24 +15165,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i35, i2, i5, i36 + 12 | 0);
i34 = i35 + 8 | 0;
i33 = HEAP32[i34 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i13);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i20);
HEAP32[i34 >> 2] = i33 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i36, i35);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i35);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i13);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i20);
i1 = i1 + 1 | 0;
break L1;
}
case 116:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj15EEERAT__Kc(i14, 34088);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj15EEERAT__Kc(i21, 35552);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
i4 = i34;
if (i3 >>> 0 < i34 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i14);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i21);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
i2 = HEAP32[i36 >> 2] | 0;
@@ -16336,24 +15198,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i35, i2, i5, i36 + 12 | 0);
i34 = i35 + 8 | 0;
i33 = HEAP32[i34 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i14);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i21);
HEAP32[i34 >> 2] = i33 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i36, i35);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i35);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i14);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i21);
i1 = i1 + 1 | 0;
break L1;
}
case 105:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj4EEERAT__Kc(i15, 34103);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj4EEERAT__Kc(i22, 35567);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
i4 = i34;
if (i3 >>> 0 < i34 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i15);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i22);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
i2 = HEAP32[i36 >> 2] | 0;
@@ -16369,24 +15231,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i35, i2, i5, i36 + 12 | 0);
i34 = i35 + 8 | 0;
i33 = HEAP32[i34 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i15);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i22);
HEAP32[i34 >> 2] = i33 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i36, i35);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i35);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i15);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i22);
i1 = i1 + 1 | 0;
break L1;
}
case 106:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj13EEERAT__Kc(i16, 34107);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj13EEERAT__Kc(i23, 35571);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
i4 = i34;
if (i3 >>> 0 < i34 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i16);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i23);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
i2 = HEAP32[i36 >> 2] | 0;
@@ -16402,24 +15264,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i35, i2, i5, i36 + 12 | 0);
i34 = i35 + 8 | 0;
i33 = HEAP32[i34 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i16);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i23);
HEAP32[i34 >> 2] = i33 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i36, i35);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i35);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i16);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i23);
i1 = i1 + 1 | 0;
break L1;
}
case 108:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj5EEERAT__Kc(i17, 34120);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj5EEERAT__Kc(i7, 35584);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
i4 = i34;
if (i3 >>> 0 < i34 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i17);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
i2 = HEAP32[i36 >> 2] | 0;
@@ -16435,24 +15297,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i35, i2, i5, i36 + 12 | 0);
i34 = i35 + 8 | 0;
i33 = HEAP32[i34 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i17);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i7);
HEAP32[i34 >> 2] = i33 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i36, i35);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i35);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i17);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7);
i1 = i1 + 1 | 0;
break L1;
}
case 109:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj14EEERAT__Kc(i18, 34125);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj14EEERAT__Kc(i8, 35589);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
i4 = i34;
if (i3 >>> 0 < i34 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i18);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
i2 = HEAP32[i36 >> 2] | 0;
@@ -16468,24 +15330,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i35, i2, i5, i36 + 12 | 0);
i34 = i35 + 8 | 0;
i33 = HEAP32[i34 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i18);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i8);
HEAP32[i34 >> 2] = i33 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i36, i35);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i35);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i18);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8);
i1 = i1 + 1 | 0;
break L1;
}
case 120:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i19, 34139);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i9, 35603);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
i4 = i34;
if (i3 >>> 0 < i34 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i19);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i9);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
i2 = HEAP32[i36 >> 2] | 0;
@@ -16501,12 +15363,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i35, i2, i5, i36 + 12 | 0);
i34 = i35 + 8 | 0;
i33 = HEAP32[i34 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i19);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i9);
HEAP32[i34 >> 2] = i33 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i36, i35);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i35);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i19);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i9);
i1 = i1 + 1 | 0;
break L1;
}
@@ -16517,7 +15379,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
HEAP32[i34 >> 2] = 33;
HEAP32[i34 + 4 >> 2] = 18;
i3 = i2;
- i4 = 34149;
+ i4 = 35613;
i5 = i3 + 18 | 0;
do {
HEAP8[i3 >> 0] = HEAP8[i4 >> 0] | 0;
@@ -16525,12 +15387,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
i4 = i4 + 1 | 0;
} while ((i3 | 0) < (i5 | 0));
HEAP8[i2 + 18 >> 0] = 0;
- i3 = i34 + 12 | 0;
- i2 = 0;
+ i2 = i34 + 12 | 0;
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
@@ -16564,13 +15426,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
}
case 110:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj9EEERAT__Kc(i20, 34168);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj9EEERAT__Kc(i10, 35632);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
i4 = i34;
if (i3 >>> 0 < i34 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i20);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i10);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
i2 = HEAP32[i36 >> 2] | 0;
@@ -16586,24 +15448,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i35, i2, i5, i36 + 12 | 0);
i34 = i35 + 8 | 0;
i33 = HEAP32[i34 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i20);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i10);
HEAP32[i34 >> 2] = i33 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i36, i35);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i35);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i20);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i10);
i1 = i1 + 1 | 0;
break L1;
}
case 111:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj18EEERAT__Kc(i21, 34177);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj18EEERAT__Kc(i11, 35641);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
i4 = i34;
if (i3 >>> 0 < i34 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i21);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i11);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
i2 = HEAP32[i36 >> 2] | 0;
@@ -16619,24 +15481,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i35, i2, i5, i36 + 12 | 0);
i34 = i35 + 8 | 0;
i33 = HEAP32[i34 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i21);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i11);
HEAP32[i34 >> 2] = i33 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i36, i35);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i35);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i21);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i11);
i1 = i1 + 1 | 0;
break L1;
}
case 102:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj6EEERAT__Kc(i23, 34195);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj6EEERAT__Kc(i12, 35659);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
i4 = i34;
if (i3 >>> 0 < i34 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i23);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i12);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
i2 = HEAP32[i36 >> 2] | 0;
@@ -16652,32 +15514,32 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i35, i2, i5, i36 + 12 | 0);
i34 = i35 + 8 | 0;
i33 = HEAP32[i34 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i23);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i12);
HEAP32[i34 >> 2] = i33 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i36, i35);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i35);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i23);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i12);
i1 = i1 + 1 | 0;
break L1;
}
case 100:
{
HEAP8[i33 >> 0] = 12;
- i3 = i33 + 1 | 0;
- HEAP8[i3 >> 0] = HEAP8[34201] | 0;
- HEAP8[i3 + 1 >> 0] = HEAP8[34202] | 0;
- HEAP8[i3 + 2 >> 0] = HEAP8[34203] | 0;
- HEAP8[i3 + 3 >> 0] = HEAP8[34204] | 0;
- HEAP8[i3 + 4 >> 0] = HEAP8[34205] | 0;
- HEAP8[i3 + 5 >> 0] = HEAP8[34206] | 0;
+ i2 = i33 + 1 | 0;
+ HEAP8[i2 >> 0] = HEAP8[35665] | 0;
+ HEAP8[i2 + 1 >> 0] = HEAP8[35666] | 0;
+ HEAP8[i2 + 2 >> 0] = HEAP8[35667] | 0;
+ HEAP8[i2 + 3 >> 0] = HEAP8[35668] | 0;
+ HEAP8[i2 + 4 >> 0] = HEAP8[35669] | 0;
+ HEAP8[i2 + 5 >> 0] = HEAP8[35670] | 0;
HEAP8[i33 + 7 >> 0] = 0;
- i3 = i33 + 12 | 0;
- i2 = 0;
+ i2 = i33 + 12 | 0;
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
@@ -16711,13 +15573,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
}
case 101:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj12EEERAT__Kc(i7, 34208);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj12EEERAT__Kc(i13, 35672);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
i4 = i34;
if (i3 >>> 0 < i34 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i13);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
i2 = HEAP32[i36 >> 2] | 0;
@@ -16733,24 +15595,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i35, i2, i5, i36 + 12 | 0);
i34 = i35 + 8 | 0;
i33 = HEAP32[i34 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i7);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i13);
HEAP32[i34 >> 2] = i33 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i36, i35);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i35);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i13);
i1 = i1 + 1 | 0;
break L1;
}
case 103:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i8, 34220);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i14, 35684);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
i4 = i34;
if (i3 >>> 0 < i34 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i14);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
i2 = HEAP32[i36 >> 2] | 0;
@@ -16766,24 +15628,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i35, i2, i5, i36 + 12 | 0);
i34 = i35 + 8 | 0;
i33 = HEAP32[i34 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i8);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i14);
HEAP32[i34 >> 2] = i33 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i36, i35);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i35);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i14);
i1 = i1 + 1 | 0;
break L1;
}
case 122:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj4EEERAT__Kc(i9, 34231);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj4EEERAT__Kc(i16, 35695);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
i4 = i34;
if (i3 >>> 0 < i34 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i9);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i16);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
i2 = HEAP32[i36 >> 2] | 0;
@@ -16799,12 +15661,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i35, i2, i5, i36 + 12 | 0);
i34 = i35 + 8 | 0;
i33 = HEAP32[i34 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i9);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i33, i16);
HEAP32[i34 >> 2] = i33 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i36, i35);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i35);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i9);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i16);
i1 = i1 + 1 | 0;
break L1;
}
@@ -16822,7 +15684,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
switch (HEAP8[i2 >> 0] | 0) {
case 100:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i24, 34268);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i24, 35732);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
@@ -16855,7 +15717,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
}
case 101:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i25, 34278);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i25, 35742);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
@@ -16888,7 +15750,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
}
case 102:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i26, 34289);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i26, 35753);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
@@ -16921,7 +15783,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
}
case 104:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i27, 34299);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i27, 35763);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
@@ -16954,7 +15816,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
}
case 105:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj9EEERAT__Kc(i28, 34309);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj9EEERAT__Kc(i28, 35773);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
@@ -16987,7 +15849,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
}
case 115:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj9EEERAT__Kc(i29, 34318);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj9EEERAT__Kc(i29, 35782);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
@@ -17020,7 +15882,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
}
case 97:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj5EEERAT__Kc(i30, 34327);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj5EEERAT__Kc(i30, 35791);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
@@ -17053,7 +15915,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
}
case 110:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj15EEERAT__Kc(i31, 34332);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj15EEERAT__Kc(i31, 35796);
i2 = i36 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i36 + 8 >> 2] | 0;
@@ -17094,636 +15956,635 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_R
STACKTOP = i37;
return i1 | 0;
}
-
-function __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i71, i1, i68) {
+function __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i71, i67, i68) {
i71 = i71 | 0;
- i1 = i1 | 0;
+ i67 = i67 | 0;
i68 = i68 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0, i37 = 0, i38 = 0, i39 = 0, i40 = 0, i41 = 0, i42 = 0, i43 = 0, i44 = 0, i45 = 0, i46 = 0, i47 = 0, i48 = 0, i49 = 0, i50 = 0, i51 = 0, i52 = 0, i53 = 0, i54 = 0, i55 = 0, i56 = 0, i57 = 0, i58 = 0, i59 = 0, i60 = 0, i61 = 0, i62 = 0, i63 = 0, i64 = 0, i65 = 0, i66 = 0, i67 = 0, i69 = 0, i70 = 0, i72 = 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0, i37 = 0, i38 = 0, i39 = 0, i40 = 0, i41 = 0, i42 = 0, i43 = 0, i44 = 0, i45 = 0, i46 = 0, i47 = 0, i48 = 0, i49 = 0, i50 = 0, i51 = 0, i52 = 0, i53 = 0, i54 = 0, i55 = 0, i56 = 0, i57 = 0, i58 = 0, i59 = 0, i60 = 0, i61 = 0, i62 = 0, i63 = 0, i64 = 0, i65 = 0, i66 = 0, i69 = 0, i70 = 0, i72 = 0;
i72 = STACKTOP;
STACKTOP = STACKTOP + 208 | 0;
i70 = i72 + 188 | 0;
- i67 = i72 + 184 | 0;
- i51 = i72 + 172 | 0;
- i52 = i72 + 160 | 0;
- i64 = i72 + 144 | 0;
- i65 = i72 + 140 | 0;
- i53 = i72 + 128 | 0;
- i54 = i72 + 112 | 0;
- i55 = i72 + 108 | 0;
- i56 = i72 + 96 | 0;
- i57 = i72 + 64 | 0;
- i58 = i72 + 56 | 0;
- i59 = i72 + 40 | 0;
- i60 = i72 + 36 | 0;
- i61 = i72 + 24 | 0;
- i62 = i72 + 8 | 0;
- i63 = i72;
- i9 = i72 + 80 | 0;
- i6 = i72 + 60 | 0;
- i8 = i1;
- L1 : do if ((i8 - i71 | 0) > 1) {
+ i66 = i72 + 184 | 0;
+ i64 = i72 + 172 | 0;
+ i50 = i72 + 160 | 0;
+ i51 = i72 + 144 | 0;
+ i56 = i72 + 140 | 0;
+ i57 = i72 + 128 | 0;
+ i58 = i72 + 112 | 0;
+ i59 = i72 + 108 | 0;
+ i60 = i72 + 96 | 0;
+ i61 = i72 + 64 | 0;
+ i62 = i72 + 56 | 0;
+ i63 = i72 + 40 | 0;
+ i52 = i72 + 36 | 0;
+ i53 = i72 + 24 | 0;
+ i54 = i72 + 8 | 0;
+ i55 = i72;
+ i8 = i72 + 80 | 0;
+ i5 = i72 + 60 | 0;
+ i7 = i67;
+ L1 : do if ((i7 - i71 | 0) > 1) {
i69 = (HEAP8[i71 >> 0] | 0) == 76 ? i71 + 1 | 0 : i71;
- i3 = HEAP8[i69 >> 0] | 0;
- switch (i3 << 24 >> 24 | 0) {
+ i1 = HEAP8[i69 >> 0] | 0;
+ switch (i1 << 24 >> 24 | 0) {
case 78:
{
- L46 : do if ((i69 | 0) != (i1 | 0)) if (i3 << 24 >> 24 == 78) {
- i3 = __ZN10__cxxabiv112_GLOBAL__N_119parse_cv_qualifiersEPKcS2_Rj(i69 + 1 | 0, i1, i67) | 0;
- L49 : do if ((i3 | 0) != (i1 | 0)) {
- i4 = i68 + 52 | 0;
- HEAP32[i4 >> 2] = 0;
- switch (HEAP8[i3 >> 0] | 0) {
+ L46 : do if ((i69 | 0) != (i67 | 0)) if (i1 << 24 >> 24 == 78) {
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_119parse_cv_qualifiersEPKcS2_Rj(i69 + 1 | 0, i67, i66) | 0;
+ L49 : do if ((i1 | 0) != (i67 | 0)) {
+ i3 = i68 + 52 | 0;
+ HEAP32[i3 >> 2] = 0;
+ switch (HEAP8[i1 >> 0] | 0) {
case 82:
{
- HEAP32[i4 >> 2] = 1;
- i3 = i3 + 1 | 0;
+ HEAP32[i3 >> 2] = 1;
+ i1 = i1 + 1 | 0;
break;
}
case 79:
{
- HEAP32[i4 >> 2] = 2;
- i3 = i3 + 1 | 0;
+ HEAP32[i3 >> 2] = 2;
+ i1 = i1 + 1 | 0;
break;
}
default:
{}
}
- i50 = i68 + 4 | 0;
- i5 = HEAP32[i50 >> 2] | 0;
- i49 = HEAP32[i68 + 8 >> 2] | 0;
- i4 = i49;
- if (i5 >>> 0 < i49 >>> 0) {
- HEAP32[i5 >> 2] = 0;
- HEAP32[i5 + 4 >> 2] = 0;
- HEAP32[i5 + 8 >> 2] = 0;
- HEAP32[i5 + 12 >> 2] = 0;
- HEAP32[i5 + 16 >> 2] = 0;
- HEAP32[i5 + 20 >> 2] = 0;
- i4 = 0;
+ i49 = i68 + 4 | 0;
+ i4 = HEAP32[i49 >> 2] | 0;
+ i48 = HEAP32[i68 + 8 >> 2] | 0;
+ i3 = i48;
+ if (i4 >>> 0 < i48 >>> 0) {
+ HEAP32[i4 >> 2] = 0;
+ HEAP32[i4 + 4 >> 2] = 0;
+ HEAP32[i4 + 8 >> 2] = 0;
+ HEAP32[i4 + 12 >> 2] = 0;
+ HEAP32[i4 + 16 >> 2] = 0;
+ HEAP32[i4 + 20 >> 2] = 0;
+ i3 = 0;
while (1) {
- if ((i4 | 0) == 3) break;
- HEAP32[i5 + (i4 << 2) >> 2] = 0;
- i4 = i4 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i4 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- i5 = i5 + 12 | 0;
+ i3 = i4 + 12 | 0;
i4 = 0;
while (1) {
if ((i4 | 0) == 3) break;
- HEAP32[i5 + (i4 << 2) >> 2] = 0;
+ HEAP32[i3 + (i4 << 2) >> 2] = 0;
i4 = i4 + 1 | 0;
}
- HEAP32[i50 >> 2] = (HEAP32[i50 >> 2] | 0) + 24;
+ HEAP32[i49 >> 2] = (HEAP32[i49 >> 2] | 0) + 24;
} else {
- i6 = HEAP32[i68 >> 2] | 0;
- i49 = i5 - i6 | 0;
- i7 = (i49 | 0) / 24 | 0;
- i5 = i7 + 1 | 0;
- if ((i49 | 0) < -24) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i68);
- i4 = (i4 - i6 | 0) / 24 | 0;
- if (i4 >>> 0 < 1073741823) {
- i4 = i4 << 1;
- i4 = i4 >>> 0 < i5 >>> 0 ? i5 : i4;
- } else i4 = 2147483647;
- __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i70, i4, i7, i68 + 12 | 0);
- i7 = i70 + 8 | 0;
- i6 = HEAP32[i7 >> 2] | 0;
+ i5 = HEAP32[i68 >> 2] | 0;
+ i48 = i4 - i5 | 0;
+ i6 = (i48 | 0) / 24 | 0;
+ i4 = i6 + 1 | 0;
+ if ((i48 | 0) < -24) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i68);
+ i3 = (i3 - i5 | 0) / 24 | 0;
+ if (i3 >>> 0 < 1073741823) {
+ i3 = i3 << 1;
+ i3 = i3 >>> 0 < i4 >>> 0 ? i4 : i3;
+ } else i3 = 2147483647;
+ __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i70, i3, i6, i68 + 12 | 0);
+ i5 = i70 + 8 | 0;
+ i6 = HEAP32[i5 >> 2] | 0;
HEAP32[i6 >> 2] = 0;
HEAP32[i6 + 4 >> 2] = 0;
HEAP32[i6 + 8 >> 2] = 0;
HEAP32[i6 + 12 >> 2] = 0;
HEAP32[i6 + 16 >> 2] = 0;
HEAP32[i6 + 20 >> 2] = 0;
- i4 = 0;
+ i3 = 0;
while (1) {
- if ((i4 | 0) == 3) break;
- HEAP32[i6 + (i4 << 2) >> 2] = 0;
- i4 = i4 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i6 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- i5 = i6 + 12 | 0;
+ i3 = i6 + 12 | 0;
i4 = 0;
while (1) {
if ((i4 | 0) == 3) break;
- HEAP32[i5 + (i4 << 2) >> 2] = 0;
+ HEAP32[i3 + (i4 << 2) >> 2] = 0;
i4 = i4 + 1 | 0;
}
- HEAP32[i7 >> 2] = i6 + 24;
+ HEAP32[i5 >> 2] = i6 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i68, i70);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i70);
}
- if (((i8 - i3 | 0) > 1 ? (HEAP8[i3 >> 0] | 0) == 83 : 0) ? (HEAP8[i3 + 1 >> 0] | 0) == 116 : 0) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6assignEPKcj((HEAP32[i50 >> 2] | 0) + -24 | 0, 35645, 3);
- i3 = i3 + 2 | 0;
+ if (((i7 - i1 | 0) > 1 ? (HEAP8[i1 >> 0] | 0) == 83 : 0) ? (HEAP8[i1 + 1 >> 0] | 0) == 116 : 0) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6assignEPKcj((HEAP32[i49 >> 2] | 0) + -24 | 0, 37109, 3);
+ i1 = i1 + 2 | 0;
}
- if ((i3 | 0) == (i1 | 0)) {
- i1 = HEAP32[i50 >> 2] | 0;
- i2 = i1 + -24 | 0;
+ if ((i1 | 0) == (i67 | 0)) {
+ i2 = HEAP32[i49 >> 2] | 0;
+ i1 = i2 + -24 | 0;
while (1) {
- if ((i1 | 0) == (i2 | 0)) break L49;
- i70 = i1 + -24 | 0;
- HEAP32[i50 >> 2] = i70;
+ if ((i2 | 0) == (i1 | 0)) break L49;
+ i70 = i2 + -24 | 0;
+ HEAP32[i49 >> 2] = i70;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i70);
- i1 = HEAP32[i50 >> 2] | 0;
+ i2 = HEAP32[i49 >> 2] | 0;
}
}
+ i29 = i64 + 8 | 0;
+ i30 = i64 + 1 | 0;
+ i31 = i64 + 4 | 0;
+ i32 = i68 + 12 | 0;
+ i33 = i68 + 16 | 0;
+ i48 = i68 + 20 | 0;
+ i34 = i68 + 24 | 0;
+ i35 = i63 + 12 | 0;
+ i36 = i63 + 4 | 0;
+ i37 = i63 + 8 | 0;
+ i38 = i68 + 28 | 0;
+ i39 = i70 + 8 | 0;
+ i40 = i54 + 12 | 0;
+ i41 = i54 + 4 | 0;
+ i42 = i54 + 8 | 0;
+ i43 = i70 + 8 | 0;
+ i44 = i53 + 8 | 0;
+ i45 = i53 + 1 | 0;
+ i46 = i53 + 4 | 0;
+ i47 = i50 + 8 | 0;
+ i9 = i50 + 1 | 0;
+ i10 = i50 + 4 | 0;
+ i11 = i51 + 12 | 0;
+ i12 = i51 + 4 | 0;
i13 = i51 + 8 | 0;
- i45 = i51 + 1 | 0;
- i40 = i51 + 4 | 0;
- i47 = i68 + 12 | 0;
- i48 = i68 + 16 | 0;
- i49 = i68 + 20 | 0;
- i25 = i68 + 24 | 0;
- i34 = i59 + 12 | 0;
- i18 = i59 + 4 | 0;
- i29 = i59 + 8 | 0;
- i36 = i68 + 28 | 0;
- i23 = i70 + 8 | 0;
- i35 = i62 + 12 | 0;
- i19 = i62 + 4 | 0;
- i30 = i62 + 8 | 0;
- i24 = i70 + 8 | 0;
- i14 = i61 + 8 | 0;
- i46 = i61 + 1 | 0;
- i41 = i61 + 4 | 0;
- i10 = i52 + 8 | 0;
- i42 = i52 + 1 | 0;
- i37 = i52 + 4 | 0;
- i31 = i64 + 12 | 0;
- i15 = i64 + 4 | 0;
- i26 = i64 + 8 | 0;
- i20 = i70 + 8 | 0;
- i32 = i54 + 12 | 0;
- i16 = i54 + 4 | 0;
- i27 = i54 + 8 | 0;
- i21 = i70 + 8 | 0;
- i11 = i53 + 8 | 0;
- i43 = i53 + 1 | 0;
- i38 = i53 + 4 | 0;
- i33 = i57 + 12 | 0;
- i17 = i57 + 4 | 0;
- i28 = i57 + 8 | 0;
- i22 = i70 + 8 | 0;
- i12 = i56 + 8 | 0;
- i44 = i56 + 1 | 0;
- i39 = i56 + 4 | 0;
- i9 = 0;
+ i14 = i70 + 8 | 0;
+ i15 = i58 + 12 | 0;
+ i16 = i58 + 4 | 0;
+ i17 = i58 + 8 | 0;
+ i18 = i70 + 8 | 0;
+ i19 = i57 + 8 | 0;
+ i20 = i57 + 1 | 0;
+ i21 = i57 + 4 | 0;
+ i22 = i61 + 12 | 0;
+ i23 = i61 + 4 | 0;
+ i24 = i61 + 8 | 0;
+ i25 = i70 + 8 | 0;
+ i26 = i60 + 8 | 0;
+ i27 = i60 + 1 | 0;
+ i28 = i60 + 4 | 0;
+ i8 = 0;
L92 : while (1) {
L94 : while (1) {
- i4 = HEAP8[i3 >> 0] | 0;
- if (i4 << 24 >> 24 == 69) {
- i66 = 129;
+ i3 = HEAP8[i1 >> 0] | 0;
+ if (i3 << 24 >> 24 == 69) {
+ i65 = 129;
break L92;
}
- switch (i4 << 24 >> 24 | 0) {
+ switch (i3 << 24 >> 24 | 0) {
case 83:
{
- i4 = i3;
- i66 = 39;
+ i3 = i1;
+ i65 = 39;
break L94;
}
case 84:
{
- i4 = i3;
- i66 = 59;
+ i3 = i1;
+ i65 = 59;
break L94;
}
case 68:
{
- i4 = i3;
- i66 = 77;
+ i3 = i1;
+ i65 = 77;
break L94;
}
case 73:
break;
case 76:
{
- i3 = i3 + 1 | 0;
- if ((i3 | 0) == (i1 | 0)) break L49; else continue L94;
+ i1 = i1 + 1 | 0;
+ if ((i1 | 0) == (i67 | 0)) break L49; else continue L94;
}
default:
{
- i4 = i3;
+ i3 = i1;
break L94;
}
}
- i8 = __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_RT_(i3, i1, i68) | 0;
- if ((i8 | 0) == (i3 | 0) | (i8 | 0) == (i1 | 0)) break L49;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i51, (HEAP32[i50 >> 2] | 0) + -24 | 0);
- i3 = HEAP32[i50 >> 2] | 0;
- i5 = i3 + -24 | 0;
- i4 = i3;
+ i7 = __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_RT_(i1, i67, i68) | 0;
+ if ((i7 | 0) == (i1 | 0) | (i7 | 0) == (i67 | 0)) break L49;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i64, (HEAP32[i49 >> 2] | 0) + -24 | 0);
+ i1 = HEAP32[i49 >> 2] | 0;
+ i3 = i1 + -24 | 0;
+ i4 = i1;
while (1) {
- if ((i4 | 0) == (i5 | 0)) break;
- i7 = i4 + -24 | 0;
- HEAP32[i50 >> 2] = i7;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7);
- i4 = HEAP32[i50 >> 2] | 0;
+ if ((i4 | 0) == (i3 | 0)) break;
+ i6 = i4 + -24 | 0;
+ HEAP32[i49 >> 2] = i6;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i6);
+ i4 = HEAP32[i49 >> 2] | 0;
}
- i7 = HEAP8[i51 >> 0] | 0;
- i5 = (i7 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i3 + -48 | 0, i5 ? i45 : HEAP32[i13 >> 2] | 0, i5 ? (i7 & 255) >>> 1 : HEAP32[i40 >> 2] | 0) | 0;
- i3 = (HEAP32[i50 >> 2] | 0) + -24 | 0;
- HEAP32[i60 >> 2] = HEAP32[i47 >> 2];
- __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i59, i3, i60);
- i3 = HEAP32[i49 >> 2] | 0;
- i7 = HEAP32[i25 >> 2] | 0;
- i5 = i7;
- if (i3 >>> 0 < i7 >>> 0) {
- HEAP32[i3 + 12 >> 2] = HEAP32[i34 >> 2];
- HEAP32[i3 >> 2] = HEAP32[i59 >> 2];
- HEAP32[i3 + 4 >> 2] = HEAP32[i18 >> 2];
- HEAP32[i3 + 8 >> 2] = HEAP32[i29 >> 2];
- HEAP32[i29 >> 2] = 0;
- HEAP32[i18 >> 2] = 0;
- HEAP32[i59 >> 2] = 0;
- HEAP32[i49 >> 2] = (HEAP32[i49 >> 2] | 0) + 16;
+ i6 = HEAP8[i64 >> 0] | 0;
+ i3 = (i6 & 1) == 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i1 + -48 | 0, i3 ? i30 : HEAP32[i29 >> 2] | 0, i3 ? (i6 & 255) >>> 1 : HEAP32[i31 >> 2] | 0) | 0;
+ i1 = (HEAP32[i49 >> 2] | 0) + -24 | 0;
+ HEAP32[i52 >> 2] = HEAP32[i32 >> 2];
+ __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i63, i1, i52);
+ i1 = HEAP32[i48 >> 2] | 0;
+ i6 = HEAP32[i34 >> 2] | 0;
+ i3 = i6;
+ if (i1 >>> 0 < i6 >>> 0) {
+ HEAP32[i1 + 12 >> 2] = HEAP32[i35 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i63 >> 2];
+ HEAP32[i1 + 4 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i1 + 8 >> 2] = HEAP32[i37 >> 2];
+ HEAP32[i37 >> 2] = 0;
+ HEAP32[i36 >> 2] = 0;
+ HEAP32[i63 >> 2] = 0;
+ HEAP32[i48 >> 2] = (HEAP32[i48 >> 2] | 0) + 16;
} else {
- i4 = HEAP32[i48 >> 2] | 0;
- i3 = i3 - i4 | 0;
- i7 = i3 >> 4;
- i6 = i7 + 1 | 0;
- if ((i3 | 0) < -16) {
- i66 = 104;
+ i4 = HEAP32[i33 >> 2] | 0;
+ i1 = i1 - i4 | 0;
+ i6 = i1 >> 4;
+ i5 = i6 + 1 | 0;
+ if ((i1 | 0) < -16) {
+ i65 = 104;
break L92;
}
- i3 = i5 - i4 | 0;
- if (i3 >> 4 >>> 0 < 1073741823) {
- i3 = i3 >> 3;
- i3 = i3 >>> 0 < i6 >>> 0 ? i6 : i3;
- } else i3 = 2147483647;
- __ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i70, i3, i7, i36);
- i7 = HEAP32[i23 >> 2] | 0;
- HEAP32[i7 + 12 >> 2] = HEAP32[i34 >> 2];
- HEAP32[i7 >> 2] = HEAP32[i59 >> 2];
- HEAP32[i7 + 4 >> 2] = HEAP32[i18 >> 2];
- HEAP32[i7 + 8 >> 2] = HEAP32[i29 >> 2];
- HEAP32[i29 >> 2] = 0;
- HEAP32[i18 >> 2] = 0;
- HEAP32[i59 >> 2] = 0;
- HEAP32[i23 >> 2] = i7 + 16;
- __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i48, i70);
+ i1 = i3 - i4 | 0;
+ if (i1 >> 4 >>> 0 < 1073741823) {
+ i1 = i1 >> 3;
+ i1 = i1 >>> 0 < i5 >>> 0 ? i5 : i1;
+ } else i1 = 2147483647;
+ __ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i70, i1, i6, i38);
+ i6 = HEAP32[i39 >> 2] | 0;
+ HEAP32[i6 + 12 >> 2] = HEAP32[i35 >> 2];
+ HEAP32[i6 >> 2] = HEAP32[i63 >> 2];
+ HEAP32[i6 + 4 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i6 + 8 >> 2] = HEAP32[i37 >> 2];
+ HEAP32[i37 >> 2] = 0;
+ HEAP32[i36 >> 2] = 0;
+ HEAP32[i63 >> 2] = 0;
+ HEAP32[i39 >> 2] = i6 + 16;
+ __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i33, i70);
__ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i70);
}
- __ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i59);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i51);
- i3 = i8;
+ __ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i63);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i64);
+ i1 = i7;
}
- L113 : do if ((i66 | 0) == 39) {
- i66 = 0;
- i9 = i4 + 1 | 0;
- if ((i9 | 0) != (i1 | 0) ? (HEAP8[i9 >> 0] | 0) == 116 : 0) break;
- i3 = __ZN10__cxxabiv112_GLOBAL__N_118parse_substitutionINS0_2DbEEEPKcS4_S4_RT_(i4, i1, i68) | 0;
- if ((i3 | 0) == (i4 | 0) | (i3 | 0) == (i1 | 0)) break L49;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i51, (HEAP32[i50 >> 2] | 0) + -24 | 0);
- i6 = HEAP32[i50 >> 2] | 0;
- i5 = i6 + -24 | 0;
- i4 = i6;
+ L113 : do if ((i65 | 0) == 39) {
+ i65 = 0;
+ i8 = i3 + 1 | 0;
+ if ((i8 | 0) != (i67 | 0) ? (HEAP8[i8 >> 0] | 0) == 116 : 0) break;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_118parse_substitutionINS0_2DbEEEPKcS4_S4_RT_(i3, i67, i68) | 0;
+ if ((i1 | 0) == (i3 | 0) | (i1 | 0) == (i67 | 0)) break L49;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i64, (HEAP32[i49 >> 2] | 0) + -24 | 0);
+ i5 = HEAP32[i49 >> 2] | 0;
+ i3 = i5 + -24 | 0;
+ i4 = i5;
while (1) {
- if ((i4 | 0) == (i5 | 0)) break;
- i9 = i4 + -24 | 0;
- HEAP32[i50 >> 2] = i9;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i9);
- i4 = HEAP32[i50 >> 2] | 0;
- }
- i5 = i6 + -48 | 0;
- i4 = HEAP8[i5 >> 0] | 0;
- if (!(i4 & 1)) i4 = (i4 & 255) >>> 1; else i4 = HEAP32[i6 + -44 >> 2] | 0;
- if (!i4) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEaSERKS7_(i5, i51); else {
- __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i52, 34450, i51);
- i4 = HEAP8[i52 >> 0] | 0;
- i9 = (i4 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i5, i9 ? i42 : HEAP32[i10 >> 2] | 0, i9 ? (i4 & 255) >>> 1 : HEAP32[i37 >> 2] | 0) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i52);
- i4 = (HEAP32[i50 >> 2] | 0) + -24 | 0;
- HEAP32[i65 >> 2] = HEAP32[i47 >> 2];
- __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i64, i4, i65);
+ if ((i4 | 0) == (i3 | 0)) break;
+ i8 = i4 + -24 | 0;
+ HEAP32[i49 >> 2] = i8;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8);
i4 = HEAP32[i49 >> 2] | 0;
- i9 = HEAP32[i25 >> 2] | 0;
- i5 = i9;
- if (i4 >>> 0 < i9 >>> 0) {
- HEAP32[i4 + 12 >> 2] = HEAP32[i31 >> 2];
- HEAP32[i4 >> 2] = HEAP32[i64 >> 2];
- HEAP32[i4 + 4 >> 2] = HEAP32[i15 >> 2];
- HEAP32[i4 + 8 >> 2] = HEAP32[i26 >> 2];
- HEAP32[i26 >> 2] = 0;
- HEAP32[i15 >> 2] = 0;
- HEAP32[i64 >> 2] = 0;
- HEAP32[i49 >> 2] = (HEAP32[i49 >> 2] | 0) + 16;
+ }
+ i4 = i5 + -48 | 0;
+ i3 = HEAP8[i4 >> 0] | 0;
+ if (!(i3 & 1)) i3 = (i3 & 255) >>> 1; else i3 = HEAP32[i5 + -44 >> 2] | 0;
+ if (!i3) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEaSERKS7_(i4, i64); else {
+ __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i50, 35914, i64);
+ i3 = HEAP8[i50 >> 0] | 0;
+ i8 = (i3 & 1) == 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i4, i8 ? i9 : HEAP32[i47 >> 2] | 0, i8 ? (i3 & 255) >>> 1 : HEAP32[i10 >> 2] | 0) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i50);
+ i3 = (HEAP32[i49 >> 2] | 0) + -24 | 0;
+ HEAP32[i56 >> 2] = HEAP32[i32 >> 2];
+ __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i51, i3, i56);
+ i3 = HEAP32[i48 >> 2] | 0;
+ i8 = HEAP32[i34 >> 2] | 0;
+ i4 = i8;
+ if (i3 >>> 0 < i8 >>> 0) {
+ HEAP32[i3 + 12 >> 2] = HEAP32[i11 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i51 >> 2];
+ HEAP32[i3 + 4 >> 2] = HEAP32[i12 >> 2];
+ HEAP32[i3 + 8 >> 2] = HEAP32[i13 >> 2];
+ HEAP32[i13 >> 2] = 0;
+ HEAP32[i12 >> 2] = 0;
+ HEAP32[i51 >> 2] = 0;
+ HEAP32[i48 >> 2] = (HEAP32[i48 >> 2] | 0) + 16;
} else {
- i6 = HEAP32[i48 >> 2] | 0;
- i9 = i4 - i6 | 0;
- i8 = i9 >> 4;
- i7 = i8 + 1 | 0;
- if ((i9 | 0) < -16) {
- i66 = 52;
+ i5 = HEAP32[i33 >> 2] | 0;
+ i8 = i3 - i5 | 0;
+ i7 = i8 >> 4;
+ i6 = i7 + 1 | 0;
+ if ((i8 | 0) < -16) {
+ i65 = 52;
break L92;
}
- i4 = i5 - i6 | 0;
- if (i4 >> 4 >>> 0 < 1073741823) {
- i4 = i4 >> 3;
- i4 = i4 >>> 0 < i7 >>> 0 ? i7 : i4;
- } else i4 = 2147483647;
- __ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i70, i4, i8, i36);
- i9 = HEAP32[i20 >> 2] | 0;
- HEAP32[i9 + 12 >> 2] = HEAP32[i31 >> 2];
- HEAP32[i9 >> 2] = HEAP32[i64 >> 2];
- HEAP32[i9 + 4 >> 2] = HEAP32[i15 >> 2];
- HEAP32[i9 + 8 >> 2] = HEAP32[i26 >> 2];
- HEAP32[i26 >> 2] = 0;
- HEAP32[i15 >> 2] = 0;
- HEAP32[i64 >> 2] = 0;
- HEAP32[i20 >> 2] = i9 + 16;
- __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i48, i70);
+ i3 = i4 - i5 | 0;
+ if (i3 >> 4 >>> 0 < 1073741823) {
+ i3 = i3 >> 3;
+ i3 = i3 >>> 0 < i6 >>> 0 ? i6 : i3;
+ } else i3 = 2147483647;
+ __ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i70, i3, i7, i38);
+ i8 = HEAP32[i14 >> 2] | 0;
+ HEAP32[i8 + 12 >> 2] = HEAP32[i11 >> 2];
+ HEAP32[i8 >> 2] = HEAP32[i51 >> 2];
+ HEAP32[i8 + 4 >> 2] = HEAP32[i12 >> 2];
+ HEAP32[i8 + 8 >> 2] = HEAP32[i13 >> 2];
+ HEAP32[i13 >> 2] = 0;
+ HEAP32[i12 >> 2] = 0;
+ HEAP32[i51 >> 2] = 0;
+ HEAP32[i14 >> 2] = i8 + 16;
+ __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i33, i70);
__ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i70);
}
- __ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i64);
+ __ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i51);
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i51);
- i9 = 1;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i64);
+ i8 = 1;
continue L92;
- } else if ((i66 | 0) == 59) {
- i66 = 0;
- i3 = __ZN10__cxxabiv112_GLOBAL__N_120parse_template_paramINS0_2DbEEEPKcS4_S4_RT_(i4, i1, i68) | 0;
- if ((i3 | 0) == (i4 | 0) | (i3 | 0) == (i1 | 0)) break L49;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i51, (HEAP32[i50 >> 2] | 0) + -24 | 0);
- i6 = HEAP32[i50 >> 2] | 0;
- i5 = i6 + -24 | 0;
- i4 = i6;
+ } else if ((i65 | 0) == 59) {
+ i65 = 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_120parse_template_paramINS0_2DbEEEPKcS4_S4_RT_(i3, i67, i68) | 0;
+ if ((i1 | 0) == (i3 | 0) | (i1 | 0) == (i67 | 0)) break L49;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i64, (HEAP32[i49 >> 2] | 0) + -24 | 0);
+ i5 = HEAP32[i49 >> 2] | 0;
+ i3 = i5 + -24 | 0;
+ i4 = i5;
while (1) {
- if ((i4 | 0) == (i5 | 0)) break;
- i9 = i4 + -24 | 0;
- HEAP32[i50 >> 2] = i9;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i9);
- i4 = HEAP32[i50 >> 2] | 0;
+ if ((i4 | 0) == (i3 | 0)) break;
+ i8 = i4 + -24 | 0;
+ HEAP32[i49 >> 2] = i8;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8);
+ i4 = HEAP32[i49 >> 2] | 0;
}
- i5 = i6 + -48 | 0;
- i4 = HEAP8[i5 >> 0] | 0;
- if (!(i4 & 1)) i4 = (i4 & 255) >>> 1; else i4 = HEAP32[i6 + -44 >> 2] | 0;
- if (!i4) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEaSERKS7_(i5, i51); else {
- __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i53, 34450, i51);
- i9 = HEAP8[i53 >> 0] | 0;
- i8 = (i9 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i5, i8 ? i43 : HEAP32[i11 >> 2] | 0, i8 ? (i9 & 255) >>> 1 : HEAP32[i38 >> 2] | 0) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i53);
+ i4 = i5 + -48 | 0;
+ i3 = HEAP8[i4 >> 0] | 0;
+ if (!(i3 & 1)) i3 = (i3 & 255) >>> 1; else i3 = HEAP32[i5 + -44 >> 2] | 0;
+ if (!i3) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEaSERKS7_(i4, i64); else {
+ __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i57, 35914, i64);
+ i8 = HEAP8[i57 >> 0] | 0;
+ i7 = (i8 & 1) == 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i4, i7 ? i20 : HEAP32[i19 >> 2] | 0, i7 ? (i8 & 255) >>> 1 : HEAP32[i21 >> 2] | 0) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i57);
}
- i4 = (HEAP32[i50 >> 2] | 0) + -24 | 0;
- HEAP32[i55 >> 2] = HEAP32[i47 >> 2];
- __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i54, i4, i55);
- i4 = HEAP32[i49 >> 2] | 0;
- i9 = HEAP32[i25 >> 2] | 0;
- i5 = i9;
- if (i4 >>> 0 < i9 >>> 0) {
- HEAP32[i4 + 12 >> 2] = HEAP32[i32 >> 2];
- HEAP32[i4 >> 2] = HEAP32[i54 >> 2];
- HEAP32[i4 + 4 >> 2] = HEAP32[i16 >> 2];
- HEAP32[i4 + 8 >> 2] = HEAP32[i27 >> 2];
- HEAP32[i27 >> 2] = 0;
+ i3 = (HEAP32[i49 >> 2] | 0) + -24 | 0;
+ HEAP32[i59 >> 2] = HEAP32[i32 >> 2];
+ __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i58, i3, i59);
+ i3 = HEAP32[i48 >> 2] | 0;
+ i8 = HEAP32[i34 >> 2] | 0;
+ i4 = i8;
+ if (i3 >>> 0 < i8 >>> 0) {
+ HEAP32[i3 + 12 >> 2] = HEAP32[i15 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i58 >> 2];
+ HEAP32[i3 + 4 >> 2] = HEAP32[i16 >> 2];
+ HEAP32[i3 + 8 >> 2] = HEAP32[i17 >> 2];
+ HEAP32[i17 >> 2] = 0;
HEAP32[i16 >> 2] = 0;
- HEAP32[i54 >> 2] = 0;
- HEAP32[i49 >> 2] = (HEAP32[i49 >> 2] | 0) + 16;
+ HEAP32[i58 >> 2] = 0;
+ HEAP32[i48 >> 2] = (HEAP32[i48 >> 2] | 0) + 16;
} else {
- i6 = HEAP32[i48 >> 2] | 0;
- i9 = i4 - i6 | 0;
- i8 = i9 >> 4;
- i7 = i8 + 1 | 0;
- if ((i9 | 0) < -16) {
- i66 = 72;
+ i5 = HEAP32[i33 >> 2] | 0;
+ i8 = i3 - i5 | 0;
+ i7 = i8 >> 4;
+ i6 = i7 + 1 | 0;
+ if ((i8 | 0) < -16) {
+ i65 = 72;
break L92;
}
- i4 = i5 - i6 | 0;
- if (i4 >> 4 >>> 0 < 1073741823) {
- i4 = i4 >> 3;
- i4 = i4 >>> 0 < i7 >>> 0 ? i7 : i4;
- } else i4 = 2147483647;
- __ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i70, i4, i8, i36);
- i9 = HEAP32[i21 >> 2] | 0;
- HEAP32[i9 + 12 >> 2] = HEAP32[i32 >> 2];
- HEAP32[i9 >> 2] = HEAP32[i54 >> 2];
- HEAP32[i9 + 4 >> 2] = HEAP32[i16 >> 2];
- HEAP32[i9 + 8 >> 2] = HEAP32[i27 >> 2];
- HEAP32[i27 >> 2] = 0;
+ i3 = i4 - i5 | 0;
+ if (i3 >> 4 >>> 0 < 1073741823) {
+ i3 = i3 >> 3;
+ i3 = i3 >>> 0 < i6 >>> 0 ? i6 : i3;
+ } else i3 = 2147483647;
+ __ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i70, i3, i7, i38);
+ i8 = HEAP32[i18 >> 2] | 0;
+ HEAP32[i8 + 12 >> 2] = HEAP32[i15 >> 2];
+ HEAP32[i8 >> 2] = HEAP32[i58 >> 2];
+ HEAP32[i8 + 4 >> 2] = HEAP32[i16 >> 2];
+ HEAP32[i8 + 8 >> 2] = HEAP32[i17 >> 2];
+ HEAP32[i17 >> 2] = 0;
HEAP32[i16 >> 2] = 0;
- HEAP32[i54 >> 2] = 0;
- HEAP32[i21 >> 2] = i9 + 16;
- __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i48, i70);
+ HEAP32[i58 >> 2] = 0;
+ HEAP32[i18 >> 2] = i8 + 16;
+ __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i33, i70);
__ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i70);
}
- __ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i54);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i51);
- i9 = 1;
+ __ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i58);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i64);
+ i8 = 1;
continue L92;
- } else if ((i66 | 0) == 77) {
- i66 = 0;
- i3 = i4 + 1 | 0;
- if ((i3 | 0) != (i1 | 0)) switch (HEAP8[i3 >> 0] | 0) {
+ } else if ((i65 | 0) == 77) {
+ i65 = 0;
+ i1 = i3 + 1 | 0;
+ if ((i1 | 0) != (i67 | 0)) switch (HEAP8[i1 >> 0] | 0) {
case 84:
case 116:
break;
default:
break L113;
}
- i3 = __ZN10__cxxabiv112_GLOBAL__N_114parse_decltypeINS0_2DbEEEPKcS4_S4_RT_(i4, i1, i68) | 0;
- if ((i3 | 0) == (i4 | 0) | (i3 | 0) == (i1 | 0)) break L49;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i51, (HEAP32[i50 >> 2] | 0) + -24 | 0);
- i6 = HEAP32[i50 >> 2] | 0;
- i5 = i6 + -24 | 0;
- i4 = i6;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_114parse_decltypeINS0_2DbEEEPKcS4_S4_RT_(i3, i67, i68) | 0;
+ if ((i1 | 0) == (i3 | 0) | (i1 | 0) == (i67 | 0)) break L49;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i64, (HEAP32[i49 >> 2] | 0) + -24 | 0);
+ i5 = HEAP32[i49 >> 2] | 0;
+ i3 = i5 + -24 | 0;
+ i4 = i5;
while (1) {
- if ((i4 | 0) == (i5 | 0)) break;
- i9 = i4 + -24 | 0;
- HEAP32[i50 >> 2] = i9;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i9);
- i4 = HEAP32[i50 >> 2] | 0;
+ if ((i4 | 0) == (i3 | 0)) break;
+ i8 = i4 + -24 | 0;
+ HEAP32[i49 >> 2] = i8;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8);
+ i4 = HEAP32[i49 >> 2] | 0;
}
- i5 = i6 + -48 | 0;
- i4 = HEAP8[i5 >> 0] | 0;
- if (!(i4 & 1)) i4 = (i4 & 255) >>> 1; else i4 = HEAP32[i6 + -44 >> 2] | 0;
- if (!i4) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEaSERKS7_(i5, i51); else {
- __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i56, 34450, i51);
- i9 = HEAP8[i56 >> 0] | 0;
- i8 = (i9 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i5, i8 ? i44 : HEAP32[i12 >> 2] | 0, i8 ? (i9 & 255) >>> 1 : HEAP32[i39 >> 2] | 0) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56);
+ i4 = i5 + -48 | 0;
+ i3 = HEAP8[i4 >> 0] | 0;
+ if (!(i3 & 1)) i3 = (i3 & 255) >>> 1; else i3 = HEAP32[i5 + -44 >> 2] | 0;
+ if (!i3) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEaSERKS7_(i4, i64); else {
+ __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i60, 35914, i64);
+ i8 = HEAP8[i60 >> 0] | 0;
+ i7 = (i8 & 1) == 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i4, i7 ? i27 : HEAP32[i26 >> 2] | 0, i7 ? (i8 & 255) >>> 1 : HEAP32[i28 >> 2] | 0) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i60);
}
- i4 = (HEAP32[i50 >> 2] | 0) + -24 | 0;
- HEAP32[i58 >> 2] = HEAP32[i47 >> 2];
- __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i57, i4, i58);
- i4 = HEAP32[i49 >> 2] | 0;
- i9 = HEAP32[i25 >> 2] | 0;
- i5 = i9;
- if (i4 >>> 0 < i9 >>> 0) {
- HEAP32[i4 + 12 >> 2] = HEAP32[i33 >> 2];
- HEAP32[i4 >> 2] = HEAP32[i57 >> 2];
- HEAP32[i4 + 4 >> 2] = HEAP32[i17 >> 2];
- HEAP32[i4 + 8 >> 2] = HEAP32[i28 >> 2];
- HEAP32[i28 >> 2] = 0;
- HEAP32[i17 >> 2] = 0;
- HEAP32[i57 >> 2] = 0;
- HEAP32[i49 >> 2] = (HEAP32[i49 >> 2] | 0) + 16;
+ i3 = (HEAP32[i49 >> 2] | 0) + -24 | 0;
+ HEAP32[i62 >> 2] = HEAP32[i32 >> 2];
+ __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i61, i3, i62);
+ i3 = HEAP32[i48 >> 2] | 0;
+ i8 = HEAP32[i34 >> 2] | 0;
+ i4 = i8;
+ if (i3 >>> 0 < i8 >>> 0) {
+ HEAP32[i3 + 12 >> 2] = HEAP32[i22 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i61 >> 2];
+ HEAP32[i3 + 4 >> 2] = HEAP32[i23 >> 2];
+ HEAP32[i3 + 8 >> 2] = HEAP32[i24 >> 2];
+ HEAP32[i24 >> 2] = 0;
+ HEAP32[i23 >> 2] = 0;
+ HEAP32[i61 >> 2] = 0;
+ HEAP32[i48 >> 2] = (HEAP32[i48 >> 2] | 0) + 16;
} else {
- i6 = HEAP32[i48 >> 2] | 0;
- i9 = i4 - i6 | 0;
- i8 = i9 >> 4;
- i7 = i8 + 1 | 0;
- if ((i9 | 0) < -16) {
- i66 = 92;
+ i5 = HEAP32[i33 >> 2] | 0;
+ i8 = i3 - i5 | 0;
+ i7 = i8 >> 4;
+ i6 = i7 + 1 | 0;
+ if ((i8 | 0) < -16) {
+ i65 = 92;
break L92;
}
- i4 = i5 - i6 | 0;
- if (i4 >> 4 >>> 0 < 1073741823) {
- i4 = i4 >> 3;
- i4 = i4 >>> 0 < i7 >>> 0 ? i7 : i4;
- } else i4 = 2147483647;
- __ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i70, i4, i8, i36);
- i9 = HEAP32[i22 >> 2] | 0;
- HEAP32[i9 + 12 >> 2] = HEAP32[i33 >> 2];
- HEAP32[i9 >> 2] = HEAP32[i57 >> 2];
- HEAP32[i9 + 4 >> 2] = HEAP32[i17 >> 2];
- HEAP32[i9 + 8 >> 2] = HEAP32[i28 >> 2];
- HEAP32[i28 >> 2] = 0;
- HEAP32[i17 >> 2] = 0;
- HEAP32[i57 >> 2] = 0;
- HEAP32[i22 >> 2] = i9 + 16;
- __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i48, i70);
+ i3 = i4 - i5 | 0;
+ if (i3 >> 4 >>> 0 < 1073741823) {
+ i3 = i3 >> 3;
+ i3 = i3 >>> 0 < i6 >>> 0 ? i6 : i3;
+ } else i3 = 2147483647;
+ __ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i70, i3, i7, i38);
+ i8 = HEAP32[i25 >> 2] | 0;
+ HEAP32[i8 + 12 >> 2] = HEAP32[i22 >> 2];
+ HEAP32[i8 >> 2] = HEAP32[i61 >> 2];
+ HEAP32[i8 + 4 >> 2] = HEAP32[i23 >> 2];
+ HEAP32[i8 + 8 >> 2] = HEAP32[i24 >> 2];
+ HEAP32[i24 >> 2] = 0;
+ HEAP32[i23 >> 2] = 0;
+ HEAP32[i61 >> 2] = 0;
+ HEAP32[i25 >> 2] = i8 + 16;
+ __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i33, i70);
__ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i70);
}
- __ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i57);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i51);
- i9 = 1;
+ __ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i61);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i64);
+ i8 = 1;
continue L92;
} while (0);
- i3 = __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_S4_RT_(i4, i1, i68) | 0;
- if ((i3 | 0) == (i4 | 0) | (i3 | 0) == (i1 | 0)) break L49;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i51, (HEAP32[i50 >> 2] | 0) + -24 | 0);
- i6 = HEAP32[i50 >> 2] | 0;
- i5 = i6 + -24 | 0;
- i4 = i6;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_S4_RT_(i3, i67, i68) | 0;
+ if ((i1 | 0) == (i3 | 0) | (i1 | 0) == (i67 | 0)) break L49;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i64, (HEAP32[i49 >> 2] | 0) + -24 | 0);
+ i5 = HEAP32[i49 >> 2] | 0;
+ i3 = i5 + -24 | 0;
+ i4 = i5;
while (1) {
- if ((i4 | 0) == (i5 | 0)) break;
- i9 = i4 + -24 | 0;
- HEAP32[i50 >> 2] = i9;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i9);
- i4 = HEAP32[i50 >> 2] | 0;
+ if ((i4 | 0) == (i3 | 0)) break;
+ i8 = i4 + -24 | 0;
+ HEAP32[i49 >> 2] = i8;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8);
+ i4 = HEAP32[i49 >> 2] | 0;
}
- i5 = i6 + -48 | 0;
- i4 = HEAP8[i5 >> 0] | 0;
- if (!(i4 & 1)) i4 = (i4 & 255) >>> 1; else i4 = HEAP32[i6 + -44 >> 2] | 0;
- if (!i4) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEaSERKS7_(i5, i51); else {
- __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i61, 34450, i51);
- i9 = HEAP8[i61 >> 0] | 0;
- i8 = (i9 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i5, i8 ? i46 : HEAP32[i14 >> 2] | 0, i8 ? (i9 & 255) >>> 1 : HEAP32[i41 >> 2] | 0) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i61);
+ i4 = i5 + -48 | 0;
+ i3 = HEAP8[i4 >> 0] | 0;
+ if (!(i3 & 1)) i3 = (i3 & 255) >>> 1; else i3 = HEAP32[i5 + -44 >> 2] | 0;
+ if (!i3) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEaSERKS7_(i4, i64); else {
+ __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i53, 35914, i64);
+ i8 = HEAP8[i53 >> 0] | 0;
+ i7 = (i8 & 1) == 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i4, i7 ? i45 : HEAP32[i44 >> 2] | 0, i7 ? (i8 & 255) >>> 1 : HEAP32[i46 >> 2] | 0) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i53);
}
- i4 = (HEAP32[i50 >> 2] | 0) + -24 | 0;
- HEAP32[i63 >> 2] = HEAP32[i47 >> 2];
- __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i62, i4, i63);
- i4 = HEAP32[i49 >> 2] | 0;
- i9 = HEAP32[i25 >> 2] | 0;
- i5 = i9;
- if (i4 >>> 0 < i9 >>> 0) {
- HEAP32[i4 + 12 >> 2] = HEAP32[i35 >> 2];
- HEAP32[i4 >> 2] = HEAP32[i62 >> 2];
- HEAP32[i4 + 4 >> 2] = HEAP32[i19 >> 2];
- HEAP32[i4 + 8 >> 2] = HEAP32[i30 >> 2];
- HEAP32[i30 >> 2] = 0;
- HEAP32[i19 >> 2] = 0;
- HEAP32[i62 >> 2] = 0;
- HEAP32[i49 >> 2] = (HEAP32[i49 >> 2] | 0) + 16;
+ i3 = (HEAP32[i49 >> 2] | 0) + -24 | 0;
+ HEAP32[i55 >> 2] = HEAP32[i32 >> 2];
+ __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i54, i3, i55);
+ i3 = HEAP32[i48 >> 2] | 0;
+ i8 = HEAP32[i34 >> 2] | 0;
+ i4 = i8;
+ if (i3 >>> 0 < i8 >>> 0) {
+ HEAP32[i3 + 12 >> 2] = HEAP32[i40 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i54 >> 2];
+ HEAP32[i3 + 4 >> 2] = HEAP32[i41 >> 2];
+ HEAP32[i3 + 8 >> 2] = HEAP32[i42 >> 2];
+ HEAP32[i42 >> 2] = 0;
+ HEAP32[i41 >> 2] = 0;
+ HEAP32[i54 >> 2] = 0;
+ HEAP32[i48 >> 2] = (HEAP32[i48 >> 2] | 0) + 16;
} else {
- i6 = HEAP32[i48 >> 2] | 0;
- i9 = i4 - i6 | 0;
- i8 = i9 >> 4;
- i7 = i8 + 1 | 0;
- if ((i9 | 0) < -16) {
- i66 = 123;
+ i5 = HEAP32[i33 >> 2] | 0;
+ i8 = i3 - i5 | 0;
+ i7 = i8 >> 4;
+ i6 = i7 + 1 | 0;
+ if ((i8 | 0) < -16) {
+ i65 = 123;
break;
}
- i4 = i5 - i6 | 0;
- if (i4 >> 4 >>> 0 < 1073741823) {
- i4 = i4 >> 3;
- i4 = i4 >>> 0 < i7 >>> 0 ? i7 : i4;
- } else i4 = 2147483647;
- __ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i70, i4, i8, i36);
- i9 = HEAP32[i24 >> 2] | 0;
- HEAP32[i9 + 12 >> 2] = HEAP32[i35 >> 2];
- HEAP32[i9 >> 2] = HEAP32[i62 >> 2];
- HEAP32[i9 + 4 >> 2] = HEAP32[i19 >> 2];
- HEAP32[i9 + 8 >> 2] = HEAP32[i30 >> 2];
- HEAP32[i30 >> 2] = 0;
- HEAP32[i19 >> 2] = 0;
- HEAP32[i62 >> 2] = 0;
- HEAP32[i24 >> 2] = i9 + 16;
- __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i48, i70);
+ i3 = i4 - i5 | 0;
+ if (i3 >> 4 >>> 0 < 1073741823) {
+ i3 = i3 >> 3;
+ i3 = i3 >>> 0 < i6 >>> 0 ? i6 : i3;
+ } else i3 = 2147483647;
+ __ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i70, i3, i7, i38);
+ i8 = HEAP32[i43 >> 2] | 0;
+ HEAP32[i8 + 12 >> 2] = HEAP32[i40 >> 2];
+ HEAP32[i8 >> 2] = HEAP32[i54 >> 2];
+ HEAP32[i8 + 4 >> 2] = HEAP32[i41 >> 2];
+ HEAP32[i8 + 8 >> 2] = HEAP32[i42 >> 2];
+ HEAP32[i42 >> 2] = 0;
+ HEAP32[i41 >> 2] = 0;
+ HEAP32[i54 >> 2] = 0;
+ HEAP32[i43 >> 2] = i8 + 16;
+ __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i33, i70);
__ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i70);
}
- __ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i62);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i51);
- i9 = 1;
+ __ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i54);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i64);
+ i8 = 1;
}
- if ((i66 | 0) == 52) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i48); else if ((i66 | 0) == 72) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i48); else if ((i66 | 0) == 92) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i48); else if ((i66 | 0) == 104) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i48); else if ((i66 | 0) == 123) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i48); else if ((i66 | 0) == 129) {
- i1 = i3 + 1 | 0;
- HEAP32[i68 + 48 >> 2] = HEAP32[i67 >> 2];
- L214 : do if (i9 ? (i2 = HEAP32[i49 >> 2] | 0, (HEAP32[i68 + 16 >> 2] | 0) != (i2 | 0)) : 0) {
+ if ((i65 | 0) == 52) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i33); else if ((i65 | 0) == 72) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i33); else if ((i65 | 0) == 92) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i33); else if ((i65 | 0) == 104) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i33); else if ((i65 | 0) == 123) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i33); else if ((i65 | 0) == 129) {
+ i1 = i1 + 1 | 0;
+ HEAP32[i68 + 48 >> 2] = HEAP32[i66 >> 2];
+ L214 : do if (i8 ? (i2 = HEAP32[i48 >> 2] | 0, (HEAP32[i68 + 16 >> 2] | 0) != (i2 | 0)) : 0) {
i3 = i2 + -16 | 0;
while (1) {
if ((i2 | 0) == (i3 | 0)) break L214;
i70 = i2 + -16 | 0;
- HEAP32[i49 >> 2] = i70;
+ HEAP32[i48 >> 2] = i70;
__ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i70);
- i2 = HEAP32[i49 >> 2] | 0;
+ i2 = HEAP32[i48 >> 2] | 0;
}
} while (0);
break L46;
}
} while (0);
i1 = i69;
- } else i1 = i69; while (0);
+ } else i1 = i69; else i1 = i67; while (0);
i1 = (i1 | 0) == (i69 | 0) ? i71 : i1;
break L1;
}
case 90:
{
- L225 : do if (((i3 << 24 >> 24 == 90 & (i69 | 0) != (i1 | 0) ? (i67 = i69 + 1 | 0, i4 = __ZN10__cxxabiv112_GLOBAL__N_114parse_encodingINS0_2DbEEEPKcS4_S4_RT_(i67, i1, i68) | 0, !((i4 | 0) == (i67 | 0) | (i4 | 0) == (i1 | 0))) : 0) ? (HEAP8[i4 >> 0] | 0) == 69 : 0) ? (i5 = i4 + 1 | 0, (i5 | 0) != (i1 | 0)) : 0) switch (HEAP8[i5 >> 0] | 0) {
+ L225 : do if (((i1 << 24 >> 24 == 90 & (i69 | 0) != (i67 | 0) ? (i66 = i69 + 1 | 0, i3 = __ZN10__cxxabiv112_GLOBAL__N_114parse_encodingINS0_2DbEEEPKcS4_S4_RT_(i66, i67, i68) | 0, !((i3 | 0) == (i66 | 0) | (i3 | 0) == (i67 | 0))) : 0) ? (HEAP8[i3 >> 0] | 0) == 69 : 0) ? (i4 = i3 + 1 | 0, (i4 | 0) != (i67 | 0)) : 0) switch (HEAP8[i4 >> 0] | 0) {
case 115:
{
- i1 = __ZN10__cxxabiv112_GLOBAL__N_119parse_discriminatorEPKcS2_(i4 + 2 | 0, i1) | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_119parse_discriminatorEPKcS2_(i3 + 2 | 0, i67) | 0;
i2 = HEAP32[i68 + 4 >> 2] | 0;
if ((HEAP32[i68 >> 2] | 0) == (i2 | 0)) break L225;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -24 | 0, 35649) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -24 | 0, 37113) | 0;
break L225;
}
case 100:
{
- i2 = i4 + 2 | 0;
- if ((i2 | 0) == (i1 | 0)) {
+ i1 = i3 + 2 | 0;
+ if ((i1 | 0) == (i67 | 0)) {
i1 = i69;
break L225;
}
- i2 = __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i2, i1) | 0;
- if ((i2 | 0) == (i1 | 0)) {
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i1, i67) | 0;
+ if ((i1 | 0) == (i67 | 0)) {
i1 = i69;
break L225;
}
- if ((HEAP8[i2 >> 0] | 0) != 95) {
+ if ((HEAP8[i1 >> 0] | 0) != 95) {
i1 = i69;
break L225;
}
- i67 = i2 + 1 | 0;
- i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i67, i1, i68) | 0;
+ i66 = i1 + 1 | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i66, i67, i68) | 0;
i5 = i68 + 4 | 0;
- if ((i1 | 0) == (i67 | 0)) {
- i1 = HEAP32[i5 >> 2] | 0;
- i2 = i1 + -24 | 0;
+ if ((i1 | 0) == (i66 | 0)) {
+ i2 = HEAP32[i5 >> 2] | 0;
+ i1 = i2 + -24 | 0;
while (1) {
- if ((i1 | 0) == (i2 | 0)) {
+ if ((i2 | 0) == (i1 | 0)) {
i1 = i69;
break L225;
}
- i70 = i1 + -24 | 0;
+ i70 = i2 + -24 | 0;
HEAP32[i5 >> 2] = i70;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i70);
- i1 = HEAP32[i5 >> 2] | 0;
+ i2 = HEAP32[i5 >> 2] | 0;
}
}
i2 = HEAP32[i5 >> 2] | 0;
@@ -17733,16 +16594,16 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i71,
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i70, i2 + -24 | 0);
i2 = HEAP32[i5 >> 2] | 0;
- i4 = i2 + -24 | 0;
- i3 = i2;
+ i3 = i2 + -24 | 0;
+ i4 = i2;
while (1) {
- if ((i3 | 0) == (i4 | 0)) break;
- i68 = i3 + -24 | 0;
+ if ((i4 | 0) == (i3 | 0)) break;
+ i68 = i4 + -24 | 0;
HEAP32[i5 >> 2] = i68;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i68);
- i3 = HEAP32[i5 >> 2] | 0;
+ i4 = HEAP32[i5 >> 2] | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -48 | 0, 34450) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -48 | 0, 35914) | 0;
i68 = HEAP8[i70 >> 0] | 0;
i67 = (i68 & 1) == 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj((HEAP32[i5 >> 2] | 0) + -24 | 0, i67 ? i70 + 1 | 0 : HEAP32[i70 + 8 >> 2] | 0, i67 ? (i68 & 255) >>> 1 : HEAP32[i70 + 4 >> 2] | 0) | 0;
@@ -17751,38 +16612,38 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i71,
}
default:
{
- i2 = __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i5, i1, i68) | 0;
- if ((i2 | 0) == (i5 | 0)) {
- i2 = i68 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- i3 = i1 + -24 | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i4, i67, i68) | 0;
+ if ((i1 | 0) == (i4 | 0)) {
+ i1 = i68 + 4 | 0;
+ i3 = HEAP32[i1 >> 2] | 0;
+ i2 = i3 + -24 | 0;
while (1) {
- if ((i1 | 0) == (i3 | 0)) {
+ if ((i3 | 0) == (i2 | 0)) {
i1 = i69;
break L225;
}
- i70 = i1 + -24 | 0;
- HEAP32[i2 >> 2] = i70;
+ i70 = i3 + -24 | 0;
+ HEAP32[i1 >> 2] = i70;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i70);
- i1 = HEAP32[i2 >> 2] | 0;
+ i3 = HEAP32[i1 >> 2] | 0;
}
}
- i1 = __ZN10__cxxabiv112_GLOBAL__N_119parse_discriminatorEPKcS2_(i2, i1) | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_119parse_discriminatorEPKcS2_(i1, i67) | 0;
i5 = i68 + 4 | 0;
i2 = HEAP32[i5 >> 2] | 0;
if (((i2 - (HEAP32[i68 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) break L225;
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i70, i2 + -24 | 0);
i2 = HEAP32[i5 >> 2] | 0;
- i4 = i2 + -24 | 0;
- i3 = i2;
+ i3 = i2 + -24 | 0;
+ i4 = i2;
while (1) {
- if ((i3 | 0) == (i4 | 0)) break;
- i68 = i3 + -24 | 0;
+ if ((i4 | 0) == (i3 | 0)) break;
+ i68 = i4 + -24 | 0;
HEAP32[i5 >> 2] = i68;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i68);
- i3 = HEAP32[i5 >> 2] | 0;
+ i4 = HEAP32[i5 >> 2] | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -48 | 0, 34450) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -48 | 0, 35914) | 0;
i68 = HEAP8[i70 >> 0] | 0;
i67 = (i68 & 1) == 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj((HEAP32[i5 >> 2] | 0) + -24 | 0, i67 ? i70 + 1 | 0 : HEAP32[i70 + 8 >> 2] | 0, i67 ? (i68 & 255) >>> 1 : HEAP32[i70 + 4 >> 2] | 0) | 0;
@@ -17795,115 +16656,116 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i71,
}
default:
{
- do if ((i8 - i69 | 0) > 1) {
- if (i3 << 24 >> 24 == 83 ? (HEAP8[i69 + 1 >> 0] | 0) == 116 : 0) {
- i2 = i69 + 2 | 0;
- if ((i2 | 0) == (i1 | 0)) {
+ do if ((i7 - i69 | 0) > 1) {
+ if (i1 << 24 >> 24 == 83 ? (HEAP8[i69 + 1 >> 0] | 0) == 116 : 0) {
+ i1 = i69 + 2 | 0;
+ if ((i1 | 0) == (i67 | 0)) {
i3 = 0;
- i2 = i1;
+ i2 = i67;
} else {
i3 = 0;
- i2 = (HEAP8[i2 >> 0] | 0) == 76 ? i69 + 3 | 0 : i2;
+ i2 = (HEAP8[i1 >> 0] | 0) == 76 ? i69 + 3 | 0 : i1;
}
} else {
i3 = 1;
i2 = i69;
}
- i4 = __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_S4_RT_(i2, i1, i68) | 0;
- i2 = (i4 | 0) == (i2 | 0);
- if (i3 | i2) i4 = i2 ? i69 : i4; else {
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_S4_RT_(i2, i67, i68) | 0;
+ i2 = (i1 | 0) == (i2 | 0);
+ if (i3 | i2) i1 = i2 ? i69 : i1; else {
i2 = HEAP32[i68 + 4 >> 2] | 0;
if ((HEAP32[i68 >> 2] | 0) == (i2 | 0)) break;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 35388) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 36852) | 0;
}
- if ((i4 | 0) != (i69 | 0)) {
- if ((i4 | 0) == (i1 | 0)) break L1;
- if ((HEAP8[i4 >> 0] | 0) != 73) {
- i1 = i4;
+ if ((i1 | 0) != (i69 | 0)) {
+ if ((i1 | 0) == (i67 | 0)) {
+ i1 = i67;
break L1;
}
- i8 = i68 + 4 | 0;
- i2 = HEAP32[i8 >> 2] | 0;
+ if ((HEAP8[i1 >> 0] | 0) != 73) break L1;
+ i7 = i68 + 4 | 0;
+ i2 = HEAP32[i7 >> 2] | 0;
if ((HEAP32[i68 >> 2] | 0) == (i2 | 0)) {
i1 = i71;
break L1;
}
- i7 = i68 + 16 | 0;
- HEAP32[i6 >> 2] = HEAP32[i68 + 12 >> 2];
- __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i9, i2 + -24 | 0, i6);
+ i6 = i68 + 16 | 0;
+ HEAP32[i5 >> 2] = HEAP32[i68 + 12 >> 2];
+ __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i8, i2 + -24 | 0, i5);
i2 = i68 + 20 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i69 = HEAP32[i68 + 24 >> 2] | 0;
- i5 = i69;
+ i4 = i69;
if (i3 >>> 0 < i69 >>> 0) {
- HEAP32[i3 + 12 >> 2] = HEAP32[i9 + 12 >> 2];
- HEAP32[i3 >> 2] = HEAP32[i9 >> 2];
- i69 = i9 + 4 | 0;
+ HEAP32[i3 + 12 >> 2] = HEAP32[i8 + 12 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i8 >> 2];
+ i69 = i8 + 4 | 0;
HEAP32[i3 + 4 >> 2] = HEAP32[i69 >> 2];
- i67 = i9 + 8 | 0;
- HEAP32[i3 + 8 >> 2] = HEAP32[i67 >> 2];
- HEAP32[i67 >> 2] = 0;
+ i66 = i8 + 8 | 0;
+ HEAP32[i3 + 8 >> 2] = HEAP32[i66 >> 2];
+ HEAP32[i66 >> 2] = 0;
HEAP32[i69 >> 2] = 0;
- HEAP32[i9 >> 2] = 0;
+ HEAP32[i8 >> 2] = 0;
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 16;
} else {
- i2 = HEAP32[i7 >> 2] | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
i69 = i3 - i2 | 0;
- i6 = i69 >> 4;
- i3 = i6 + 1 | 0;
- if ((i69 | 0) < -16) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = i5 - i2 | 0;
+ i5 = i69 >> 4;
+ i3 = i5 + 1 | 0;
+ if ((i69 | 0) < -16) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i6);
+ i2 = i4 - i2 | 0;
if (i2 >> 4 >>> 0 < 1073741823) {
i2 = i2 >> 3;
i2 = i2 >>> 0 < i3 >>> 0 ? i3 : i2;
} else i2 = 2147483647;
- __ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i70, i2, i6, i68 + 28 | 0);
+ __ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i70, i2, i5, i68 + 28 | 0);
i69 = i70 + 8 | 0;
- i67 = HEAP32[i69 >> 2] | 0;
- HEAP32[i67 + 12 >> 2] = HEAP32[i9 + 12 >> 2];
- HEAP32[i67 >> 2] = HEAP32[i9 >> 2];
- i66 = i9 + 4 | 0;
- HEAP32[i67 + 4 >> 2] = HEAP32[i66 >> 2];
- i65 = i9 + 8 | 0;
- HEAP32[i67 + 8 >> 2] = HEAP32[i65 >> 2];
+ i66 = HEAP32[i69 >> 2] | 0;
+ HEAP32[i66 + 12 >> 2] = HEAP32[i8 + 12 >> 2];
+ HEAP32[i66 >> 2] = HEAP32[i8 >> 2];
+ i65 = i8 + 4 | 0;
+ HEAP32[i66 + 4 >> 2] = HEAP32[i65 >> 2];
+ i64 = i8 + 8 | 0;
+ HEAP32[i66 + 8 >> 2] = HEAP32[i64 >> 2];
+ HEAP32[i64 >> 2] = 0;
HEAP32[i65 >> 2] = 0;
- HEAP32[i66 >> 2] = 0;
- HEAP32[i9 >> 2] = 0;
- HEAP32[i69 >> 2] = i67 + 16;
- __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i7, i70);
+ HEAP32[i8 >> 2] = 0;
+ HEAP32[i69 >> 2] = i66 + 16;
+ __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i6, i70);
__ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i70);
}
- __ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i9);
- i1 = __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_RT_(i4, i1, i68) | 0;
- if ((i1 | 0) == (i4 | 0)) {
+ __ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i8);
+ i4 = __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_RT_(i1, i67, i68) | 0;
+ if ((i4 | 0) == (i1 | 0)) {
i1 = i71;
break L1;
}
- i2 = HEAP32[i8 >> 2] | 0;
- if (((i2 - (HEAP32[i68 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) {
+ i1 = HEAP32[i7 >> 2] | 0;
+ if (((i1 - (HEAP32[i68 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) {
i1 = i71;
break L1;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i70, i2 + -24 | 0);
- i2 = HEAP32[i8 >> 2] | 0;
- i4 = i2 + -24 | 0;
- i3 = i2;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i70, i1 + -24 | 0);
+ i1 = HEAP32[i7 >> 2] | 0;
+ i2 = i1 + -24 | 0;
+ i3 = i1;
while (1) {
- if ((i3 | 0) == (i4 | 0)) break;
+ if ((i3 | 0) == (i2 | 0)) break;
i71 = i3 + -24 | 0;
- HEAP32[i8 >> 2] = i71;
+ HEAP32[i7 >> 2] = i71;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i71);
- i3 = HEAP32[i8 >> 2] | 0;
+ i3 = HEAP32[i7 >> 2] | 0;
}
i71 = HEAP8[i70 >> 0] | 0;
i69 = (i71 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i2 + -48 | 0, i69 ? i70 + 1 | 0 : HEAP32[i70 + 8 >> 2] | 0, i69 ? (i71 & 255) >>> 1 : HEAP32[i70 + 4 >> 2] | 0) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i1 + -48 | 0, i69 ? i70 + 1 | 0 : HEAP32[i70 + 8 >> 2] | 0, i69 ? (i71 & 255) >>> 1 : HEAP32[i70 + 4 >> 2] | 0) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i70);
+ i1 = i4;
break L1;
}
} while (0);
- i2 = __ZN10__cxxabiv112_GLOBAL__N_118parse_substitutionINS0_2DbEEEPKcS4_S4_RT_(i69, i1, i68) | 0;
- if ((i2 | 0) == (i69 | 0) | (i2 | 0) == (i1 | 0)) {
+ i2 = __ZN10__cxxabiv112_GLOBAL__N_118parse_substitutionINS0_2DbEEEPKcS4_S4_RT_(i69, i67, i68) | 0;
+ if ((i2 | 0) == (i69 | 0) | (i2 | 0) == (i67 | 0)) {
i1 = i71;
break L1;
}
@@ -17911,7 +16773,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i71,
i1 = i71;
break L1;
}
- i1 = __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_RT_(i2, i1, i68) | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_RT_(i2, i67, i68) | 0;
if ((i1 | 0) == (i2 | 0)) {
i1 = i71;
break L1;
@@ -17924,14 +16786,14 @@ function __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i71,
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i70, i2 + -24 | 0);
i2 = HEAP32[i5 >> 2] | 0;
- i4 = i2 + -24 | 0;
- i3 = i2;
+ i3 = i2 + -24 | 0;
+ i4 = i2;
while (1) {
- if ((i3 | 0) == (i4 | 0)) break;
- i71 = i3 + -24 | 0;
+ if ((i4 | 0) == (i3 | 0)) break;
+ i71 = i4 + -24 | 0;
HEAP32[i5 >> 2] = i71;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i71);
- i3 = HEAP32[i5 >> 2] | 0;
+ i4 = HEAP32[i5 >> 2] | 0;
}
i71 = HEAP8[i70 >> 0] | 0;
i69 = (i71 & 1) == 0;
@@ -17951,99 +16813,99 @@ function _malloc(i1) {
do if (i1 >>> 0 < 245) {
i14 = i1 >>> 0 < 11 ? 16 : i1 + 11 & -8;
i1 = i14 >>> 3;
- i9 = HEAP32[9355] | 0;
+ i9 = HEAP32[9723] | 0;
i2 = i9 >>> i1;
if (i2 & 3 | 0) {
- i5 = (i2 & 1 ^ 1) + i1 | 0;
- i6 = 37460 + (i5 << 1 << 2) | 0;
- i2 = i6 + 8 | 0;
- i3 = HEAP32[i2 >> 2] | 0;
- i7 = i3 + 8 | 0;
- i4 = HEAP32[i7 >> 2] | 0;
- do if ((i6 | 0) != (i4 | 0)) {
- if (i4 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort();
- i1 = i4 + 12 | 0;
- if ((HEAP32[i1 >> 2] | 0) == (i3 | 0)) {
- HEAP32[i1 >> 2] = i6;
- HEAP32[i2 >> 2] = i4;
+ i2 = (i2 & 1 ^ 1) + i1 | 0;
+ i3 = 38932 + (i2 << 1 << 2) | 0;
+ i4 = i3 + 8 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ i6 = i5 + 8 | 0;
+ i7 = HEAP32[i6 >> 2] | 0;
+ do if ((i3 | 0) != (i7 | 0)) {
+ if (i7 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort();
+ i1 = i7 + 12 | 0;
+ if ((HEAP32[i1 >> 2] | 0) == (i5 | 0)) {
+ HEAP32[i1 >> 2] = i3;
+ HEAP32[i4 >> 2] = i7;
break;
} else _abort();
- } else HEAP32[9355] = i9 & ~(1 << i5); while (0);
- i37 = i5 << 3;
- HEAP32[i3 + 4 >> 2] = i37 | 3;
- i37 = i3 + i37 + 4 | 0;
+ } else HEAP32[9723] = i9 & ~(1 << i2); while (0);
+ i37 = i2 << 3;
+ HEAP32[i5 + 4 >> 2] = i37 | 3;
+ i37 = i5 + i37 + 4 | 0;
HEAP32[i37 >> 2] = HEAP32[i37 >> 2] | 1;
- i37 = i7;
+ i37 = i6;
return i37 | 0;
}
- i7 = HEAP32[9357] | 0;
+ i7 = HEAP32[9725] | 0;
if (i14 >>> 0 > i7 >>> 0) {
if (i2 | 0) {
- i5 = 2 << i1;
- i5 = i2 << i1 & (i5 | 0 - i5);
- i5 = (i5 & 0 - i5) + -1 | 0;
- i8 = i5 >>> 12 & 16;
- i5 = i5 >>> i8;
- i2 = i5 >>> 5 & 8;
- i5 = i5 >>> i2;
- i6 = i5 >>> 2 & 4;
- i5 = i5 >>> i6;
- i3 = i5 >>> 1 & 2;
- i5 = i5 >>> i3;
- i4 = i5 >>> 1 & 1;
- i4 = (i2 | i8 | i6 | i3 | i4) + (i5 >>> i4) | 0;
- i5 = 37460 + (i4 << 1 << 2) | 0;
- i3 = i5 + 8 | 0;
- i6 = HEAP32[i3 >> 2] | 0;
+ i3 = 2 << i1;
+ i3 = i2 << i1 & (i3 | 0 - i3);
+ i3 = (i3 & 0 - i3) + -1 | 0;
+ i8 = i3 >>> 12 & 16;
+ i3 = i3 >>> i8;
+ i5 = i3 >>> 5 & 8;
+ i3 = i3 >>> i5;
+ i6 = i3 >>> 2 & 4;
+ i3 = i3 >>> i6;
+ i4 = i3 >>> 1 & 2;
+ i3 = i3 >>> i4;
+ i2 = i3 >>> 1 & 1;
+ i2 = (i5 | i8 | i6 | i4 | i2) + (i3 >>> i2) | 0;
+ i3 = 38932 + (i2 << 1 << 2) | 0;
+ i4 = i3 + 8 | 0;
+ i6 = HEAP32[i4 >> 2] | 0;
i8 = i6 + 8 | 0;
- i2 = HEAP32[i8 >> 2] | 0;
- do if ((i5 | 0) != (i2 | 0)) {
- if (i2 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort();
- i1 = i2 + 12 | 0;
+ i5 = HEAP32[i8 >> 2] | 0;
+ do if ((i3 | 0) != (i5 | 0)) {
+ if (i5 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort();
+ i1 = i5 + 12 | 0;
if ((HEAP32[i1 >> 2] | 0) == (i6 | 0)) {
- HEAP32[i1 >> 2] = i5;
- HEAP32[i3 >> 2] = i2;
- i10 = HEAP32[9357] | 0;
+ HEAP32[i1 >> 2] = i3;
+ HEAP32[i4 >> 2] = i5;
+ i10 = HEAP32[9725] | 0;
break;
} else _abort();
} else {
- HEAP32[9355] = i9 & ~(1 << i4);
+ HEAP32[9723] = i9 & ~(1 << i2);
i10 = i7;
} while (0);
- i7 = (i4 << 3) - i14 | 0;
+ i7 = (i2 << 3) - i14 | 0;
HEAP32[i6 + 4 >> 2] = i14 | 3;
- i5 = i6 + i14 | 0;
- HEAP32[i5 + 4 >> 2] = i7 | 1;
- HEAP32[i5 + i7 >> 2] = i7;
+ i4 = i6 + i14 | 0;
+ HEAP32[i4 + 4 >> 2] = i7 | 1;
+ HEAP32[i4 + i7 >> 2] = i7;
if (i10 | 0) {
- i4 = HEAP32[9360] | 0;
+ i5 = HEAP32[9728] | 0;
i2 = i10 >>> 3;
- i3 = 37460 + (i2 << 1 << 2) | 0;
- i1 = HEAP32[9355] | 0;
+ i3 = 38932 + (i2 << 1 << 2) | 0;
+ i1 = HEAP32[9723] | 0;
i2 = 1 << i2;
if (i1 & i2) {
i1 = i3 + 8 | 0;
i2 = HEAP32[i1 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort(); else {
+ if (i2 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort(); else {
i11 = i1;
i12 = i2;
}
} else {
- HEAP32[9355] = i1 | i2;
+ HEAP32[9723] = i1 | i2;
i11 = i3 + 8 | 0;
i12 = i3;
}
- HEAP32[i11 >> 2] = i4;
- HEAP32[i12 + 12 >> 2] = i4;
- HEAP32[i4 + 8 >> 2] = i12;
- HEAP32[i4 + 12 >> 2] = i3;
+ HEAP32[i11 >> 2] = i5;
+ HEAP32[i12 + 12 >> 2] = i5;
+ HEAP32[i5 + 8 >> 2] = i12;
+ HEAP32[i5 + 12 >> 2] = i3;
}
- HEAP32[9357] = i7;
- HEAP32[9360] = i5;
+ HEAP32[9725] = i7;
+ HEAP32[9728] = i4;
i37 = i8;
return i37 | 0;
}
- i1 = HEAP32[9356] | 0;
+ i1 = HEAP32[9724] | 0;
if (i1) {
i3 = (i1 & 0 - i1) + -1 | 0;
i36 = i3 >>> 12 & 16;
@@ -18055,7 +16917,7 @@ function _malloc(i1) {
i2 = i3 >>> 1 & 2;
i3 = i3 >>> i2;
i4 = i3 >>> 1 & 1;
- i4 = HEAP32[37724 + ((i35 | i36 | i37 | i2 | i4) + (i3 >>> i4) << 2) >> 2] | 0;
+ i4 = HEAP32[39196 + ((i35 | i36 | i37 | i2 | i4) + (i3 >>> i4) << 2) >> 2] | 0;
i3 = (HEAP32[i4 + 4 >> 2] & -8) - i14 | 0;
i2 = i4;
while (1) {
@@ -18073,7 +16935,7 @@ function _malloc(i1) {
i2 = i1;
i4 = i37 ? i1 : i4;
}
- i6 = HEAP32[9359] | 0;
+ i6 = HEAP32[9727] | 0;
if (i9 >>> 0 < i6 >>> 0) _abort();
i8 = i9 + i14 | 0;
if (i9 >>> 0 >= i8 >>> 0) _abort();
@@ -18091,18 +16953,18 @@ function _malloc(i1) {
}
}
while (1) {
- i5 = i1 + 20 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- if (i4 | 0) {
- i1 = i4;
- i2 = i5;
+ i4 = i1 + 20 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ if (i5 | 0) {
+ i1 = i5;
+ i2 = i4;
continue;
}
- i5 = i1 + 16 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- if (!i4) break; else {
- i1 = i4;
- i2 = i5;
+ i4 = i1 + 16 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ if (!i5) break; else {
+ i1 = i5;
+ i2 = i4;
}
}
if (i2 >>> 0 < i6 >>> 0) _abort(); else {
@@ -18125,20 +16987,20 @@ function _malloc(i1) {
} while (0);
do if (i7 | 0) {
i1 = HEAP32[i9 + 28 >> 2] | 0;
- i2 = 37724 + (i1 << 2) | 0;
+ i2 = 39196 + (i1 << 2) | 0;
if ((i9 | 0) == (HEAP32[i2 >> 2] | 0)) {
HEAP32[i2 >> 2] = i13;
if (!i13) {
- HEAP32[9356] = HEAP32[9356] & ~(1 << i1);
+ HEAP32[9724] = HEAP32[9724] & ~(1 << i1);
break;
}
} else {
- if (i7 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort();
+ if (i7 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort();
i1 = i7 + 16 | 0;
if ((HEAP32[i1 >> 2] | 0) == (i9 | 0)) HEAP32[i1 >> 2] = i13; else HEAP32[i7 + 20 >> 2] = i13;
if (!i13) break;
}
- i2 = HEAP32[9359] | 0;
+ i2 = HEAP32[9727] | 0;
if (i13 >>> 0 < i2 >>> 0) _abort();
HEAP32[i13 + 24 >> 2] = i7;
i1 = HEAP32[i9 + 16 >> 2] | 0;
@@ -18148,7 +17010,7 @@ function _malloc(i1) {
break;
} while (0);
i1 = HEAP32[i9 + 20 >> 2] | 0;
- if (i1 | 0) if (i1 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort(); else {
+ if (i1 | 0) if (i1 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort(); else {
HEAP32[i13 + 20 >> 2] = i1;
HEAP32[i1 + 24 >> 2] = i13;
break;
@@ -18163,22 +17025,22 @@ function _malloc(i1) {
HEAP32[i9 + 4 >> 2] = i14 | 3;
HEAP32[i8 + 4 >> 2] = i3 | 1;
HEAP32[i8 + i3 >> 2] = i3;
- i1 = HEAP32[9357] | 0;
+ i1 = HEAP32[9725] | 0;
if (i1 | 0) {
- i5 = HEAP32[9360] | 0;
+ i5 = HEAP32[9728] | 0;
i2 = i1 >>> 3;
- i4 = 37460 + (i2 << 1 << 2) | 0;
- i1 = HEAP32[9355] | 0;
+ i4 = 38932 + (i2 << 1 << 2) | 0;
+ i1 = HEAP32[9723] | 0;
i2 = 1 << i2;
if (i1 & i2) {
i1 = i4 + 8 | 0;
i2 = HEAP32[i1 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort(); else {
+ if (i2 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort(); else {
i15 = i1;
i16 = i2;
}
} else {
- HEAP32[9355] = i1 | i2;
+ HEAP32[9723] = i1 | i2;
i15 = i4 + 8 | 0;
i16 = i4;
}
@@ -18187,8 +17049,8 @@ function _malloc(i1) {
HEAP32[i5 + 8 >> 2] = i16;
HEAP32[i5 + 12 >> 2] = i4;
}
- HEAP32[9357] = i3;
- HEAP32[9360] = i8;
+ HEAP32[9725] = i3;
+ HEAP32[9728] = i8;
}
i37 = i9 + 8 | 0;
return i37 | 0;
@@ -18197,9 +17059,9 @@ function _malloc(i1) {
} else if (i1 >>> 0 <= 4294967231) {
i1 = i1 + 11 | 0;
i14 = i1 & -8;
- i9 = HEAP32[9356] | 0;
+ i9 = HEAP32[9724] | 0;
if (i9) {
- i2 = 0 - i14 | 0;
+ i3 = 0 - i14 | 0;
i1 = i1 >>> 8;
if (i1) if (i14 >>> 0 > 16777215) i8 = 31; else {
i16 = (i1 + 1048320 | 0) >>> 16 & 8;
@@ -18210,38 +17072,37 @@ function _malloc(i1) {
i8 = 14 - (i15 | i16 | i8) + (i30 << i8 >>> 15) | 0;
i8 = i14 >>> (i8 + 7 | 0) & 1 | i8 << 1;
} else i8 = 0;
- i3 = HEAP32[37724 + (i8 << 2) >> 2] | 0;
- L123 : do if (!i3) {
- i4 = i2;
+ i2 = HEAP32[39196 + (i8 << 2) >> 2] | 0;
+ L123 : do if (!i2) {
i1 = 0;
i2 = 0;
i30 = 86;
} else {
- i4 = i2;
+ i5 = i3;
i1 = 0;
- i7 = i14 << ((i8 | 0) == 31 ? 0 : 25 - (i8 >>> 1) | 0);
+ i6 = i14 << ((i8 | 0) == 31 ? 0 : 25 - (i8 >>> 1) | 0);
+ i7 = i2;
i2 = 0;
while (1) {
- i5 = HEAP32[i3 + 4 >> 2] & -8;
- i6 = i5 - i14 | 0;
- if (i6 >>> 0 < i4 >>> 0) if ((i5 | 0) == (i14 | 0)) {
- i4 = i6;
- i1 = i3;
- i2 = i3;
+ i4 = HEAP32[i7 + 4 >> 2] & -8;
+ i3 = i4 - i14 | 0;
+ if (i3 >>> 0 < i5 >>> 0) if ((i4 | 0) == (i14 | 0)) {
+ i1 = i7;
+ i2 = i7;
i30 = 90;
break L123;
- } else {
- i4 = i6;
- i2 = i3;
- }
- i5 = HEAP32[i3 + 20 >> 2] | 0;
- i3 = HEAP32[i3 + 16 + (i7 >>> 31 << 2) >> 2] | 0;
- i1 = (i5 | 0) == 0 | (i5 | 0) == (i3 | 0) ? i1 : i5;
- i5 = (i3 | 0) == 0;
- if (i5) {
+ } else i2 = i7; else i3 = i5;
+ i4 = HEAP32[i7 + 20 >> 2] | 0;
+ i7 = HEAP32[i7 + 16 + (i6 >>> 31 << 2) >> 2] | 0;
+ i1 = (i4 | 0) == 0 | (i4 | 0) == (i7 | 0) ? i1 : i4;
+ i4 = (i7 | 0) == 0;
+ if (i4) {
i30 = 86;
break;
- } else i7 = i7 << (i5 & 1 ^ 1);
+ } else {
+ i5 = i3;
+ i6 = i6 << (i4 & 1 ^ 1);
+ }
}
} while (0);
if ((i30 | 0) == 86) {
@@ -18259,34 +17120,34 @@ function _malloc(i1) {
i15 = i16 >>> 1 & 2;
i16 = i16 >>> i15;
i1 = i16 >>> 1 & 1;
- i1 = HEAP32[37724 + ((i11 | i12 | i13 | i15 | i1) + (i16 >>> i1) << 2) >> 2] | 0;
+ i1 = HEAP32[39196 + ((i11 | i12 | i13 | i15 | i1) + (i16 >>> i1) << 2) >> 2] | 0;
}
if (!i1) {
- i8 = i4;
+ i8 = i3;
i9 = i2;
} else i30 = 90;
}
if ((i30 | 0) == 90) while (1) {
i30 = 0;
i16 = (HEAP32[i1 + 4 >> 2] & -8) - i14 | 0;
- i3 = i16 >>> 0 < i4 >>> 0;
- i4 = i3 ? i16 : i4;
- i2 = i3 ? i1 : i2;
- i3 = HEAP32[i1 + 16 >> 2] | 0;
- if (i3 | 0) {
- i1 = i3;
+ i4 = i16 >>> 0 < i3 >>> 0;
+ i3 = i4 ? i16 : i3;
+ i2 = i4 ? i1 : i2;
+ i4 = HEAP32[i1 + 16 >> 2] | 0;
+ if (i4 | 0) {
+ i1 = i4;
i30 = 90;
continue;
}
i1 = HEAP32[i1 + 20 >> 2] | 0;
if (!i1) {
- i8 = i4;
+ i8 = i3;
i9 = i2;
break;
} else i30 = 90;
}
- if ((i9 | 0) != 0 ? i8 >>> 0 < ((HEAP32[9357] | 0) - i14 | 0) >>> 0 : 0) {
- i5 = HEAP32[9359] | 0;
+ if ((i9 | 0) != 0 ? i8 >>> 0 < ((HEAP32[9725] | 0) - i14 | 0) >>> 0 : 0) {
+ i5 = HEAP32[9727] | 0;
if (i9 >>> 0 < i5 >>> 0) _abort();
i7 = i9 + i14 | 0;
if (i9 >>> 0 >= i7 >>> 0) _abort();
@@ -18304,18 +17165,18 @@ function _malloc(i1) {
}
}
while (1) {
- i4 = i1 + 20 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if (i3 | 0) {
- i1 = i3;
- i2 = i4;
+ i3 = i1 + 20 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if (i4 | 0) {
+ i1 = i4;
+ i2 = i3;
continue;
}
- i4 = i1 + 16 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if (!i3) break; else {
- i1 = i3;
- i2 = i4;
+ i3 = i1 + 16 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if (!i4) break; else {
+ i1 = i4;
+ i2 = i3;
}
}
if (i2 >>> 0 < i5 >>> 0) _abort(); else {
@@ -18338,20 +17199,20 @@ function _malloc(i1) {
} while (0);
do if (i6 | 0) {
i1 = HEAP32[i9 + 28 >> 2] | 0;
- i2 = 37724 + (i1 << 2) | 0;
+ i2 = 39196 + (i1 << 2) | 0;
if ((i9 | 0) == (HEAP32[i2 >> 2] | 0)) {
HEAP32[i2 >> 2] = i18;
if (!i18) {
- HEAP32[9356] = HEAP32[9356] & ~(1 << i1);
+ HEAP32[9724] = HEAP32[9724] & ~(1 << i1);
break;
}
} else {
- if (i6 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort();
+ if (i6 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort();
i1 = i6 + 16 | 0;
if ((HEAP32[i1 >> 2] | 0) == (i9 | 0)) HEAP32[i1 >> 2] = i18; else HEAP32[i6 + 20 >> 2] = i18;
if (!i18) break;
}
- i2 = HEAP32[9359] | 0;
+ i2 = HEAP32[9727] | 0;
if (i18 >>> 0 < i2 >>> 0) _abort();
HEAP32[i18 + 24 >> 2] = i6;
i1 = HEAP32[i9 + 16 >> 2] | 0;
@@ -18361,7 +17222,7 @@ function _malloc(i1) {
break;
} while (0);
i1 = HEAP32[i9 + 20 >> 2] | 0;
- if (i1 | 0) if (i1 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort(); else {
+ if (i1 | 0) if (i1 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort(); else {
HEAP32[i18 + 20 >> 2] = i1;
HEAP32[i1 + 24 >> 2] = i18;
break;
@@ -18373,18 +17234,18 @@ function _malloc(i1) {
HEAP32[i7 + i8 >> 2] = i8;
i1 = i8 >>> 3;
if (i8 >>> 0 < 256) {
- i3 = 37460 + (i1 << 1 << 2) | 0;
- i2 = HEAP32[9355] | 0;
+ i3 = 38932 + (i1 << 1 << 2) | 0;
+ i2 = HEAP32[9723] | 0;
i1 = 1 << i1;
if (i2 & i1) {
i1 = i3 + 8 | 0;
i2 = HEAP32[i1 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort(); else {
+ if (i2 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort(); else {
i20 = i1;
i21 = i2;
}
} else {
- HEAP32[9355] = i2 | i1;
+ HEAP32[9723] = i2 | i1;
i20 = i3 + 8 | 0;
i21 = i3;
}
@@ -18395,61 +17256,62 @@ function _malloc(i1) {
break;
}
i1 = i8 >>> 8;
- if (i1) if (i8 >>> 0 > 16777215) i2 = 31; else {
+ if (i1) if (i8 >>> 0 > 16777215) i3 = 31; else {
i36 = (i1 + 1048320 | 0) >>> 16 & 8;
i37 = i1 << i36;
i35 = (i37 + 520192 | 0) >>> 16 & 4;
i37 = i37 << i35;
- i2 = (i37 + 245760 | 0) >>> 16 & 2;
- i2 = 14 - (i35 | i36 | i2) + (i37 << i2 >>> 15) | 0;
- i2 = i8 >>> (i2 + 7 | 0) & 1 | i2 << 1;
- } else i2 = 0;
- i5 = 37724 + (i2 << 2) | 0;
- HEAP32[i7 + 28 >> 2] = i2;
+ i3 = (i37 + 245760 | 0) >>> 16 & 2;
+ i3 = 14 - (i35 | i36 | i3) + (i37 << i3 >>> 15) | 0;
+ i3 = i8 >>> (i3 + 7 | 0) & 1 | i3 << 1;
+ } else i3 = 0;
+ i4 = 39196 + (i3 << 2) | 0;
+ HEAP32[i7 + 28 >> 2] = i3;
i1 = i7 + 16 | 0;
HEAP32[i1 + 4 >> 2] = 0;
HEAP32[i1 >> 2] = 0;
- i1 = HEAP32[9356] | 0;
- i3 = 1 << i2;
- if (!(i1 & i3)) {
- HEAP32[9356] = i1 | i3;
- HEAP32[i5 >> 2] = i7;
- HEAP32[i7 + 24 >> 2] = i5;
+ i1 = HEAP32[9724] | 0;
+ i2 = 1 << i3;
+ if (!(i1 & i2)) {
+ HEAP32[9724] = i1 | i2;
+ HEAP32[i4 >> 2] = i7;
+ HEAP32[i7 + 24 >> 2] = i4;
HEAP32[i7 + 12 >> 2] = i7;
HEAP32[i7 + 8 >> 2] = i7;
break;
}
- i4 = i8 << ((i2 | 0) == 31 ? 0 : 25 - (i2 >>> 1) | 0);
- i3 = HEAP32[i5 >> 2] | 0;
+ i5 = i8 << ((i3 | 0) == 31 ? 0 : 25 - (i3 >>> 1) | 0);
+ i1 = HEAP32[i4 >> 2] | 0;
while (1) {
- if ((HEAP32[i3 + 4 >> 2] & -8 | 0) == (i8 | 0)) {
+ if ((HEAP32[i1 + 4 >> 2] & -8 | 0) == (i8 | 0)) {
+ i3 = i1;
i30 = 148;
break;
}
- i1 = i3 + 16 + (i4 >>> 31 << 2) | 0;
- i2 = HEAP32[i1 >> 2] | 0;
- if (!i2) {
+ i2 = i1 + 16 + (i5 >>> 31 << 2) | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if (!i3) {
i30 = 145;
break;
} else {
- i4 = i4 << 1;
- i3 = i2;
+ i5 = i5 << 1;
+ i1 = i3;
}
}
- if ((i30 | 0) == 145) if (i1 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort(); else {
- HEAP32[i1 >> 2] = i7;
- HEAP32[i7 + 24 >> 2] = i3;
+ if ((i30 | 0) == 145) if (i2 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort(); else {
+ HEAP32[i2 >> 2] = i7;
+ HEAP32[i7 + 24 >> 2] = i1;
HEAP32[i7 + 12 >> 2] = i7;
HEAP32[i7 + 8 >> 2] = i7;
break;
} else if ((i30 | 0) == 148) {
- i2 = i3 + 8 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- i37 = HEAP32[9359] | 0;
- if (i1 >>> 0 >= i37 >>> 0 & i3 >>> 0 >= i37 >>> 0) {
- HEAP32[i1 + 12 >> 2] = i7;
- HEAP32[i2 >> 2] = i7;
- HEAP32[i7 + 8 >> 2] = i1;
+ i1 = i3 + 8 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ i37 = HEAP32[9727] | 0;
+ if (i2 >>> 0 >= i37 >>> 0 & i3 >>> 0 >= i37 >>> 0) {
+ HEAP32[i2 + 12 >> 2] = i7;
+ HEAP32[i1 >> 2] = i7;
+ HEAP32[i7 + 8 >> 2] = i2;
HEAP32[i7 + 12 >> 2] = i3;
HEAP32[i7 + 24 >> 2] = 0;
break;
@@ -18466,55 +17328,55 @@ function _malloc(i1) {
}
}
} else i14 = -1; while (0);
- i3 = HEAP32[9357] | 0;
+ i3 = HEAP32[9725] | 0;
if (i3 >>> 0 >= i14 >>> 0) {
- i2 = i3 - i14 | 0;
- i1 = HEAP32[9360] | 0;
- if (i2 >>> 0 > 15) {
- i37 = i1 + i14 | 0;
- HEAP32[9360] = i37;
- HEAP32[9357] = i2;
- HEAP32[i37 + 4 >> 2] = i2 | 1;
- HEAP32[i37 + i2 >> 2] = i2;
- HEAP32[i1 + 4 >> 2] = i14 | 3;
+ i1 = i3 - i14 | 0;
+ i2 = HEAP32[9728] | 0;
+ if (i1 >>> 0 > 15) {
+ i37 = i2 + i14 | 0;
+ HEAP32[9728] = i37;
+ HEAP32[9725] = i1;
+ HEAP32[i37 + 4 >> 2] = i1 | 1;
+ HEAP32[i37 + i1 >> 2] = i1;
+ HEAP32[i2 + 4 >> 2] = i14 | 3;
} else {
- HEAP32[9357] = 0;
- HEAP32[9360] = 0;
- HEAP32[i1 + 4 >> 2] = i3 | 3;
- i37 = i1 + i3 + 4 | 0;
+ HEAP32[9725] = 0;
+ HEAP32[9728] = 0;
+ HEAP32[i2 + 4 >> 2] = i3 | 3;
+ i37 = i2 + i3 + 4 | 0;
HEAP32[i37 >> 2] = HEAP32[i37 >> 2] | 1;
}
- i37 = i1 + 8 | 0;
+ i37 = i2 + 8 | 0;
return i37 | 0;
}
- i1 = HEAP32[9358] | 0;
+ i1 = HEAP32[9726] | 0;
if (i1 >>> 0 > i14 >>> 0) {
i35 = i1 - i14 | 0;
- HEAP32[9358] = i35;
- i37 = HEAP32[9361] | 0;
+ HEAP32[9726] = i35;
+ i37 = HEAP32[9729] | 0;
i36 = i37 + i14 | 0;
- HEAP32[9361] = i36;
+ HEAP32[9729] = i36;
HEAP32[i36 + 4 >> 2] = i35 | 1;
HEAP32[i37 + 4 >> 2] = i14 | 3;
i37 = i37 + 8 | 0;
return i37 | 0;
}
- do if (!(HEAP32[9473] | 0)) {
+ do if (!(HEAP32[9841] | 0)) {
i1 = _sysconf(30) | 0;
if (!(i1 + -1 & i1)) {
- HEAP32[9475] = i1;
- HEAP32[9474] = i1;
- HEAP32[9476] = -1;
- HEAP32[9477] = -1;
- HEAP32[9478] = 0;
- HEAP32[9466] = 0;
+ HEAP32[9843] = i1;
+ HEAP32[9842] = i1;
+ HEAP32[9844] = -1;
+ HEAP32[9845] = -1;
+ HEAP32[9846] = 0;
+ HEAP32[9834] = 0;
i21 = (_time(0) | 0) & -16 ^ 1431655768;
- HEAP32[9473] = i21;
+ HEAP32[9841] = i21;
break;
} else _abort();
} while (0);
i7 = i14 + 48 | 0;
- i6 = HEAP32[9475] | 0;
+ i6 = HEAP32[9843] | 0;
i8 = i14 + 47 | 0;
i5 = i6 + i8 | 0;
i6 = 0 - i6 | 0;
@@ -18523,15 +17385,15 @@ function _malloc(i1) {
i37 = 0;
return i37 | 0;
}
- i1 = HEAP32[9465] | 0;
- if (i1 | 0 ? (i20 = HEAP32[9463] | 0, i21 = i20 + i9 | 0, i21 >>> 0 <= i20 >>> 0 | i21 >>> 0 > i1 >>> 0) : 0) {
+ i1 = HEAP32[9833] | 0;
+ if (i1 | 0 ? (i20 = HEAP32[9831] | 0, i21 = i20 + i9 | 0, i21 >>> 0 <= i20 >>> 0 | i21 >>> 0 > i1 >>> 0) : 0) {
i37 = 0;
return i37 | 0;
}
- L257 : do if (!(HEAP32[9466] & 4)) {
- i1 = HEAP32[9361] | 0;
+ L257 : do if (!(HEAP32[9834] & 4)) {
+ i1 = HEAP32[9729] | 0;
L259 : do if (i1) {
- i3 = 37868;
+ i3 = 39340;
while (1) {
i2 = HEAP32[i3 >> 2] | 0;
if (i2 >>> 0 <= i1 >>> 0 ? (i17 = i3 + 4 | 0, (i2 + (HEAP32[i17 >> 2] | 0) | 0) >>> 0 > i1 >>> 0) : 0) {
@@ -18545,7 +17407,7 @@ function _malloc(i1) {
break L259;
}
}
- i1 = i5 - (HEAP32[9358] | 0) & i6;
+ i1 = i5 - (HEAP32[9726] | 0) & i6;
if (i1 >>> 0 < 2147483647) {
i2 = _sbrk(i1 | 0) | 0;
if ((i2 | 0) == ((HEAP32[i4 >> 2] | 0) + (HEAP32[i3 >> 2] | 0) | 0)) {
@@ -18560,13 +17422,13 @@ function _malloc(i1) {
} else i30 = 173; while (0);
do if ((i30 | 0) == 173 ? (i19 = _sbrk(0) | 0, (i19 | 0) != (-1 | 0)) : 0) {
i1 = i19;
- i2 = HEAP32[9474] | 0;
+ i2 = HEAP32[9842] | 0;
i3 = i2 + -1 | 0;
if (!(i3 & i1)) i1 = i9; else i1 = i9 - i1 + (i3 + i1 & 0 - i2) | 0;
- i2 = HEAP32[9463] | 0;
+ i2 = HEAP32[9831] | 0;
i3 = i2 + i1 | 0;
if (i1 >>> 0 > i14 >>> 0 & i1 >>> 0 < 2147483647) {
- i21 = HEAP32[9465] | 0;
+ i21 = HEAP32[9833] | 0;
if (i21 | 0 ? i3 >>> 0 <= i2 >>> 0 | i3 >>> 0 > i21 >>> 0 : 0) break;
i2 = _sbrk(i1 | 0) | 0;
if ((i2 | 0) == (i19 | 0)) {
@@ -18579,7 +17441,7 @@ function _malloc(i1) {
} while (0);
L279 : do if ((i30 | 0) == 183) {
i3 = 0 - i1 | 0;
- do if (i7 >>> 0 > i1 >>> 0 & (i1 >>> 0 < 2147483647 & (i2 | 0) != (-1 | 0)) ? (i22 = HEAP32[9475] | 0, i22 = i8 - i1 + i22 & 0 - i22, i22 >>> 0 < 2147483647) : 0) if ((_sbrk(i22 | 0) | 0) == (-1 | 0)) {
+ do if (i7 >>> 0 > i1 >>> 0 & (i1 >>> 0 < 2147483647 & (i2 | 0) != (-1 | 0)) ? (i22 = HEAP32[9843] | 0, i22 = i8 - i1 + i22 & 0 - i22, i22 >>> 0 < 2147483647) : 0) if ((_sbrk(i22 | 0) | 0) == (-1 | 0)) {
_sbrk(i3 | 0) | 0;
break L279;
} else {
@@ -18593,7 +17455,7 @@ function _malloc(i1) {
break L257;
}
} while (0);
- HEAP32[9466] = HEAP32[9466] | 4;
+ HEAP32[9834] = HEAP32[9834] | 4;
i30 = 190;
} else i30 = 190; while (0);
if ((((i30 | 0) == 190 ? i9 >>> 0 < 2147483647 : 0) ? (i23 = _sbrk(i9 | 0) | 0, i24 = _sbrk(0) | 0, i23 >>> 0 < i24 >>> 0 & ((i23 | 0) != (-1 | 0) & (i24 | 0) != (-1 | 0))) : 0) ? (i25 = i24 - i23 | 0, i25 >>> 0 > (i14 + 40 | 0) >>> 0) : 0) {
@@ -18602,17 +17464,17 @@ function _malloc(i1) {
i30 = 193;
}
if ((i30 | 0) == 193) {
- i1 = (HEAP32[9463] | 0) + i5 | 0;
- HEAP32[9463] = i1;
- if (i1 >>> 0 > (HEAP32[9464] | 0) >>> 0) HEAP32[9464] = i1;
- i8 = HEAP32[9361] | 0;
+ i1 = (HEAP32[9831] | 0) + i5 | 0;
+ HEAP32[9831] = i1;
+ if (i1 >>> 0 > (HEAP32[9832] | 0) >>> 0) HEAP32[9832] = i1;
+ i8 = HEAP32[9729] | 0;
do if (i8) {
- i4 = 37868;
+ i4 = 39340;
do {
i1 = HEAP32[i4 >> 2] | 0;
- i3 = i4 + 4 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i7 | 0) == (i1 + i2 | 0)) {
+ i2 = i4 + 4 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i7 | 0) == (i1 + i3 | 0)) {
i26 = i1;
i27 = i2;
i28 = i3;
@@ -18623,25 +17485,25 @@ function _malloc(i1) {
i4 = HEAP32[i4 + 8 >> 2] | 0;
} while ((i4 | 0) != 0);
if (((i30 | 0) == 203 ? (HEAP32[i29 + 12 >> 2] & 8 | 0) == 0 : 0) ? i8 >>> 0 < i7 >>> 0 & i8 >>> 0 >= i26 >>> 0 : 0) {
- HEAP32[i28 >> 2] = i27 + i5;
+ HEAP32[i27 >> 2] = i28 + i5;
i37 = i8 + 8 | 0;
i37 = (i37 & 7 | 0) == 0 ? 0 : 0 - i37 & 7;
i36 = i8 + i37 | 0;
- i37 = i5 - i37 + (HEAP32[9358] | 0) | 0;
- HEAP32[9361] = i36;
- HEAP32[9358] = i37;
+ i37 = i5 - i37 + (HEAP32[9726] | 0) | 0;
+ HEAP32[9729] = i36;
+ HEAP32[9726] = i37;
HEAP32[i36 + 4 >> 2] = i37 | 1;
HEAP32[i36 + i37 + 4 >> 2] = 40;
- HEAP32[9362] = HEAP32[9477];
+ HEAP32[9730] = HEAP32[9845];
break;
}
- i1 = HEAP32[9359] | 0;
+ i1 = HEAP32[9727] | 0;
if (i7 >>> 0 < i1 >>> 0) {
- HEAP32[9359] = i7;
+ HEAP32[9727] = i7;
i9 = i7;
} else i9 = i1;
i3 = i7 + i5 | 0;
- i1 = 37868;
+ i1 = 39340;
while (1) {
if ((HEAP32[i1 >> 2] | 0) == (i3 | 0)) {
i2 = i1;
@@ -18650,7 +17512,7 @@ function _malloc(i1) {
}
i1 = HEAP32[i1 + 8 >> 2] | 0;
if (!i1) {
- i2 = 37868;
+ i2 = 39340;
break;
}
}
@@ -18666,10 +17528,10 @@ function _malloc(i1) {
i6 = i1 - i11 - i14 | 0;
HEAP32[i11 + 4 >> 2] = i14 | 3;
do if ((i1 | 0) != (i8 | 0)) {
- if ((i1 | 0) == (HEAP32[9360] | 0)) {
- i37 = (HEAP32[9357] | 0) + i6 | 0;
- HEAP32[9357] = i37;
- HEAP32[9360] = i10;
+ if ((i1 | 0) == (HEAP32[9728] | 0)) {
+ i37 = (HEAP32[9725] | 0) + i6 | 0;
+ HEAP32[9725] = i37;
+ HEAP32[9728] = i10;
HEAP32[i10 + 4 >> 2] = i37 | 1;
HEAP32[i10 + i37 >> 2] = i37;
break;
@@ -18682,29 +17544,29 @@ function _malloc(i1) {
i7 = HEAP32[i1 + 24 >> 2] | 0;
i4 = HEAP32[i1 + 12 >> 2] | 0;
do if ((i4 | 0) == (i1 | 0)) {
- i4 = i1 + 16 | 0;
- i3 = i4 + 4 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i3 = i1 + 16 | 0;
+ i4 = i3 + 4 | 0;
+ i2 = HEAP32[i4 >> 2] | 0;
if (!i2) {
- i2 = HEAP32[i4 >> 2] | 0;
+ i2 = HEAP32[i3 >> 2] | 0;
if (!i2) {
i35 = 0;
break;
- } else i3 = i4;
- }
+ }
+ } else i3 = i4;
while (1) {
- i5 = i2 + 20 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- if (i4 | 0) {
- i2 = i4;
- i3 = i5;
+ i4 = i2 + 20 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ if (i5 | 0) {
+ i2 = i5;
+ i3 = i4;
continue;
}
- i5 = i2 + 16 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- if (!i4) break; else {
- i2 = i4;
- i3 = i5;
+ i4 = i2 + 16 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ if (!i5) break; else {
+ i2 = i5;
+ i3 = i4;
}
}
if (i3 >>> 0 < i9 >>> 0) _abort(); else {
@@ -18727,31 +17589,31 @@ function _malloc(i1) {
} while (0);
if (!i7) break;
i2 = HEAP32[i1 + 28 >> 2] | 0;
- i3 = 37724 + (i2 << 2) | 0;
+ i3 = 39196 + (i2 << 2) | 0;
do if ((i1 | 0) != (HEAP32[i3 >> 2] | 0)) {
- if (i7 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort();
+ if (i7 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort();
i2 = i7 + 16 | 0;
if ((HEAP32[i2 >> 2] | 0) == (i1 | 0)) HEAP32[i2 >> 2] = i35; else HEAP32[i7 + 20 >> 2] = i35;
if (!i35) break L331;
} else {
HEAP32[i3 >> 2] = i35;
if (i35 | 0) break;
- HEAP32[9356] = HEAP32[9356] & ~(1 << i2);
+ HEAP32[9724] = HEAP32[9724] & ~(1 << i2);
break L331;
} while (0);
- i4 = HEAP32[9359] | 0;
+ i4 = HEAP32[9727] | 0;
if (i35 >>> 0 < i4 >>> 0) _abort();
HEAP32[i35 + 24 >> 2] = i7;
- i3 = i1 + 16 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- do if (i2 | 0) if (i2 >>> 0 < i4 >>> 0) _abort(); else {
- HEAP32[i35 + 16 >> 2] = i2;
- HEAP32[i2 + 24 >> 2] = i35;
+ i2 = i1 + 16 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ do if (i3 | 0) if (i3 >>> 0 < i4 >>> 0) _abort(); else {
+ HEAP32[i35 + 16 >> 2] = i3;
+ HEAP32[i3 + 24 >> 2] = i35;
break;
} while (0);
- i2 = HEAP32[i3 + 4 >> 2] | 0;
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
if (!i2) break;
- if (i2 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort(); else {
+ if (i2 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort(); else {
HEAP32[i35 + 20 >> 2] = i2;
HEAP32[i2 + 24 >> 2] = i35;
break;
@@ -18759,14 +17621,14 @@ function _malloc(i1) {
} else {
i3 = HEAP32[i1 + 8 >> 2] | 0;
i4 = HEAP32[i1 + 12 >> 2] | 0;
- i2 = 37460 + (i5 << 1 << 2) | 0;
+ i2 = 38932 + (i5 << 1 << 2) | 0;
do if ((i3 | 0) != (i2 | 0)) {
if (i3 >>> 0 < i9 >>> 0) _abort();
if ((HEAP32[i3 + 12 >> 2] | 0) == (i1 | 0)) break;
_abort();
} while (0);
if ((i4 | 0) == (i3 | 0)) {
- HEAP32[9355] = HEAP32[9355] & ~(1 << i5);
+ HEAP32[9723] = HEAP32[9723] & ~(1 << i5);
break;
}
do if ((i4 | 0) == (i2 | 0)) i32 = i4 + 8 | 0; else {
@@ -18790,17 +17652,17 @@ function _malloc(i1) {
HEAP32[i10 + i6 >> 2] = i6;
i1 = i6 >>> 3;
if (i6 >>> 0 < 256) {
- i3 = 37460 + (i1 << 1 << 2) | 0;
- i2 = HEAP32[9355] | 0;
+ i3 = 38932 + (i1 << 1 << 2) | 0;
+ i2 = HEAP32[9723] | 0;
i1 = 1 << i1;
do if (!(i2 & i1)) {
- HEAP32[9355] = i2 | i1;
+ HEAP32[9723] = i2 | i1;
i36 = i3 + 8 | 0;
i37 = i3;
} else {
i1 = i3 + 8 | 0;
i2 = HEAP32[i1 >> 2] | 0;
- if (i2 >>> 0 >= (HEAP32[9359] | 0) >>> 0) {
+ if (i2 >>> 0 >= (HEAP32[9727] | 0) >>> 0) {
i36 = i1;
i37 = i2;
break;
@@ -18814,79 +17676,80 @@ function _malloc(i1) {
break;
}
i1 = i6 >>> 8;
- do if (!i1) i2 = 0; else {
+ do if (!i1) i3 = 0; else {
if (i6 >>> 0 > 16777215) {
- i2 = 31;
+ i3 = 31;
break;
}
i36 = (i1 + 1048320 | 0) >>> 16 & 8;
i37 = i1 << i36;
i35 = (i37 + 520192 | 0) >>> 16 & 4;
i37 = i37 << i35;
- i2 = (i37 + 245760 | 0) >>> 16 & 2;
- i2 = 14 - (i35 | i36 | i2) + (i37 << i2 >>> 15) | 0;
- i2 = i6 >>> (i2 + 7 | 0) & 1 | i2 << 1;
+ i3 = (i37 + 245760 | 0) >>> 16 & 2;
+ i3 = 14 - (i35 | i36 | i3) + (i37 << i3 >>> 15) | 0;
+ i3 = i6 >>> (i3 + 7 | 0) & 1 | i3 << 1;
} while (0);
- i5 = 37724 + (i2 << 2) | 0;
- HEAP32[i10 + 28 >> 2] = i2;
+ i4 = 39196 + (i3 << 2) | 0;
+ HEAP32[i10 + 28 >> 2] = i3;
i1 = i10 + 16 | 0;
HEAP32[i1 + 4 >> 2] = 0;
HEAP32[i1 >> 2] = 0;
- i1 = HEAP32[9356] | 0;
- i3 = 1 << i2;
- if (!(i1 & i3)) {
- HEAP32[9356] = i1 | i3;
- HEAP32[i5 >> 2] = i10;
- HEAP32[i10 + 24 >> 2] = i5;
+ i1 = HEAP32[9724] | 0;
+ i2 = 1 << i3;
+ if (!(i1 & i2)) {
+ HEAP32[9724] = i1 | i2;
+ HEAP32[i4 >> 2] = i10;
+ HEAP32[i10 + 24 >> 2] = i4;
HEAP32[i10 + 12 >> 2] = i10;
HEAP32[i10 + 8 >> 2] = i10;
break;
}
- i4 = i6 << ((i2 | 0) == 31 ? 0 : 25 - (i2 >>> 1) | 0);
- i3 = HEAP32[i5 >> 2] | 0;
+ i5 = i6 << ((i3 | 0) == 31 ? 0 : 25 - (i3 >>> 1) | 0);
+ i1 = HEAP32[i4 >> 2] | 0;
while (1) {
- if ((HEAP32[i3 + 4 >> 2] & -8 | 0) == (i6 | 0)) {
+ if ((HEAP32[i1 + 4 >> 2] & -8 | 0) == (i6 | 0)) {
+ i3 = i1;
i30 = 281;
break;
}
- i1 = i3 + 16 + (i4 >>> 31 << 2) | 0;
- i2 = HEAP32[i1 >> 2] | 0;
- if (!i2) {
+ i2 = i1 + 16 + (i5 >>> 31 << 2) | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if (!i3) {
i30 = 278;
break;
} else {
- i4 = i4 << 1;
- i3 = i2;
+ i5 = i5 << 1;
+ i1 = i3;
}
}
- if ((i30 | 0) == 278) if (i1 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort(); else {
- HEAP32[i1 >> 2] = i10;
- HEAP32[i10 + 24 >> 2] = i3;
+ if ((i30 | 0) == 278) if (i2 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort(); else {
+ HEAP32[i2 >> 2] = i10;
+ HEAP32[i10 + 24 >> 2] = i1;
HEAP32[i10 + 12 >> 2] = i10;
HEAP32[i10 + 8 >> 2] = i10;
break;
} else if ((i30 | 0) == 281) {
- i2 = i3 + 8 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- i37 = HEAP32[9359] | 0;
- if (i1 >>> 0 >= i37 >>> 0 & i3 >>> 0 >= i37 >>> 0) {
- HEAP32[i1 + 12 >> 2] = i10;
- HEAP32[i2 >> 2] = i10;
- HEAP32[i10 + 8 >> 2] = i1;
+ i1 = i3 + 8 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ i37 = HEAP32[9727] | 0;
+ if (i2 >>> 0 >= i37 >>> 0 & i3 >>> 0 >= i37 >>> 0) {
+ HEAP32[i2 + 12 >> 2] = i10;
+ HEAP32[i1 >> 2] = i10;
+ HEAP32[i10 + 8 >> 2] = i2;
HEAP32[i10 + 12 >> 2] = i3;
HEAP32[i10 + 24 >> 2] = 0;
break;
} else _abort();
}
} else {
- i37 = (HEAP32[9358] | 0) + i6 | 0;
- HEAP32[9358] = i37;
- HEAP32[9361] = i10;
+ i37 = (HEAP32[9726] | 0) + i6 | 0;
+ HEAP32[9726] = i37;
+ HEAP32[9729] = i10;
HEAP32[i10 + 4 >> 2] = i37 | 1;
} while (0);
i37 = i11 + 8 | 0;
return i37 | 0;
- } else i2 = 37868;
+ } else i2 = 39340;
while (1) {
i1 = HEAP32[i2 >> 2] | 0;
if (i1 >>> 0 <= i8 >>> 0 ? (i31 = i1 + (HEAP32[i2 + 4 >> 2] | 0) | 0, i31 >>> 0 > i8 >>> 0) : 0) {
@@ -18905,21 +17768,21 @@ function _malloc(i1) {
i4 = (i4 & 7 | 0) == 0 ? 0 : 0 - i4 & 7;
i37 = i7 + i4 | 0;
i4 = i5 + -40 - i4 | 0;
- HEAP32[9361] = i37;
- HEAP32[9358] = i4;
+ HEAP32[9729] = i37;
+ HEAP32[9726] = i4;
HEAP32[i37 + 4 >> 2] = i4 | 1;
HEAP32[i37 + i4 + 4 >> 2] = 40;
- HEAP32[9362] = HEAP32[9477];
+ HEAP32[9730] = HEAP32[9845];
i4 = i3 + 4 | 0;
HEAP32[i4 >> 2] = 27;
- HEAP32[i1 >> 2] = HEAP32[9467];
- HEAP32[i1 + 4 >> 2] = HEAP32[9468];
- HEAP32[i1 + 8 >> 2] = HEAP32[9469];
- HEAP32[i1 + 12 >> 2] = HEAP32[9470];
- HEAP32[9467] = i7;
- HEAP32[9468] = i5;
- HEAP32[9470] = 0;
- HEAP32[9469] = i1;
+ HEAP32[i1 >> 2] = HEAP32[9835];
+ HEAP32[i1 + 4 >> 2] = HEAP32[9836];
+ HEAP32[i1 + 8 >> 2] = HEAP32[9837];
+ HEAP32[i1 + 12 >> 2] = HEAP32[9838];
+ HEAP32[9835] = i7;
+ HEAP32[9836] = i5;
+ HEAP32[9838] = 0;
+ HEAP32[9837] = i1;
i1 = i3 + 24 | 0;
do {
i1 = i1 + 4 | 0;
@@ -18932,18 +17795,18 @@ function _malloc(i1) {
HEAP32[i3 >> 2] = i7;
i1 = i7 >>> 3;
if (i7 >>> 0 < 256) {
- i3 = 37460 + (i1 << 1 << 2) | 0;
- i2 = HEAP32[9355] | 0;
+ i3 = 38932 + (i1 << 1 << 2) | 0;
+ i2 = HEAP32[9723] | 0;
i1 = 1 << i1;
if (i2 & i1) {
i1 = i3 + 8 | 0;
i2 = HEAP32[i1 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort(); else {
+ if (i2 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort(); else {
i33 = i1;
i34 = i2;
}
} else {
- HEAP32[9355] = i2 | i1;
+ HEAP32[9723] = i2 | i1;
i33 = i3 + 8 | 0;
i34 = i3;
}
@@ -18963,14 +17826,14 @@ function _malloc(i1) {
i3 = 14 - (i35 | i36 | i3) + (i37 << i3 >>> 15) | 0;
i3 = i7 >>> (i3 + 7 | 0) & 1 | i3 << 1;
} else i3 = 0;
- i5 = 37724 + (i3 << 2) | 0;
+ i5 = 39196 + (i3 << 2) | 0;
HEAP32[i8 + 28 >> 2] = i3;
HEAP32[i8 + 20 >> 2] = 0;
HEAP32[i6 >> 2] = 0;
- i1 = HEAP32[9356] | 0;
+ i1 = HEAP32[9724] | 0;
i2 = 1 << i3;
if (!(i1 & i2)) {
- HEAP32[9356] = i1 | i2;
+ HEAP32[9724] = i1 | i2;
HEAP32[i5 >> 2] = i8;
HEAP32[i8 + 24 >> 2] = i5;
HEAP32[i8 + 12 >> 2] = i8;
@@ -18978,36 +17841,37 @@ function _malloc(i1) {
break;
}
i4 = i7 << ((i3 | 0) == 31 ? 0 : 25 - (i3 >>> 1) | 0);
- i3 = HEAP32[i5 >> 2] | 0;
+ i1 = HEAP32[i5 >> 2] | 0;
while (1) {
- if ((HEAP32[i3 + 4 >> 2] & -8 | 0) == (i7 | 0)) {
+ if ((HEAP32[i1 + 4 >> 2] & -8 | 0) == (i7 | 0)) {
+ i3 = i1;
i30 = 307;
break;
}
- i1 = i3 + 16 + (i4 >>> 31 << 2) | 0;
- i2 = HEAP32[i1 >> 2] | 0;
- if (!i2) {
+ i2 = i1 + 16 + (i4 >>> 31 << 2) | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if (!i3) {
i30 = 304;
break;
} else {
i4 = i4 << 1;
- i3 = i2;
+ i1 = i3;
}
}
- if ((i30 | 0) == 304) if (i1 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort(); else {
- HEAP32[i1 >> 2] = i8;
- HEAP32[i8 + 24 >> 2] = i3;
+ if ((i30 | 0) == 304) if (i2 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort(); else {
+ HEAP32[i2 >> 2] = i8;
+ HEAP32[i8 + 24 >> 2] = i1;
HEAP32[i8 + 12 >> 2] = i8;
HEAP32[i8 + 8 >> 2] = i8;
break;
} else if ((i30 | 0) == 307) {
- i2 = i3 + 8 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- i37 = HEAP32[9359] | 0;
- if (i1 >>> 0 >= i37 >>> 0 & i3 >>> 0 >= i37 >>> 0) {
- HEAP32[i1 + 12 >> 2] = i8;
- HEAP32[i2 >> 2] = i8;
- HEAP32[i8 + 8 >> 2] = i1;
+ i1 = i3 + 8 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ i37 = HEAP32[9727] | 0;
+ if (i2 >>> 0 >= i37 >>> 0 & i3 >>> 0 >= i37 >>> 0) {
+ HEAP32[i2 + 12 >> 2] = i8;
+ HEAP32[i1 >> 2] = i8;
+ HEAP32[i8 + 8 >> 2] = i2;
HEAP32[i8 + 12 >> 2] = i3;
HEAP32[i8 + 24 >> 2] = 0;
break;
@@ -19015,16 +17879,16 @@ function _malloc(i1) {
}
}
} else {
- i37 = HEAP32[9359] | 0;
- if ((i37 | 0) == 0 | i7 >>> 0 < i37 >>> 0) HEAP32[9359] = i7;
- HEAP32[9467] = i7;
- HEAP32[9468] = i5;
- HEAP32[9470] = 0;
- HEAP32[9364] = HEAP32[9473];
- HEAP32[9363] = -1;
+ i37 = HEAP32[9727] | 0;
+ if ((i37 | 0) == 0 | i7 >>> 0 < i37 >>> 0) HEAP32[9727] = i7;
+ HEAP32[9835] = i7;
+ HEAP32[9836] = i5;
+ HEAP32[9838] = 0;
+ HEAP32[9732] = HEAP32[9841];
+ HEAP32[9731] = -1;
i1 = 0;
do {
- i37 = 37460 + (i1 << 1 << 2) | 0;
+ i37 = 38932 + (i1 << 1 << 2) | 0;
HEAP32[i37 + 12 >> 2] = i37;
HEAP32[i37 + 8 >> 2] = i37;
i1 = i1 + 1 | 0;
@@ -19033,19 +17897,19 @@ function _malloc(i1) {
i37 = (i37 & 7 | 0) == 0 ? 0 : 0 - i37 & 7;
i36 = i7 + i37 | 0;
i37 = i5 + -40 - i37 | 0;
- HEAP32[9361] = i36;
- HEAP32[9358] = i37;
+ HEAP32[9729] = i36;
+ HEAP32[9726] = i37;
HEAP32[i36 + 4 >> 2] = i37 | 1;
HEAP32[i36 + i37 + 4 >> 2] = 40;
- HEAP32[9362] = HEAP32[9477];
+ HEAP32[9730] = HEAP32[9845];
} while (0);
- i1 = HEAP32[9358] | 0;
+ i1 = HEAP32[9726] | 0;
if (i1 >>> 0 > i14 >>> 0) {
i35 = i1 - i14 | 0;
- HEAP32[9358] = i35;
- i37 = HEAP32[9361] | 0;
+ HEAP32[9726] = i35;
+ i37 = HEAP32[9729] | 0;
i36 = i37 + i14 | 0;
- HEAP32[9361] = i36;
+ HEAP32[9729] = i36;
HEAP32[i36 + 4 >> 2] = i35 | 1;
HEAP32[i37 + 4 >> 2] = i14 | 3;
i37 = i37 + 8 | 0;
@@ -19062,7 +17926,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
i6 = i6 | 0;
i5 = i5 | 0;
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0;
- if (HEAP8[i6 + 48 >> 0] | 0) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEERNS_7ElementE(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16334) | 0, i5) | 0, 10) | 0;
+ if (HEAP8[i6 + 52 >> 0] | 0) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEERNS_7ElementE(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16853) | 0, i5) | 0, 10) | 0;
i2 = __ZN4wasm7Element4listEv(i5) | 0;
i2 = __ZN4wasm7Element3strEv(HEAP32[HEAP32[i2 >> 2] >> 2] | 0) | 0;
i3 = _strchr(i2, 46) | 0;
@@ -19086,7 +17950,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
}
default:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i2) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i2) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 132;
break L6;
@@ -19170,23 +18034,23 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
} while (0);
if ((i7 | 0) == 132) {
if ((HEAP8[i1 >> 0] | 0) == 97) {
- if ((i2 | 0) == (HEAP32[9191] | 0)) {
+ if ((i2 | 0) == (HEAP32[9558] | 0)) {
i1 = __ZN4wasm22SExpressionWasmBuilder8makeCallERNS_7ElementE(i6, i5) | 0;
i7 = 176;
break;
}
- if ((i2 | 0) == (HEAP32[9192] | 0)) {
+ if ((i2 | 0) == (HEAP32[9559] | 0)) {
i1 = __ZN4wasm22SExpressionWasmBuilder14makeCallImportERNS_7ElementE(i6, i5) | 0;
i7 = 176;
break;
}
- if ((i2 | 0) == (HEAP32[9193] | 0)) {
+ if ((i2 | 0) == (HEAP32[9560] | 0)) {
i1 = __ZN4wasm22SExpressionWasmBuilder16makeCallIndirectERNS_7ElementE(i6, i5) | 0;
i7 = 176;
break;
}
}
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i2) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i2) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 140;
}
@@ -19205,7 +18069,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
}
default:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i2) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i2) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 144;
break L37;
@@ -19216,7 +18080,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
i7 = 176;
break L4;
} else {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i2) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i2) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 147;
break;
@@ -19226,7 +18090,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
i7 = 176;
break L4;
} else {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i2) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i2) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 150;
break;
@@ -19236,7 +18100,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
i7 = 176;
break L4;
} else {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i2) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i2) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 153;
break;
@@ -19246,7 +18110,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
i7 = 176;
break L4;
} else {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i2) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i2) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 156;
break;
@@ -19256,7 +18120,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
i7 = 176;
break L4;
} else {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i2) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i2) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 159;
break;
@@ -19266,7 +18130,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
i7 = 176;
break L4;
} else {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i2) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i2) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 162;
break;
@@ -19276,7 +18140,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
i7 = 176;
break L4;
} else {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i2) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i2) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 165;
break;
@@ -19286,7 +18150,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
i7 = 176;
break L4;
} else {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i2) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i2) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 168;
break;
@@ -19296,7 +18160,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
i7 = 176;
break L4;
} else {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i2) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i2) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 171;
break;
@@ -19306,12 +18170,12 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
i7 = 176;
break L4;
} else {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i2) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i2) | 0, 10) | 0;
i1 = i6 + 8 | 0;
__ZNKSt3__18functionIFvvEEclEv(i1);
break;
} while (0);
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i2) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i2) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i1);
i7 = 175;
} else {
@@ -19342,7 +18206,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
}
default:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i4) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i4) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 26;
break L95;
@@ -19508,7 +18372,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
default:
{}
} while (0);
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i4) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i4) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 38;
}
@@ -19544,7 +18408,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
default:
break L139;
} while (0);
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i4) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i4) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 44;
}
@@ -19563,7 +18427,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
}
default:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i4) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i4) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 48;
break L145;
@@ -19574,7 +18438,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
i7 = 176;
break L4;
} else {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i4) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i4) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 51;
break;
@@ -19618,7 +18482,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
default:
{}
} while (0);
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i4) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i4) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 59;
}
@@ -19667,7 +18531,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
default:
{}
} while (0);
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i4) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i4) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 68;
}
@@ -19692,7 +18556,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
}
default:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i4) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i4) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 73;
break L181;
@@ -19721,7 +18585,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
default:
break L190;
} while (0);
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i4) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i4) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 79;
}
@@ -19730,7 +18594,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
i7 = 176;
break L4;
} else {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i4) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i4) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 82;
break;
@@ -19750,7 +18614,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
}
default:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i4) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i4) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 86;
break L202;
@@ -19773,7 +18637,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
default:
break L210;
} while (0);
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i4) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i4) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 91;
}
@@ -19814,7 +18678,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
}
default:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i4) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i4) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 100;
break L216;
@@ -19842,7 +18706,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
break L4;
}
} while (0);
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i4) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i4) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 107;
}
@@ -19851,7 +18715,7 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
i7 = 176;
break L4;
} else {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i4) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i4) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i6 + 8 | 0);
i7 = 110;
break;
@@ -19861,12 +18725,12 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
i7 = 176;
break L4;
} else {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i4) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i4) | 0, 10) | 0;
i1 = i6 + 8 | 0;
__ZNKSt3__18functionIFvvEEclEv(i1);
break;
} while (0);
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16352) | 0, i4) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16871) | 0, i4) | 0, 10) | 0;
__ZNKSt3__18functionIFvvEEclEv(i1);
i7 = 175;
} while (0);
@@ -19874,74 +18738,74 @@ function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i5
return 0;
}
-function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
+function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i4) {
i69 = i69 | 0;
- i2 = i2 | 0;
- var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0, i37 = 0, i38 = 0, i39 = 0, i40 = 0, i41 = 0, i42 = 0, i43 = 0, i44 = 0, i45 = 0, i46 = 0, i47 = 0, i48 = 0, i49 = 0, i50 = 0, i51 = 0, i52 = 0, i53 = 0, i54 = 0, i55 = 0, i56 = 0, i57 = 0, i58 = 0, i59 = 0, i60 = 0, i61 = 0, i62 = 0, i63 = 0, i64 = 0, i65 = 0, i66 = 0, i67 = 0, i68 = 0, i70 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0, i37 = 0, i38 = 0, i39 = 0, i40 = 0, i41 = 0, i42 = 0, i43 = 0, i44 = 0, i45 = 0, i46 = 0, i47 = 0, i48 = 0, i49 = 0, i50 = 0, i51 = 0, i52 = 0, i53 = 0, i54 = 0, i55 = 0, i56 = 0, i57 = 0, i58 = 0, i59 = 0, i60 = 0, i61 = 0, i62 = 0, i63 = 0, i64 = 0, i65 = 0, i66 = 0, i67 = 0, i68 = 0, i70 = 0;
i70 = STACKTOP;
STACKTOP = STACKTOP + 224 | 0;
i64 = i70 + 216 | 0;
- i58 = i70 + 212 | 0;
+ i57 = i70 + 212 | 0;
i67 = i70 + 192 | 0;
- i1 = i70 + 148 | 0;
- i44 = i70 + 140 | 0;
- i3 = i70 + 208 | 0;
- i4 = i70 + 204 | 0;
- i27 = i70 + 132 | 0;
+ i3 = i70 + 148 | 0;
+ i46 = i70 + 140 | 0;
+ i1 = i70 + 208 | 0;
+ i2 = i70 + 204 | 0;
+ i45 = i70 + 132 | 0;
i61 = i70 + 124 | 0;
i56 = i70 + 116 | 0;
- i46 = i70 + 108 | 0;
+ i48 = i70 + 108 | 0;
i49 = i70 + 92 | 0;
- i28 = i70 + 188 | 0;
- i40 = i70 + 184 | 0;
- i41 = i70 + 180 | 0;
- i42 = i70 + 176 | 0;
- i43 = i70 + 172 | 0;
- i45 = i70 + 84 | 0;
- i29 = i70 + 168 | 0;
- i30 = i70 + 164 | 0;
- i31 = i70 + 160 | 0;
- i32 = i70 + 156 | 0;
- i33 = i70 + 152 | 0;
- i34 = i70 + 144 | 0;
- i35 = i70 + 136 | 0;
- i36 = i70 + 128 | 0;
- i37 = i70 + 120 | 0;
- i38 = i70 + 112 | 0;
+ i34 = i70 + 188 | 0;
+ i38 = i70 + 184 | 0;
+ i39 = i70 + 180 | 0;
+ i40 = i70 + 176 | 0;
+ i41 = i70 + 172 | 0;
+ i47 = i70 + 84 | 0;
+ i42 = i70 + 168 | 0;
+ i43 = i70 + 164 | 0;
+ i44 = i70 + 160 | 0;
+ i27 = i70 + 156 | 0;
+ i28 = i70 + 152 | 0;
+ i29 = i70 + 144 | 0;
+ i30 = i70 + 136 | 0;
+ i31 = i70 + 128 | 0;
+ i32 = i70 + 120 | 0;
+ i33 = i70 + 112 | 0;
i50 = i70 + 96 | 0;
i51 = i70 + 88 | 0;
i52 = i70 + 72 | 0;
i53 = i70 + 68 | 0;
- i47 = i70 + 56 | 0;
- i48 = i70 + 52 | 0;
+ i35 = i70 + 56 | 0;
+ i36 = i70 + 52 | 0;
i54 = i70 + 40 | 0;
i55 = i70 + 36 | 0;
- i39 = i70 + 32 | 0;
- i57 = i70 + 28 | 0;
+ i37 = i70 + 32 | 0;
+ i58 = i70 + 28 | 0;
i59 = i70 + 24 | 0;
i60 = i70 + 12 | 0;
i62 = i70 + 8 | 0;
- i66 = i70 + 4 | 0;
+ i65 = i70 + 4 | 0;
i68 = i70;
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i2, 0) | 0, 36912) | 0)) ___assert_fail(12436, 12455, 427, 12470);
- i65 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i2, 1) | 0, 0) | 0;
- HEAP32[i1 >> 2] = HEAP32[i65 >> 2];
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i1, 0) | 0, 36916) | 0)) ___assert_fail(12481, 12455, 429, 12470);
- i65 = __ZN6cashew3RefixEj(i1, 3) | 0;
- HEAP32[i44 >> 2] = HEAP32[i65 >> 2];
- do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i44, 0) | 0, 0) | 0, 36924) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i44, 0) | 0, 1) | 0, 0) | 0, 37008) | 0 : 0) {
- i65 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i44, 0) | 0, 1) | 0, 1) | 0;
- i65 = __ZN6cashew5Value10getIStringEv(HEAP32[i65 >> 2] | 0) | 0;
- __ZN6cashew7IString3setEPKcb(i3, 12260, 1);
- if ((HEAP32[i65 >> 2] | 0) != (HEAP32[i3 >> 2] | 0) ? (i65 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i44, 0) | 0, 1) | 0, 1) | 0, i65 = __ZN6cashew5Value10getIStringEv(HEAP32[i65 >> 2] | 0) | 0, __ZN6cashew7IString3setEPKcb(i4, 12505, 1), (HEAP32[i65 >> 2] | 0) != (HEAP32[i4 >> 2] | 0)) : 0) break;
- HEAP32[i27 >> 2] = i69;
- i65 = i69 + 4 | 0;
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 0) | 0, 38384) | 0)) ___assert_fail(13010, 13029, 427, 13044);
+ i66 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 1) | 0, 0) | 0;
+ HEAP32[i3 >> 2] = HEAP32[i66 >> 2];
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 0) | 0, 38388) | 0)) ___assert_fail(13055, 13029, 429, 13044);
+ i66 = __ZN6cashew3RefixEj(i3, 3) | 0;
+ HEAP32[i46 >> 2] = HEAP32[i66 >> 2];
+ do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i46, 0) | 0, 0) | 0, 38396) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i46, 0) | 0, 1) | 0, 0) | 0, 38480) | 0 : 0) {
+ i66 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i46, 0) | 0, 1) | 0, 1) | 0;
+ i66 = __ZN6cashew5Value10getIStringEv(HEAP32[i66 >> 2] | 0) | 0;
+ __ZN6cashew7IString3setEPKcb(i1, 12834, 1);
+ if ((HEAP32[i66 >> 2] | 0) != (HEAP32[i1 >> 2] | 0) ? (i66 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i46, 0) | 0, 1) | 0, 1) | 0, i66 = __ZN6cashew5Value10getIStringEv(HEAP32[i66 >> 2] | 0) | 0, __ZN6cashew7IString3setEPKcb(i2, 13079, 1), (HEAP32[i66 >> 2] | 0) != (HEAP32[i2 >> 2] | 0)) : 0) break;
+ HEAP32[i45 >> 2] = i69;
+ i66 = i69 + 4 | 0;
i20 = i69 + 80 | 0;
- i26 = i69 + 60 | 0;
- i21 = i69 + 64 | 0;
- i23 = i47 + 4 | 0;
- i24 = i47 + 5 | 0;
- i25 = i47 + 8 | 0;
+ i21 = i69 + 60 | 0;
+ i22 = i69 + 64 | 0;
+ i23 = i35 + 4 | 0;
+ i24 = i35 + 5 | 0;
+ i25 = i35 + 8 | 0;
i63 = i69 + 16 | 0;
i9 = 0;
i3 = 0;
@@ -19953,53 +18817,53 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
i7 = 0;
i8 = 0;
i10 = 0;
- i22 = 1;
+ i26 = 1;
i11 = 0;
i14 = 0;
L13 : while (1) {
- if (i22 >>> 0 >= (__ZN6cashew5Value4sizeEv(HEAP32[i44 >> 2] | 0) | 0) >>> 0) {
+ if (i26 >>> 0 >= (__ZN6cashew5Value4sizeEv(HEAP32[i46 >> 2] | 0) | 0) >>> 0) {
i10 = 12;
break;
}
- i19 = __ZN6cashew3RefixEj(i44, i22) | 0;
+ i19 = __ZN6cashew3RefixEj(i46, i26) | 0;
HEAP32[i61 >> 2] = HEAP32[i19 >> 2];
- L16 : do if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i61, 0) | 0, 36936) | 0)) {
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i61, 0) | 0, 36916) | 0) {
+ L16 : do if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i61, 0) | 0, 38408) | 0)) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i61, 0) | 0, 38388) | 0) {
i2 = HEAP32[i69 >> 2] | 0;
- HEAP32[i39 >> 2] = HEAP32[i61 >> 2];
- HEAP32[i64 >> 2] = HEAP32[i39 >> 2];
+ HEAP32[i37 >> 2] = HEAP32[i61 >> 2];
+ HEAP32[i64 >> 2] = HEAP32[i37 >> 2];
__ZN4wasm6Module11addFunctionEPNS_8FunctionE(i2, __ZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefE(i69, i64) | 0);
i2 = i13;
i1 = i14;
break;
}
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i61, 0) | 0, 36952) | 0) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i61, 0) | 0, 38424) | 0) {
i1 = __ZN6cashew3RefixEj(i61, 1) | 0;
HEAP32[i64 >> 2] = HEAP32[i1 >> 2];
i1 = __ZN6cashew3RefixEj(i64, 1) | 0;
i1 = HEAP32[i1 >> 2] | 0;
- HEAP32[i58 >> 2] = i1;
+ HEAP32[i57 >> 2] = i1;
i2 = 0;
while (1) {
if (i2 >>> 0 >= (__ZN6cashew5Value4sizeEv(i1) | 0) >>> 0) break;
- i1 = __ZN6cashew3RefixEj(i58, i2) | 0;
+ i1 = __ZN6cashew3RefixEj(i57, i2) | 0;
HEAP32[i67 >> 2] = HEAP32[i1 >> 2];
i1 = __ZN6cashew3RefixEj(i67, 0) | 0;
i1 = __ZN6cashew5Value10getIStringEv(HEAP32[i1 >> 2] | 0) | 0;
i1 = HEAP32[i1 >> 2] | 0;
i19 = __ZN6cashew3RefixEj(i67, 1) | 0;
HEAP32[i56 >> 2] = HEAP32[i19 >> 2];
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i56, 0) | 0, 36932) | 0)) {
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i56, 0) | 0, 38404) | 0)) {
i10 = 97;
break L13;
}
- i19 = __ZN10MixedArena5allocIN4wasm6ExportEEEPT_v(HEAP32[i65 >> 2] | 0) | 0;
+ i19 = __ZN10MixedArena5allocIN4wasm6ExportEEEPT_v(HEAP32[i66 >> 2] | 0) | 0;
HEAP32[i19 >> 2] = i1;
i1 = __ZN6cashew3RefixEj(i56, 1) | 0;
i1 = __ZN6cashew5Value10getIStringEv(HEAP32[i1 >> 2] | 0) | 0;
HEAP32[i19 + 4 >> 2] = HEAP32[i1 >> 2];
__ZN4wasm6Module9addExportEPNS_6ExportE(HEAP32[i69 >> 2] | 0, i19);
- i1 = HEAP32[i58 >> 2] | 0;
+ i1 = HEAP32[i57 >> 2] | 0;
i2 = i2 + 1 | 0;
}
i2 = i13;
@@ -20030,23 +18894,23 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
i12 = __ZN6cashew3RefixEj(i56, 0) | 0;
i12 = __ZN6cashew5Value10getIStringEv(HEAP32[i12 >> 2] | 0) | 0;
i12 = HEAP32[i12 >> 2] | 0;
- HEAP32[i46 >> 2] = i12;
+ HEAP32[i48 >> 2] = i12;
i5 = __ZN6cashew3RefixEj(i56, 1) | 0;
HEAP32[i49 >> 2] = HEAP32[i5 >> 2];
- do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i49, 0) | 0, 36988) | 0) {
+ do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i49, 0) | 0, 38460) | 0) {
i5 = __ZN6cashew3RefixEj(i49, 1) | 0;
i5 = __ZN6cashew5Value9getNumberEv(HEAP32[i5 >> 2] | 0) | 0;
if (!(+HEAPF64[i5 >> 3] == 0.0)) {
i10 = 17;
break L13;
}
- HEAP32[i28 >> 2] = i12;
- HEAP32[i40 >> 2] = 0;
- HEAP32[i41 >> 2] = 0;
- HEAP32[i67 >> 2] = HEAP32[i28 >> 2];
- HEAP32[i58 >> 2] = HEAP32[i40 >> 2];
- HEAP32[i64 >> 2] = HEAP32[i41 >> 2];
- __ZN4wasm15Asm2WasmBuilder14allocateGlobalEN6cashew7IStringENS_8WasmTypeEbS2_S2_(i69, i67, 1, 0, i58, i64);
+ HEAP32[i34 >> 2] = i12;
+ HEAP32[i38 >> 2] = 0;
+ HEAP32[i39 >> 2] = 0;
+ HEAP32[i67 >> 2] = HEAP32[i34 >> 2];
+ HEAP32[i57 >> 2] = HEAP32[i38 >> 2];
+ HEAP32[i64 >> 2] = HEAP32[i39 >> 2];
+ __ZN4wasm15Asm2WasmBuilder14allocateGlobalEN6cashew7IStringENS_8WasmTypeEbS2_S2_(i69, i67, 1, 0, i57, i64);
i1 = i16;
i2 = i17;
i3 = i18;
@@ -20054,12 +18918,12 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
i5 = i13;
i12 = i14;
} else {
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i49, 0) | 0, 36948) | 0) {
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i49, 1) | 0, 37064) | 0)) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i49, 0) | 0, 38420) | 0) {
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i49, 1) | 0, 38536) | 0)) {
i10 = 23;
break L13;
}
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i49, 3) | 0, 0) | 0, 36988) | 0)) {
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i49, 3) | 0, 0) | 0, 38460) | 0)) {
i10 = 23;
break L13;
}
@@ -20071,11 +18935,11 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
}
i1 = __ZN6cashew3RefixEj(i49, 2) | 0;
i1 = HEAP32[i1 >> 2] | 0;
- HEAP32[i42 >> 2] = i12;
- HEAP32[i43 >> 2] = i1;
- HEAP32[i58 >> 2] = HEAP32[i42 >> 2];
- HEAP32[i64 >> 2] = HEAP32[i43 >> 2];
- __ZZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefEENK3__0clENS1_7IStringES2_NS_8WasmTypeE(i27, i58, i64, 1);
+ HEAP32[i40 >> 2] = i12;
+ HEAP32[i41 >> 2] = i1;
+ HEAP32[i57 >> 2] = HEAP32[i40 >> 2];
+ HEAP32[i64 >> 2] = HEAP32[i41 >> 2];
+ __ZZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefEENK3__0clENS1_7IStringES2_NS_8WasmTypeE(i45, i57, i64, 1);
i1 = i16;
i2 = i17;
i3 = i18;
@@ -20084,33 +18948,33 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
i12 = i14;
break;
}
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i49, 0) | 0, 37024) | 0) {
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i49, 1) | 0, 37056) | 0)) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i49, 0) | 0, 38496) | 0) {
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i49, 1) | 0, 38528) | 0)) {
i10 = 27;
break L13;
}
i5 = __ZN6cashew3RefixEj(i49, 2) | 0;
- HEAP32[i45 >> 2] = HEAP32[i5 >> 2];
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i45, 0) | 0, 36988) | 0) {
- i5 = __ZN6cashew3RefixEj(i45, 1) | 0;
+ HEAP32[i47 >> 2] = HEAP32[i5 >> 2];
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i47, 0) | 0, 38460) | 0) {
+ i5 = __ZN6cashew3RefixEj(i47, 1) | 0;
i5 = __ZN6cashew5Value9getNumberEv(HEAP32[i5 >> 2] | 0) | 0;
if (!(+HEAPF64[i5 >> 3] == 0.0)) {
i10 = 30;
break L13;
}
- HEAP32[i29 >> 2] = i12;
- HEAP32[i30 >> 2] = 0;
- HEAP32[i31 >> 2] = 0;
- HEAP32[i67 >> 2] = HEAP32[i29 >> 2];
- HEAP32[i58 >> 2] = HEAP32[i30 >> 2];
- HEAP32[i64 >> 2] = HEAP32[i31 >> 2];
- __ZN4wasm15Asm2WasmBuilder14allocateGlobalEN6cashew7IStringENS_8WasmTypeEbS2_S2_(i69, i67, 4, 0, i58, i64);
+ HEAP32[i42 >> 2] = i12;
+ HEAP32[i43 >> 2] = 0;
+ HEAP32[i44 >> 2] = 0;
+ HEAP32[i67 >> 2] = HEAP32[i42 >> 2];
+ HEAP32[i57 >> 2] = HEAP32[i43 >> 2];
+ HEAP32[i64 >> 2] = HEAP32[i44 >> 2];
+ __ZN4wasm15Asm2WasmBuilder14allocateGlobalEN6cashew7IStringENS_8WasmTypeEbS2_S2_(i69, i67, 4, 0, i57, i64);
} else {
- HEAP32[i32 >> 2] = i12;
- HEAP32[i33 >> 2] = HEAP32[i45 >> 2];
- HEAP32[i58 >> 2] = HEAP32[i32 >> 2];
- HEAP32[i64 >> 2] = HEAP32[i33 >> 2];
- __ZZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefEENK3__0clENS1_7IStringES2_NS_8WasmTypeE(i27, i58, i64, 4);
+ HEAP32[i27 >> 2] = i12;
+ HEAP32[i28 >> 2] = HEAP32[i47 >> 2];
+ HEAP32[i57 >> 2] = HEAP32[i27 >> 2];
+ HEAP32[i64 >> 2] = HEAP32[i28 >> 2];
+ __ZZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefEENK3__0clENS1_7IStringES2_NS_8WasmTypeE(i45, i57, i64, 4);
}
i1 = i16;
i2 = i17;
@@ -20120,8 +18984,8 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
i12 = i14;
break;
}
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i49, 0) | 0, 36764) | 0) {
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i49, 1) | 0, 0) | 0, 36932) | 0)) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i49, 0) | 0, 38232) | 0) {
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i49, 1) | 0, 0) | 0, 38404) | 0)) {
i10 = 39;
break L13;
}
@@ -20129,7 +18993,7 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
i10 = 39;
break L13;
}
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i49, 2) | 0, 0) | 0, 0) | 0, 36988) | 0)) {
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i49, 2) | 0, 0) | 0, 0) | 0, 38460) | 0)) {
i10 = 39;
break L13;
}
@@ -20139,13 +19003,13 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
i10 = 39;
break L13;
}
- HEAP32[i34 >> 2] = i12;
- HEAP32[i35 >> 2] = 0;
- HEAP32[i36 >> 2] = 0;
- HEAP32[i67 >> 2] = HEAP32[i34 >> 2];
- HEAP32[i58 >> 2] = HEAP32[i35 >> 2];
- HEAP32[i64 >> 2] = HEAP32[i36 >> 2];
- __ZN4wasm15Asm2WasmBuilder14allocateGlobalEN6cashew7IStringENS_8WasmTypeEbS2_S2_(i69, i67, 3, 0, i58, i64);
+ HEAP32[i29 >> 2] = i12;
+ HEAP32[i30 >> 2] = 0;
+ HEAP32[i31 >> 2] = 0;
+ HEAP32[i67 >> 2] = HEAP32[i29 >> 2];
+ HEAP32[i57 >> 2] = HEAP32[i30 >> 2];
+ HEAP32[i64 >> 2] = HEAP32[i31 >> 2];
+ __ZN4wasm15Asm2WasmBuilder14allocateGlobalEN6cashew7IStringENS_8WasmTypeEbS2_S2_(i69, i67, 3, 0, i57, i64);
i1 = i16;
i2 = i17;
i3 = i18;
@@ -20154,14 +19018,14 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
i12 = i14;
break;
}
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i49, 0) | 0, 37216) | 0) {
- do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i49, 1) | 0, 0) | 0, 36932) | 0) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i49, 0) | 0, 38688) | 0) {
+ do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i49, 1) | 0, 0) | 0, 38404) | 0) {
i5 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i49, 1) | 0, 1) | 0;
i5 = __ZN6cashew5Value10getIStringEv(HEAP32[i5 >> 2] | 0) | 0;
i5 = HEAP32[i5 >> 2] | 0;
i1 = __ZN6cashew3RefixEj(i49, 2) | 0;
i1 = __ZN6cashew5Value10getIStringEv(HEAP32[i1 >> 2] | 0) | 0;
- if ((i5 | 0) != (HEAP32[9150] | 0)) {
+ if ((i5 | 0) != (HEAP32[9516] | 0)) {
i1 = i16;
i2 = i17;
i3 = i18;
@@ -20170,7 +19034,7 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
break;
}
i1 = HEAP32[i1 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[9156] | 0)) {
+ if ((i1 | 0) == (HEAP32[9522] | 0)) {
i1 = i16;
i2 = i17;
i3 = i18;
@@ -20178,7 +19042,7 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
i5 = i13;
break;
}
- if ((i1 | 0) == (HEAP32[9157] | 0)) {
+ if ((i1 | 0) == (HEAP32[9523] | 0)) {
i1 = i16;
i2 = i12;
i3 = i18;
@@ -20186,7 +19050,7 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
i5 = i13;
break;
}
- if ((i1 | 0) == (HEAP32[9158] | 0)) {
+ if ((i1 | 0) == (HEAP32[9524] | 0)) {
i1 = i16;
i2 = i17;
i3 = i12;
@@ -20194,7 +19058,7 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
i5 = i13;
break;
}
- if ((i1 | 0) == (HEAP32[9159] | 0)) {
+ if ((i1 | 0) == (HEAP32[9525] | 0)) {
i1 = i16;
i2 = i17;
i3 = i18;
@@ -20203,7 +19067,7 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
i7 = i12;
break;
}
- if ((i1 | 0) == (HEAP32[9160] | 0)) {
+ if ((i1 | 0) == (HEAP32[9526] | 0)) {
i1 = i16;
i2 = i17;
i3 = i18;
@@ -20211,7 +19075,7 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
i5 = i12;
break;
}
- if ((i1 | 0) == (HEAP32[9161] | 0)) {
+ if ((i1 | 0) == (HEAP32[9527] | 0)) {
i1 = i16;
i2 = i17;
i3 = i18;
@@ -20220,7 +19084,7 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
i6 = i12;
break;
}
- if ((i1 | 0) == (HEAP32[9162] | 0)) {
+ if ((i1 | 0) == (HEAP32[9528] | 0)) {
i9 = i12;
i1 = i16;
i2 = i17;
@@ -20229,7 +19093,7 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
i5 = i13;
break;
}
- i1 = (i1 | 0) == (HEAP32[9163] | 0) ? i12 : i16;
+ i1 = (i1 | 0) == (HEAP32[9529] | 0) ? i12 : i16;
i2 = i17;
i3 = i18;
i4 = i19;
@@ -20241,22 +19105,22 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
i4 = i19;
i5 = i13;
} while (0);
- HEAP32[i37 >> 2] = i12;
- HEAP32[i38 >> 2] = HEAP32[i49 >> 2];
- HEAP32[i58 >> 2] = HEAP32[i37 >> 2];
- HEAP32[i64 >> 2] = HEAP32[i38 >> 2];
- __ZZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefEENK3__0clENS1_7IStringES2_NS_8WasmTypeE(i27, i58, i64, 0);
+ HEAP32[i32 >> 2] = i12;
+ HEAP32[i33 >> 2] = HEAP32[i49 >> 2];
+ HEAP32[i57 >> 2] = HEAP32[i32 >> 2];
+ HEAP32[i64 >> 2] = HEAP32[i33 >> 2];
+ __ZZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefEENK3__0clENS1_7IStringES2_NS_8WasmTypeE(i45, i57, i64, 0);
i12 = i14;
break;
}
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i49, 0) | 0, 37224) | 0)) {
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i49, 0) | 0, 37228) | 0)) {
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i49, 0) | 0, 38696) | 0)) {
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i49, 0) | 0, 38700) | 0)) {
i10 = 88;
break L13;
}
i5 = HEAP32[i69 >> 2] | 0;
i5 = (HEAP32[i5 + 100 >> 2] | 0) - (HEAP32[i5 + 96 >> 2] | 0) >> 2;
- i1 = __ZNSt3__13mapIN6cashew7IStringEiNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_iEEEEEixERS7_(i63, i46) | 0;
+ i1 = __ZNSt3__13mapIN6cashew7IStringEiNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_iEEEEEixERS7_(i63, i48) | 0;
HEAP32[i1 >> 2] = i5;
i1 = __ZN6cashew3RefixEj(i49, 1) | 0;
i1 = HEAP32[i1 >> 2] | 0;
@@ -20264,17 +19128,17 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
i5 = 0;
while (1) {
if (i5 >>> 0 >= (__ZN6cashew5Value4sizeEv(i1) | 0) >>> 0) break;
- i3 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i64, i5) | 0, 1) | 0;
- i3 = __ZN6cashew5Value10getIStringEv(HEAP32[i3 >> 2] | 0) | 0;
- i3 = HEAP32[i3 >> 2] | 0;
- i4 = HEAP32[i69 >> 2] | 0;
- HEAP32[i48 >> 2] = i3;
- i2 = i4 + 100 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i4 + 104 >> 2] | 0) >>> 0) {
- HEAP32[i1 >> 2] = i3;
- HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i4 + 96 | 0, i48);
+ i1 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i64, i5) | 0, 1) | 0;
+ i1 = __ZN6cashew5Value10getIStringEv(HEAP32[i1 >> 2] | 0) | 0;
+ i1 = HEAP32[i1 >> 2] | 0;
+ i2 = HEAP32[i69 >> 2] | 0;
+ HEAP32[i36 >> 2] = i1;
+ i3 = i2 + 100 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if (i4 >>> 0 < (HEAP32[i2 + 104 >> 2] | 0) >>> 0) {
+ HEAP32[i4 >> 2] = i1;
+ HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + 4;
+ } else __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i2 + 96 | 0, i36);
i1 = HEAP32[i64 >> 2] | 0;
i5 = i5 + 1 | 0;
}
@@ -20288,67 +19152,67 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
}
i14 = __ZN6cashew3RefixEj(i49, 1) | 0;
HEAP32[i49 >> 2] = HEAP32[i14 >> 2];
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i49, 0) | 0, 36764) | 0)) {
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i49, 0) | 0, 38232) | 0)) {
i10 = 55;
break L13;
}
i14 = __ZN6cashew3RefixEj(i49, 1) | 0;
- HEAP32[i58 >> 2] = HEAP32[i14 >> 2];
- do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i58, 0) | 0, 37216) | 0) {
- i2 = __ZN6cashew3RefixEj(i58, 2) | 0;
+ HEAP32[i57 >> 2] = HEAP32[i14 >> 2];
+ do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i57, 0) | 0, 38688) | 0) {
+ i2 = __ZN6cashew3RefixEj(i57, 2) | 0;
i2 = __ZN6cashew5Value10getIStringEv(HEAP32[i2 >> 2] | 0) | 0;
i2 = HEAP32[i2 >> 2] | 0;
i1 = i2;
- if ((i1 | 0) == (HEAP32[9156] | 0)) {
+ if ((i1 | 0) == (HEAP32[9522] | 0)) {
i8 = 0;
i10 = 1;
i11 = 1;
i12 = 1;
break;
}
- if ((i1 | 0) == (HEAP32[9157] | 0)) {
+ if ((i1 | 0) == (HEAP32[9523] | 0)) {
i8 = 0;
i10 = 2;
i11 = 1;
i12 = 1;
break;
}
- if ((i1 | 0) == (HEAP32[9158] | 0)) {
+ if ((i1 | 0) == (HEAP32[9524] | 0)) {
i8 = 0;
i10 = 4;
i11 = 1;
i12 = 1;
break;
}
- if ((i1 | 0) == (HEAP32[9159] | 0)) {
+ if ((i1 | 0) == (HEAP32[9525] | 0)) {
i8 = 0;
i10 = 1;
i11 = 1;
i12 = 0;
break;
}
- if ((i1 | 0) == (HEAP32[9160] | 0)) {
+ if ((i1 | 0) == (HEAP32[9526] | 0)) {
i8 = 0;
i10 = 2;
i11 = 1;
i12 = 0;
break;
}
- if ((i1 | 0) == (HEAP32[9161] | 0)) {
+ if ((i1 | 0) == (HEAP32[9527] | 0)) {
i8 = 0;
i10 = 4;
i11 = 1;
i12 = 0;
break;
}
- if ((i1 | 0) == (HEAP32[9162] | 0)) {
+ if ((i1 | 0) == (HEAP32[9528] | 0)) {
i8 = 2;
i10 = 4;
i11 = 0;
i12 = 1;
break;
}
- if ((i1 | 0) == (HEAP32[9163] | 0)) {
+ if ((i1 | 0) == (HEAP32[9529] | 0)) {
i8 = 1;
i10 = 8;
i11 = 0;
@@ -20358,11 +19222,11 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
break L13;
}
} else {
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i58, 0) | 0, 36932) | 0)) {
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i57, 0) | 0, 38404) | 0)) {
i10 = 67;
break L13;
}
- i2 = __ZN6cashew3RefixEj(i58, 1) | 0;
+ i2 = __ZN6cashew3RefixEj(i57, 1) | 0;
i2 = __ZN6cashew5Value10getIStringEv(HEAP32[i2 >> 2] | 0) | 0;
i2 = HEAP32[i2 >> 2] | 0;
i1 = i2;
@@ -20425,15 +19289,15 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
break L13;
}
} while (0);
- if ((__ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i26, i46) | 0) != (i21 | 0)) {
+ if ((__ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i21, i48) | 0) != (i22 | 0)) {
i10 = 78;
break L13;
}
- HEAP32[i47 >> 2] = i10;
+ HEAP32[i35 >> 2] = i10;
HEAP8[i23 >> 0] = i11 & 1;
HEAP8[i24 >> 0] = i12 & 1;
HEAP32[i25 >> 2] = i8;
- __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEE7emplaceIJRS2_S5_EEENS9_INS_14__map_iteratorINS_15__tree_iteratorINS_12__value_typeIS2_S5_EEPNS_11__tree_nodeISJ_PvEEiEEEEbEEDpOT_(i64, i26, i46, i47);
+ __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEE7emplaceIJRS2_S5_EEENS9_INS_14__map_iteratorINS_15__tree_iteratorINS_12__value_typeIS2_S5_EEPNS_11__tree_nodeISJ_PvEEiEEEEbEEDpOT_(i64, i21, i48, i35);
i1 = i16;
i2 = i17;
i3 = i18;
@@ -20450,48 +19314,48 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
}
} while (0);
i13 = i2;
- i22 = i22 + 1 | 0;
+ i26 = i26 + 1 | 0;
i14 = i1;
}
switch (i10 | 0) {
case 12:
{
HEAP32[i67 >> 2] = 0;
- i5 = i67 + 4 | 0;
- HEAP32[i5 >> 2] = 0;
+ i4 = i67 + 4 | 0;
+ HEAP32[i4 >> 2] = 0;
HEAP32[i67 + 8 >> 2] = 0;
- i4 = HEAP32[i69 >> 2] | 0;
- i6 = i4 + 64 | 0;
- i9 = i69 + 96 | 0;
+ i9 = HEAP32[i69 >> 2] | 0;
+ i5 = i9 + 64 | 0;
+ i6 = i69 + 96 | 0;
i7 = i69 + 100 | 0;
i8 = i67 + 8 | 0;
- i4 = HEAP32[i4 + 60 >> 2] | 0;
+ i9 = HEAP32[i9 + 60 >> 2] | 0;
while (1) {
- if ((i4 | 0) == (i6 | 0)) break;
- i2 = HEAP32[i4 + 16 >> 2] | 0;
+ if ((i9 | 0) == (i5 | 0)) break;
+ i2 = HEAP32[i9 + 16 >> 2] | 0;
HEAP32[i61 >> 2] = i2;
- i3 = HEAP32[i4 + 20 >> 2] | 0;
- do if ((__ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_(i9, i61) | 0) == (i7 | 0)) {
- if ((HEAP32[i3 + 4 >> 2] | 0) != (HEAP32[9169] | 0)) {
- i1 = HEAP32[i5 >> 2] | 0;
+ i3 = HEAP32[i9 + 20 >> 2] | 0;
+ do if ((__ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_(i6, i61) | 0) == (i7 | 0)) {
+ if ((HEAP32[i3 + 4 >> 2] | 0) != (HEAP32[9535] | 0)) {
+ i1 = HEAP32[i4 >> 2] | 0;
if ((i1 | 0) == (HEAP32[i8 >> 2] | 0)) {
__ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i67, i61);
break;
} else {
HEAP32[i1 >> 2] = i2;
- HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 4;
+ HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4;
break;
}
}
} else {
- HEAP32[i57 >> 2] = HEAP32[i3 + 4 >> 2];
+ HEAP32[i58 >> 2] = HEAP32[i3 + 4 >> 2];
HEAP32[i59 >> 2] = HEAP32[i3 + 8 >> 2];
- HEAP32[i58 >> 2] = HEAP32[i57 >> 2];
+ HEAP32[i57 >> 2] = HEAP32[i58 >> 2];
HEAP32[i64 >> 2] = HEAP32[i59 >> 2];
- i1 = __ZN4wasm15Asm2WasmBuilder22getBuiltinFunctionTypeENS_4NameES1_PNSt3__16vectorIPNS_10ExpressionENS2_9allocatorIS5_EEEE(i69, i58, i64, 0) | 0;
+ i1 = __ZN4wasm15Asm2WasmBuilder22getBuiltinFunctionTypeENS_4NameES1_PNSt3__16vectorIPNS_10ExpressionENS2_9allocatorIS5_EEEE(i69, i57, i64, 0) | 0;
if (!i1) {
- __ZN4wasm6getSigEPNS_12FunctionTypeE(i60, __ZNSt3__13mapIN6cashew7IStringEN4wasm12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i9, i61) | 0);
- i56 = __ZN4wasm18ensureFunctionTypeENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleER10MixedArena(i60, HEAP32[i69 >> 2] | 0, HEAP32[i65 >> 2] | 0) | 0;
+ __ZN4wasm6getSigEPNS_12FunctionTypeE(i60, __ZNSt3__13mapIN6cashew7IStringEN4wasm12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i6, i61) | 0);
+ i56 = __ZN4wasm18ensureFunctionTypeENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleER10MixedArena(i60, HEAP32[i69 >> 2] | 0, HEAP32[i66 >> 2] | 0) | 0;
HEAP32[i3 + 12 >> 2] = i56;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i60);
break;
@@ -20500,9 +19364,9 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
break;
}
} while (0);
- i4 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i4) | 0;
+ i9 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i9) | 0;
}
- i1 = HEAP32[i5 >> 2] | 0;
+ i1 = HEAP32[i4 >> 2] | 0;
i2 = HEAP32[i67 >> 2] | 0;
while (1) {
if ((i2 | 0) == (i1 | 0)) break;
@@ -20512,22 +19376,22 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
__ZN4wasm6Module12removeImportENS_4NameE(i61, i64);
i2 = i2 + 4 | 0;
}
- i4 = i69 + 32 | 0;
- i3 = i69 + 20 | 0;
- i2 = HEAP32[i69 + 28 >> 2] | 0;
+ i1 = i69 + 32 | 0;
+ i2 = i69 + 20 | 0;
+ i4 = HEAP32[i69 + 28 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i4 | 0)) break;
- i1 = HEAP32[i2 + 16 >> 2] | 0;
- HEAP32[i64 >> 2] = HEAP32[i2 + 20 >> 2];
- if ((__ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEiEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE4findIS3_EENS_15__tree_iteratorIS4_PNS_11__tree_nodeIS4_PvEEiEERKT_(i63, i64) | 0) == (i3 | 0)) {
+ if ((i4 | 0) == (i1 | 0)) break;
+ i3 = HEAP32[i4 + 16 >> 2] | 0;
+ HEAP32[i64 >> 2] = HEAP32[i4 + 20 >> 2];
+ if ((__ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEiEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE4findIS3_EENS_15__tree_iteratorIS4_PNS_11__tree_nodeIS4_PvEEiEERKT_(i63, i64) | 0) == (i2 | 0)) {
i10 = 117;
break;
}
- i61 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i65 >> 2] | 0) | 0;
+ i61 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i66 >> 2] | 0) | 0;
HEAP32[i61 + 8 >> 2] = 0;
- i62 = i1 + 24 | 0;
+ i62 = i3 + 24 | 0;
HEAP32[i61 + 12 >> 2] = HEAP32[i62 >> 2];
- i60 = __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(HEAP32[i65 >> 2] | 0) | 0;
+ i60 = __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(HEAP32[i66 >> 2] | 0) | 0;
i59 = __ZNSt3__13mapIN6cashew7IStringEiNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_iEEEEEixERS7_(i63, i64) | 0;
i59 = HEAP32[i59 >> 2] | 0;
HEAP32[i60 + 8 >> 2] = 1;
@@ -20536,35 +19400,35 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
HEAP32[i61 + 16 >> 2] = i60;
HEAP32[i61 + 4 >> 2] = 1;
HEAP32[i62 >> 2] = i61;
- i2 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i2) | 0;
+ i4 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i4) | 0;
}
- if ((i10 | 0) == 117) ___assert_fail(13081, 12455, 673, 12470);
+ if ((i10 | 0) == 117) ___assert_fail(13655, 13029, 673, 13044);
if (HEAP8[i69 + 40 >> 0] | 0) {
- i5 = __ZN10MixedArena5allocIN4wasm8FunctionEEEPT_v(HEAP32[i65 >> 2] | 0) | 0;
- HEAP32[i5 >> 2] = HEAP32[9178];
- HEAP32[i66 >> 2] = 1;
- i2 = i5 + 12 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i5 + 16 >> 2] | 0) >>> 0) {
- HEAP32[i1 >> 2] = HEAP32[9179];
- HEAP32[i1 + 4 >> 2] = 1;
- HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 8;
- } else __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRN6cashew7IStringENS1_8WasmTypeEEEEvDpOT_(i5 + 8 | 0, 36716, i66);
- i3 = __ZN10MixedArena5allocIN4wasm8GetLocalEEEPT_v(HEAP32[i65 >> 2] | 0) | 0;
- HEAP32[i3 + 8 >> 2] = HEAP32[9179];
- i4 = __ZN10MixedArena5allocIN4wasm4HostEEEPT_v(HEAP32[i65 >> 2] | 0) | 0;
- HEAP32[i4 + 8 >> 2] = 2;
- HEAP32[i68 >> 2] = i3;
- i2 = i4 + 20 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i4 + 24 >> 2] | 0) >>> 0) {
- HEAP32[i1 >> 2] = i3;
- HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i4 + 16 | 0, i68);
- HEAP32[i5 + 36 >> 2] = i4;
+ i5 = __ZN10MixedArena5allocIN4wasm8FunctionEEEPT_v(HEAP32[i66 >> 2] | 0) | 0;
+ HEAP32[i5 >> 2] = HEAP32[9544];
+ HEAP32[i65 >> 2] = 1;
+ i1 = i5 + 12 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i5 + 16 >> 2] | 0) >>> 0) {
+ HEAP32[i2 >> 2] = HEAP32[9545];
+ HEAP32[i2 + 4 >> 2] = 1;
+ HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 8;
+ } else __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRN6cashew7IStringENS1_8WasmTypeEEEEvDpOT_(i5 + 8 | 0, 38180, i65);
+ i1 = __ZN10MixedArena5allocIN4wasm8GetLocalEEEPT_v(HEAP32[i66 >> 2] | 0) | 0;
+ HEAP32[i1 + 8 >> 2] = HEAP32[9545];
+ i2 = __ZN10MixedArena5allocIN4wasm4HostEEEPT_v(HEAP32[i66 >> 2] | 0) | 0;
+ HEAP32[i2 + 8 >> 2] = 2;
+ HEAP32[i68 >> 2] = i1;
+ i3 = i2 + 20 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if (i4 >>> 0 < (HEAP32[i2 + 24 >> 2] | 0) >>> 0) {
+ HEAP32[i4 >> 2] = i1;
+ HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + 4;
+ } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i2 + 16 | 0, i68);
+ HEAP32[i5 + 36 >> 2] = i2;
__ZN4wasm6Module11addFunctionEPNS_8FunctionE(HEAP32[i69 >> 2] | 0, i5);
- i68 = __ZN10MixedArena5allocIN4wasm6ExportEEEPT_v(HEAP32[i65 >> 2] | 0) | 0;
- i66 = HEAP32[9178] | 0;
+ i68 = __ZN10MixedArena5allocIN4wasm6ExportEEEPT_v(HEAP32[i66 >> 2] | 0) | 0;
+ i66 = HEAP32[9544] | 0;
HEAP32[i68 + 4 >> 2] = i66;
HEAP32[i68 >> 2] = i66;
__ZN4wasm6Module9addExportEPNS_6ExportE(HEAP32[i69 >> 2] | 0, i68);
@@ -20575,37 +19439,37 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
}
case 17:
{
- ___assert_fail(12673, 12455, 505, 12470);
+ ___assert_fail(13247, 13029, 505, 13044);
break;
}
case 23:
{
- ___assert_fail(12700, 12455, 509, 12470);
+ ___assert_fail(13274, 13029, 509, 13044);
break;
}
case 27:
{
- ___assert_fail(12770, 12455, 514, 12470);
+ ___assert_fail(13344, 13029, 514, 13044);
break;
}
case 30:
{
- ___assert_fail(12787, 12455, 518, 12470);
+ ___assert_fail(13361, 13029, 518, 13044);
break;
}
case 39:
{
- ___assert_fail(12815, 12455, 525, 12470);
+ ___assert_fail(13389, 13029, 525, 13044);
break;
}
case 55:
{
- ___assert_fail(12926, 12455, 557, 12470);
+ ___assert_fail(13500, 13029, 557, 13044);
break;
}
case 65:
{
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i50, 12943, 19);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i50, 13517, 19);
HEAP32[i51 >> 2] = i2;
HEAP32[i64 >> 2] = HEAP32[i51 >> 2];
__ZN4wasmL8abort_onENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew7IStringE(i50, i64);
@@ -20613,12 +19477,12 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
}
case 67:
{
- ___assert_fail(12963, 12455, 584, 12470);
+ ___assert_fail(13537, 13029, 584, 13044);
break;
}
case 76:
{
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i52, 12986, 25);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i52, 13560, 25);
HEAP32[i53 >> 2] = i2;
HEAP32[i64 >> 2] = HEAP32[i53 >> 2];
__ZN4wasmL8abort_onENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew7IStringE(i52, i64);
@@ -20626,12 +19490,12 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
}
case 78:
{
- ___assert_fail(13012, 12455, 606, 12470);
+ ___assert_fail(13586, 13029, 606, 13044);
break;
}
case 88:
{
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i54, 13044, 19);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i54, 13618, 19);
HEAP32[i55 >> 2] = HEAP32[i56 >> 2];
HEAP32[i64 >> 2] = HEAP32[i55 >> 2];
__ZN4wasmL8abort_onENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew3RefE(i54, i64);
@@ -20639,12 +19503,12 @@ function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i69, i2) {
}
case 97:
{
- ___assert_fail(13064, 12455, 634, 12470);
+ ___assert_fail(13638, 13029, 634, 13044);
break;
}
}
} while (0);
- ___assert_fail(12516, 12455, 431, 12470);
+ ___assert_fail(13090, 13029, 431, 13044);
}
function _printf_core(i50, i3, i51, i52, i53) {
@@ -20653,38 +19517,38 @@ function _printf_core(i50, i3, i51, i52, i53) {
i51 = i51 | 0;
i52 = i52 | 0;
i53 = i53 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i6 = 0, d7 = 0.0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, d13 = 0.0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0, i37 = 0, i38 = 0, i39 = 0, i40 = 0, i41 = 0, i42 = 0, i43 = 0, i44 = 0, i45 = 0, i46 = 0, i47 = 0, i48 = 0, i49 = 0, i54 = 0;
+ var i1 = 0, i2 = 0, i4 = 0, i5 = 0, d6 = 0.0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, d13 = 0.0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0, i37 = 0, i38 = 0, i39 = 0, i40 = 0, i41 = 0, i42 = 0, i43 = 0, i44 = 0, i45 = 0, i46 = 0, i47 = 0, i48 = 0, i49 = 0, i54 = 0;
i54 = STACKTOP;
STACKTOP = STACKTOP + 624 | 0;
- i35 = i54 + 24 | 0;
- i37 = i54 + 16 | 0;
- i36 = i54 + 588 | 0;
- i38 = i54 + 576 | 0;
- i32 = i54;
- i30 = i54 + 536 | 0;
+ i45 = i54 + 24 | 0;
+ i47 = i54 + 16 | 0;
+ i46 = i54 + 588 | 0;
+ i42 = i54 + 576 | 0;
+ i44 = i54;
+ i37 = i54 + 536 | 0;
i49 = i54 + 8 | 0;
- i40 = i54 + 528 | 0;
- i48 = (i50 | 0) != 0;
- i28 = i30 + 40 | 0;
- i42 = i28;
- i30 = i30 + 39 | 0;
- i34 = i49 + 4 | 0;
- i44 = i36;
- i27 = 0 - i44 | 0;
- i33 = i38 + 12 | 0;
- i38 = i38 + 11 | 0;
- i41 = i33;
- i47 = i41 - i44 | 0;
- i45 = -2 - i44 | 0;
- i46 = i41 + 2 | 0;
- i29 = i35 + 288 | 0;
- i31 = i36 + 9 | 0;
- i43 = i31;
- i39 = i36 + 8 | 0;
+ i48 = i54 + 528 | 0;
+ i27 = (i50 | 0) != 0;
+ i28 = i37 + 40 | 0;
+ i36 = i28;
+ i37 = i37 + 39 | 0;
+ i38 = i49 + 4 | 0;
+ i39 = i46;
+ i40 = 0 - i39 | 0;
+ i41 = i42 + 12 | 0;
+ i42 = i42 + 11 | 0;
+ i43 = i41;
+ i29 = i43 - i39 | 0;
+ i30 = -2 - i39 | 0;
+ i31 = i43 + 2 | 0;
+ i32 = i45 + 288 | 0;
+ i33 = i46 + 9 | 0;
+ i34 = i33;
+ i35 = i46 + 8 | 0;
i1 = 0;
i4 = 0;
i2 = 0;
- i15 = i3;
+ i14 = i3;
L1 : while (1) {
do if ((i1 | 0) > -1) if ((i4 | 0) > (2147483647 - i1 | 0)) {
i1 = ___errno_location() | 0;
@@ -20695,11 +19559,11 @@ function _printf_core(i50, i3, i51, i52, i53) {
i1 = i4 + i1 | 0;
break;
} while (0);
- i3 = HEAP8[i15 >> 0] | 0;
+ i3 = HEAP8[i14 >> 0] | 0;
if (!(i3 << 24 >> 24)) {
i26 = 244;
break;
- } else i4 = i15;
+ } else i4 = i14;
L9 : while (1) {
switch (i3 << 24 >> 24) {
case 37:
@@ -20727,23 +19591,23 @@ function _printf_core(i50, i3, i51, i52, i53) {
i3 = i3 + 2 | 0;
if ((HEAP8[i3 >> 0] | 0) == 37) i26 = 9; else break;
} while (0);
- i14 = i4 - i15 | 0;
- if (i48 ? (HEAP32[i50 >> 2] & 32 | 0) == 0 : 0) ___fwritex(i15, i14, i50) | 0;
- if ((i4 | 0) != (i15 | 0)) {
- i4 = i14;
- i15 = i3;
+ i12 = i4 - i14 | 0;
+ if (i27 ? (HEAP32[i50 >> 2] & 32 | 0) == 0 : 0) ___fwritex(i14, i12, i50) | 0;
+ if ((i4 | 0) != (i14 | 0)) {
+ i4 = i12;
+ i14 = i3;
continue;
}
- i6 = i3 + 1 | 0;
- i4 = HEAP8[i6 >> 0] | 0;
+ i7 = i3 + 1 | 0;
+ i4 = HEAP8[i7 >> 0] | 0;
i5 = (i4 << 24 >> 24) + -48 | 0;
if (i5 >>> 0 < 10) {
i25 = (HEAP8[i3 + 2 >> 0] | 0) == 36;
- i6 = i25 ? i3 + 3 | 0 : i6;
- i4 = HEAP8[i6 >> 0] | 0;
- i12 = i25 ? i5 : -1;
+ i7 = i25 ? i3 + 3 | 0 : i7;
+ i4 = HEAP8[i7 >> 0] | 0;
+ i10 = i25 ? i5 : -1;
i2 = i25 ? 1 : i2;
- } else i12 = -1;
+ } else i10 = -1;
i3 = i4 << 24 >> 24;
L25 : do if ((i3 & -32 | 0) == 32) {
i5 = 0;
@@ -20753,8 +19617,8 @@ function _printf_core(i50, i3, i51, i52, i53) {
break L25;
}
i5 = 1 << (i4 << 24 >> 24) + -32 | i5;
- i6 = i6 + 1 | 0;
- i4 = HEAP8[i6 >> 0] | 0;
+ i7 = i7 + 1 | 0;
+ i4 = HEAP8[i7 >> 0] | 0;
i3 = i4 << 24 >> 24;
if ((i3 & -32 | 0) != 32) {
i8 = i5;
@@ -20763,22 +19627,22 @@ function _printf_core(i50, i3, i51, i52, i53) {
}
} else i8 = 0; while (0);
do if (i4 << 24 >> 24 == 42) {
- i4 = i6 + 1 | 0;
+ i4 = i7 + 1 | 0;
i3 = (HEAP8[i4 >> 0] | 0) + -48 | 0;
- if (i3 >>> 0 < 10 ? (HEAP8[i6 + 2 >> 0] | 0) == 36 : 0) {
+ if (i3 >>> 0 < 10 ? (HEAP8[i7 + 2 >> 0] | 0) == 36 : 0) {
HEAP32[i53 + (i3 << 2) >> 2] = 10;
i2 = 1;
- i6 = i6 + 3 | 0;
+ i7 = i7 + 3 | 0;
i3 = HEAP32[i52 + ((HEAP8[i4 >> 0] | 0) + -48 << 3) >> 2] | 0;
} else {
if (i2 | 0) {
i1 = -1;
break L1;
}
- if (!i48) {
+ if (!i27) {
i11 = i8;
i2 = 0;
- i6 = i4;
+ i7 = i4;
i25 = 0;
break;
}
@@ -20786,7 +19650,7 @@ function _printf_core(i50, i3, i51, i52, i53) {
i3 = HEAP32[i2 >> 2] | 0;
HEAP32[i51 >> 2] = i2 + 4;
i2 = 0;
- i6 = i4;
+ i7 = i4;
}
if ((i3 | 0) < 0) {
i11 = i8 | 8192;
@@ -20798,28 +19662,28 @@ function _printf_core(i50, i3, i51, i52, i53) {
} else {
i5 = (i4 << 24 >> 24) + -48 | 0;
if (i5 >>> 0 < 10) {
- i4 = i6;
- i3 = 0;
+ i3 = i7;
+ i4 = 0;
do {
- i3 = (i3 * 10 | 0) + i5 | 0;
- i4 = i4 + 1 | 0;
- i5 = (HEAP8[i4 >> 0] | 0) + -48 | 0;
+ i4 = (i4 * 10 | 0) + i5 | 0;
+ i3 = i3 + 1 | 0;
+ i5 = (HEAP8[i3 >> 0] | 0) + -48 | 0;
} while (i5 >>> 0 < 10);
- if ((i3 | 0) < 0) {
+ if ((i4 | 0) < 0) {
i1 = -1;
break L1;
} else {
i11 = i8;
- i6 = i4;
- i25 = i3;
+ i7 = i3;
+ i25 = i4;
}
} else {
i11 = i8;
i25 = 0;
}
} while (0);
- L46 : do if ((HEAP8[i6 >> 0] | 0) == 46) {
- i3 = i6 + 1 | 0;
+ L46 : do if ((HEAP8[i7 >> 0] | 0) == 46) {
+ i3 = i7 + 1 | 0;
i4 = HEAP8[i3 >> 0] | 0;
if (i4 << 24 >> 24 != 42) {
i5 = (i4 << 24 >> 24) + -48 | 0;
@@ -20837,44 +19701,42 @@ function _printf_core(i50, i3, i51, i52, i53) {
}
}
}
- i3 = i6 + 2 | 0;
+ i3 = i7 + 2 | 0;
i4 = (HEAP8[i3 >> 0] | 0) + -48 | 0;
- if (i4 >>> 0 < 10 ? (HEAP8[i6 + 3 >> 0] | 0) == 36 : 0) {
+ if (i4 >>> 0 < 10 ? (HEAP8[i7 + 3 >> 0] | 0) == 36 : 0) {
HEAP32[i53 + (i4 << 2) >> 2] = 10;
i8 = HEAP32[i52 + ((HEAP8[i3 >> 0] | 0) + -48 << 3) >> 2] | 0;
- i3 = i6 + 4 | 0;
+ i3 = i7 + 4 | 0;
break;
}
if (i2 | 0) {
i1 = -1;
break L1;
}
- if (i48) {
+ if (i27) {
i24 = (HEAP32[i51 >> 2] | 0) + (4 - 1) & ~(4 - 1);
i8 = HEAP32[i24 >> 2] | 0;
HEAP32[i51 >> 2] = i24 + 4;
} else i8 = 0;
} else {
i8 = -1;
- i3 = i6;
+ i3 = i7;
} while (0);
- i10 = 0;
+ i9 = 0;
while (1) {
i4 = (HEAP8[i3 >> 0] | 0) + -65 | 0;
if (i4 >>> 0 > 57) {
i1 = -1;
break L1;
}
- i6 = i3 + 1 | 0;
- i4 = HEAP8[27589 + (i10 * 58 | 0) + i4 >> 0] | 0;
- i5 = i4 & 255;
- if ((i5 + -1 | 0) >>> 0 < 8) {
- i3 = i6;
- i10 = i5;
+ i5 = i3 + 1 | 0;
+ i4 = HEAP8[29280 + (i9 * 58 | 0) + i4 >> 0] | 0;
+ i7 = i4 & 255;
+ if ((i7 + -1 | 0) >>> 0 < 8) {
+ i3 = i5;
+ i9 = i7;
} else {
- i9 = i5;
- i24 = i6;
- i6 = i10;
+ i24 = i5;
break;
}
}
@@ -20882,96 +19744,96 @@ function _printf_core(i50, i3, i51, i52, i53) {
i1 = -1;
break;
}
- i5 = (i12 | 0) > -1;
+ i5 = (i10 | 0) > -1;
do if (i4 << 24 >> 24 == 19) if (i5) {
i1 = -1;
break L1;
} else i26 = 52; else {
if (i5) {
- HEAP32[i53 + (i12 << 2) >> 2] = i9;
- i22 = i52 + (i12 << 3) | 0;
+ HEAP32[i53 + (i10 << 2) >> 2] = i7;
+ i22 = i52 + (i10 << 3) | 0;
i23 = HEAP32[i22 + 4 >> 2] | 0;
- i26 = i32;
+ i26 = i44;
HEAP32[i26 >> 2] = HEAP32[i22 >> 2];
HEAP32[i26 + 4 >> 2] = i23;
i26 = 52;
break;
}
- if (!i48) {
+ if (!i27) {
i1 = 0;
break L1;
}
- _pop_arg_334(i32, i9, i51);
+ _pop_arg_529(i44, i7, i51);
} while (0);
- if ((i26 | 0) == 52 ? (i26 = 0, !i48) : 0) {
- i4 = i14;
- i15 = i24;
+ if ((i26 | 0) == 52 ? (i26 = 0, !i27) : 0) {
+ i4 = i12;
+ i14 = i24;
continue;
}
i10 = HEAP8[i3 >> 0] | 0;
- i10 = (i6 | 0) != 0 & (i10 & 15 | 0) == 3 ? i10 & -33 : i10;
+ i10 = (i9 | 0) != 0 & (i10 & 15 | 0) == 3 ? i10 & -33 : i10;
i5 = i11 & -65537;
i23 = (i11 & 8192 | 0) == 0 ? i11 : i5;
L75 : do switch (i10 | 0) {
case 110:
- switch (i6 | 0) {
+ switch (i9 | 0) {
case 0:
{
- HEAP32[HEAP32[i32 >> 2] >> 2] = i1;
- i4 = i14;
- i15 = i24;
+ HEAP32[HEAP32[i44 >> 2] >> 2] = i1;
+ i4 = i12;
+ i14 = i24;
continue L1;
}
case 1:
{
- HEAP32[HEAP32[i32 >> 2] >> 2] = i1;
- i4 = i14;
- i15 = i24;
+ HEAP32[HEAP32[i44 >> 2] >> 2] = i1;
+ i4 = i12;
+ i14 = i24;
continue L1;
}
case 2:
{
- i4 = HEAP32[i32 >> 2] | 0;
+ i4 = HEAP32[i44 >> 2] | 0;
HEAP32[i4 >> 2] = i1;
HEAP32[i4 + 4 >> 2] = ((i1 | 0) < 0) << 31 >> 31;
- i4 = i14;
- i15 = i24;
+ i4 = i12;
+ i14 = i24;
continue L1;
}
case 3:
{
- HEAP16[HEAP32[i32 >> 2] >> 1] = i1;
- i4 = i14;
- i15 = i24;
+ HEAP16[HEAP32[i44 >> 2] >> 1] = i1;
+ i4 = i12;
+ i14 = i24;
continue L1;
}
case 4:
{
- HEAP8[HEAP32[i32 >> 2] >> 0] = i1;
- i4 = i14;
- i15 = i24;
+ HEAP8[HEAP32[i44 >> 2] >> 0] = i1;
+ i4 = i12;
+ i14 = i24;
continue L1;
}
case 6:
{
- HEAP32[HEAP32[i32 >> 2] >> 2] = i1;
- i4 = i14;
- i15 = i24;
+ HEAP32[HEAP32[i44 >> 2] >> 2] = i1;
+ i4 = i12;
+ i14 = i24;
continue L1;
}
case 7:
{
- i4 = HEAP32[i32 >> 2] | 0;
+ i4 = HEAP32[i44 >> 2] | 0;
HEAP32[i4 >> 2] = i1;
HEAP32[i4 + 4 >> 2] = ((i1 | 0) < 0) << 31 >> 31;
- i4 = i14;
- i15 = i24;
+ i4 = i12;
+ i14 = i24;
continue L1;
}
default:
{
- i4 = i14;
- i15 = i24;
+ i4 = i12;
+ i14 = i24;
continue L1;
}
}
@@ -20992,30 +19854,29 @@ function _printf_core(i50, i3, i51, i52, i53) {
}
case 111:
{
- i4 = i32;
- i3 = HEAP32[i4 >> 2] | 0;
- i4 = HEAP32[i4 + 4 >> 2] | 0;
- if ((i3 | 0) == 0 & (i4 | 0) == 0) i3 = i28; else {
- i5 = i3;
+ i5 = i44;
+ i4 = HEAP32[i5 >> 2] | 0;
+ i5 = HEAP32[i5 + 4 >> 2] | 0;
+ if ((i4 | 0) == 0 & (i5 | 0) == 0) i3 = i28; else {
i3 = i28;
do {
i3 = i3 + -1 | 0;
- HEAP8[i3 >> 0] = i5 & 7 | 48;
- i5 = _bitshift64Lshr(i5 | 0, i4 | 0, 3) | 0;
- i4 = tempRet0;
- } while (!((i5 | 0) == 0 & (i4 | 0) == 0));
+ HEAP8[i3 >> 0] = i4 & 7 | 48;
+ i4 = _bitshift64Lshr(i4 | 0, i5 | 0, 3) | 0;
+ i5 = tempRet0;
+ } while (!((i4 | 0) == 0 & (i5 | 0) == 0));
}
if (!(i23 & 8)) {
i4 = i23;
i9 = 0;
- i6 = 28069;
+ i7 = 29760;
i26 = 77;
} else {
- i9 = i42 - i3 | 0;
+ i9 = i36 - i3 | 0;
i4 = i23;
i8 = (i8 | 0) > (i9 | 0) ? i8 : i9 + 1 | 0;
i9 = 0;
- i6 = 28069;
+ i7 = 29760;
i26 = 77;
}
break;
@@ -21023,49 +19884,49 @@ function _printf_core(i50, i3, i51, i52, i53) {
case 105:
case 100:
{
- i4 = i32;
+ i4 = i44;
i3 = HEAP32[i4 >> 2] | 0;
i4 = HEAP32[i4 + 4 >> 2] | 0;
if ((i4 | 0) < 0) {
i3 = _i64Subtract(0, 0, i3 | 0, i4 | 0) | 0;
i4 = tempRet0;
- i5 = i32;
+ i5 = i44;
HEAP32[i5 >> 2] = i3;
HEAP32[i5 + 4 >> 2] = i4;
i5 = 1;
- i6 = 28069;
+ i7 = 29760;
i26 = 76;
break L75;
}
if (!(i23 & 2048)) {
- i6 = i23 & 1;
- i5 = i6;
- i6 = (i6 | 0) == 0 ? 28069 : 28071;
+ i7 = i23 & 1;
+ i5 = i7;
+ i7 = (i7 | 0) == 0 ? 29760 : 29762;
i26 = 76;
} else {
i5 = 1;
- i6 = 28070;
+ i7 = 29761;
i26 = 76;
}
break;
}
case 117:
{
- i4 = i32;
+ i4 = i44;
i3 = HEAP32[i4 >> 2] | 0;
i4 = HEAP32[i4 + 4 >> 2] | 0;
i5 = 0;
- i6 = 28069;
+ i7 = 29760;
i26 = 76;
break;
}
case 99:
{
- HEAP8[i30 >> 0] = HEAP32[i32 >> 2];
- i3 = i30;
+ HEAP8[i37 >> 0] = HEAP32[i44 >> 2];
+ i3 = i37;
i10 = 1;
i12 = 0;
- i11 = 28069;
+ i11 = 29760;
i4 = i28;
break;
}
@@ -21078,16 +19939,16 @@ function _printf_core(i50, i3, i51, i52, i53) {
}
case 115:
{
- i4 = HEAP32[i32 >> 2] | 0;
- i4 = i4 | 0 ? i4 : 29971;
+ i4 = HEAP32[i44 >> 2] | 0;
+ i4 = i4 | 0 ? i4 : 31662;
i26 = 82;
break;
}
case 67:
{
- HEAP32[i49 >> 2] = HEAP32[i32 >> 2];
- HEAP32[i34 >> 2] = 0;
- HEAP32[i32 >> 2] = i49;
+ HEAP32[i49 >> 2] = HEAP32[i44 >> 2];
+ HEAP32[i38 >> 2] = 0;
+ HEAP32[i44 >> 2] = i49;
i3 = i49;
i8 = -1;
i26 = 86;
@@ -21095,7 +19956,7 @@ function _printf_core(i50, i3, i51, i52, i53) {
}
case 83:
{
- i3 = HEAP32[i32 >> 2] | 0;
+ i3 = HEAP32[i44 >> 2] | 0;
if (!i8) {
_pad(i50, 32, i25, 0, i23);
i3 = 0;
@@ -21112,364 +19973,368 @@ function _printf_core(i50, i3, i51, i52, i53) {
case 102:
case 101:
{
- d7 = +HEAPF64[i32 >> 3];
- HEAP32[i37 >> 2] = 0;
- HEAPF64[tempDoublePtr >> 3] = d7;
+ d6 = +HEAPF64[i44 >> 3];
+ HEAP32[i47 >> 2] = 0;
+ HEAPF64[tempDoublePtr >> 3] = d6;
if ((HEAP32[tempDoublePtr + 4 >> 2] | 0) >= 0) if (!(i23 & 2048)) {
i22 = i23 & 1;
i21 = i22;
- i22 = (i22 | 0) == 0 ? 29979 : 29984;
+ i22 = (i22 | 0) == 0 ? 31670 : 31675;
} else {
i21 = 1;
- i22 = 29981;
+ i22 = 31672;
} else {
+ d6 = -d6;
i21 = 1;
- i22 = 29978;
- d7 = -d7;
+ i22 = 31669;
}
- HEAPF64[tempDoublePtr >> 3] = d7;
+ HEAPF64[tempDoublePtr >> 3] = d6;
i20 = HEAP32[tempDoublePtr + 4 >> 2] & 2146435072;
do if (i20 >>> 0 < 2146435072 | (i20 | 0) == 2146435072 & 0 < 0) {
- d13 = +_frexpl(d7, i37) * 2.0;
+ d13 = +_frexpl(d6, i47) * 2.0;
i4 = d13 != 0.0;
- if (i4) HEAP32[i37 >> 2] = (HEAP32[i37 >> 2] | 0) + -1;
+ if (i4) HEAP32[i47 >> 2] = (HEAP32[i47 >> 2] | 0) + -1;
i18 = i10 | 32;
if ((i18 | 0) == 97) {
- i9 = i10 & 32;
- i14 = (i9 | 0) == 0 ? i22 : i22 + 9 | 0;
+ i11 = i10 & 32;
+ i14 = (i11 | 0) == 0 ? i22 : i22 + 9 | 0;
i12 = i21 | 2;
i3 = 12 - i8 | 0;
do if (!(i8 >>> 0 > 11 | (i3 | 0) == 0)) {
- d7 = 8.0;
+ d6 = 8.0;
do {
i3 = i3 + -1 | 0;
- d7 = d7 * 16.0;
+ d6 = d6 * 16.0;
} while ((i3 | 0) != 0);
if ((HEAP8[i14 >> 0] | 0) == 45) {
- d7 = -(d7 + (-d13 - d7));
+ d6 = -(d6 + (-d13 - d6));
break;
} else {
- d7 = d13 + d7 - d7;
+ d6 = d13 + d6 - d6;
break;
}
- } else d7 = d13; while (0);
- i4 = HEAP32[i37 >> 2] | 0;
+ } else d6 = d13; while (0);
+ i4 = HEAP32[i47 >> 2] | 0;
i3 = (i4 | 0) < 0 ? 0 - i4 | 0 : i4;
- i3 = _fmt_u(i3, ((i3 | 0) < 0) << 31 >> 31, i33) | 0;
- if ((i3 | 0) == (i33 | 0)) {
- HEAP8[i38 >> 0] = 48;
- i3 = i38;
+ i3 = _fmt_u(i3, ((i3 | 0) < 0) << 31 >> 31, i41) | 0;
+ if ((i3 | 0) == (i41 | 0)) {
+ HEAP8[i42 >> 0] = 48;
+ i3 = i42;
}
HEAP8[i3 + -1 >> 0] = (i4 >> 31 & 2) + 43;
- i11 = i3 + -2 | 0;
- HEAP8[i11 >> 0] = i10 + 15;
- i5 = (i8 | 0) < 1;
- i6 = (i23 & 8 | 0) == 0;
- i4 = i36;
+ i9 = i3 + -2 | 0;
+ HEAP8[i9 >> 0] = i10 + 15;
+ i7 = (i8 | 0) < 1;
+ i5 = (i23 & 8 | 0) == 0;
+ i4 = i46;
while (1) {
- i22 = ~~d7;
+ i22 = ~~d6;
i3 = i4 + 1 | 0;
- HEAP8[i4 >> 0] = HEAPU8[28053 + i22 >> 0] | i9;
- d7 = (d7 - +(i22 | 0)) * 16.0;
- do if ((i3 - i44 | 0) == 1) {
- if (i6 & (i5 & d7 == 0.0)) break;
+ HEAP8[i4 >> 0] = HEAPU8[29744 + i22 >> 0] | i11;
+ d6 = (d6 - +(i22 | 0)) * 16.0;
+ do if ((i3 - i39 | 0) == 1) {
+ if (i5 & (i7 & d6 == 0.0)) break;
HEAP8[i3 >> 0] = 46;
i3 = i4 + 2 | 0;
} while (0);
- if (!(d7 != 0.0)) break; else i4 = i3;
+ if (!(d6 != 0.0)) break; else i4 = i3;
}
- i9 = i11;
- i6 = (i8 | 0) != 0 & (i45 + i3 | 0) < (i8 | 0) ? i46 + i8 - i9 | 0 : i47 - i9 + i3 | 0;
- i5 = i6 + i12 | 0;
- _pad(i50, 32, i25, i5, i23);
+ i5 = i9;
+ i8 = (i8 | 0) != 0 & (i30 + i3 | 0) < (i8 | 0) ? i31 + i8 - i5 | 0 : i29 - i5 + i3 | 0;
+ i7 = i8 + i12 | 0;
+ _pad(i50, 32, i25, i7, i23);
if (!(HEAP32[i50 >> 2] & 32)) ___fwritex(i14, i12, i50) | 0;
- _pad(i50, 48, i25, i5, i23 ^ 65536);
- i4 = i3 - i44 | 0;
- if (!(HEAP32[i50 >> 2] & 32)) ___fwritex(i36, i4, i50) | 0;
- i3 = i41 - i9 | 0;
- _pad(i50, 48, i6 - (i4 + i3) | 0, 0, 0);
- if (!(HEAP32[i50 >> 2] & 32)) ___fwritex(i11, i3, i50) | 0;
- _pad(i50, 32, i25, i5, i23 ^ 8192);
- i3 = (i5 | 0) < (i25 | 0) ? i25 : i5;
+ _pad(i50, 48, i25, i7, i23 ^ 65536);
+ i4 = i3 - i39 | 0;
+ if (!(HEAP32[i50 >> 2] & 32)) ___fwritex(i46, i4, i50) | 0;
+ i3 = i43 - i5 | 0;
+ _pad(i50, 48, i8 - (i4 + i3) | 0, 0, 0);
+ if (!(HEAP32[i50 >> 2] & 32)) ___fwritex(i9, i3, i50) | 0;
+ _pad(i50, 32, i25, i7, i23 ^ 8192);
+ i3 = (i7 | 0) < (i25 | 0) ? i25 : i7;
break;
}
i3 = (i8 | 0) < 0 ? 6 : i8;
if (i4) {
- i4 = (HEAP32[i37 >> 2] | 0) + -28 | 0;
- HEAP32[i37 >> 2] = i4;
- d7 = d13 * 268435456.0;
+ i4 = (HEAP32[i47 >> 2] | 0) + -28 | 0;
+ HEAP32[i47 >> 2] = i4;
+ d6 = d13 * 268435456.0;
} else {
- i4 = HEAP32[i37 >> 2] | 0;
- d7 = d13;
+ d6 = d13;
+ i4 = HEAP32[i47 >> 2] | 0;
}
- i20 = (i4 | 0) < 0 ? i35 : i29;
+ i20 = (i4 | 0) < 0 ? i45 : i32;
i19 = i20;
i4 = i20;
do {
- i17 = ~~d7 >>> 0;
+ i17 = ~~d6 >>> 0;
HEAP32[i4 >> 2] = i17;
i4 = i4 + 4 | 0;
- d7 = (d7 - +(i17 >>> 0)) * 1.0e9;
- } while (d7 != 0.0);
+ d6 = (d6 - +(i17 >>> 0)) * 1.0e9;
+ } while (d6 != 0.0);
i5 = i4;
- i4 = HEAP32[i37 >> 2] | 0;
+ i4 = HEAP32[i47 >> 2] | 0;
if ((i4 | 0) > 0) {
i8 = i20;
while (1) {
i9 = (i4 | 0) > 29 ? 29 : i4;
- i6 = i5 + -4 | 0;
- do if (i6 >>> 0 < i8 >>> 0) i6 = i8; else {
+ i7 = i5 + -4 | 0;
+ do if (i7 >>> 0 < i8 >>> 0) i7 = i8; else {
i4 = 0;
do {
- i17 = _bitshift64Shl(HEAP32[i6 >> 2] | 0, 0, i9 | 0) | 0;
+ i17 = _bitshift64Shl(HEAP32[i7 >> 2] | 0, 0, i9 | 0) | 0;
i17 = _i64Add(i17 | 0, tempRet0 | 0, i4 | 0, 0) | 0;
i4 = tempRet0;
i16 = ___uremdi3(i17 | 0, i4 | 0, 1e9, 0) | 0;
- HEAP32[i6 >> 2] = i16;
+ HEAP32[i7 >> 2] = i16;
i4 = ___udivdi3(i17 | 0, i4 | 0, 1e9, 0) | 0;
- i6 = i6 + -4 | 0;
- } while (i6 >>> 0 >= i8 >>> 0);
+ i7 = i7 + -4 | 0;
+ } while (i7 >>> 0 >= i8 >>> 0);
if (!i4) {
- i6 = i8;
+ i7 = i8;
break;
}
- i6 = i8 + -4 | 0;
- HEAP32[i6 >> 2] = i4;
+ i7 = i8 + -4 | 0;
+ HEAP32[i7 >> 2] = i4;
} while (0);
while (1) {
- if (i5 >>> 0 <= i6 >>> 0) break;
+ if (i5 >>> 0 <= i7 >>> 0) break;
i4 = i5 + -4 | 0;
if (!(HEAP32[i4 >> 2] | 0)) i5 = i4; else break;
}
- i4 = (HEAP32[i37 >> 2] | 0) - i9 | 0;
- HEAP32[i37 >> 2] = i4;
- if ((i4 | 0) > 0) i8 = i6; else break;
+ i4 = (HEAP32[i47 >> 2] | 0) - i9 | 0;
+ HEAP32[i47 >> 2] = i4;
+ if ((i4 | 0) > 0) i8 = i7; else break;
}
- } else i6 = i20;
+ } else i7 = i20;
if ((i4 | 0) < 0) {
i14 = ((i3 + 25 | 0) / 9 | 0) + 1 | 0;
i15 = (i18 | 0) == 102;
- i11 = i6;
+ i11 = i7;
while (1) {
i12 = 0 - i4 | 0;
i12 = (i12 | 0) > 9 ? 9 : i12;
do if (i11 >>> 0 < i5 >>> 0) {
- i9 = (1 << i12) + -1 | 0;
+ i4 = (1 << i12) + -1 | 0;
i8 = 1e9 >>> i12;
- i6 = 0;
- i4 = i11;
+ i7 = 0;
+ i9 = i11;
do {
- i17 = HEAP32[i4 >> 2] | 0;
- HEAP32[i4 >> 2] = (i17 >>> i12) + i6;
- i6 = Math_imul(i17 & i9, i8) | 0;
- i4 = i4 + 4 | 0;
- } while (i4 >>> 0 < i5 >>> 0);
+ i17 = HEAP32[i9 >> 2] | 0;
+ HEAP32[i9 >> 2] = (i17 >>> i12) + i7;
+ i7 = Math_imul(i17 & i4, i8) | 0;
+ i9 = i9 + 4 | 0;
+ } while (i9 >>> 0 < i5 >>> 0);
i4 = (HEAP32[i11 >> 2] | 0) == 0 ? i11 + 4 | 0 : i11;
- if (!i6) {
- i6 = i4;
+ if (!i7) {
+ i7 = i4;
break;
}
- HEAP32[i5 >> 2] = i6;
- i6 = i4;
+ HEAP32[i5 >> 2] = i7;
+ i7 = i4;
i5 = i5 + 4 | 0;
- } else i6 = (HEAP32[i11 >> 2] | 0) == 0 ? i11 + 4 | 0 : i11; while (0);
- i4 = i15 ? i20 : i6;
+ } else i7 = (HEAP32[i11 >> 2] | 0) == 0 ? i11 + 4 | 0 : i11; while (0);
+ i4 = i15 ? i20 : i7;
i5 = (i5 - i4 >> 2 | 0) > (i14 | 0) ? i4 + (i14 << 2) | 0 : i5;
- i4 = (HEAP32[i37 >> 2] | 0) + i12 | 0;
- HEAP32[i37 >> 2] = i4;
+ i4 = (HEAP32[i47 >> 2] | 0) + i12 | 0;
+ HEAP32[i47 >> 2] = i4;
if ((i4 | 0) >= 0) {
- i4 = i6;
- i15 = i5;
+ i15 = i7;
break;
- } else i11 = i6;
+ } else i11 = i7;
}
- } else {
- i4 = i6;
- i15 = i5;
- }
- do if (i4 >>> 0 < i15 >>> 0) {
- i5 = (i19 - i4 >> 2) * 9 | 0;
- i8 = HEAP32[i4 >> 2] | 0;
- if (i8 >>> 0 < 10) break; else i6 = 10;
+ } else i15 = i7;
+ do if (i15 >>> 0 < i5 >>> 0) {
+ i4 = (i19 - i15 >> 2) * 9 | 0;
+ i8 = HEAP32[i15 >> 2] | 0;
+ if (i8 >>> 0 < 10) break; else i7 = 10;
do {
- i6 = i6 * 10 | 0;
- i5 = i5 + 1 | 0;
- } while (i8 >>> 0 >= i6 >>> 0);
- } else i5 = 0; while (0);
+ i7 = i7 * 10 | 0;
+ i4 = i4 + 1 | 0;
+ } while (i8 >>> 0 >= i7 >>> 0);
+ } else i4 = 0; while (0);
i16 = (i18 | 0) == 103;
i17 = (i3 | 0) != 0;
- i6 = i3 - ((i18 | 0) != 102 ? i5 : 0) + ((i17 & i16) << 31 >> 31) | 0;
- if ((i6 | 0) < (((i15 - i19 >> 2) * 9 | 0) + -9 | 0)) {
- i8 = i6 + 9216 | 0;
- i6 = i20 + 4 + (((i8 | 0) / 9 | 0) + -1024 << 2) | 0;
- i8 = ((i8 | 0) % 9 | 0) + 1 | 0;
- if ((i8 | 0) < 9) {
- i9 = 10;
+ i7 = i3 - ((i18 | 0) != 102 ? i4 : 0) + ((i17 & i16) << 31 >> 31) | 0;
+ if ((i7 | 0) < (((i5 - i19 >> 2) * 9 | 0) + -9 | 0)) {
+ i9 = i7 + 9216 | 0;
+ i7 = i20 + 4 + (((i9 | 0) / 9 | 0) + -1024 << 2) | 0;
+ i9 = ((i9 | 0) % 9 | 0) + 1 | 0;
+ if ((i9 | 0) < 9) {
+ i8 = 10;
do {
- i9 = i9 * 10 | 0;
- i8 = i8 + 1 | 0;
- } while ((i8 | 0) != 9);
- } else i9 = 10;
- i12 = HEAP32[i6 >> 2] | 0;
- i14 = (i12 >>> 0) % (i9 >>> 0) | 0;
- i8 = (i6 + 4 | 0) == (i15 | 0);
- do if (!(i8 & (i14 | 0) == 0)) {
- d13 = (((i12 >>> 0) / (i9 >>> 0) | 0) & 1 | 0) == 0 ? 9007199254740992.0 : 9007199254740994.0;
- i11 = (i9 | 0) / 2 | 0;
- if (i14 >>> 0 < i11 >>> 0) d7 = .5; else d7 = i8 & (i14 | 0) == (i11 | 0) ? 1.0 : 1.5;
+ i8 = i8 * 10 | 0;
+ i9 = i9 + 1 | 0;
+ } while ((i9 | 0) != 9);
+ } else i8 = 10;
+ i12 = HEAP32[i7 >> 2] | 0;
+ i14 = (i12 >>> 0) % (i8 >>> 0) | 0;
+ i9 = (i7 + 4 | 0) == (i5 | 0);
+ do if (i9 & (i14 | 0) == 0) i8 = i15; else {
+ d13 = (((i12 >>> 0) / (i8 >>> 0) | 0) & 1 | 0) == 0 ? 9007199254740992.0 : 9007199254740994.0;
+ i11 = (i8 | 0) / 2 | 0;
+ if (i14 >>> 0 < i11 >>> 0) d6 = .5; else d6 = i9 & (i14 | 0) == (i11 | 0) ? 1.0 : 1.5;
do if (i21) {
if ((HEAP8[i22 >> 0] | 0) != 45) break;
d13 = -d13;
- d7 = -d7;
+ d6 = -d6;
} while (0);
- i8 = i12 - i14 | 0;
- HEAP32[i6 >> 2] = i8;
- if (!(d13 + d7 != d13)) break;
- i18 = i8 + i9 | 0;
- HEAP32[i6 >> 2] = i18;
+ i9 = i12 - i14 | 0;
+ HEAP32[i7 >> 2] = i9;
+ if (!(d13 + d6 != d13)) {
+ i8 = i15;
+ break;
+ }
+ i18 = i9 + i8 | 0;
+ HEAP32[i7 >> 2] = i18;
if (i18 >>> 0 > 999999999) {
- i5 = i6;
+ i4 = i15;
while (1) {
- i6 = i5 + -4 | 0;
- HEAP32[i5 >> 2] = 0;
- if (i6 >>> 0 < i4 >>> 0) {
+ i8 = i7 + -4 | 0;
+ HEAP32[i7 >> 2] = 0;
+ if (i8 >>> 0 < i4 >>> 0) {
i4 = i4 + -4 | 0;
HEAP32[i4 >> 2] = 0;
}
- i18 = (HEAP32[i6 >> 2] | 0) + 1 | 0;
- HEAP32[i6 >> 2] = i18;
- if (i18 >>> 0 > 999999999) i5 = i6; else break;
+ i18 = (HEAP32[i8 >> 2] | 0) + 1 | 0;
+ HEAP32[i8 >> 2] = i18;
+ if (i18 >>> 0 > 999999999) i7 = i8; else {
+ i11 = i4;
+ i7 = i8;
+ break;
+ }
}
- }
- i5 = (i19 - i4 >> 2) * 9 | 0;
- i9 = HEAP32[i4 >> 2] | 0;
- if (i9 >>> 0 < 10) break; else i8 = 10;
+ } else i11 = i15;
+ i4 = (i19 - i11 >> 2) * 9 | 0;
+ i9 = HEAP32[i11 >> 2] | 0;
+ if (i9 >>> 0 < 10) {
+ i8 = i11;
+ break;
+ } else i8 = 10;
do {
i8 = i8 * 10 | 0;
- i5 = i5 + 1 | 0;
+ i4 = i4 + 1 | 0;
} while (i9 >>> 0 >= i8 >>> 0);
+ i8 = i11;
} while (0);
- i14 = i6 + 4 | 0;
- i18 = i4;
- i4 = i15 >>> 0 > i14 >>> 0 ? i14 : i15;
- } else {
- i18 = i4;
- i4 = i15;
+ i18 = i7 + 4 | 0;
+ i15 = i8;
+ i5 = i5 >>> 0 > i18 >>> 0 ? i18 : i5;
}
- i12 = 0 - i5 | 0;
+ i12 = 0 - i4 | 0;
while (1) {
- if (i4 >>> 0 <= i18 >>> 0) {
+ if (i5 >>> 0 <= i15 >>> 0) {
i14 = 0;
- i15 = i4;
+ i18 = i5;
break;
}
- i6 = i4 + -4 | 0;
- if (!(HEAP32[i6 >> 2] | 0)) i4 = i6; else {
+ i7 = i5 + -4 | 0;
+ if (!(HEAP32[i7 >> 2] | 0)) i5 = i7; else {
i14 = 1;
- i15 = i4;
+ i18 = i5;
break;
}
}
do if (i16) {
i3 = (i17 & 1 ^ 1) + i3 | 0;
- if ((i3 | 0) > (i5 | 0) & (i5 | 0) > -5) {
- i3 = i3 + -1 - i5 | 0;
+ if ((i3 | 0) > (i4 | 0) & (i4 | 0) > -5) {
i10 = i10 + -1 | 0;
+ i3 = i3 + -1 - i4 | 0;
} else {
- i3 = i3 + -1 | 0;
i10 = i10 + -2 | 0;
+ i3 = i3 + -1 | 0;
}
- i4 = i23 & 8;
- if (i4 | 0) break;
+ i5 = i23 & 8;
+ if (i5 | 0) break;
do if (i14) {
- i4 = HEAP32[i15 + -4 >> 2] | 0;
- if (!i4) {
- i6 = 9;
+ i5 = HEAP32[i18 + -4 >> 2] | 0;
+ if (!i5) {
+ i7 = 9;
break;
}
- if (!((i4 >>> 0) % 10 | 0)) {
+ if (!((i5 >>> 0) % 10 | 0)) {
i8 = 10;
- i6 = 0;
+ i7 = 0;
} else {
- i6 = 0;
+ i7 = 0;
break;
}
do {
i8 = i8 * 10 | 0;
- i6 = i6 + 1 | 0;
- } while (!((i4 >>> 0) % (i8 >>> 0) | 0 | 0));
- } else i6 = 9; while (0);
- i4 = ((i15 - i19 >> 2) * 9 | 0) + -9 | 0;
+ i7 = i7 + 1 | 0;
+ } while (!((i5 >>> 0) % (i8 >>> 0) | 0 | 0));
+ } else i7 = 9; while (0);
+ i5 = ((i18 - i19 >> 2) * 9 | 0) + -9 | 0;
if ((i10 | 32 | 0) == 102) {
- i19 = i4 - i6 | 0;
- i19 = (i19 | 0) < 0 ? 0 : i19;
- i4 = 0;
- i3 = (i3 | 0) < (i19 | 0) ? i3 : i19;
+ i5 = i5 - i7 | 0;
+ i5 = (i5 | 0) < 0 ? 0 : i5;
+ i3 = (i3 | 0) < (i5 | 0) ? i3 : i5;
+ i5 = 0;
break;
} else {
- i19 = i4 + i5 - i6 | 0;
- i19 = (i19 | 0) < 0 ? 0 : i19;
- i4 = 0;
- i3 = (i3 | 0) < (i19 | 0) ? i3 : i19;
+ i5 = i5 + i4 - i7 | 0;
+ i5 = (i5 | 0) < 0 ? 0 : i5;
+ i3 = (i3 | 0) < (i5 | 0) ? i3 : i5;
+ i5 = 0;
break;
}
- } else i4 = i23 & 8; while (0);
- i11 = i3 | i4;
+ } else i5 = i23 & 8; while (0);
+ i11 = i3 | i5;
i8 = (i11 | 0) != 0 & 1;
i9 = (i10 | 32 | 0) == 102;
if (i9) {
+ i4 = (i4 | 0) > 0 ? i4 : 0;
i10 = 0;
- i5 = (i5 | 0) > 0 ? i5 : 0;
} else {
- i6 = (i5 | 0) < 0 ? i12 : i5;
- i6 = _fmt_u(i6, ((i6 | 0) < 0) << 31 >> 31, i33) | 0;
- if ((i41 - i6 | 0) < 2) do {
- i6 = i6 + -1 | 0;
- HEAP8[i6 >> 0] = 48;
- } while ((i41 - i6 | 0) < 2);
- HEAP8[i6 + -1 >> 0] = (i5 >> 31 & 2) + 43;
- i5 = i6 + -2 | 0;
- HEAP8[i5 >> 0] = i10;
- i10 = i5;
- i5 = i41 - i5 | 0;
- }
- i12 = i21 + 1 + i3 + i8 + i5 | 0;
+ i7 = (i4 | 0) < 0 ? i12 : i4;
+ i7 = _fmt_u(i7, ((i7 | 0) < 0) << 31 >> 31, i41) | 0;
+ if ((i43 - i7 | 0) < 2) do {
+ i7 = i7 + -1 | 0;
+ HEAP8[i7 >> 0] = 48;
+ } while ((i43 - i7 | 0) < 2);
+ HEAP8[i7 + -1 >> 0] = (i4 >> 31 & 2) + 43;
+ i19 = i7 + -2 | 0;
+ HEAP8[i19 >> 0] = i10;
+ i4 = i43 - i19 | 0;
+ i10 = i19;
+ }
+ i12 = i21 + 1 + i3 + i8 + i4 | 0;
_pad(i50, 32, i25, i12, i23);
if (!(HEAP32[i50 >> 2] & 32)) ___fwritex(i22, i21, i50) | 0;
_pad(i50, 48, i25, i12, i23 ^ 65536);
do if (i9) {
- i6 = i18 >>> 0 > i20 >>> 0 ? i20 : i18;
- i4 = i6;
+ i7 = i15 >>> 0 > i20 >>> 0 ? i20 : i15;
+ i4 = i7;
do {
- i5 = _fmt_u(HEAP32[i4 >> 2] | 0, 0, i31) | 0;
- do if ((i4 | 0) == (i6 | 0)) {
- if ((i5 | 0) != (i31 | 0)) break;
- HEAP8[i39 >> 0] = 48;
- i5 = i39;
+ i5 = _fmt_u(HEAP32[i4 >> 2] | 0, 0, i33) | 0;
+ do if ((i4 | 0) == (i7 | 0)) {
+ if ((i5 | 0) != (i33 | 0)) break;
+ HEAP8[i35 >> 0] = 48;
+ i5 = i35;
} else {
- if (i5 >>> 0 <= i36 >>> 0) break;
- _memset(i36 | 0, 48, i5 - i44 | 0) | 0;
- do i5 = i5 + -1 | 0; while (i5 >>> 0 > i36 >>> 0);
+ if (i5 >>> 0 <= i46 >>> 0) break;
+ _memset(i46 | 0, 48, i5 - i39 | 0) | 0;
+ do i5 = i5 + -1 | 0; while (i5 >>> 0 > i46 >>> 0);
} while (0);
- if (!(HEAP32[i50 >> 2] & 32)) ___fwritex(i5, i43 - i5 | 0, i50) | 0;
+ if (!(HEAP32[i50 >> 2] & 32)) ___fwritex(i5, i34 - i5 | 0, i50) | 0;
i4 = i4 + 4 | 0;
} while (i4 >>> 0 <= i20 >>> 0);
do if (i11 | 0) {
if (HEAP32[i50 >> 2] & 32 | 0) break;
- ___fwritex(35397, 1, i50) | 0;
+ ___fwritex(36861, 1, i50) | 0;
} while (0);
- if ((i3 | 0) > 0 & i4 >>> 0 < i15 >>> 0) {
+ if ((i3 | 0) > 0 & i4 >>> 0 < i18 >>> 0) {
i5 = i4;
while (1) {
- i4 = _fmt_u(HEAP32[i5 >> 2] | 0, 0, i31) | 0;
- if (i4 >>> 0 > i36 >>> 0) {
- _memset(i36 | 0, 48, i4 - i44 | 0) | 0;
- do i4 = i4 + -1 | 0; while (i4 >>> 0 > i36 >>> 0);
+ i4 = _fmt_u(HEAP32[i5 >> 2] | 0, 0, i33) | 0;
+ if (i4 >>> 0 > i46 >>> 0) {
+ _memset(i46 | 0, 48, i4 - i39 | 0) | 0;
+ do i4 = i4 + -1 | 0; while (i4 >>> 0 > i46 >>> 0);
}
if (!(HEAP32[i50 >> 2] & 32)) ___fwritex(i4, (i3 | 0) > 9 ? 9 : i3, i50) | 0;
i5 = i5 + 4 | 0;
i4 = i3 + -9 | 0;
- if (!((i3 | 0) > 9 & i5 >>> 0 < i15 >>> 0)) {
+ if (!((i3 | 0) > 9 & i5 >>> 0 < i18 >>> 0)) {
i3 = i4;
break;
} else i3 = i4;
@@ -21477,17 +20342,17 @@ function _printf_core(i50, i3, i51, i52, i53) {
}
_pad(i50, 48, i3 + 9 | 0, 9, 0);
} else {
- i9 = i14 ? i15 : i18 + 4 | 0;
+ i9 = i14 ? i18 : i15 + 4 | 0;
if ((i3 | 0) > -1) {
- i8 = (i4 | 0) == 0;
- i6 = i18;
+ i8 = (i5 | 0) == 0;
+ i7 = i15;
do {
- i4 = _fmt_u(HEAP32[i6 >> 2] | 0, 0, i31) | 0;
- if ((i4 | 0) == (i31 | 0)) {
- HEAP8[i39 >> 0] = 48;
- i4 = i39;
+ i4 = _fmt_u(HEAP32[i7 >> 2] | 0, 0, i33) | 0;
+ if ((i4 | 0) == (i33 | 0)) {
+ HEAP8[i35 >> 0] = 48;
+ i4 = i35;
}
- do if ((i6 | 0) == (i18 | 0)) {
+ do if ((i7 | 0) == (i15 | 0)) {
i5 = i4 + 1 | 0;
if (!(HEAP32[i50 >> 2] & 32)) ___fwritex(i4, 1, i50) | 0;
if (i8 & (i3 | 0) < 1) {
@@ -21498,85 +20363,84 @@ function _printf_core(i50, i3, i51, i52, i53) {
i4 = i5;
break;
}
- ___fwritex(35397, 1, i50) | 0;
+ ___fwritex(36861, 1, i50) | 0;
i4 = i5;
} else {
- if (i4 >>> 0 <= i36 >>> 0) break;
- _memset(i36 | 0, 48, i4 + i27 | 0) | 0;
- do i4 = i4 + -1 | 0; while (i4 >>> 0 > i36 >>> 0);
+ if (i4 >>> 0 <= i46 >>> 0) break;
+ _memset(i46 | 0, 48, i4 + i40 | 0) | 0;
+ do i4 = i4 + -1 | 0; while (i4 >>> 0 > i46 >>> 0);
} while (0);
- i5 = i43 - i4 | 0;
+ i5 = i34 - i4 | 0;
if (!(HEAP32[i50 >> 2] & 32)) ___fwritex(i4, (i3 | 0) > (i5 | 0) ? i5 : i3, i50) | 0;
i3 = i3 - i5 | 0;
- i6 = i6 + 4 | 0;
- } while (i6 >>> 0 < i9 >>> 0 & (i3 | 0) > -1);
+ i7 = i7 + 4 | 0;
+ } while (i7 >>> 0 < i9 >>> 0 & (i3 | 0) > -1);
}
_pad(i50, 48, i3 + 18 | 0, 18, 0);
if (HEAP32[i50 >> 2] & 32 | 0) break;
- ___fwritex(i10, i41 - i10 | 0, i50) | 0;
+ ___fwritex(i10, i43 - i10 | 0, i50) | 0;
} while (0);
_pad(i50, 32, i25, i12, i23 ^ 8192);
i3 = (i12 | 0) < (i25 | 0) ? i25 : i12;
} else {
i9 = (i10 & 32 | 0) != 0;
- i8 = d7 != d7 | 0.0 != 0.0;
+ i8 = d6 != d6 | 0.0 != 0.0;
i4 = i8 ? 0 : i21;
- i6 = i4 + 3 | 0;
- _pad(i50, 32, i25, i6, i5);
+ i7 = i4 + 3 | 0;
+ _pad(i50, 32, i25, i7, i5);
i3 = HEAP32[i50 >> 2] | 0;
if (!(i3 & 32)) {
___fwritex(i22, i4, i50) | 0;
i3 = HEAP32[i50 >> 2] | 0;
}
- if (!(i3 & 32)) ___fwritex(i8 ? (i9 ? 30290 : 30005) : i9 ? 29997 : 30001, 3, i50) | 0;
- _pad(i50, 32, i25, i6, i23 ^ 8192);
- i3 = (i6 | 0) < (i25 | 0) ? i25 : i6;
+ if (!(i3 & 32)) ___fwritex(i8 ? (i9 ? 31696 : 31700) : i9 ? 31688 : 31692, 3, i50) | 0;
+ _pad(i50, 32, i25, i7, i23 ^ 8192);
+ i3 = (i7 | 0) < (i25 | 0) ? i25 : i7;
} while (0);
i4 = i3;
- i15 = i24;
+ i14 = i24;
continue L1;
}
default:
{
- i3 = i15;
+ i3 = i14;
i5 = i23;
i10 = i8;
i12 = 0;
- i11 = 28069;
+ i11 = 29760;
i4 = i28;
}
} while (0);
L311 : do if ((i26 | 0) == 64) {
- i4 = i32;
- i3 = HEAP32[i4 >> 2] | 0;
- i4 = HEAP32[i4 + 4 >> 2] | 0;
- i6 = i10 & 32;
- if (!((i3 | 0) == 0 & (i4 | 0) == 0)) {
- i5 = i3;
+ i5 = i44;
+ i4 = HEAP32[i5 >> 2] | 0;
+ i5 = HEAP32[i5 + 4 >> 2] | 0;
+ i7 = i10 & 32;
+ if (!((i4 | 0) == 0 & (i5 | 0) == 0)) {
i3 = i28;
do {
i3 = i3 + -1 | 0;
- HEAP8[i3 >> 0] = HEAPU8[28053 + (i5 & 15) >> 0] | i6;
- i5 = _bitshift64Lshr(i5 | 0, i4 | 0, 4) | 0;
- i4 = tempRet0;
- } while (!((i5 | 0) == 0 & (i4 | 0) == 0));
- i26 = i32;
+ HEAP8[i3 >> 0] = HEAPU8[29744 + (i4 & 15) >> 0] | i7;
+ i4 = _bitshift64Lshr(i4 | 0, i5 | 0, 4) | 0;
+ i5 = tempRet0;
+ } while (!((i4 | 0) == 0 & (i5 | 0) == 0));
+ i26 = i44;
if ((i9 & 8 | 0) == 0 | (HEAP32[i26 >> 2] | 0) == 0 & (HEAP32[i26 + 4 >> 2] | 0) == 0) {
i4 = i9;
i9 = 0;
- i6 = 28069;
+ i7 = 29760;
i26 = 77;
} else {
i4 = i9;
i9 = 2;
- i6 = 28069 + (i10 >> 4) | 0;
+ i7 = 29760 + (i10 >> 4) | 0;
i26 = 77;
}
} else {
i3 = i28;
i4 = i9;
i9 = 0;
- i6 = 28069;
+ i7 = 29760;
i26 = 77;
}
} else if ((i26 | 0) == 76) {
@@ -21591,7 +20455,7 @@ function _printf_core(i50, i3, i51, i52, i53) {
i3 = i4;
i10 = i22 ? i8 : i23 - i4 | 0;
i12 = 0;
- i11 = 28069;
+ i11 = 29760;
i4 = i22 ? i4 + i8 | 0 : i23;
} else if ((i26 | 0) == 86) {
i26 = 0;
@@ -21599,9 +20463,9 @@ function _printf_core(i50, i3, i51, i52, i53) {
i4 = 0;
i9 = i3;
while (1) {
- i6 = HEAP32[i9 >> 2] | 0;
- if (!i6) break;
- i4 = _wctomb(i40, i6) | 0;
+ i7 = HEAP32[i9 >> 2] | 0;
+ if (!i7) break;
+ i4 = _wctomb(i48, i7) | 0;
if ((i4 | 0) < 0 | i4 >>> 0 > (i8 - i5 | 0) >>> 0) break;
i5 = i4 + i5 | 0;
if (i8 >>> 0 > i5 >>> 0) i9 = i9 + 4 | 0; else break;
@@ -21615,7 +20479,7 @@ function _printf_core(i50, i3, i51, i52, i53) {
i3 = 0;
i26 = 97;
} else {
- i6 = 0;
+ i7 = 0;
while (1) {
i4 = HEAP32[i3 >> 2] | 0;
if (!i4) {
@@ -21623,15 +20487,15 @@ function _printf_core(i50, i3, i51, i52, i53) {
i26 = 97;
break L311;
}
- i4 = _wctomb(i40, i4) | 0;
- i6 = i4 + i6 | 0;
- if ((i6 | 0) > (i5 | 0)) {
+ i4 = _wctomb(i48, i4) | 0;
+ i7 = i4 + i7 | 0;
+ if ((i7 | 0) > (i5 | 0)) {
i3 = i5;
i26 = 97;
break L311;
}
- if (!(HEAP32[i50 >> 2] & 32)) ___fwritex(i40, i4, i50) | 0;
- if (i6 >>> 0 >= i5 >>> 0) {
+ if (!(HEAP32[i50 >> 2] & 32)) ___fwritex(i48, i4, i50) | 0;
+ if (i7 >>> 0 >= i5 >>> 0) {
i3 = i5;
i26 = 97;
break;
@@ -21643,46 +20507,46 @@ function _printf_core(i50, i3, i51, i52, i53) {
i26 = 0;
_pad(i50, 32, i25, i3, i23 ^ 8192);
i4 = (i25 | 0) > (i3 | 0) ? i25 : i3;
- i15 = i24;
+ i14 = i24;
continue;
}
if ((i26 | 0) == 77) {
i26 = 0;
i5 = (i8 | 0) > -1 ? i4 & -65537 : i4;
- i4 = i32;
+ i4 = i44;
i4 = (HEAP32[i4 >> 2] | 0) != 0 | (HEAP32[i4 + 4 >> 2] | 0) != 0;
if ((i8 | 0) != 0 | i4) {
- i10 = (i4 & 1 ^ 1) + (i42 - i3) | 0;
+ i10 = (i4 & 1 ^ 1) + (i36 - i3) | 0;
i10 = (i8 | 0) > (i10 | 0) ? i8 : i10;
i12 = i9;
- i11 = i6;
+ i11 = i7;
i4 = i28;
} else {
i3 = i28;
i10 = 0;
i12 = i9;
- i11 = i6;
+ i11 = i7;
i4 = i28;
}
}
i9 = i4 - i3 | 0;
- i8 = (i10 | 0) < (i9 | 0) ? i9 : i10;
- i6 = i12 + i8 | 0;
- i4 = (i25 | 0) < (i6 | 0) ? i6 : i25;
- _pad(i50, 32, i4, i6, i5);
+ i7 = (i10 | 0) < (i9 | 0) ? i9 : i10;
+ i8 = i12 + i7 | 0;
+ i4 = (i25 | 0) < (i8 | 0) ? i8 : i25;
+ _pad(i50, 32, i4, i8, i5);
if (!(HEAP32[i50 >> 2] & 32)) ___fwritex(i11, i12, i50) | 0;
- _pad(i50, 48, i4, i6, i5 ^ 65536);
- _pad(i50, 48, i8, i9, 0);
+ _pad(i50, 48, i4, i8, i5 ^ 65536);
+ _pad(i50, 48, i7, i9, 0);
if (!(HEAP32[i50 >> 2] & 32)) ___fwritex(i3, i9, i50) | 0;
- _pad(i50, 32, i4, i6, i5 ^ 8192);
- i15 = i24;
+ _pad(i50, 32, i4, i8, i5 ^ 8192);
+ i14 = i24;
}
L345 : do if ((i26 | 0) == 244) if (!i50) if (i2) {
i1 = 1;
while (1) {
i2 = HEAP32[i53 + (i1 << 2) >> 2] | 0;
if (!i2) break;
- _pop_arg_334(i52 + (i1 << 3) | 0, i2, i51);
+ _pop_arg_529(i52 + (i1 << 3) | 0, i2, i51);
i1 = i1 + 1 | 0;
if ((i1 | 0) >= 10) {
i1 = 1;
@@ -21705,33 +20569,33 @@ function _printf_core(i50, i3, i51, i52, i53) {
return i1 | 0;
}
-function ___floatscan(i23, i2, i20) {
- i23 = i23 | 0;
+function ___floatscan(i24, i2, i21) {
+ i24 = i24 | 0;
i2 = i2 | 0;
- i20 = i20 | 0;
- var d1 = 0.0, i3 = 0, i4 = 0, d5 = 0.0, i6 = 0, i7 = 0, d8 = 0.0, i9 = 0, i10 = 0, d11 = 0.0, d12 = 0.0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i21 = 0, i22 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, d31 = 0.0;
- i30 = STACKTOP;
+ i21 = i21 | 0;
+ var d1 = 0.0, i3 = 0, d4 = 0.0, i5 = 0, i6 = 0, d7 = 0.0, i8 = 0, i9 = 0, i10 = 0, d11 = 0.0, d12 = 0.0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i22 = 0, i23 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, d32 = 0.0;
+ i31 = STACKTOP;
STACKTOP = STACKTOP + 512 | 0;
- i26 = i30;
+ i27 = i31;
switch (i2 | 0) {
case 0:
{
- i29 = 24;
- i27 = -149;
+ i30 = 24;
+ i29 = -149;
i19 = 4;
break;
}
case 1:
{
- i29 = 53;
- i27 = -1074;
+ i30 = 53;
+ i29 = -1074;
i19 = 4;
break;
}
case 2:
{
- i29 = 53;
- i27 = -1074;
+ i30 = 53;
+ i29 = -1074;
i19 = 4;
break;
}
@@ -21739,28 +20603,28 @@ function ___floatscan(i23, i2, i20) {
d1 = 0.0;
}
L4 : do if ((i19 | 0) == 4) {
- i22 = i23 + 4 | 0;
- i21 = i23 + 100 | 0;
+ i23 = i24 + 4 | 0;
+ i22 = i24 + 100 | 0;
do {
- i2 = HEAP32[i22 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) {
- HEAP32[i22 >> 2] = i2 + 1;
+ i2 = HEAP32[i23 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i22 >> 2] | 0) >>> 0) {
+ HEAP32[i23 >> 2] = i2 + 1;
i2 = HEAPU8[i2 >> 0] | 0;
- } else i2 = ___shgetc(i23) | 0;
+ } else i2 = ___shgetc(i24) | 0;
} while ((_isspace(i2) | 0) != 0);
L13 : do switch (i2 | 0) {
case 43:
case 45:
{
i3 = 1 - (((i2 | 0) == 45 & 1) << 1) | 0;
- i2 = HEAP32[i22 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) {
- HEAP32[i22 >> 2] = i2 + 1;
+ i2 = HEAP32[i23 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i22 >> 2] | 0) >>> 0) {
+ HEAP32[i23 >> 2] = i2 + 1;
i2 = HEAPU8[i2 >> 0] | 0;
i28 = i3;
break L13;
} else {
- i2 = ___shgetc(i23) | 0;
+ i2 = ___shgetc(i24) | 0;
i28 = i3;
break L13;
}
@@ -21771,15 +20635,15 @@ function ___floatscan(i23, i2, i20) {
i3 = i2;
i2 = 0;
do {
- if ((i3 | 32 | 0) != (HEAP8[30281 + i2 >> 0] | 0)) break;
+ if ((i3 | 32 | 0) != (HEAP8[29271 + i2 >> 0] | 0)) break;
do if (i2 >>> 0 < 7) {
- i3 = HEAP32[i22 >> 2] | 0;
- if (i3 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) {
- HEAP32[i22 >> 2] = i3 + 1;
+ i3 = HEAP32[i23 >> 2] | 0;
+ if (i3 >>> 0 < (HEAP32[i22 >> 2] | 0) >>> 0) {
+ HEAP32[i23 >> 2] = i3 + 1;
i3 = HEAPU8[i3 >> 0] | 0;
break;
} else {
- i3 = ___shgetc(i23) | 0;
+ i3 = ___shgetc(i24) | 0;
break;
}
} while (0);
@@ -21795,23 +20659,23 @@ function ___floatscan(i23, i2, i20) {
}
default:
{
- i4 = (i20 | 0) != 0;
- if (i4 & i2 >>> 0 > 3) if ((i2 | 0) == 8) break L29; else {
+ i5 = (i21 | 0) != 0;
+ if (i5 & i2 >>> 0 > 3) if ((i2 | 0) == 8) break L29; else {
i19 = 23;
break L29;
}
L34 : do if (!i2) {
i2 = 0;
do {
- if ((i3 | 32 | 0) != (HEAP8[30290 + i2 >> 0] | 0)) break L34;
+ if ((i3 | 32 | 0) != (HEAP8[31696 + i2 >> 0] | 0)) break L34;
do if (i2 >>> 0 < 2) {
- i3 = HEAP32[i22 >> 2] | 0;
- if (i3 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) {
- HEAP32[i22 >> 2] = i3 + 1;
+ i3 = HEAP32[i23 >> 2] | 0;
+ if (i3 >>> 0 < (HEAP32[i22 >> 2] | 0) >>> 0) {
+ HEAP32[i23 >> 2] = i3 + 1;
i3 = HEAPU8[i3 >> 0] | 0;
break;
} else {
- i3 = ___shgetc(i23) | 0;
+ i3 = ___shgetc(i24) | 0;
break;
}
} while (0);
@@ -21821,26 +20685,26 @@ function ___floatscan(i23, i2, i20) {
switch (i2 | 0) {
case 3:
{
- i2 = HEAP32[i22 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) {
- HEAP32[i22 >> 2] = i2 + 1;
+ i2 = HEAP32[i23 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i22 >> 2] | 0) >>> 0) {
+ HEAP32[i23 >> 2] = i2 + 1;
i2 = HEAPU8[i2 >> 0] | 0;
- } else i2 = ___shgetc(i23) | 0;
+ } else i2 = ___shgetc(i24) | 0;
if ((i2 | 0) == 40) i2 = 1; else {
- if (!(HEAP32[i21 >> 2] | 0)) {
+ if (!(HEAP32[i22 >> 2] | 0)) {
d1 = nan;
break L4;
}
- HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1;
+ HEAP32[i23 >> 2] = (HEAP32[i23 >> 2] | 0) + -1;
d1 = nan;
break L4;
}
while (1) {
- i3 = HEAP32[i22 >> 2] | 0;
- if (i3 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) {
- HEAP32[i22 >> 2] = i3 + 1;
+ i3 = HEAP32[i23 >> 2] | 0;
+ if (i3 >>> 0 < (HEAP32[i22 >> 2] | 0) >>> 0) {
+ HEAP32[i23 >> 2] = i3 + 1;
i3 = HEAPU8[i3 >> 0] | 0;
- } else i3 = ___shgetc(i23) | 0;
+ } else i3 = ___shgetc(i24) | 0;
if (!((i3 + -48 | 0) >>> 0 < 10 | (i3 + -65 | 0) >>> 0 < 26) ? !((i3 | 0) == 95 | (i3 + -97 | 0) >>> 0 < 26) : 0) break;
i2 = i2 + 1 | 0;
}
@@ -21848,12 +20712,12 @@ function ___floatscan(i23, i2, i20) {
d1 = nan;
break L4;
}
- i3 = (HEAP32[i21 >> 2] | 0) == 0;
- if (!i3) HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1;
- if (!i4) {
- i29 = ___errno_location() | 0;
- HEAP32[i29 >> 2] = 22;
- ___shlim(i23, 0);
+ i3 = (HEAP32[i22 >> 2] | 0) == 0;
+ if (!i3) HEAP32[i23 >> 2] = (HEAP32[i23 >> 2] | 0) + -1;
+ if (!i5) {
+ i30 = ___errno_location() | 0;
+ HEAP32[i30 >> 2] = 22;
+ ___shlim(i24, 0);
d1 = 0.0;
break L4;
}
@@ -21863,7 +20727,7 @@ function ___floatscan(i23, i2, i20) {
}
while (1) {
i2 = i2 + -1 | 0;
- if (!i3) HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1;
+ if (!i3) HEAP32[i23 >> 2] = (HEAP32[i23 >> 2] | 0) + -1;
if (!i2) {
d1 = nan;
break L4;
@@ -21873,31 +20737,31 @@ function ___floatscan(i23, i2, i20) {
case 0:
{
do if ((i3 | 0) == 48) {
- i2 = HEAP32[i22 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) {
- HEAP32[i22 >> 2] = i2 + 1;
+ i2 = HEAP32[i23 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i22 >> 2] | 0) >>> 0) {
+ HEAP32[i23 >> 2] = i2 + 1;
i2 = HEAPU8[i2 >> 0] | 0;
- } else i2 = ___shgetc(i23) | 0;
+ } else i2 = ___shgetc(i24) | 0;
if ((i2 | 32 | 0) != 120) {
- if (!(HEAP32[i21 >> 2] | 0)) {
+ if (!(HEAP32[i22 >> 2] | 0)) {
i2 = 48;
break;
}
- HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1;
+ HEAP32[i23 >> 2] = (HEAP32[i23 >> 2] | 0) + -1;
i2 = 48;
break;
}
- i2 = HEAP32[i22 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) {
- HEAP32[i22 >> 2] = i2 + 1;
- i4 = HEAPU8[i2 >> 0] | 0;
- i6 = 0;
+ i2 = HEAP32[i23 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i22 >> 2] | 0) >>> 0) {
+ HEAP32[i23 >> 2] = i2 + 1;
+ i2 = HEAPU8[i2 >> 0] | 0;
+ i5 = 0;
} else {
- i4 = ___shgetc(i23) | 0;
- i6 = 0;
+ i2 = ___shgetc(i24) | 0;
+ i5 = 0;
}
L94 : while (1) {
- switch (i4 | 0) {
+ switch (i2 | 0) {
case 46:
{
i19 = 74;
@@ -21907,261 +20771,260 @@ function ___floatscan(i23, i2, i20) {
break;
default:
{
- i2 = 0;
- i3 = 0;
i17 = 0;
+ i6 = 0;
i16 = 0;
- i15 = i4;
- i7 = 0;
- i14 = 0;
- d8 = 1.0;
- i4 = 0;
+ i3 = 0;
+ i8 = i5;
+ i9 = 0;
+ i15 = 0;
+ d7 = 1.0;
+ i5 = 0;
d1 = 0.0;
break L94;
}
}
- i2 = HEAP32[i22 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) {
- HEAP32[i22 >> 2] = i2 + 1;
- i4 = HEAPU8[i2 >> 0] | 0;
- i6 = 1;
+ i2 = HEAP32[i23 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i22 >> 2] | 0) >>> 0) {
+ HEAP32[i23 >> 2] = i2 + 1;
+ i2 = HEAPU8[i2 >> 0] | 0;
+ i5 = 1;
continue;
} else {
- i4 = ___shgetc(i23) | 0;
- i6 = 1;
+ i2 = ___shgetc(i24) | 0;
+ i5 = 1;
continue;
}
}
if ((i19 | 0) == 74) {
- i2 = HEAP32[i22 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) {
- HEAP32[i22 >> 2] = i2 + 1;
- i4 = HEAPU8[i2 >> 0] | 0;
- } else i4 = ___shgetc(i23) | 0;
- if ((i4 | 0) == 48) {
- i4 = 0;
+ i2 = HEAP32[i23 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i22 >> 2] | 0) >>> 0) {
+ HEAP32[i23 >> 2] = i2 + 1;
+ i2 = HEAPU8[i2 >> 0] | 0;
+ } else i2 = ___shgetc(i24) | 0;
+ if ((i2 | 0) == 48) {
+ i5 = 0;
i3 = 0;
- while (1) {
- i2 = HEAP32[i22 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) {
- HEAP32[i22 >> 2] = i2 + 1;
- i6 = HEAPU8[i2 >> 0] | 0;
- } else i6 = ___shgetc(i23) | 0;
- i2 = _i64Add(i4 | 0, i3 | 0, -1, -1) | 0;
+ do {
+ i2 = HEAP32[i23 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i22 >> 2] | 0) >>> 0) {
+ HEAP32[i23 >> 2] = i2 + 1;
+ i2 = HEAPU8[i2 >> 0] | 0;
+ } else i2 = ___shgetc(i24) | 0;
+ i5 = _i64Add(i5 | 0, i3 | 0, -1, -1) | 0;
i3 = tempRet0;
- if ((i6 | 0) == 48) i4 = i2; else {
- i17 = 0;
- i16 = 0;
- i15 = i6;
- i6 = 1;
- i7 = 1;
- i14 = 0;
- d8 = 1.0;
- i4 = 0;
- d1 = 0.0;
- break;
- }
- }
+ } while ((i2 | 0) == 48);
+ i17 = 0;
+ i6 = 0;
+ i16 = i5;
+ i8 = 1;
+ i9 = 1;
+ i15 = 0;
+ d7 = 1.0;
+ i5 = 0;
+ d1 = 0.0;
} else {
- i2 = 0;
- i3 = 0;
i17 = 0;
+ i6 = 0;
i16 = 0;
- i15 = i4;
- i7 = 1;
- i14 = 0;
- d8 = 1.0;
- i4 = 0;
+ i3 = 0;
+ i8 = i5;
+ i9 = 1;
+ i15 = 0;
+ d7 = 1.0;
+ i5 = 0;
d1 = 0.0;
}
}
while (1) {
- i13 = i15 + -48 | 0;
- i9 = i15 | 32;
+ i13 = i2 + -48 | 0;
+ i10 = i2 | 32;
if (i13 >>> 0 >= 10) {
- i10 = (i15 | 0) == 46;
- if (!(i10 | (i9 + -97 | 0) >>> 0 < 6)) {
+ i14 = (i2 | 0) == 46;
+ if (!(i14 | (i10 + -97 | 0) >>> 0 < 6)) {
i10 = i16;
- i9 = i17;
- i13 = i15;
+ i13 = i17;
break;
}
- if (i10) if (!i7) {
- i2 = i16;
+ if (i14) if (!i9) {
+ i14 = i6;
i3 = i17;
- i13 = i16;
- i10 = i17;
- i7 = 1;
- d5 = d8;
+ i13 = i17;
+ i9 = 1;
+ i10 = i15;
+ d4 = d7;
} else {
i10 = i16;
- i9 = i17;
- i13 = 46;
+ i13 = i17;
+ i2 = 46;
break;
} else i19 = 86;
} else i19 = 86;
if ((i19 | 0) == 86) {
i19 = 0;
- i6 = (i15 | 0) > 57 ? i9 + -87 | 0 : i13;
- do if (!((i17 | 0) < 0 | (i17 | 0) == 0 & i16 >>> 0 < 8)) {
- if ((i17 | 0) < 0 | (i17 | 0) == 0 & i16 >>> 0 < 14) {
- d12 = d8 * .0625;
- i9 = i14;
- d5 = d12;
- d1 = d1 + d12 * +(i6 | 0);
+ i2 = (i2 | 0) > 57 ? i10 + -87 | 0 : i13;
+ do if (!((i17 | 0) < 0 | (i17 | 0) == 0 & i6 >>> 0 < 8)) {
+ if ((i17 | 0) < 0 | (i17 | 0) == 0 & i6 >>> 0 < 14) {
+ d12 = d7 * .0625;
+ i10 = i15;
+ d4 = d12;
+ d1 = d1 + d12 * +(i2 | 0);
break;
}
- if ((i14 | 0) != 0 | (i6 | 0) == 0) {
- i9 = i14;
- d5 = d8;
+ if ((i15 | 0) != 0 | (i2 | 0) == 0) {
+ i10 = i15;
+ d4 = d7;
} else {
- i9 = 1;
- d5 = d8;
- d1 = d1 + d8 * .5;
+ i10 = 1;
+ d4 = d7;
+ d1 = d1 + d7 * .5;
}
} else {
- i9 = i14;
- d5 = d8;
- i4 = i6 + (i4 << 4) | 0;
+ i10 = i15;
+ d4 = d7;
+ i5 = i2 + (i5 << 4) | 0;
} while (0);
- i13 = _i64Add(i16 | 0, i17 | 0, 1, 0) | 0;
- i10 = tempRet0;
- i6 = 1;
- i14 = i9;
+ i6 = _i64Add(i6 | 0, i17 | 0, 1, 0) | 0;
+ i14 = i16;
+ i13 = tempRet0;
+ i8 = 1;
}
- i9 = HEAP32[i22 >> 2] | 0;
- if (i9 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) {
- HEAP32[i22 >> 2] = i9 + 1;
- i17 = i10;
- i16 = i13;
- i15 = HEAPU8[i9 >> 0] | 0;
- d8 = d5;
+ i2 = HEAP32[i23 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i22 >> 2] | 0) >>> 0) {
+ HEAP32[i23 >> 2] = i2 + 1;
+ i17 = i13;
+ i16 = i14;
+ i2 = HEAPU8[i2 >> 0] | 0;
+ i15 = i10;
+ d7 = d4;
continue;
} else {
- i17 = i10;
- i16 = i13;
- i15 = ___shgetc(i23) | 0;
- d8 = d5;
+ i17 = i13;
+ i16 = i14;
+ i2 = ___shgetc(i24) | 0;
+ i15 = i10;
+ d7 = d4;
continue;
}
}
- if (!i6) {
- i2 = (HEAP32[i21 >> 2] | 0) == 0;
- if (!i2) HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1;
- if (i20) {
- if (!i2 ? (i18 = HEAP32[i22 >> 2] | 0, HEAP32[i22 >> 2] = i18 + -1, i7 | 0) : 0) HEAP32[i22 >> 2] = i18 + -2;
- } else ___shlim(i23, 0);
+ if (!i8) {
+ i2 = (HEAP32[i22 >> 2] | 0) == 0;
+ if (!i2) HEAP32[i23 >> 2] = (HEAP32[i23 >> 2] | 0) + -1;
+ if (i21) {
+ if (!i2 ? (i18 = HEAP32[i23 >> 2] | 0, HEAP32[i23 >> 2] = i18 + -1, i9 | 0) : 0) HEAP32[i23 >> 2] = i18 + -2;
+ } else ___shlim(i24, 0);
d1 = +(i28 | 0) * 0.0;
break L4;
}
- i6 = (i7 | 0) == 0;
- i7 = i6 ? i10 : i2;
- i6 = i6 ? i9 : i3;
- if ((i9 | 0) < 0 | (i9 | 0) == 0 & i10 >>> 0 < 8) {
- i3 = i10;
- i2 = i9;
+ i8 = (i9 | 0) == 0;
+ i9 = i8 ? i6 : i10;
+ i8 = i8 ? i13 : i3;
+ if ((i13 | 0) < 0 | (i13 | 0) == 0 & i6 >>> 0 < 8) {
+ i3 = i13;
do {
- i4 = i4 << 4;
- i3 = _i64Add(i3 | 0, i2 | 0, 1, 0) | 0;
- i2 = tempRet0;
- } while ((i2 | 0) < 0 | (i2 | 0) == 0 & i3 >>> 0 < 8);
+ i5 = i5 << 4;
+ i6 = _i64Add(i6 | 0, i3 | 0, 1, 0) | 0;
+ i3 = tempRet0;
+ } while ((i3 | 0) < 0 | (i3 | 0) == 0 & i6 >>> 0 < 8);
}
- if ((i13 | 32 | 0) == 112) {
- i3 = _scanexp(i23, i20) | 0;
+ if ((i2 | 32 | 0) == 112) {
+ i3 = _scanexp(i24, i21) | 0;
i2 = tempRet0;
if ((i3 | 0) == 0 & (i2 | 0) == -2147483648) {
- if (!i20) {
- ___shlim(i23, 0);
+ if (!i21) {
+ ___shlim(i24, 0);
d1 = 0.0;
break L4;
}
- if (!(HEAP32[i21 >> 2] | 0)) {
+ if (!(HEAP32[i22 >> 2] | 0)) {
i3 = 0;
i2 = 0;
} else {
- HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1;
+ HEAP32[i23 >> 2] = (HEAP32[i23 >> 2] | 0) + -1;
i3 = 0;
i2 = 0;
}
}
- } else if (!(HEAP32[i21 >> 2] | 0)) {
+ } else if (!(HEAP32[i22 >> 2] | 0)) {
i3 = 0;
i2 = 0;
} else {
- HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1;
+ HEAP32[i23 >> 2] = (HEAP32[i23 >> 2] | 0) + -1;
i3 = 0;
i2 = 0;
}
- i26 = _bitshift64Shl(i7 | 0, i6 | 0, 2) | 0;
- i26 = _i64Add(i26 | 0, tempRet0 | 0, -32, -1) | 0;
- i2 = _i64Add(i26 | 0, tempRet0 | 0, i3 | 0, i2 | 0) | 0;
+ i27 = _bitshift64Shl(i9 | 0, i8 | 0, 2) | 0;
+ i27 = _i64Add(i27 | 0, tempRet0 | 0, -32, -1) | 0;
+ i2 = _i64Add(i27 | 0, tempRet0 | 0, i3 | 0, i2 | 0) | 0;
i3 = tempRet0;
- if (!i4) {
+ if (!i5) {
d1 = +(i28 | 0) * 0.0;
break L4;
}
- if ((i3 | 0) > 0 | (i3 | 0) == 0 & i2 >>> 0 > (0 - i27 | 0) >>> 0) {
- i29 = ___errno_location() | 0;
- HEAP32[i29 >> 2] = 34;
+ if ((i3 | 0) > 0 | (i3 | 0) == 0 & i2 >>> 0 > (0 - i29 | 0) >>> 0) {
+ i30 = ___errno_location() | 0;
+ HEAP32[i30 >> 2] = 34;
d1 = +(i28 | 0) * 1797693134862315708145274.0e284 * 1797693134862315708145274.0e284;
break L4;
}
- i26 = i27 + -106 | 0;
- i25 = ((i26 | 0) < 0) << 31 >> 31;
- if ((i3 | 0) < (i25 | 0) | (i3 | 0) == (i25 | 0) & i2 >>> 0 < i26 >>> 0) {
- i29 = ___errno_location() | 0;
- HEAP32[i29 >> 2] = 34;
+ i27 = i29 + -106 | 0;
+ i26 = ((i27 | 0) < 0) << 31 >> 31;
+ if ((i3 | 0) < (i26 | 0) | (i3 | 0) == (i26 | 0) & i2 >>> 0 < i27 >>> 0) {
+ i30 = ___errno_location() | 0;
+ HEAP32[i30 >> 2] = 34;
d1 = +(i28 | 0) * 2.2250738585072014e-308 * 2.2250738585072014e-308;
break L4;
}
- if ((i4 | 0) > -1) {
+ if ((i5 | 0) > -1) {
do {
- i25 = !(d1 >= .5);
- i26 = i25 & 1 | i4 << 1;
- i4 = i26 ^ 1;
- d1 = d1 + (i25 ? d1 : d1 + -1.0);
+ i26 = !(d1 >= .5);
+ i27 = i26 & 1 | i5 << 1;
+ i5 = i27 ^ 1;
+ d1 = d1 + (i26 ? d1 : d1 + -1.0);
i2 = _i64Add(i2 | 0, i3 | 0, -1, -1) | 0;
i3 = tempRet0;
- } while ((i26 | 0) > -1);
+ } while ((i27 | 0) > -1);
i6 = i2;
- d8 = d1;
+ d7 = d1;
} else {
i6 = i2;
- d8 = d1;
+ d7 = d1;
}
- i2 = _i64Subtract(32, 0, i27 | 0, ((i27 | 0) < 0) << 31 >> 31 | 0) | 0;
+ i2 = _i64Subtract(32, 0, i29 | 0, ((i29 | 0) < 0) << 31 >> 31 | 0) | 0;
i2 = _i64Add(i6 | 0, i3 | 0, i2 | 0, tempRet0 | 0) | 0;
- i27 = tempRet0;
- if (0 > (i27 | 0) | 0 == (i27 | 0) & i29 >>> 0 > i2 >>> 0) if ((i2 | 0) < 0) {
+ i29 = tempRet0;
+ if (0 > (i29 | 0) | 0 == (i29 | 0) & i30 >>> 0 > i2 >>> 0) if ((i2 | 0) < 0) {
i2 = 0;
i19 = 127;
} else i19 = 125; else {
- i2 = i29;
+ i2 = i30;
i19 = 125;
}
if ((i19 | 0) == 125) if ((i2 | 0) < 53) i19 = 127; else {
- d5 = 0.0;
- d1 = +(i28 | 0);
+ i3 = i2;
+ d4 = +(i28 | 0);
+ d1 = 0.0;
}
if ((i19 | 0) == 127) {
d1 = +(i28 | 0);
- d5 = +_copysignl(+_scalbn(1.0, 84 - i2 | 0), d1);
+ i3 = i2;
+ d4 = d1;
+ d1 = +_copysignl(+_scalbn(1.0, 84 - i2 | 0), d1);
}
- i29 = (i4 & 1 | 0) == 0 & (d8 != 0.0 & (i2 | 0) < 32);
- d1 = d1 * (i29 ? 0.0 : d8) + (d5 + d1 * +(((i29 & 1) + i4 | 0) >>> 0)) - d5;
+ i30 = (i5 & 1 | 0) == 0 & (d7 != 0.0 & (i3 | 0) < 32);
+ d1 = d4 * (i30 ? 0.0 : d7) + (d1 + d4 * +(((i30 & 1) + i5 | 0) >>> 0)) - d1;
if (!(d1 != 0.0)) {
- i29 = ___errno_location() | 0;
- HEAP32[i29 >> 2] = 34;
+ i30 = ___errno_location() | 0;
+ HEAP32[i30 >> 2] = 34;
}
d1 = +_scalbnl(d1, i6);
break L4;
} else i2 = i3; while (0);
- i24 = i27 + i29 | 0;
- i25 = 0 - i24 | 0;
- i4 = i2;
- i6 = 0;
+ i25 = i29 + i30 | 0;
+ i26 = 0 - i25 | 0;
+ i5 = 0;
L184 : while (1) {
- switch (i4 | 0) {
+ switch (i2 | 0) {
case 46:
{
i19 = 138;
@@ -22172,413 +21035,422 @@ function ___floatscan(i23, i2, i20) {
default:
{
i3 = 0;
- i2 = 0;
- i15 = 0;
+ i10 = 0;
+ i9 = 0;
break L184;
}
}
- i2 = HEAP32[i22 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) {
- HEAP32[i22 >> 2] = i2 + 1;
- i4 = HEAPU8[i2 >> 0] | 0;
- i6 = 1;
+ i2 = HEAP32[i23 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i22 >> 2] | 0) >>> 0) {
+ HEAP32[i23 >> 2] = i2 + 1;
+ i2 = HEAPU8[i2 >> 0] | 0;
+ i5 = 1;
continue;
} else {
- i4 = ___shgetc(i23) | 0;
- i6 = 1;
+ i2 = ___shgetc(i24) | 0;
+ i5 = 1;
continue;
}
}
if ((i19 | 0) == 138) {
- i2 = HEAP32[i22 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) {
- HEAP32[i22 >> 2] = i2 + 1;
- i4 = HEAPU8[i2 >> 0] | 0;
- } else i4 = ___shgetc(i23) | 0;
- if ((i4 | 0) == 48) {
+ i2 = HEAP32[i23 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i22 >> 2] | 0) >>> 0) {
+ HEAP32[i23 >> 2] = i2 + 1;
+ i2 = HEAPU8[i2 >> 0] | 0;
+ } else i2 = ___shgetc(i24) | 0;
+ if ((i2 | 0) == 48) {
i3 = 0;
i2 = 0;
- do {
+ while (1) {
i3 = _i64Add(i3 | 0, i2 | 0, -1, -1) | 0;
- i2 = tempRet0;
- i4 = HEAP32[i22 >> 2] | 0;
- if (i4 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) {
- HEAP32[i22 >> 2] = i4 + 1;
- i4 = HEAPU8[i4 >> 0] | 0;
- } else i4 = ___shgetc(i23) | 0;
- } while ((i4 | 0) == 48);
- i6 = 1;
- i15 = 1;
+ i5 = tempRet0;
+ i2 = HEAP32[i23 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i22 >> 2] | 0) >>> 0) {
+ HEAP32[i23 >> 2] = i2 + 1;
+ i2 = HEAPU8[i2 >> 0] | 0;
+ } else i2 = ___shgetc(i24) | 0;
+ if ((i2 | 0) == 48) i2 = i5; else {
+ i10 = i5;
+ i5 = 1;
+ i9 = 1;
+ break;
+ }
+ }
} else {
i3 = 0;
- i2 = 0;
- i15 = 1;
+ i10 = 0;
+ i9 = 1;
}
}
- HEAP32[i26 >> 2] = 0;
- i14 = i4 + -48 | 0;
- i9 = (i4 | 0) == 46;
- L203 : do if (i9 | i14 >>> 0 < 10) {
- i19 = i26 + 496 | 0;
- i7 = 0;
- i10 = 0;
- i16 = i9;
- i13 = i6;
- i18 = 0;
+ HEAP32[i27 >> 2] = 0;
+ i8 = i2 + -48 | 0;
+ i6 = (i2 | 0) == 46;
+ L203 : do if (i6 | i8 >>> 0 < 10) {
+ i20 = i27 + 496 | 0;
+ i17 = 0;
+ i14 = 0;
+ i15 = i6;
+ i19 = i10;
+ i13 = i5;
+ i18 = i9;
+ i5 = 0;
i6 = 0;
i9 = 0;
L205 : while (1) {
- do if (i16) if (!i15) {
- i3 = i7;
- i2 = i10;
- i15 = 1;
+ do if (i15) if (!i18) {
+ i3 = i17;
+ i10 = i14;
+ i18 = 1;
} else {
- i4 = i18;
+ i10 = i19;
+ i2 = i17;
+ i8 = i14;
break L205;
} else {
- i16 = _i64Add(i7 | 0, i10 | 0, 1, 0) | 0;
- i10 = tempRet0;
- i17 = (i4 | 0) != 48;
+ i15 = _i64Add(i17 | 0, i14 | 0, 1, 0) | 0;
+ i14 = tempRet0;
+ i16 = (i2 | 0) != 48;
if ((i6 | 0) >= 125) {
- if (!i17) {
- i7 = i16;
+ if (!i16) {
+ i10 = i19;
+ i17 = i15;
break;
}
- HEAP32[i19 >> 2] = HEAP32[i19 >> 2] | 1;
- i7 = i16;
+ HEAP32[i20 >> 2] = HEAP32[i20 >> 2] | 1;
+ i10 = i19;
+ i17 = i15;
break;
}
- i7 = i26 + (i6 << 2) | 0;
- if (!i18) i4 = i14; else i4 = i4 + -48 + ((HEAP32[i7 >> 2] | 0) * 10 | 0) | 0;
- HEAP32[i7 >> 2] = i4;
- i18 = i18 + 1 | 0;
- i14 = (i18 | 0) == 9;
- i7 = i16;
+ i10 = i27 + (i6 << 2) | 0;
+ if (i5) i8 = i2 + -48 + ((HEAP32[i10 >> 2] | 0) * 10 | 0) | 0;
+ HEAP32[i10 >> 2] = i8;
+ i5 = i5 + 1 | 0;
+ i8 = (i5 | 0) == 9;
+ i10 = i19;
+ i17 = i15;
i13 = 1;
- i18 = i14 ? 0 : i18;
- i6 = (i14 & 1) + i6 | 0;
- i9 = i17 ? i16 : i9;
+ i5 = i8 ? 0 : i5;
+ i6 = (i8 & 1) + i6 | 0;
+ i9 = i16 ? i15 : i9;
} while (0);
- i4 = HEAP32[i22 >> 2] | 0;
- if (i4 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) {
- HEAP32[i22 >> 2] = i4 + 1;
- i4 = HEAPU8[i4 >> 0] | 0;
- } else i4 = ___shgetc(i23) | 0;
- i14 = i4 + -48 | 0;
- i16 = (i4 | 0) == 46;
- if (!(i16 | i14 >>> 0 < 10)) {
- i14 = i7;
- i7 = i15;
- i15 = i18;
+ i2 = HEAP32[i23 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i22 >> 2] | 0) >>> 0) {
+ HEAP32[i23 >> 2] = i2 + 1;
+ i2 = HEAPU8[i2 >> 0] | 0;
+ } else i2 = ___shgetc(i24) | 0;
+ i8 = i2 + -48 | 0;
+ i15 = (i2 | 0) == 46;
+ if (!(i15 | i8 >>> 0 < 10)) {
+ i8 = i18;
i19 = 161;
break L203;
- }
+ } else i19 = i10;
}
- i14 = i7;
- i7 = (i13 | 0) != 0;
+ i13 = (i13 | 0) != 0;
i19 = 169;
} else {
+ i17 = 0;
i14 = 0;
- i10 = 0;
- i13 = i6;
- i7 = i15;
- i15 = 0;
+ i13 = i5;
+ i8 = i9;
+ i5 = 0;
i6 = 0;
i9 = 0;
i19 = 161;
} while (0);
do if ((i19 | 0) == 161) {
- i7 = (i7 | 0) == 0;
- i3 = i7 ? i14 : i3;
- i2 = i7 ? i10 : i2;
- i7 = (i13 | 0) != 0;
- if (!((i4 | 32 | 0) == 101 & i7)) if ((i4 | 0) > -1) {
- i4 = i15;
+ i20 = (i8 | 0) == 0;
+ i3 = i20 ? i17 : i3;
+ i10 = i20 ? i14 : i10;
+ i13 = (i13 | 0) != 0;
+ if (!((i2 | 32 | 0) == 101 & i13)) if ((i2 | 0) > -1) {
+ i2 = i17;
+ i8 = i14;
i19 = 169;
break;
} else {
- i13 = i14;
- i4 = i15;
+ i2 = i17;
+ i8 = i14;
i19 = 171;
break;
}
- i7 = _scanexp(i23, i20) | 0;
- i4 = tempRet0;
- if ((i7 | 0) == 0 & (i4 | 0) == -2147483648) {
- if (!i20) {
- ___shlim(i23, 0);
+ i8 = _scanexp(i24, i21) | 0;
+ i2 = tempRet0;
+ if ((i8 | 0) == 0 & (i2 | 0) == -2147483648) {
+ if (!i21) {
+ ___shlim(i24, 0);
d1 = 0.0;
break;
}
- if (!(HEAP32[i21 >> 2] | 0)) {
- i7 = 0;
- i4 = 0;
+ if (!(HEAP32[i22 >> 2] | 0)) {
+ i8 = 0;
+ i2 = 0;
} else {
- HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1;
- i7 = 0;
- i4 = 0;
+ HEAP32[i23 >> 2] = (HEAP32[i23 >> 2] | 0) + -1;
+ i8 = 0;
+ i2 = 0;
}
}
- i3 = _i64Add(i7 | 0, i4 | 0, i3 | 0, i2 | 0) | 0;
- i13 = i14;
- i2 = tempRet0;
- i4 = i15;
+ i3 = _i64Add(i8 | 0, i2 | 0, i3 | 0, i10 | 0) | 0;
+ i13 = i17;
+ i10 = tempRet0;
+ i8 = i14;
i19 = 173;
} while (0);
- if ((i19 | 0) == 169) if (HEAP32[i21 >> 2] | 0) {
- HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1;
- if (i7) {
- i13 = i14;
+ if ((i19 | 0) == 169) if (HEAP32[i22 >> 2] | 0) {
+ HEAP32[i23 >> 2] = (HEAP32[i23 >> 2] | 0) + -1;
+ if (i13) {
+ i13 = i2;
i19 = 173;
} else i19 = 172;
- } else {
- i13 = i14;
- i19 = 171;
- }
- if ((i19 | 0) == 171) if (i7) i19 = 173; else i19 = 172;
+ } else i19 = 171;
+ if ((i19 | 0) == 171) if (i13) {
+ i13 = i2;
+ i19 = 173;
+ } else i19 = 172;
do if ((i19 | 0) == 172) {
- i29 = ___errno_location() | 0;
- HEAP32[i29 >> 2] = 22;
- ___shlim(i23, 0);
+ i30 = ___errno_location() | 0;
+ HEAP32[i30 >> 2] = 22;
+ ___shlim(i24, 0);
d1 = 0.0;
} else if ((i19 | 0) == 173) {
- i7 = HEAP32[i26 >> 2] | 0;
- if (!i7) {
+ i2 = HEAP32[i27 >> 2] | 0;
+ if (!i2) {
d1 = +(i28 | 0) * 0.0;
break;
}
- if (((i10 | 0) < 0 | (i10 | 0) == 0 & i13 >>> 0 < 10) & ((i3 | 0) == (i13 | 0) & (i2 | 0) == (i10 | 0)) ? i29 >>> 0 > 30 | (i7 >>> i29 | 0) == 0 : 0) {
- d1 = +(i28 | 0) * +(i7 >>> 0);
+ if (((i8 | 0) < 0 | (i8 | 0) == 0 & i13 >>> 0 < 10) & ((i3 | 0) == (i13 | 0) & (i10 | 0) == (i8 | 0)) ? i30 >>> 0 > 30 | (i2 >>> i30 | 0) == 0 : 0) {
+ d1 = +(i28 | 0) * +(i2 >>> 0);
break;
}
- i23 = (i27 | 0) / -2 | 0;
- i22 = ((i23 | 0) < 0) << 31 >> 31;
- if ((i2 | 0) > (i22 | 0) | (i2 | 0) == (i22 | 0) & i3 >>> 0 > i23 >>> 0) {
- i29 = ___errno_location() | 0;
- HEAP32[i29 >> 2] = 34;
+ i24 = (i29 | 0) / -2 | 0;
+ i23 = ((i24 | 0) < 0) << 31 >> 31;
+ if ((i10 | 0) > (i23 | 0) | (i10 | 0) == (i23 | 0) & i3 >>> 0 > i24 >>> 0) {
+ i30 = ___errno_location() | 0;
+ HEAP32[i30 >> 2] = 34;
d1 = +(i28 | 0) * 1797693134862315708145274.0e284 * 1797693134862315708145274.0e284;
break;
}
- i23 = i27 + -106 | 0;
- i22 = ((i23 | 0) < 0) << 31 >> 31;
- if ((i2 | 0) < (i22 | 0) | (i2 | 0) == (i22 | 0) & i3 >>> 0 < i23 >>> 0) {
- i29 = ___errno_location() | 0;
- HEAP32[i29 >> 2] = 34;
+ i24 = i29 + -106 | 0;
+ i23 = ((i24 | 0) < 0) << 31 >> 31;
+ if ((i10 | 0) < (i23 | 0) | (i10 | 0) == (i23 | 0) & i3 >>> 0 < i24 >>> 0) {
+ i30 = ___errno_location() | 0;
+ HEAP32[i30 >> 2] = 34;
d1 = +(i28 | 0) * 2.2250738585072014e-308 * 2.2250738585072014e-308;
break;
}
- if (i4) {
- if ((i4 | 0) < 9) {
- i7 = i26 + (i6 << 2) | 0;
- i2 = HEAP32[i7 >> 2] | 0;
+ if (i5) {
+ if ((i5 | 0) < 9) {
+ i8 = i27 + (i6 << 2) | 0;
+ i2 = HEAP32[i8 >> 2] | 0;
do {
i2 = i2 * 10 | 0;
- i4 = i4 + 1 | 0;
- } while ((i4 | 0) != 9);
- HEAP32[i7 >> 2] = i2;
+ i5 = i5 + 1 | 0;
+ } while ((i5 | 0) != 9);
+ HEAP32[i8 >> 2] = i2;
}
i6 = i6 + 1 | 0;
}
if ((i9 | 0) < 9 ? (i9 | 0) <= (i3 | 0) & (i3 | 0) < 18 : 0) {
if ((i3 | 0) == 9) {
- d1 = +(i28 | 0) * +((HEAP32[i26 >> 2] | 0) >>> 0);
+ d1 = +(i28 | 0) * +((HEAP32[i27 >> 2] | 0) >>> 0);
break;
}
if ((i3 | 0) < 9) {
- d1 = +(i28 | 0) * +((HEAP32[i26 >> 2] | 0) >>> 0) / +(HEAP32[4128 + (8 - i3 << 2) >> 2] | 0);
+ d1 = +(i28 | 0) * +((HEAP32[i27 >> 2] | 0) >>> 0) / +(HEAP32[4584 + (8 - i3 << 2) >> 2] | 0);
break;
}
- i23 = i29 + 27 + (Math_imul(i3, -3) | 0) | 0;
- i2 = HEAP32[i26 >> 2] | 0;
- if ((i23 | 0) > 30 | (i2 >>> i23 | 0) == 0) {
- d1 = +(i28 | 0) * +(i2 >>> 0) * +(HEAP32[4128 + (i3 + -10 << 2) >> 2] | 0);
+ i24 = i30 + 27 + (Math_imul(i3, -3) | 0) | 0;
+ i2 = HEAP32[i27 >> 2] | 0;
+ if ((i24 | 0) > 30 | (i2 >>> i24 | 0) == 0) {
+ d1 = +(i28 | 0) * +(i2 >>> 0) * +(HEAP32[4584 + (i3 + -10 << 2) >> 2] | 0);
break;
}
}
i2 = (i3 | 0) % 9 | 0;
if (!i2) {
- i4 = 0;
+ i5 = 0;
i2 = 0;
} else {
i13 = (i3 | 0) > -1 ? i2 : i2 + 9 | 0;
- i7 = HEAP32[4128 + (8 - i13 << 2) >> 2] | 0;
+ i8 = HEAP32[4584 + (8 - i13 << 2) >> 2] | 0;
if (i6) {
- i9 = 1e9 / (i7 | 0) | 0;
- i4 = 0;
+ i9 = 1e9 / (i8 | 0) | 0;
+ i5 = 0;
i2 = 0;
i10 = 0;
do {
- i21 = i26 + (i10 << 2) | 0;
- i22 = HEAP32[i21 >> 2] | 0;
- i23 = ((i22 >>> 0) / (i7 >>> 0) | 0) + i2 | 0;
- HEAP32[i21 >> 2] = i23;
- i2 = Math_imul((i22 >>> 0) % (i7 >>> 0) | 0, i9) | 0;
- i23 = (i10 | 0) == (i4 | 0) & (i23 | 0) == 0;
+ i22 = i27 + (i10 << 2) | 0;
+ i23 = HEAP32[i22 >> 2] | 0;
+ i24 = ((i23 >>> 0) / (i8 >>> 0) | 0) + i2 | 0;
+ HEAP32[i22 >> 2] = i24;
+ i2 = Math_imul((i23 >>> 0) % (i8 >>> 0) | 0, i9) | 0;
+ i24 = (i10 | 0) == (i5 | 0) & (i24 | 0) == 0;
i10 = i10 + 1 | 0;
- i3 = i23 ? i3 + -9 | 0 : i3;
- i4 = i23 ? i10 & 127 : i4;
+ i3 = i24 ? i3 + -9 | 0 : i3;
+ i5 = i24 ? i10 & 127 : i5;
} while ((i10 | 0) != (i6 | 0));
if (i2) {
- HEAP32[i26 + (i6 << 2) >> 2] = i2;
+ HEAP32[i27 + (i6 << 2) >> 2] = i2;
i6 = i6 + 1 | 0;
}
} else {
- i4 = 0;
+ i5 = 0;
i6 = 0;
}
i2 = 0;
i3 = 9 - i13 + i3 | 0;
}
L284 : while (1) {
- i15 = (i3 | 0) < 18;
- i16 = (i3 | 0) == 18;
- i14 = i26 + (i4 << 2) | 0;
+ i14 = (i3 | 0) < 18;
+ i15 = (i3 | 0) == 18;
+ i16 = i27 + (i5 << 2) | 0;
do {
- if (!i15) {
- if (!i16) {
+ if (!i14) {
+ if (!i15) {
i17 = i6;
break L284;
}
- if ((HEAP32[i14 >> 2] | 0) >>> 0 >= 9007199) {
+ if ((HEAP32[i16 >> 2] | 0) >>> 0 >= 9007199) {
i3 = 18;
i17 = i6;
break L284;
}
}
- i7 = 0;
+ i8 = 0;
i9 = i6 + 127 | 0;
while (1) {
i13 = i9 & 127;
- i10 = i26 + (i13 << 2) | 0;
+ i10 = i27 + (i13 << 2) | 0;
i9 = _bitshift64Shl(HEAP32[i10 >> 2] | 0, 0, 29) | 0;
- i9 = _i64Add(i9 | 0, tempRet0 | 0, i7 | 0, 0) | 0;
- i7 = tempRet0;
- if (i7 >>> 0 > 0 | (i7 | 0) == 0 & i9 >>> 0 > 1e9) {
- i23 = ___udivdi3(i9 | 0, i7 | 0, 1e9, 0) | 0;
- i9 = ___uremdi3(i9 | 0, i7 | 0, 1e9, 0) | 0;
- i7 = i23;
- } else i7 = 0;
+ i9 = _i64Add(i9 | 0, tempRet0 | 0, i8 | 0, 0) | 0;
+ i8 = tempRet0;
+ if (i8 >>> 0 > 0 | (i8 | 0) == 0 & i9 >>> 0 > 1e9) {
+ i24 = ___udivdi3(i9 | 0, i8 | 0, 1e9, 0) | 0;
+ i9 = ___uremdi3(i9 | 0, i8 | 0, 1e9, 0) | 0;
+ i8 = i24;
+ } else i8 = 0;
HEAP32[i10 >> 2] = i9;
- i23 = (i13 | 0) == (i4 | 0);
- i6 = (i13 | 0) != (i6 + 127 & 127 | 0) | i23 ? i6 : (i9 | 0) == 0 ? i13 : i6;
- if (i23) break; else i9 = i13 + -1 | 0;
+ i24 = (i13 | 0) == (i5 | 0);
+ i6 = (i13 | 0) != (i6 + 127 & 127 | 0) | i24 ? i6 : (i9 | 0) == 0 ? i13 : i6;
+ if (i24) break; else i9 = i13 + -1 | 0;
}
i2 = i2 + -29 | 0;
- } while ((i7 | 0) == 0);
- i4 = i4 + 127 & 127;
- if ((i4 | 0) == (i6 | 0)) {
- i23 = i6 + 127 & 127;
- i6 = i26 + ((i6 + 126 & 127) << 2) | 0;
- HEAP32[i6 >> 2] = HEAP32[i6 >> 2] | HEAP32[i26 + (i23 << 2) >> 2];
- i6 = i23;
+ } while ((i8 | 0) == 0);
+ i5 = i5 + 127 & 127;
+ if ((i5 | 0) == (i6 | 0)) {
+ i24 = i6 + 127 & 127;
+ i6 = i27 + ((i6 + 126 & 127) << 2) | 0;
+ HEAP32[i6 >> 2] = HEAP32[i6 >> 2] | HEAP32[i27 + (i24 << 2) >> 2];
+ i6 = i24;
}
- HEAP32[i26 + (i4 << 2) >> 2] = i7;
+ HEAP32[i27 + (i5 << 2) >> 2] = i8;
i3 = i3 + 9 | 0;
}
L302 : while (1) {
i6 = i17 + 1 & 127;
- i16 = i26 + ((i17 + 127 & 127) << 2) | 0;
+ i16 = i27 + ((i17 + 127 & 127) << 2) | 0;
while (1) {
- i13 = (i3 | 0) == 18;
+ i14 = (i3 | 0) == 18;
i15 = (i3 | 0) > 27 ? 9 : 1;
- i14 = i13 ^ 1;
+ i13 = i14 ^ 1;
while (1) {
- i10 = i4 & 127;
- i9 = (i10 | 0) == (i17 | 0);
- do if (!i9) {
- i7 = HEAP32[i26 + (i10 << 2) >> 2] | 0;
- if (i7 >>> 0 < 9007199) {
+ i9 = i5 & 127;
+ i10 = (i9 | 0) == (i17 | 0);
+ do if (!i10) {
+ i8 = HEAP32[i27 + (i9 << 2) >> 2] | 0;
+ if (i8 >>> 0 < 9007199) {
i19 = 219;
break;
}
- if (i7 >>> 0 > 9007199) break;
- i7 = i4 + 1 & 127;
- if ((i7 | 0) == (i17 | 0)) {
+ if (i8 >>> 0 > 9007199) break;
+ i8 = i5 + 1 & 127;
+ if ((i8 | 0) == (i17 | 0)) {
i19 = 219;
break;
}
- i7 = HEAP32[i26 + (i7 << 2) >> 2] | 0;
- if (i7 >>> 0 < 254740991) {
+ i8 = HEAP32[i27 + (i8 << 2) >> 2] | 0;
+ if (i8 >>> 0 < 254740991) {
i19 = 219;
break;
}
- if (!(i7 >>> 0 > 254740991 | i14)) {
- i3 = i10;
+ if (!(i8 >>> 0 > 254740991 | i13)) {
+ i3 = i9;
i6 = i17;
break L302;
}
} else i19 = 219; while (0);
- if ((i19 | 0) == 219 ? (i19 = 0, i13) : 0) {
+ if ((i19 | 0) == 219 ? (i19 = 0, i14) : 0) {
i19 = 220;
break L302;
}
i2 = i2 + i15 | 0;
- if ((i4 | 0) == (i17 | 0)) i4 = i17; else break;
+ if ((i5 | 0) == (i17 | 0)) i5 = i17; else break;
}
- i14 = (1 << i15) + -1 | 0;
- i13 = 1e9 >>> i15;
- i9 = i4;
- i7 = 0;
- i10 = i4;
+ i13 = (1 << i15) + -1 | 0;
+ i14 = 1e9 >>> i15;
+ i9 = i5;
+ i8 = 0;
+ i10 = i5;
while (1) {
- i22 = i26 + (i10 << 2) | 0;
- i23 = HEAP32[i22 >> 2] | 0;
- i4 = (i23 >>> i15) + i7 | 0;
- HEAP32[i22 >> 2] = i4;
- i7 = Math_imul(i23 & i14, i13) | 0;
- i4 = (i10 | 0) == (i9 | 0) & (i4 | 0) == 0;
+ i23 = i27 + (i10 << 2) | 0;
+ i24 = HEAP32[i23 >> 2] | 0;
+ i5 = (i24 >>> i15) + i8 | 0;
+ HEAP32[i23 >> 2] = i5;
+ i8 = Math_imul(i24 & i13, i14) | 0;
+ i5 = (i10 | 0) == (i9 | 0) & (i5 | 0) == 0;
i10 = i10 + 1 & 127;
- i3 = i4 ? i3 + -9 | 0 : i3;
- i4 = i4 ? i10 : i9;
- if ((i10 | 0) == (i17 | 0)) break; else i9 = i4;
+ i3 = i5 ? i3 + -9 | 0 : i3;
+ i5 = i5 ? i10 : i9;
+ if ((i10 | 0) == (i17 | 0)) break; else i9 = i5;
}
- if (!i7) continue;
- if ((i6 | 0) != (i4 | 0)) break;
+ if (!i8) continue;
+ if ((i6 | 0) != (i5 | 0)) break;
HEAP32[i16 >> 2] = HEAP32[i16 >> 2] | 1;
}
- HEAP32[i26 + (i17 << 2) >> 2] = i7;
+ HEAP32[i27 + (i17 << 2) >> 2] = i8;
i17 = i6;
}
- if ((i19 | 0) == 220) if (i9) {
- HEAP32[i26 + (i6 + -1 << 2) >> 2] = 0;
+ if ((i19 | 0) == 220) if (i10) {
+ HEAP32[i27 + (i6 + -1 << 2) >> 2] = 0;
i3 = i17;
} else {
- i3 = i10;
+ i3 = i9;
i6 = i17;
}
- d1 = +((HEAP32[i26 + (i3 << 2) >> 2] | 0) >>> 0);
- i3 = i4 + 1 & 127;
+ d1 = +((HEAP32[i27 + (i3 << 2) >> 2] | 0) >>> 0);
+ i3 = i5 + 1 & 127;
if ((i3 | 0) == (i6 | 0)) {
- i6 = i4 + 2 & 127;
- HEAP32[i26 + (i6 + -1 << 2) >> 2] = 0;
+ i6 = i5 + 2 & 127;
+ HEAP32[i27 + (i6 + -1 << 2) >> 2] = 0;
}
d12 = +(i28 | 0);
- d5 = d12 * (d1 * 1.0e9 + +((HEAP32[i26 + (i3 << 2) >> 2] | 0) >>> 0));
+ d4 = d12 * (d1 * 1.0e9 + +((HEAP32[i27 + (i3 << 2) >> 2] | 0) >>> 0));
i14 = i2 + 53 | 0;
- i13 = i14 - i27 | 0;
- i10 = (i13 | 0) < (i29 | 0);
- i3 = i10 & 1;
- i9 = i10 ? ((i13 | 0) < 0 ? 0 : i13) : i29;
+ i10 = i14 - i29 | 0;
+ i13 = (i10 | 0) < (i30 | 0);
+ i3 = i13 & 1;
+ i9 = i13 ? ((i10 | 0) < 0 ? 0 : i10) : i30;
if ((i9 | 0) < 53) {
- d31 = +_copysignl(+_scalbn(1.0, 105 - i9 | 0), d5);
- d8 = +_fmodl(d5, +_scalbn(1.0, 53 - i9 | 0));
- d11 = d31;
- d1 = d8;
- d8 = d31 + (d5 - d8);
+ d32 = +_copysignl(+_scalbn(1.0, 105 - i9 | 0), d4);
+ d7 = +_fmodl(d4, +_scalbn(1.0, 53 - i9 | 0));
+ d11 = d32;
+ d1 = d7;
+ d7 = d32 + (d4 - d7);
} else {
d11 = 0.0;
d1 = 0.0;
- d8 = d5;
+ d7 = d4;
}
- i7 = i4 + 2 & 127;
- do if ((i7 | 0) == (i6 | 0)) d5 = d1; else {
- i7 = HEAP32[i26 + (i7 << 2) >> 2] | 0;
- do if (i7 >>> 0 >= 5e8) {
- if (i7 >>> 0 > 5e8) {
+ i8 = i5 + 2 & 127;
+ do if ((i8 | 0) == (i6 | 0)) d4 = d1; else {
+ i8 = HEAP32[i27 + (i8 << 2) >> 2] | 0;
+ do if (i8 >>> 0 >= 5e8) {
+ if (i8 >>> 0 > 5e8) {
d1 = d12 * .75 + d1;
break;
}
- if ((i4 + 3 & 127 | 0) == (i6 | 0)) {
+ if ((i5 + 3 & 127 | 0) == (i6 | 0)) {
d1 = d12 * .5 + d1;
break;
} else {
@@ -22586,29 +21458,29 @@ function ___floatscan(i23, i2, i20) {
break;
}
} else {
- if ((i7 | 0) == 0 ? (i4 + 3 & 127 | 0) == (i6 | 0) : 0) break;
+ if ((i8 | 0) == 0 ? (i5 + 3 & 127 | 0) == (i6 | 0) : 0) break;
d1 = d12 * .25 + d1;
} while (0);
if ((53 - i9 | 0) <= 1) {
- d5 = d1;
+ d4 = d1;
break;
}
if (+_fmodl(d1, 1.0) != 0.0) {
- d5 = d1;
+ d4 = d1;
break;
}
- d5 = d1 + 1.0;
+ d4 = d1 + 1.0;
} while (0);
- d1 = d8 + d5 - d11;
- do if ((i14 & 2147483647 | 0) > (-2 - i24 | 0)) {
+ d1 = d7 + d4 - d11;
+ do if ((i14 & 2147483647 | 0) > (-2 - i25 | 0)) {
if (+Math_abs(+d1) >= 9007199254740992.0) {
- i3 = i10 & (i9 | 0) == (i13 | 0) ? 0 : i3;
+ i3 = i13 & (i9 | 0) == (i10 | 0) ? 0 : i3;
i2 = i2 + 1 | 0;
d1 = d1 * .5;
}
- if ((i2 + 50 | 0) <= (i25 | 0) ? !(d5 != 0.0 & (i3 | 0) != 0) : 0) break;
- i29 = ___errno_location() | 0;
- HEAP32[i29 >> 2] = 34;
+ if ((i2 + 50 | 0) <= (i26 | 0) ? !(d4 != 0.0 & (i3 | 0) != 0) : 0) break;
+ i30 = ___errno_location() | 0;
+ HEAP32[i30 >> 2] = 34;
} while (0);
d1 = +_scalbnl(d1, i2);
} while (0);
@@ -22616,10 +21488,10 @@ function ___floatscan(i23, i2, i20) {
}
default:
{
- if (HEAP32[i21 >> 2] | 0) HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1;
- i29 = ___errno_location() | 0;
- HEAP32[i29 >> 2] = 22;
- ___shlim(i23, 0);
+ if (HEAP32[i22 >> 2] | 0) HEAP32[i23 >> 2] = (HEAP32[i23 >> 2] | 0) + -1;
+ i30 = ___errno_location() | 0;
+ HEAP32[i30 >> 2] = 22;
+ ___shlim(i24, 0);
d1 = 0.0;
break L4;
}
@@ -22627,16 +21499,16 @@ function ___floatscan(i23, i2, i20) {
}
} while (0);
if ((i19 | 0) == 23) {
- i3 = (HEAP32[i21 >> 2] | 0) == 0;
- if (!i3) HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1;
- if ((i20 | 0) != 0 & i2 >>> 0 > 3) do {
- if (!i3) HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1;
+ i3 = (HEAP32[i22 >> 2] | 0) == 0;
+ if (!i3) HEAP32[i23 >> 2] = (HEAP32[i23 >> 2] | 0) + -1;
+ if ((i21 | 0) != 0 & i2 >>> 0 > 3) do {
+ if (!i3) HEAP32[i23 >> 2] = (HEAP32[i23 >> 2] | 0) + -1;
i2 = i2 + -1 | 0;
} while (i2 >>> 0 > 3);
}
d1 = +(i28 | 0) * inf;
} while (0);
- STACKTOP = i30;
+ STACKTOP = i31;
return +d1;
}
@@ -22652,26 +21524,26 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_expr_primaryINS0_2DbEEEPKcS4_S4_R
i27 = i36 + 24 | 0;
i32 = i36;
i31 = i36 + 432 | 0;
- i34 = i36 + 408 | 0;
- i33 = i36 + 384 | 0;
- i2 = i36 + 396 | 0;
+ i33 = i36 + 408 | 0;
+ i34 = i36 + 384 | 0;
+ i11 = i36 + 396 | 0;
i19 = i36 + 360 | 0;
i20 = i36 + 336 | 0;
- i9 = i36 + 320 | 0;
- i10 = i36 + 308 | 0;
- i11 = i36 + 296 | 0;
- i12 = i36 + 284 | 0;
- i13 = i36 + 272 | 0;
- i14 = i36 + 260 | 0;
- i15 = i36 + 248 | 0;
- i3 = i36 + 236 | 0;
- i4 = i36 + 224 | 0;
- i5 = i36 + 212 | 0;
- i6 = i36 + 200 | 0;
- i7 = i36 + 188 | 0;
- i8 = i36 + 176 | 0;
- i22 = i36 + 152 | 0;
- i21 = i36 + 140 | 0;
+ i12 = i36 + 320 | 0;
+ i13 = i36 + 308 | 0;
+ i14 = i36 + 296 | 0;
+ i15 = i36 + 284 | 0;
+ i2 = i36 + 272 | 0;
+ i3 = i36 + 260 | 0;
+ i4 = i36 + 248 | 0;
+ i5 = i36 + 236 | 0;
+ i6 = i36 + 224 | 0;
+ i7 = i36 + 212 | 0;
+ i8 = i36 + 200 | 0;
+ i9 = i36 + 188 | 0;
+ i10 = i36 + 176 | 0;
+ i21 = i36 + 152 | 0;
+ i22 = i36 + 140 | 0;
i23 = i36 + 128 | 0;
i24 = i36 + 116 | 0;
i25 = i36 + 104 | 0;
@@ -22685,9 +21557,9 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_expr_primaryINS0_2DbEEEPKcS4_S4_R
case 119:
{
i34 = i1 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i2, 34038, 7);
- i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i2, i35) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i2);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i11, 35502, 7);
+ i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i11, i35) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i11);
i1 = (i35 | 0) == (i34 | 0) ? i1 : i35;
break L1;
}
@@ -22697,7 +21569,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_expr_primaryINS0_2DbEEEPKcS4_S4_R
switch (HEAP8[i1 + 2 >> 0] | 0) {
case 48:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj6EEERAT__Kc(i19, 34360);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj6EEERAT__Kc(i19, 35824);
i2 = i35 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i35 + 8 >> 2] | 0;
@@ -22730,7 +21602,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_expr_primaryINS0_2DbEEEPKcS4_S4_R
}
case 49:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj5EEERAT__Kc(i20, 34366);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj5EEERAT__Kc(i20, 35830);
i2 = i35 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i34 = HEAP32[i35 + 8 >> 2] | 0;
@@ -22768,117 +21640,117 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_expr_primaryINS0_2DbEEEPKcS4_S4_R
case 99:
{
i34 = i1 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i9, 34051, 4);
- i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i9, i35) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i9);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i12, 35515, 4);
+ i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i12, i35) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i12);
i1 = (i35 | 0) == (i34 | 0) ? i1 : i35;
break L1;
}
case 97:
{
i34 = i1 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i10, 34056, 11);
- i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i10, i35) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i10);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i13, 35520, 11);
+ i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i13, i35) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i13);
i1 = (i35 | 0) == (i34 | 0) ? i1 : i35;
break L1;
}
case 104:
{
i34 = i1 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i11, 34068, 13);
- i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i11, i35) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i11);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i14, 35532, 13);
+ i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i14, i35) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14);
i1 = (i35 | 0) == (i34 | 0) ? i1 : i35;
break L1;
}
case 115:
{
i34 = i1 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i12, 34082, 5);
- i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i12, i35) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i12);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i15, 35546, 5);
+ i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i15, i35) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i15);
i1 = (i35 | 0) == (i34 | 0) ? i1 : i35;
break L1;
}
case 116:
{
i34 = i1 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i13, 34088, 14);
- i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i13, i35) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i13);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i2, 35552, 14);
+ i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i2, i35) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i2);
i1 = (i35 | 0) == (i34 | 0) ? i1 : i35;
break L1;
}
case 105:
{
i34 = i1 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i14, 44980, 0);
- i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i14, i35) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i3, 46453, 0);
+ i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i3, i35) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i3);
i1 = (i35 | 0) == (i34 | 0) ? i1 : i35;
break L1;
}
case 106:
{
i34 = i1 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i15, 34371, 1);
- i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i15, i35) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i15);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i4, 35835, 1);
+ i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i4, i35) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i4);
i1 = (i35 | 0) == (i34 | 0) ? i1 : i35;
break L1;
}
case 108:
{
i34 = i1 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i3, 34373, 1);
- i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i3, i35) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i3);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i5, 35837, 1);
+ i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i5, i35) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i5);
i1 = (i35 | 0) == (i34 | 0) ? i1 : i35;
break L1;
}
case 109:
{
i34 = i1 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i4, 34375, 2);
- i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i4, i35) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i4);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i6, 35839, 2);
+ i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i6, i35) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i6);
i1 = (i35 | 0) == (i34 | 0) ? i1 : i35;
break L1;
}
case 120:
{
i34 = i1 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i5, 34378, 2);
- i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i5, i35) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i5);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i7, 35842, 2);
+ i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i7, i35) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i7);
i1 = (i35 | 0) == (i34 | 0) ? i1 : i35;
break L1;
}
case 121:
{
i34 = i1 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i6, 34381, 3);
- i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i6, i35) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i6);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i8, 35845, 3);
+ i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i8, i35) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i8);
i1 = (i35 | 0) == (i34 | 0) ? i1 : i35;
break L1;
}
case 110:
{
i34 = i1 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i7, 34168, 8);
- i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i7, i35) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i7);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i9, 35632, 8);
+ i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i9, i35) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i9);
i1 = (i35 | 0) == (i34 | 0) ? i1 : i35;
break L1;
}
case 111:
{
i34 = i1 + 2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i8, 34177, 17);
- i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i8, i35) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i8);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i10, 35641, 17);
+ i35 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i34, i18, i10, i35) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i10);
i1 = (i35 | 0) == (i34 | 0) ? i1 : i35;
break L1;
}
@@ -22922,16 +21794,16 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_expr_primaryINS0_2DbEEEPKcS4_S4_R
i2 = i2 + 1 | 0;
} while ((i2 | 0) < (i3 | 0));
HEAPF64[i27 >> 3] = +HEAPF32[i32 >> 2];
- i2 = _snprintf(i31, 24, 34385, i27) | 0;
+ i2 = _snprintf(i31, 24, 35849, i27) | 0;
if (i2 >>> 0 > 23) break;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i33, i31, i2);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i34, i33);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i34, i31, i2);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i33, i34);
i2 = i35 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i32 = HEAP32[i35 + 8 >> 2] | 0;
i4 = i32;
if (i3 >>> 0 < i32 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i34);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i33);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
i2 = HEAP32[i35 >> 2] | 0;
@@ -22947,13 +21819,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_expr_primaryINS0_2DbEEEPKcS4_S4_R
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i27, i2, i5, i35 + 12 | 0);
i32 = i27 + 8 | 0;
i31 = HEAP32[i32 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i31, i34);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i31, i33);
HEAP32[i32 >> 2] = i31 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i35, i27);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i27);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i34);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i33);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i33);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i34);
i2 = i1 + 11 | 0;
} else i2 = i6;
break L79;
@@ -23003,16 +21875,16 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_expr_primaryINS0_2DbEEEPKcS4_S4_R
i2 = i2 + 1 | 0;
} while ((i2 | 0) < (i3 | 0));
HEAPF64[i28 >> 3] = +HEAPF64[i32 >> 3];
- i2 = _snprintf(i31, 32, 34389, i28) | 0;
+ i2 = _snprintf(i31, 32, 35853, i28) | 0;
if (i2 >>> 0 > 31) break;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i33, i31, i2);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i34, i33);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i34, i31, i2);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i33, i34);
i2 = i35 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i32 = HEAP32[i35 + 8 >> 2] | 0;
i4 = i32;
if (i3 >>> 0 < i32 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i34);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i33);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
i2 = HEAP32[i35 >> 2] | 0;
@@ -23028,13 +21900,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_expr_primaryINS0_2DbEEEPKcS4_S4_R
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i28, i2, i5, i35 + 12 | 0);
i32 = i28 + 8 | 0;
i31 = HEAP32[i32 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i31, i34);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i31, i33);
HEAP32[i32 >> 2] = i31 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i35, i28);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i28);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i34);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i33);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i33);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i34);
i2 = i1 + 19 | 0;
} else i2 = i6;
break L111;
@@ -23084,16 +21956,16 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_expr_primaryINS0_2DbEEEPKcS4_S4_R
i2 = i2 + 1 | 0;
} while ((i2 | 0) < (i3 | 0));
HEAPF64[i29 >> 3] = +HEAPF64[i32 >> 3];
- i2 = _snprintf(i31, 40, 34392, i29) | 0;
+ i2 = _snprintf(i31, 40, 35856, i29) | 0;
if (i2 >>> 0 > 39) break;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i33, i31, i2);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i34, i33);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i34, i31, i2);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i33, i34);
i2 = i35 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i32 = HEAP32[i35 + 8 >> 2] | 0;
i4 = i32;
if (i3 >>> 0 < i32 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i34);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i33);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
i2 = HEAP32[i35 >> 2] | 0;
@@ -23109,13 +21981,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_expr_primaryINS0_2DbEEEPKcS4_S4_R
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i29, i2, i5, i35 + 12 | 0);
i32 = i29 + 8 | 0;
i31 = HEAP32[i32 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i31, i34);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i31, i33);
HEAP32[i32 >> 2] = i31 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i35, i29);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i29);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i34);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i33);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i33);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i34);
i2 = i1 + 23 | 0;
} else i2 = i6;
break L143;
@@ -23156,63 +22028,63 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_expr_primaryINS0_2DbEEEPKcS4_S4_R
if ((HEAP32[i35 >> 2] | 0) == (i2 | 0)) break L1;
i5 = i2 + -24 | 0;
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i25, i5);
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i25, 0, 34356) | 0;
- HEAP32[i24 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i24 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i24 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i25, 0, 35820) | 0;
+ HEAP32[i24 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i24 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i24 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i24, 34358) | 0;
- HEAP32[i23 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i23 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i23 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i24, 35822) | 0;
+ HEAP32[i23 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i23 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i23 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i4 = i7 - i6 | 0;
- if (i4 >>> 0 > 4294967279) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i26);
- if (i4 >>> 0 < 11) {
- HEAP8[i26 >> 0] = i4 << 1;
- i3 = i26 + 1 | 0;
+ i3 = i7 - i6 | 0;
+ if (i3 >>> 0 > 4294967279) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i26);
+ if (i3 >>> 0 < 11) {
+ HEAP8[i26 >> 0] = i3 << 1;
+ i4 = i26 + 1 | 0;
} else {
- i35 = i4 + 16 & -16;
- i3 = _malloc(i35) | 0;
- HEAP32[i26 + 8 >> 2] = i3;
+ i35 = i3 + 16 & -16;
+ i4 = _malloc(i35) | 0;
+ HEAP32[i26 + 8 >> 2] = i4;
HEAP32[i26 >> 2] = i35 | 1;
- HEAP32[i26 + 4 >> 2] = i4;
+ HEAP32[i26 + 4 >> 2] = i3;
}
i1 = i6;
- i2 = i3;
+ i2 = i4;
while (1) {
if ((i1 | 0) == (i7 | 0)) break;
HEAP8[i2 >> 0] = HEAP8[i1 >> 0] | 0;
i1 = i1 + 1 | 0;
i2 = i2 + 1 | 0;
}
- HEAP8[i3 + i4 >> 0] = 0;
- i2 = HEAP8[i26 >> 0] | 0;
- i1 = (i2 & 1) == 0;
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i23, i1 ? i26 + 1 | 0 : HEAP32[i26 + 8 >> 2] | 0, i1 ? (i2 & 255) >>> 1 : HEAP32[i26 + 4 >> 2] | 0) | 0;
- HEAP32[i21 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i21 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i21 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ HEAP8[i4 + i3 >> 0] = 0;
+ i1 = HEAP8[i26 >> 0] | 0;
+ i2 = (i1 & 1) == 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i23, i2 ? i26 + 1 | 0 : HEAP32[i26 + 8 >> 2] | 0, i2 ? (i1 & 255) >>> 1 : HEAP32[i26 + 4 >> 2] | 0) | 0;
+ HEAP32[i22 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i22 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i22 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i22, i21);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i5, i22);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i22);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i21);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i21, i22);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i5, i21);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i21);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i22);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i26);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i23);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i24);
@@ -23226,46 +22098,46 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_expr_primaryINS0_2DbEEEPKcS4_S4_R
return i1 | 0;
}
-function __ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE8__do_getERS4_S4_bRKNS_6localeEjRjRbRKNS_5ctypeIwEERNS_10unique_ptrIwPFvPvEEERPwSM_(i36, i37, i2, i3, i4, i38, i29, i24, i32, i34, i1) {
+function __ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE8__do_getERS4_S4_bRKNS_6localeEjRjRbRKNS_5ctypeIwEERNS_10unique_ptrIwPFvPvEEERPwSM_(i36, i37, i2, i3, i4, i38, i30, i25, i33, i34, i1) {
i36 = i36 | 0;
i37 = i37 | 0;
i2 = i2 | 0;
i3 = i3 | 0;
i4 = i4 | 0;
i38 = i38 | 0;
- i29 = i29 | 0;
- i24 = i24 | 0;
- i32 = i32 | 0;
+ i30 = i30 | 0;
+ i25 = i25 | 0;
+ i33 = i33 | 0;
i34 = i34 | 0;
i1 = i1 | 0;
- var i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i30 = 0, i31 = 0, i33 = 0, i35 = 0, i39 = 0, i40 = 0, i41 = 0, i42 = 0, i43 = 0, i44 = 0, i45 = 0, i46 = 0, i47 = 0;
+ var i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i31 = 0, i32 = 0, i35 = 0, i39 = 0, i40 = 0, i41 = 0, i42 = 0, i43 = 0, i44 = 0, i45 = 0, i46 = 0, i47 = 0;
i47 = STACKTOP;
STACKTOP = STACKTOP + 512 | 0;
- i33 = i47 + 96 | 0;
+ i24 = i47 + 96 | 0;
i8 = i47 + 104 | 0;
i46 = i47 + 88 | 0;
- i28 = i47 + 80 | 0;
- i27 = i47 + 76 | 0;
- i30 = i47 + 504 | 0;
- i25 = i47 + 72 | 0;
- i31 = i47 + 68 | 0;
- i40 = i47 + 56 | 0;
+ i29 = i47 + 80 | 0;
+ i28 = i47 + 76 | 0;
+ i31 = i47 + 504 | 0;
+ i26 = i47 + 72 | 0;
+ i32 = i47 + 68 | 0;
+ i41 = i47 + 56 | 0;
i45 = i47 + 44 | 0;
- i42 = i47 + 32 | 0;
- i41 = i47 + 20 | 0;
+ i43 = i47 + 32 | 0;
+ i42 = i47 + 20 | 0;
i44 = i47 + 8 | 0;
- i26 = i47 + 4 | 0;
+ i27 = i47 + 4 | 0;
i39 = i47;
- HEAP32[i33 >> 2] = i1;
+ HEAP32[i24 >> 2] = i1;
HEAP32[i46 >> 2] = i8;
- i43 = i46 + 4 | 0;
- HEAP32[i43 >> 2] = 181;
- HEAP32[i28 >> 2] = i8;
- HEAP32[i27 >> 2] = i8 + 400;
+ i40 = i46 + 4 | 0;
+ HEAP32[i40 >> 2] = 202;
+ HEAP32[i29 >> 2] = i8;
+ HEAP32[i28 >> 2] = i8 + 400;
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i40 + (i1 << 2) >> 2] = 0;
+ HEAP32[i41 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
i1 = 0;
@@ -23277,13 +22149,13 @@ function __ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i42 + (i1 << 2) >> 2] = 0;
+ HEAP32[i43 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i41 + (i1 << 2) >> 2] = 0;
+ HEAP32[i42 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
i1 = 0;
@@ -23292,19 +22164,19 @@ function __ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
HEAP32[i44 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__111__money_getIwE13__gather_infoEbRKNS_6localeERNS_10money_base7patternERwS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS9_IwNSA_IwEENSC_IwEEEESJ_SJ_Ri(i2, i3, i30, i25, i31, i40, i45, i42, i41, i26);
- HEAP32[i34 >> 2] = HEAP32[i32 >> 2];
- i22 = i42 + 4 | 0;
- i23 = i41 + 4 | 0;
- i21 = i41 + 8 | 0;
- i20 = i42 + 8 | 0;
- i19 = (i4 & 512 | 0) != 0;
+ __ZNSt3__111__money_getIwE13__gather_infoEbRKNS_6localeERNS_10money_base7patternERwS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS9_IwNSA_IwEENSC_IwEEEESJ_SJ_Ri(i2, i3, i31, i26, i32, i41, i45, i43, i42, i27);
+ HEAP32[i34 >> 2] = HEAP32[i33 >> 2];
+ i20 = i43 + 4 | 0;
+ i21 = i42 + 4 | 0;
+ i22 = i42 + 8 | 0;
+ i23 = i43 + 8 | 0;
+ i13 = (i4 & 512 | 0) != 0;
i14 = i45 + 8 | 0;
- i13 = i45 + 4 | 0;
- i17 = i44 + 4 | 0;
- i15 = i44 + 8 | 0;
- i18 = i30 + 3 | 0;
- i16 = i40 + 4 | 0;
+ i15 = i45 + 4 | 0;
+ i16 = i44 + 4 | 0;
+ i17 = i44 + 8 | 0;
+ i18 = i31 + 3 | 0;
+ i19 = i41 + 4 | 0;
i12 = 0;
i7 = 0;
L21 : while (1) {
@@ -23318,19 +22190,19 @@ function __ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0;
if ((i1 | 0) == -1) {
HEAP32[i36 >> 2] = 0;
- i2 = 1;
+ i3 = 1;
break;
} else {
- i2 = (HEAP32[i36 >> 2] | 0) == 0;
+ i3 = (HEAP32[i36 >> 2] | 0) == 0;
break;
}
- } else i2 = 1; while (0);
- i3 = HEAP32[i37 >> 2] | 0;
- do if (i3) {
- i1 = HEAP32[i3 + 12 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
- if ((i1 | 0) != -1) if (i2) {
- i11 = i3;
+ } else i3 = 1; while (0);
+ i2 = HEAP32[i37 >> 2] | 0;
+ do if (i2) {
+ i1 = HEAP32[i2 + 12 >> 2] | 0;
+ if ((i1 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i1 = HEAP32[i1 >> 2] | 0;
+ if ((i1 | 0) != -1) if (i3) {
+ i11 = i2;
break;
} else {
i35 = 232;
@@ -23343,28 +22215,28 @@ function __ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
} else i35 = 31; while (0);
if ((i35 | 0) == 31) {
i35 = 0;
- if (i2) {
+ if (i3) {
i35 = 232;
break;
} else i11 = 0;
}
- L46 : do switch (HEAP8[i30 + i12 >> 0] | 0) {
+ L46 : do switch (HEAP8[i31 + i12 >> 0] | 0) {
case 1:
{
if ((i12 | 0) != 3) {
i1 = HEAP32[i36 >> 2] | 0;
i2 = HEAP32[i1 + 12 >> 2] | 0;
if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0;
- if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i24 >> 2] | 0) + 12 >> 2] & 31](i24, 8192, i1) | 0)) {
+ if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i25 >> 2] | 0) + 12 >> 2] & 31](i25, 8192, i1) | 0)) {
i35 = 44;
break L21;
}
i1 = HEAP32[i36 >> 2] | 0;
- i3 = i1 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else {
- HEAP32[i3 >> 2] = i2 + 4;
- i1 = HEAP32[i2 >> 2] | 0;
+ i2 = i1 + 12 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else {
+ HEAP32[i2 >> 2] = i3 + 4;
+ i1 = HEAP32[i3 >> 2] | 0;
}
__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9push_backEw(i44, i1);
i1 = i11;
@@ -23384,191 +22256,199 @@ function __ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
}
case 3:
{
+ i5 = HEAP8[i43 >> 0] | 0;
+ i1 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i20 >> 2] | 0;
i3 = HEAP8[i42 >> 0] | 0;
- i1 = (i3 & 1) == 0 ? (i3 & 255) >>> 1 : HEAP32[i22 >> 2] | 0;
- i6 = HEAP8[i41 >> 0] | 0;
- i6 = (i6 & 1) == 0 ? (i6 & 255) >>> 1 : HEAP32[i23 >> 2] | 0;
- if ((i1 | 0) != (0 - i6 | 0)) {
- i5 = (i1 | 0) == 0;
- i4 = HEAP32[i36 >> 2] | 0;
- i9 = HEAP32[i4 + 12 >> 2] | 0;
- i1 = HEAP32[i4 + 16 >> 2] | 0;
+ i3 = (i3 & 1) == 0 ? (i3 & 255) >>> 1 : HEAP32[i21 >> 2] | 0;
+ if ((i1 | 0) != (0 - i3 | 0)) {
+ i4 = (i1 | 0) == 0;
+ i6 = HEAP32[i36 >> 2] | 0;
+ i9 = HEAP32[i6 + 12 >> 2] | 0;
+ i1 = HEAP32[i6 + 16 >> 2] | 0;
i2 = (i9 | 0) == (i1 | 0);
- if (i5 | (i6 | 0) == 0) {
- if (i2) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0; else i1 = HEAP32[i9 >> 2] | 0;
- if (i5) {
- if ((i1 | 0) != (HEAP32[((HEAP8[i41 >> 0] & 1) == 0 ? i23 : HEAP32[i21 >> 2] | 0) >> 2] | 0)) break L46;
+ if (i4 | (i3 | 0) == 0) {
+ if (i2) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i1 = HEAP32[i9 >> 2] | 0;
+ if (i4) {
+ if ((i1 | 0) != (HEAP32[((HEAP8[i42 >> 0] & 1) == 0 ? i21 : HEAP32[i22 >> 2] | 0) >> 2] | 0)) break L46;
i1 = HEAP32[i36 >> 2] | 0;
- i3 = i1 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else HEAP32[i3 >> 2] = i2 + 4;
- HEAP8[i29 >> 0] = 1;
- i11 = HEAP8[i41 >> 0] | 0;
- i7 = ((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i23 >> 2] | 0) >>> 0 > 1 ? i41 : i7;
+ i2 = i1 + 12 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else HEAP32[i2 >> 2] = i3 + 4;
+ HEAP8[i30 >> 0] = 1;
+ i11 = HEAP8[i42 >> 0] | 0;
+ i7 = ((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i21 >> 2] | 0) >>> 0 > 1 ? i42 : i7;
break L46;
}
- if ((i1 | 0) != (HEAP32[((HEAP8[i42 >> 0] & 1) == 0 ? i22 : HEAP32[i20 >> 2] | 0) >> 2] | 0)) {
- HEAP8[i29 >> 0] = 1;
+ if ((i1 | 0) != (HEAP32[((HEAP8[i43 >> 0] & 1) == 0 ? i20 : HEAP32[i23 >> 2] | 0) >> 2] | 0)) {
+ HEAP8[i30 >> 0] = 1;
break L46;
}
i1 = HEAP32[i36 >> 2] | 0;
- i3 = i1 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else HEAP32[i3 >> 2] = i2 + 4;
- i11 = HEAP8[i42 >> 0] | 0;
- i7 = ((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i22 >> 2] | 0) >>> 0 > 1 ? i42 : i7;
+ i2 = i1 + 12 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else HEAP32[i2 >> 2] = i3 + 4;
+ i11 = HEAP8[i43 >> 0] | 0;
+ i7 = ((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i20 >> 2] | 0) >>> 0 > 1 ? i43 : i7;
break L46;
}
if (i2) {
- i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0;
+ i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0;
i1 = HEAP32[i36 >> 2] | 0;
- i6 = HEAP8[i42 >> 0] | 0;
- i4 = i1;
- i5 = HEAP32[i1 + 12 >> 2] | 0;
+ i5 = HEAP8[i43 >> 0] | 0;
+ i6 = i1;
+ i3 = HEAP32[i1 + 12 >> 2] | 0;
i1 = HEAP32[i1 + 16 >> 2] | 0;
} else {
- i6 = i3;
- i5 = i9;
- i3 = HEAP32[i9 >> 2] | 0;
- }
- i2 = i4 + 12 | 0;
- i1 = (i5 | 0) == (i1 | 0);
- if ((i3 | 0) == (HEAP32[((i6 & 1) == 0 ? i22 : HEAP32[i20 >> 2] | 0) >> 2] | 0)) {
- if (i1) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 40 >> 2] & 127](i4) | 0; else HEAP32[i2 >> 2] = i5 + 4;
- i11 = HEAP8[i42 >> 0] | 0;
- i7 = ((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i22 >> 2] | 0) >>> 0 > 1 ? i42 : i7;
+ i4 = HEAP32[i9 >> 2] | 0;
+ i3 = i9;
+ }
+ i2 = i6 + 12 | 0;
+ i1 = (i3 | 0) == (i1 | 0);
+ if ((i4 | 0) == (HEAP32[((i5 & 1) == 0 ? i20 : HEAP32[i23 >> 2] | 0) >> 2] | 0)) {
+ if (i1) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 40 >> 2] & 127](i6) | 0; else HEAP32[i2 >> 2] = i3 + 4;
+ i11 = HEAP8[i43 >> 0] | 0;
+ i7 = ((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i20 >> 2] | 0) >>> 0 > 1 ? i43 : i7;
break L46;
}
- if (i1) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0; else i1 = HEAP32[i5 >> 2] | 0;
- if ((i1 | 0) != (HEAP32[((HEAP8[i41 >> 0] & 1) == 0 ? i23 : HEAP32[i21 >> 2] | 0) >> 2] | 0)) {
+ if (i1) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i1 = HEAP32[i3 >> 2] | 0;
+ if ((i1 | 0) != (HEAP32[((HEAP8[i42 >> 0] & 1) == 0 ? i21 : HEAP32[i22 >> 2] | 0) >> 2] | 0)) {
i35 = 102;
break L21;
}
i1 = HEAP32[i36 >> 2] | 0;
- i3 = i1 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else HEAP32[i3 >> 2] = i2 + 4;
- HEAP8[i29 >> 0] = 1;
- i11 = HEAP8[i41 >> 0] | 0;
- i7 = ((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i23 >> 2] | 0) >>> 0 > 1 ? i41 : i7;
+ i2 = i1 + 12 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else HEAP32[i2 >> 2] = i3 + 4;
+ HEAP8[i30 >> 0] = 1;
+ i11 = HEAP8[i42 >> 0] | 0;
+ i7 = ((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i21 >> 2] | 0) >>> 0 > 1 ? i42 : i7;
}
break;
}
case 2:
{
- if (!(i12 >>> 0 < 2 | (i7 | 0) != 0) ? !(i19 | (i12 | 0) == 2 & (HEAP8[i18 >> 0] | 0) != 0) : 0) {
+ if (!(i12 >>> 0 < 2 | (i7 | 0) != 0) ? !(i13 | (i12 | 0) == 2 & (HEAP8[i18 >> 0] | 0) != 0) : 0) {
i7 = 0;
break L46;
}
- i3 = HEAP8[i45 >> 0] | 0;
- i4 = HEAP32[i14 >> 2] | 0;
- i1 = (i3 & 1) == 0 ? i13 : i4;
- L107 : do if ((i12 | 0) != 0 ? (HEAPU8[i30 + (i12 + -1) >> 0] | 0) < 2 : 0) {
+ i2 = HEAP8[i45 >> 0] | 0;
+ i3 = HEAP32[i14 >> 2] | 0;
+ i1 = (i2 & 1) == 0 ? i15 : i3;
+ L107 : do if ((i12 | 0) != 0 ? (HEAPU8[i31 + (i12 + -1) >> 0] | 0) < 2 : 0) {
+ i4 = i3;
while (1) {
- i10 = (i3 & 1) == 0;
- i2 = i1;
- if ((i2 | 0) == ((i10 ? i13 : i4) + ((i10 ? (i3 & 255) >>> 1 : HEAP32[i13 >> 2] | 0) << 2) | 0)) break;
- if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i24 >> 2] | 0) + 12 >> 2] & 31](i24, 8192, HEAP32[i2 >> 2] | 0) | 0)) {
+ i10 = (i2 & 1) == 0;
+ i3 = i1;
+ if ((i3 | 0) == ((i10 ? i15 : i4) + ((i10 ? (i2 & 255) >>> 1 : HEAP32[i15 >> 2] | 0) << 2) | 0)) break;
+ if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i25 >> 2] | 0) + 12 >> 2] & 31](i25, 8192, HEAP32[i3 >> 2] | 0) | 0)) {
i35 = 109;
break;
}
- i3 = HEAP8[i45 >> 0] | 0;
+ i2 = HEAP8[i45 >> 0] | 0;
i4 = HEAP32[i14 >> 2] | 0;
- i1 = i2 + 4 | 0;
+ i1 = i3 + 4 | 0;
}
if ((i35 | 0) == 109) {
i35 = 0;
- i3 = HEAP8[i45 >> 0] | 0;
+ i2 = HEAP8[i45 >> 0] | 0;
i4 = HEAP32[i14 >> 2] | 0;
}
- i2 = (i3 & 1) == 0 ? i13 : i4;
- i10 = i2;
- i9 = i1 - i10 >> 2;
- i5 = HEAP8[i44 >> 0] | 0;
- i6 = (i5 & 1) == 0;
- i5 = i6 ? (i5 & 255) >>> 1 : HEAP32[i17 >> 2] | 0;
- if (i9 >>> 0 > i5 >>> 0) {
- i2 = i11;
- i6 = i11;
- i1 = i10;
+ i6 = (i2 & 1) == 0 ? i15 : i4;
+ i3 = i6;
+ i10 = i1 - i3 >> 2;
+ i9 = HEAP8[i44 >> 0] | 0;
+ i5 = (i9 & 1) == 0;
+ i9 = i5 ? (i9 & 255) >>> 1 : HEAP32[i16 >> 2] | 0;
+ if (i10 >>> 0 > i9 >>> 0) {
+ i9 = i11;
+ i5 = i11;
} else {
- i6 = (i6 ? i17 : HEAP32[i15 >> 2] | 0) + (i5 << 2) | 0;
- i5 = i6 + (0 - i9 << 2) | 0;
+ i9 = (i5 ? i16 : HEAP32[i17 >> 2] | 0) + (i9 << 2) | 0;
+ i5 = i9 + (0 - i10 << 2) | 0;
while (1) {
- if ((i5 | 0) == (i6 | 0)) {
- i2 = i11;
- i6 = i11;
+ if ((i5 | 0) == (i9 | 0)) {
+ i9 = i11;
+ i5 = i11;
+ i3 = i1;
break L107;
}
- if ((HEAP32[i5 >> 2] | 0) != (HEAP32[i2 >> 2] | 0)) {
- i2 = i11;
- i6 = i11;
- i1 = i10;
+ if ((HEAP32[i5 >> 2] | 0) != (HEAP32[i6 >> 2] | 0)) {
+ i9 = i11;
+ i5 = i11;
break L107;
}
+ i6 = i6 + 4 | 0;
i5 = i5 + 4 | 0;
- i2 = i2 + 4 | 0;
}
}
} else {
- i2 = i11;
- i6 = i11;
+ i9 = i11;
+ i4 = i3;
+ i5 = i11;
+ i3 = i1;
} while (0);
L121 : while (1) {
- i11 = (i3 & 1) == 0;
- i3 = (i11 ? i13 : i4) + ((i11 ? (i3 & 255) >>> 1 : HEAP32[i13 >> 2] | 0) << 2) | 0;
- if ((i1 | 0) == (i3 | 0)) {
- i1 = i3;
- break;
- }
- i3 = HEAP32[i36 >> 2] | 0;
- do if (i3) {
- i4 = HEAP32[i3 + 12 >> 2] | 0;
- if ((i4 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i3 = HEAP32[i4 >> 2] | 0;
- if ((i3 | 0) == -1) {
+ i1 = (i2 & 1) == 0;
+ i1 = (i1 ? i15 : i4) + ((i1 ? (i2 & 255) >>> 1 : HEAP32[i15 >> 2] | 0) << 2) | 0;
+ i6 = i3;
+ if ((i6 | 0) == (i1 | 0)) break;
+ i1 = HEAP32[i36 >> 2] | 0;
+ do if (i1) {
+ i2 = HEAP32[i1 + 12 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0;
+ if ((i1 | 0) == -1) {
HEAP32[i36 >> 2] = 0;
- i4 = 1;
+ i2 = 1;
break;
} else {
- i4 = (HEAP32[i36 >> 2] | 0) == 0;
+ i2 = (HEAP32[i36 >> 2] | 0) == 0;
break;
}
- } else i4 = 1; while (0);
- do if (i6) {
- i3 = HEAP32[i6 + 12 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i6 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i3 = HEAP32[i3 >> 2] | 0;
- if ((i3 | 0) != -1) if (i4 ^ (i2 | 0) == 0) {
- i5 = i2;
- i6 = i2;
+ } else i2 = 1; while (0);
+ do if (i5) {
+ i1 = HEAP32[i5 + 12 >> 2] | 0;
+ if ((i1 | 0) == (HEAP32[i5 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 36 >> 2] & 127](i5) | 0; else i1 = HEAP32[i1 >> 2] | 0;
+ if ((i1 | 0) != -1) if (i2 ^ (i9 | 0) == 0) {
+ i1 = i9;
+ i5 = i9;
break;
- } else break L121; else {
+ } else {
+ i1 = i6;
+ break L121;
+ } else {
HEAP32[i37 >> 2] = 0;
- i2 = 0;
+ i1 = 0;
i35 = 130;
break;
}
- } else i35 = 130; while (0);
+ } else {
+ i1 = i9;
+ i35 = 130;
+ } while (0);
if ((i35 | 0) == 130) {
i35 = 0;
- if (i4) break; else {
- i5 = i2;
- i6 = 0;
- }
+ if (i2) {
+ i1 = i6;
+ break;
+ } else i5 = 0;
}
i2 = HEAP32[i36 >> 2] | 0;
i3 = HEAP32[i2 + 12 >> 2] | 0;
if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) != (HEAP32[i1 >> 2] | 0)) break;
+ if ((i2 | 0) != (HEAP32[i6 >> 2] | 0)) {
+ i1 = i6;
+ break;
+ }
i2 = HEAP32[i36 >> 2] | 0;
- i4 = i2 + 12 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0; else HEAP32[i4 >> 2] = i3 + 4;
- i2 = i5;
- i3 = HEAP8[i45 >> 0] | 0;
+ i3 = i2 + 12 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if ((i4 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0; else HEAP32[i3 >> 2] = i4 + 4;
+ i9 = i1;
+ i2 = HEAP8[i45 >> 0] | 0;
i4 = HEAP32[i14 >> 2] | 0;
- i1 = i1 + 4 | 0;
+ i3 = i6 + 4 | 0;
}
- if (i19 ? (i11 = HEAP8[i45 >> 0] | 0, i10 = (i11 & 1) == 0, (i1 | 0) != ((i10 ? i13 : HEAP32[i14 >> 2] | 0) + ((i10 ? (i11 & 255) >>> 1 : HEAP32[i13 >> 2] | 0) << 2) | 0)) : 0) {
+ if (i13 ? (i11 = HEAP8[i45 >> 0] | 0, i10 = (i11 & 1) == 0, (i1 | 0) != ((i10 ? i15 : HEAP32[i14 >> 2] | 0) + ((i10 ? (i11 & 255) >>> 1 : HEAP32[i15 >> 2] | 0) << 2) | 0)) : 0) {
i35 = 142;
break L21;
}
@@ -23576,102 +22456,102 @@ function __ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
}
case 4:
{
- i9 = HEAP32[i31 >> 2] | 0;
- i2 = i11;
+ i9 = HEAP32[i32 >> 2] | 0;
i5 = i11;
+ i4 = i11;
i1 = 0;
L158 : while (1) {
- i3 = HEAP32[i36 >> 2] | 0;
- do if (i3) {
- i4 = HEAP32[i3 + 12 >> 2] | 0;
- if ((i4 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i3 = HEAP32[i4 >> 2] | 0;
- if ((i3 | 0) == -1) {
+ i2 = HEAP32[i36 >> 2] | 0;
+ do if (i2) {
+ i3 = HEAP32[i2 + 12 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i2 = HEAP32[i3 >> 2] | 0;
+ if ((i2 | 0) == -1) {
HEAP32[i36 >> 2] = 0;
- i4 = 1;
+ i3 = 1;
break;
} else {
- i4 = (HEAP32[i36 >> 2] | 0) == 0;
+ i3 = (HEAP32[i36 >> 2] | 0) == 0;
break;
}
- } else i4 = 1; while (0);
- do if (i5) {
- i3 = HEAP32[i5 + 12 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i5 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 36 >> 2] & 127](i5) | 0; else i3 = HEAP32[i3 >> 2] | 0;
- if ((i3 | 0) != -1) if (i4 ^ (i2 | 0) == 0) {
- i5 = i2;
- i6 = i2;
+ } else i3 = 1; while (0);
+ do if (i4) {
+ i2 = HEAP32[i4 + 12 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i4 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0; else i2 = HEAP32[i2 >> 2] | 0;
+ if ((i2 | 0) != -1) if (i3 ^ (i5 | 0) == 0) {
+ i2 = i5;
+ i6 = i5;
break;
- } else {
- i5 = i2;
- break L158;
- } else {
+ } else break L158; else {
HEAP32[i37 >> 2] = 0;
i2 = 0;
i35 = 156;
break;
}
- } else i35 = 156; while (0);
+ } else {
+ i2 = i5;
+ i35 = 156;
+ } while (0);
if ((i35 | 0) == 156) {
i35 = 0;
- if (i4) {
+ if (i3) {
i5 = i2;
break;
- } else {
- i5 = i2;
- i6 = 0;
- }
+ } else i6 = 0;
}
- i2 = HEAP32[i36 >> 2] | 0;
- i3 = HEAP32[i2 + 12 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i3 = HEAP32[i3 >> 2] | 0;
- if (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i24 >> 2] | 0) + 12 >> 2] & 31](i24, 2048, i3) | 0) {
- i2 = HEAP32[i34 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i33 >> 2] | 0)) {
- __ZNSt3__119__double_or_nothingIwEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i32, i34, i33);
- i2 = HEAP32[i34 >> 2] | 0;
+ i3 = HEAP32[i36 >> 2] | 0;
+ i4 = HEAP32[i3 + 12 >> 2] | 0;
+ if ((i4 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i4 = HEAP32[i4 >> 2] | 0;
+ if (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i25 >> 2] | 0) + 12 >> 2] & 31](i25, 2048, i4) | 0) {
+ i3 = HEAP32[i34 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i24 >> 2] | 0)) {
+ __ZNSt3__119__double_or_nothingIwEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i33, i34, i24);
+ i3 = HEAP32[i34 >> 2] | 0;
}
- HEAP32[i34 >> 2] = i2 + 4;
- HEAP32[i2 >> 2] = i3;
+ HEAP32[i34 >> 2] = i3 + 4;
+ HEAP32[i3 >> 2] = i4;
i1 = i1 + 1 | 0;
} else {
- i11 = HEAP8[i40 >> 0] | 0;
- if (!((i3 | 0) == (i9 | 0) & (i1 | 0 ? (((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i16 >> 2] | 0) | 0) != 0 : 0))) break;
- if ((i8 | 0) == (HEAP32[i27 >> 2] | 0)) {
- __ZNSt3__119__double_or_nothingIjEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i46, i28, i27);
- i8 = HEAP32[i28 >> 2] | 0;
+ i11 = HEAP8[i41 >> 0] | 0;
+ if (!((i4 | 0) == (i9 | 0) & (i1 | 0 ? (((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 >> 2] | 0) | 0) != 0 : 0))) {
+ i5 = i2;
+ break;
+ }
+ if ((i8 | 0) == (HEAP32[i28 >> 2] | 0)) {
+ __ZNSt3__119__double_or_nothingIjEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i46, i29, i28);
+ i8 = HEAP32[i29 >> 2] | 0;
}
i11 = i8 + 4 | 0;
- HEAP32[i28 >> 2] = i11;
+ HEAP32[i29 >> 2] = i11;
HEAP32[i8 >> 2] = i1;
i8 = i11;
i1 = 0;
}
- i2 = HEAP32[i36 >> 2] | 0;
- i4 = i2 + 12 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) {
- FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0;
- i2 = i5;
- i5 = i6;
+ i3 = HEAP32[i36 >> 2] | 0;
+ i4 = i3 + 12 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ if ((i5 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) {
+ FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 40 >> 2] & 127](i3) | 0;
+ i5 = i2;
+ i4 = i6;
continue;
} else {
- HEAP32[i4 >> 2] = i3 + 4;
- i2 = i5;
- i5 = i6;
+ HEAP32[i4 >> 2] = i5 + 4;
+ i5 = i2;
+ i4 = i6;
continue;
}
}
if (i1 | 0 ? (HEAP32[i46 >> 2] | 0) != (i8 | 0) : 0) {
- if ((i8 | 0) == (HEAP32[i27 >> 2] | 0)) {
- __ZNSt3__119__double_or_nothingIjEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i46, i28, i27);
- i8 = HEAP32[i28 >> 2] | 0;
+ if ((i8 | 0) == (HEAP32[i28 >> 2] | 0)) {
+ __ZNSt3__119__double_or_nothingIjEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i46, i29, i28);
+ i8 = HEAP32[i29 >> 2] | 0;
}
i11 = i8 + 4 | 0;
- HEAP32[i28 >> 2] = i11;
+ HEAP32[i29 >> 2] = i11;
HEAP32[i8 >> 2] = i1;
i8 = i11;
}
- i4 = HEAP32[i26 >> 2] | 0;
+ i4 = HEAP32[i27 >> 2] | 0;
L207 : do if ((i4 | 0) > 0) {
i1 = HEAP32[i36 >> 2] | 0;
do if (i1) {
@@ -23708,18 +22588,18 @@ function __ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
i1 = HEAP32[i36 >> 2] | 0;
i2 = HEAP32[i1 + 12 >> 2] | 0;
if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0;
- if ((i1 | 0) != (HEAP32[i25 >> 2] | 0)) {
+ if ((i1 | 0) != (HEAP32[i26 >> 2] | 0)) {
i35 = 196;
break L21;
}
i1 = HEAP32[i36 >> 2] | 0;
- i3 = i1 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) {
+ i2 = i1 + 12 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
i1 = i5;
} else {
- HEAP32[i3 >> 2] = i2 + 4;
+ HEAP32[i2 >> 2] = i3 + 4;
i1 = i5;
}
while (1) {
@@ -23767,34 +22647,34 @@ function __ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
i1 = HEAP32[i36 >> 2] | 0;
i2 = HEAP32[i1 + 12 >> 2] | 0;
if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0;
- if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i24 >> 2] | 0) + 12 >> 2] & 31](i24, 2048, i1) | 0)) {
+ if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i25 >> 2] | 0) + 12 >> 2] & 31](i25, 2048, i1) | 0)) {
i35 = 220;
break L21;
}
- if ((HEAP32[i34 >> 2] | 0) == (HEAP32[i33 >> 2] | 0)) __ZNSt3__119__double_or_nothingIwEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i32, i34, i33);
+ if ((HEAP32[i34 >> 2] | 0) == (HEAP32[i24 >> 2] | 0)) __ZNSt3__119__double_or_nothingIwEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i33, i34, i24);
i1 = HEAP32[i36 >> 2] | 0;
i2 = HEAP32[i1 + 12 >> 2] | 0;
if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0;
- i3 = HEAP32[i34 >> 2] | 0;
- HEAP32[i34 >> 2] = i3 + 4;
- HEAP32[i3 >> 2] = i1;
+ i2 = HEAP32[i34 >> 2] | 0;
+ HEAP32[i34 >> 2] = i2 + 4;
+ HEAP32[i2 >> 2] = i1;
i4 = i4 + -1 | 0;
- HEAP32[i26 >> 2] = i4;
+ HEAP32[i27 >> 2] = i4;
i1 = HEAP32[i36 >> 2] | 0;
- i3 = i1 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) {
+ i2 = i1 + 12 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
i1 = i6;
continue;
} else {
- HEAP32[i3 >> 2] = i2 + 4;
+ HEAP32[i2 >> 2] = i3 + 4;
i1 = i6;
continue;
}
}
} while (0);
- if ((HEAP32[i34 >> 2] | 0) == (HEAP32[i32 >> 2] | 0)) {
+ if ((HEAP32[i34 >> 2] | 0) == (HEAP32[i33 >> 2] | 0)) {
i35 = 230;
break L21;
}
@@ -23842,13 +22722,13 @@ function __ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
i1 = HEAP32[i36 >> 2] | 0;
i2 = HEAP32[i1 + 12 >> 2] | 0;
if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0;
- if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i24 >> 2] | 0) + 12 >> 2] & 31](i24, 8192, i1) | 0)) break L280;
+ if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i25 >> 2] | 0) + 12 >> 2] & 31](i25, 8192, i1) | 0)) break L280;
i1 = HEAP32[i36 >> 2] | 0;
- i3 = i1 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else {
- HEAP32[i3 >> 2] = i2 + 4;
- i1 = HEAP32[i2 >> 2] | 0;
+ i2 = i1 + 12 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else {
+ HEAP32[i2 >> 2] = i3 + 4;
+ i1 = HEAP32[i3 >> 2] | 0;
}
__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9push_backEw(i44, i1);
i1 = i5;
@@ -23909,18 +22789,20 @@ function __ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
if ((i35 | 0) == 251 ? (i35 = 0, i3) : 0) break;
i1 = HEAP32[i36 >> 2] | 0;
i2 = HEAP32[i1 + 12 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAP32[i2 >> 2] | 0;
- if (!(HEAP8[i7 >> 0] & 1)) i1 = i5; else i1 = HEAP32[i6 >> 2] | 0;
- if ((i2 | 0) != (HEAP32[i1 + (i4 << 2) >> 2] | 0)) break;
- i4 = i4 + 1 | 0;
- i1 = HEAP32[i36 >> 2] | 0;
- i3 = i1 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) {
- FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
+ if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0;
+ if (!(HEAP8[i7 >> 0] & 1)) i2 = i5; else i2 = HEAP32[i6 >> 2] | 0;
+ if ((i1 | 0) != (HEAP32[i2 + (i4 << 2) >> 2] | 0)) break;
+ i1 = i4 + 1 | 0;
+ i2 = HEAP32[i36 >> 2] | 0;
+ i3 = i2 + 12 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if ((i4 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) {
+ FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0;
+ i4 = i1;
continue;
} else {
- HEAP32[i3 >> 2] = i2 + 4;
+ HEAP32[i3 >> 2] = i4 + 4;
+ i4 = i1;
continue;
}
}
@@ -23931,7 +22813,7 @@ function __ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
i1 = HEAP32[i46 >> 2] | 0;
if ((i1 | 0) != (i8 | 0)) {
HEAP32[i39 >> 2] = 0;
- __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i40, i1, i8, i39);
+ __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i41, i1, i8, i39);
if (!(HEAP32[i39 >> 2] | 0)) {
i2 = 1;
break;
@@ -23943,51 +22825,50 @@ function __ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
} else i2 = 1;
} while (0);
__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i44);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i41);
__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i42);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i43);
__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i45);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i40);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i41);
i1 = HEAP32[i46 >> 2] | 0;
HEAP32[i46 >> 2] = 0;
- if (i1 | 0) FUNCTION_TABLE_vi[HEAP32[i43 >> 2] & 255](i1);
+ if (i1 | 0) FUNCTION_TABLE_vi[HEAP32[i40 >> 2] & 255](i1);
STACKTOP = i47;
return i2 | 0;
}
-
-function __ZNSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE8__do_getERS4_S4_bRKNS_6localeEjRjRbRKNS_5ctypeIcEERNS_10unique_ptrIcPFvPvEEERPcSM_(i41, i42, i3, i4, i5, i43, i34, i2, i37, i39, i1) {
+function __ZNSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE8__do_getERS4_S4_bRKNS_6localeEjRjRbRKNS_5ctypeIcEERNS_10unique_ptrIcPFvPvEEERPcSM_(i40, i41, i3, i4, i5, i42, i34, i2, i37, i38, i1) {
+ i40 = i40 | 0;
i41 = i41 | 0;
- i42 = i42 | 0;
i3 = i3 | 0;
i4 = i4 | 0;
i5 = i5 | 0;
- i43 = i43 | 0;
+ i42 = i42 | 0;
i34 = i34 | 0;
i2 = i2 | 0;
i37 = i37 | 0;
- i39 = i39 | 0;
+ i38 = i38 | 0;
i1 = i1 | 0;
- var i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i35 = 0, i36 = 0, i38 = 0, i40 = 0, i44 = 0, i45 = 0, i46 = 0, i47 = 0, i48 = 0, i49 = 0, i50 = 0, i51 = 0, i52 = 0;
- i52 = STACKTOP;
+ var i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i35 = 0, i36 = 0, i39 = 0, i43 = 0, i44 = 0, i45 = 0, i46 = 0, i47 = 0, i48 = 0, i49 = 0, i50 = 0, i51 = 0;
+ i51 = STACKTOP;
STACKTOP = STACKTOP + 512 | 0;
- i38 = i52 + 88 | 0;
- i9 = i52 + 96 | 0;
- i51 = i52 + 80 | 0;
- i33 = i52 + 72 | 0;
- i32 = i52 + 68 | 0;
- i35 = i52 + 500 | 0;
- i30 = i52 + 497 | 0;
- i36 = i52 + 496 | 0;
- i45 = i52 + 56 | 0;
- i50 = i52 + 44 | 0;
- i47 = i52 + 32 | 0;
- i46 = i52 + 20 | 0;
- i49 = i52 + 8 | 0;
- i31 = i52 + 4 | 0;
- i44 = i52;
- HEAP32[i38 >> 2] = i1;
- HEAP32[i51 >> 2] = i9;
- i48 = i51 + 4 | 0;
- HEAP32[i48 >> 2] = 181;
+ i29 = i51 + 88 | 0;
+ i9 = i51 + 96 | 0;
+ i50 = i51 + 80 | 0;
+ i33 = i51 + 72 | 0;
+ i32 = i51 + 68 | 0;
+ i35 = i51 + 500 | 0;
+ i30 = i51 + 497 | 0;
+ i36 = i51 + 496 | 0;
+ i45 = i51 + 56 | 0;
+ i49 = i51 + 44 | 0;
+ i47 = i51 + 32 | 0;
+ i46 = i51 + 20 | 0;
+ i48 = i51 + 8 | 0;
+ i31 = i51 + 4 | 0;
+ i43 = i51;
+ HEAP32[i29 >> 2] = i1;
+ HEAP32[i50 >> 2] = i9;
+ i44 = i50 + 4 | 0;
+ HEAP32[i44 >> 2] = 202;
HEAP32[i33 >> 2] = i9;
HEAP32[i32 >> 2] = i9 + 400;
i1 = 0;
@@ -23999,7 +22880,7 @@ function __ZNSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i50 + (i1 << 2) >> 2] = 0;
+ HEAP32[i49 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
i1 = 0;
@@ -24017,465 +22898,473 @@ function __ZNSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i49 + (i1 << 2) >> 2] = 0;
+ HEAP32[i48 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__111__money_getIcE13__gather_infoEbRKNS_6localeERNS_10money_base7patternERcS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESF_SF_SF_Ri(i3, i4, i35, i30, i36, i45, i50, i47, i46, i31);
- HEAP32[i39 >> 2] = HEAP32[i37 >> 2];
- i27 = i2 + 8 | 0;
- i25 = i47 + 4 | 0;
- i26 = i46 + 4 | 0;
- i24 = i46 + 8 | 0;
- i29 = i46 + 1 | 0;
- i23 = i47 + 8 | 0;
+ __ZNSt3__111__money_getIcE13__gather_infoEbRKNS_6localeERNS_10money_base7patternERcS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESF_SF_SF_Ri(i3, i4, i35, i30, i36, i45, i49, i47, i46, i31);
+ HEAP32[i38 >> 2] = HEAP32[i37 >> 2];
+ i22 = i2 + 8 | 0;
+ i23 = i47 + 4 | 0;
+ i24 = i46 + 4 | 0;
+ i25 = i46 + 8 | 0;
+ i26 = i46 + 1 | 0;
+ i27 = i47 + 8 | 0;
i28 = i47 + 1 | 0;
- i22 = (i5 & 512 | 0) != 0;
- i14 = i50 + 8 | 0;
- i19 = i50 + 1 | 0;
- i16 = i50 + 4 | 0;
- i18 = i49 + 4 | 0;
- i15 = i49 + 8 | 0;
- i20 = i49 + 1 | 0;
- i21 = i35 + 3 | 0;
- i17 = i45 + 4 | 0;
- i13 = 0;
- i7 = 0;
+ i13 = (i5 & 512 | 0) != 0;
+ i14 = i49 + 8 | 0;
+ i15 = i49 + 1 | 0;
+ i16 = i49 + 4 | 0;
+ i17 = i48 + 4 | 0;
+ i18 = i48 + 8 | 0;
+ i19 = i48 + 1 | 0;
+ i20 = i35 + 3 | 0;
+ i21 = i45 + 4 | 0;
+ i12 = 0;
+ i8 = 0;
L21 : while (1) {
- if (i13 >>> 0 >= 4) {
- i40 = 218;
+ if (i12 >>> 0 >= 4) {
+ i39 = 218;
break;
}
- i1 = HEAP32[i41 >> 2] | 0;
+ i1 = HEAP32[i40 >> 2] | 0;
do if (i1) {
if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) {
- HEAP32[i41 >> 2] = 0;
+ HEAP32[i40 >> 2] = 0;
i1 = 0;
break;
} else {
- i1 = HEAP32[i41 >> 2] | 0;
+ i1 = HEAP32[i40 >> 2] | 0;
break;
}
} else i1 = 0; while (0);
- i2 = (i1 | 0) == 0;
- i1 = HEAP32[i42 >> 2] | 0;
- do if (i1) {
- if ((HEAP32[i1 + 12 >> 2] | 0) != (HEAP32[i1 + 16 >> 2] | 0)) if (i2) {
- i12 = i1;
- break;
- } else {
- i40 = 218;
+ i1 = (i1 | 0) == 0;
+ i2 = HEAP32[i41 >> 2] | 0;
+ do if (i2) {
+ if ((HEAP32[i2 + 12 >> 2] | 0) != (HEAP32[i2 + 16 >> 2] | 0)) if (i1) break; else {
+ i39 = 218;
break L21;
}
- if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) != -1) if (i2) {
- i12 = i1;
- break;
- } else {
- i40 = 218;
+ if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) != -1) if (i1) break; else {
+ i39 = 218;
break L21;
} else {
- HEAP32[i42 >> 2] = 0;
- i40 = 28;
+ HEAP32[i41 >> 2] = 0;
+ i39 = 28;
break;
}
- } else i40 = 28; while (0);
- if ((i40 | 0) == 28) {
- i40 = 0;
- if (i2) {
- i40 = 218;
+ } else i39 = 28; while (0);
+ if ((i39 | 0) == 28) {
+ i39 = 0;
+ if (i1) {
+ i39 = 218;
break;
- } else i12 = 0;
+ } else i2 = 0;
}
- L42 : do switch (HEAP8[i35 + i13 >> 0] | 0) {
+ L42 : do switch (HEAP8[i35 + i12 >> 0] | 0) {
case 1:
{
- if ((i13 | 0) != 3) {
- i1 = HEAP32[i41 >> 2] | 0;
- i2 = HEAP32[i1 + 12 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAPU8[i2 >> 0] | 0;
+ if ((i12 | 0) != 3) {
+ i1 = HEAP32[i40 >> 2] | 0;
+ i3 = HEAP32[i1 + 12 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAPU8[i3 >> 0] | 0;
if ((i1 & 255) << 24 >> 24 <= -1) {
- i40 = 42;
+ i39 = 42;
break L21;
}
- if (!(HEAP16[(HEAP32[i27 >> 2] | 0) + (i1 << 24 >> 24 << 1) >> 1] & 8192)) {
- i40 = 42;
+ if (!(HEAP16[(HEAP32[i22 >> 2] | 0) + (i1 << 24 >> 24 << 1) >> 1] & 8192)) {
+ i39 = 42;
break L21;
}
- i1 = HEAP32[i41 >> 2] | 0;
+ i1 = HEAP32[i40 >> 2] | 0;
i3 = i1 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else {
- HEAP32[i3 >> 2] = i2 + 1;
- i1 = HEAPU8[i2 >> 0] | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if ((i4 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else {
+ HEAP32[i3 >> 2] = i4 + 1;
+ i1 = HEAPU8[i4 >> 0] | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i49, i1 & 255);
- i1 = i12;
- i3 = i12;
- i40 = 44;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i48, i1 & 255);
+ i1 = i2;
+ i3 = i2;
+ i39 = 44;
}
break;
}
case 0:
{
- if ((i13 | 0) != 3) {
- i1 = i12;
- i3 = i12;
- i40 = 44;
+ if ((i12 | 0) != 3) {
+ i1 = i2;
+ i3 = i2;
+ i39 = 44;
}
break;
}
case 3:
{
- i3 = HEAP8[i47 >> 0] | 0;
- i1 = (i3 & 1) == 0 ? (i3 & 255) >>> 1 : HEAP32[i25 >> 2] | 0;
- i5 = HEAP8[i46 >> 0] | 0;
- i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i26 >> 2] | 0;
- if ((i1 | 0) != (0 - i5 | 0)) {
- i6 = (i1 | 0) == 0;
- i4 = HEAP32[i41 >> 2] | 0;
- i8 = HEAP32[i4 + 12 >> 2] | 0;
- i1 = HEAP32[i4 + 16 >> 2] | 0;
- i2 = (i8 | 0) == (i1 | 0);
- if (i6 | (i5 | 0) == 0) {
- if (i2) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0; else i1 = HEAPU8[i8 >> 0] | 0;
+ i4 = HEAP8[i47 >> 0] | 0;
+ i1 = (i4 & 1) == 0 ? (i4 & 255) >>> 1 : HEAP32[i23 >> 2] | 0;
+ i3 = HEAP8[i46 >> 0] | 0;
+ i3 = (i3 & 1) == 0 ? (i3 & 255) >>> 1 : HEAP32[i24 >> 2] | 0;
+ if ((i1 | 0) != (0 - i3 | 0)) {
+ i5 = (i1 | 0) == 0;
+ i6 = HEAP32[i40 >> 2] | 0;
+ i7 = HEAP32[i6 + 12 >> 2] | 0;
+ i1 = HEAP32[i6 + 16 >> 2] | 0;
+ i2 = (i7 | 0) == (i1 | 0);
+ if (i5 | (i3 | 0) == 0) {
+ if (i2) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i1 = HEAPU8[i7 >> 0] | 0;
i1 = i1 & 255;
- if (i6) {
- if (i1 << 24 >> 24 != (HEAP8[((HEAP8[i46 >> 0] & 1) == 0 ? i29 : HEAP32[i24 >> 2] | 0) >> 0] | 0)) break L42;
- i1 = HEAP32[i41 >> 2] | 0;
- i3 = i1 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else HEAP32[i3 >> 2] = i2 + 1;
+ if (i5) {
+ if (i1 << 24 >> 24 != (HEAP8[((HEAP8[i46 >> 0] & 1) == 0 ? i26 : HEAP32[i25 >> 2] | 0) >> 0] | 0)) break L42;
+ i1 = HEAP32[i40 >> 2] | 0;
+ i2 = i1 + 12 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else HEAP32[i2 >> 2] = i3 + 1;
HEAP8[i34 >> 0] = 1;
- i12 = HEAP8[i46 >> 0] | 0;
- i7 = ((i12 & 1) == 0 ? (i12 & 255) >>> 1 : HEAP32[i26 >> 2] | 0) >>> 0 > 1 ? i46 : i7;
+ i11 = HEAP8[i46 >> 0] | 0;
+ i8 = ((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i24 >> 2] | 0) >>> 0 > 1 ? i46 : i8;
break L42;
}
- if (i1 << 24 >> 24 != (HEAP8[((HEAP8[i47 >> 0] & 1) == 0 ? i28 : HEAP32[i23 >> 2] | 0) >> 0] | 0)) {
+ if (i1 << 24 >> 24 != (HEAP8[((HEAP8[i47 >> 0] & 1) == 0 ? i28 : HEAP32[i27 >> 2] | 0) >> 0] | 0)) {
HEAP8[i34 >> 0] = 1;
break L42;
}
- i1 = HEAP32[i41 >> 2] | 0;
- i3 = i1 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else HEAP32[i3 >> 2] = i2 + 1;
- i12 = HEAP8[i47 >> 0] | 0;
- i7 = ((i12 & 1) == 0 ? (i12 & 255) >>> 1 : HEAP32[i25 >> 2] | 0) >>> 0 > 1 ? i47 : i7;
+ i1 = HEAP32[i40 >> 2] | 0;
+ i2 = i1 + 12 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else HEAP32[i2 >> 2] = i3 + 1;
+ i11 = HEAP8[i47 >> 0] | 0;
+ i8 = ((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i23 >> 2] | 0) >>> 0 > 1 ? i47 : i8;
break L42;
}
if (i2) {
- i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0;
- i1 = HEAP32[i41 >> 2] | 0;
- i6 = HEAP8[i47 >> 0] | 0;
- i4 = i1;
- i5 = HEAP32[i1 + 12 >> 2] | 0;
+ i5 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0;
+ i1 = HEAP32[i40 >> 2] | 0;
+ i4 = HEAP8[i47 >> 0] | 0;
+ i6 = i1;
+ i3 = HEAP32[i1 + 12 >> 2] | 0;
i1 = HEAP32[i1 + 16 >> 2] | 0;
} else {
- i6 = i3;
- i5 = i8;
- i3 = HEAPU8[i8 >> 0] | 0;
- }
- i2 = i4 + 12 | 0;
- i1 = (i5 | 0) == (i1 | 0);
- if ((i3 & 255) << 24 >> 24 == (HEAP8[((i6 & 1) == 0 ? i28 : HEAP32[i23 >> 2] | 0) >> 0] | 0)) {
- if (i1) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 40 >> 2] & 127](i4) | 0; else HEAP32[i2 >> 2] = i5 + 1;
- i12 = HEAP8[i47 >> 0] | 0;
- i7 = ((i12 & 1) == 0 ? (i12 & 255) >>> 1 : HEAP32[i25 >> 2] | 0) >>> 0 > 1 ? i47 : i7;
+ i5 = HEAPU8[i7 >> 0] | 0;
+ i3 = i7;
+ }
+ i2 = i6 + 12 | 0;
+ i1 = (i3 | 0) == (i1 | 0);
+ if ((i5 & 255) << 24 >> 24 == (HEAP8[((i4 & 1) == 0 ? i28 : HEAP32[i27 >> 2] | 0) >> 0] | 0)) {
+ if (i1) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 40 >> 2] & 127](i6) | 0; else HEAP32[i2 >> 2] = i3 + 1;
+ i11 = HEAP8[i47 >> 0] | 0;
+ i8 = ((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i23 >> 2] | 0) >>> 0 > 1 ? i47 : i8;
break L42;
}
- if (i1) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0; else i1 = HEAPU8[i5 >> 0] | 0;
- if ((i1 & 255) << 24 >> 24 != (HEAP8[((HEAP8[i46 >> 0] & 1) == 0 ? i29 : HEAP32[i24 >> 2] | 0) >> 0] | 0)) {
- i40 = 98;
+ if (i1) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i1 = HEAPU8[i3 >> 0] | 0;
+ if ((i1 & 255) << 24 >> 24 != (HEAP8[((HEAP8[i46 >> 0] & 1) == 0 ? i26 : HEAP32[i25 >> 2] | 0) >> 0] | 0)) {
+ i39 = 98;
break L21;
}
- i1 = HEAP32[i41 >> 2] | 0;
- i3 = i1 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else HEAP32[i3 >> 2] = i2 + 1;
+ i1 = HEAP32[i40 >> 2] | 0;
+ i2 = i1 + 12 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else HEAP32[i2 >> 2] = i3 + 1;
HEAP8[i34 >> 0] = 1;
- i12 = HEAP8[i46 >> 0] | 0;
- i7 = ((i12 & 1) == 0 ? (i12 & 255) >>> 1 : HEAP32[i26 >> 2] | 0) >>> 0 > 1 ? i46 : i7;
+ i11 = HEAP8[i46 >> 0] | 0;
+ i8 = ((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i24 >> 2] | 0) >>> 0 > 1 ? i46 : i8;
}
break;
}
case 2:
{
- if (!(i13 >>> 0 < 2 | (i7 | 0) != 0) ? !(i22 | (i13 | 0) == 2 & (HEAP8[i21 >> 0] | 0) != 0) : 0) {
- i7 = 0;
+ if (!(i12 >>> 0 < 2 | (i8 | 0) != 0) ? !(i13 | (i12 | 0) == 2 & (HEAP8[i20 >> 0] | 0) != 0) : 0) {
+ i8 = 0;
break L42;
}
- i10 = HEAP8[i50 >> 0] | 0;
- i2 = (i10 & 1) == 0;
- i11 = HEAP32[i14 >> 2] | 0;
- i8 = i2 ? i19 : i11;
- i1 = i8;
- L104 : do if ((i13 | 0) != 0 ? (HEAPU8[i35 + (i13 + -1) >> 0] | 0) < 2 : 0) {
- i5 = i8 + (i2 ? (i10 & 255) >>> 1 : HEAP32[i16 >> 2] | 0) | 0;
- i4 = i1;
+ i7 = HEAP8[i49 >> 0] | 0;
+ i1 = (i7 & 1) == 0;
+ i10 = HEAP32[i14 >> 2] | 0;
+ i3 = i1 ? i15 : i10;
+ i11 = i3;
+ L104 : do if ((i12 | 0) != 0 ? (HEAPU8[i35 + (i12 + -1) >> 0] | 0) < 2 : 0) {
+ i1 = i3 + (i1 ? (i7 & 255) >>> 1 : HEAP32[i16 >> 2] | 0) | 0;
+ i6 = i11;
while (1) {
- i2 = i4;
- if ((i2 | 0) == (i5 | 0)) break;
- i3 = HEAP8[i2 >> 0] | 0;
- if (i3 << 24 >> 24 <= -1) break;
- if (!(HEAP16[(HEAP32[i27 >> 2] | 0) + (i3 << 24 >> 24 << 1) >> 1] & 8192)) break;
- i4 = i2 + 1 | 0;
- }
- i6 = i4 - i1 | 0;
- i2 = HEAP8[i49 >> 0] | 0;
- i3 = (i2 & 1) == 0;
- i2 = i3 ? (i2 & 255) >>> 1 : HEAP32[i18 >> 2] | 0;
- if (i6 >>> 0 <= i2 >>> 0) {
- i5 = (i3 ? i20 : HEAP32[i15 >> 2] | 0) + i2 | 0;
- i3 = i5 + (0 - i6) | 0;
- i2 = i8;
+ i4 = i6;
+ if ((i4 | 0) == (i1 | 0)) break;
+ i5 = HEAP8[i4 >> 0] | 0;
+ if (i5 << 24 >> 24 <= -1) break;
+ if (!(HEAP16[(HEAP32[i22 >> 2] | 0) + (i5 << 24 >> 24 << 1) >> 1] & 8192)) break;
+ i6 = i4 + 1 | 0;
+ }
+ i5 = i6 - i11 | 0;
+ i4 = HEAP8[i48 >> 0] | 0;
+ i1 = (i4 & 1) == 0;
+ i4 = i1 ? (i4 & 255) >>> 1 : HEAP32[i17 >> 2] | 0;
+ if (i5 >>> 0 <= i4 >>> 0) {
+ i4 = (i1 ? i19 : HEAP32[i18 >> 2] | 0) + i4 | 0;
+ i1 = i4 + (0 - i5) | 0;
while (1) {
- if ((i3 | 0) == (i5 | 0)) {
- i2 = i12;
- i5 = i10;
- i3 = i11;
- i6 = i12;
- i1 = i4;
+ if ((i1 | 0) == (i4 | 0)) {
+ i4 = i2;
+ i3 = i7;
+ i1 = i10;
+ i5 = i2;
+ i2 = i6;
break L104;
}
- if ((HEAP8[i3 >> 0] | 0) != (HEAP8[i2 >> 0] | 0)) {
- i2 = i12;
- i5 = i10;
- i3 = i11;
- i6 = i12;
+ if ((HEAP8[i1 >> 0] | 0) != (HEAP8[i3 >> 0] | 0)) {
+ i4 = i2;
+ i3 = i7;
+ i1 = i10;
+ i5 = i2;
+ i2 = i11;
break L104;
}
i3 = i3 + 1 | 0;
- i2 = i2 + 1 | 0;
+ i1 = i1 + 1 | 0;
}
} else {
- i2 = i12;
- i5 = i10;
- i3 = i11;
- i6 = i12;
+ i4 = i2;
+ i3 = i7;
+ i1 = i10;
+ i5 = i2;
+ i2 = i11;
}
} else {
- i2 = i12;
- i5 = i10;
- i3 = i11;
- i6 = i12;
+ i4 = i2;
+ i3 = i7;
+ i1 = i10;
+ i5 = i2;
+ i2 = i11;
} while (0);
L118 : while (1) {
- i12 = (i5 & 1) == 0;
- i3 = (i12 ? i19 : i3) + (i12 ? (i5 & 255) >>> 1 : HEAP32[i16 >> 2] | 0) | 0;
- if ((i1 | 0) == (i3 | 0)) {
- i1 = i3;
- break;
- }
- i3 = HEAP32[i41 >> 2] | 0;
- do if (i3) {
- if ((HEAP32[i3 + 12 >> 2] | 0) == (HEAP32[i3 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) == -1) {
- HEAP32[i41 >> 2] = 0;
- i3 = 0;
+ i6 = (i3 & 1) == 0;
+ i1 = (i6 ? i15 : i1) + (i6 ? (i3 & 255) >>> 1 : HEAP32[i16 >> 2] | 0) | 0;
+ i6 = i2;
+ if ((i6 | 0) == (i1 | 0)) break;
+ i1 = HEAP32[i40 >> 2] | 0;
+ do if (i1) {
+ if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) {
+ HEAP32[i40 >> 2] = 0;
+ i1 = 0;
break;
} else {
- i3 = HEAP32[i41 >> 2] | 0;
+ i1 = HEAP32[i40 >> 2] | 0;
break;
}
- } else i3 = 0; while (0);
- i3 = (i3 | 0) == 0;
- do if (i6) {
- if ((HEAP32[i6 + 12 >> 2] | 0) != (HEAP32[i6 + 16 >> 2] | 0)) if (i3) {
- i5 = i2;
+ } else i1 = 0; while (0);
+ i2 = (i1 | 0) == 0;
+ do if (i5) {
+ if ((HEAP32[i5 + 12 >> 2] | 0) != (HEAP32[i5 + 16 >> 2] | 0)) if (i2) {
+ i1 = i4;
break;
- } else break L118;
- if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0) != -1) if (i3 ^ (i2 | 0) == 0) {
- i5 = i2;
- i6 = i2;
+ } else {
+ i1 = i6;
+ break L118;
+ }
+ if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 36 >> 2] & 127](i5) | 0) != -1) if (i2 ^ (i4 | 0) == 0) {
+ i1 = i4;
+ i5 = i4;
break;
- } else break L118; else {
- HEAP32[i42 >> 2] = 0;
- i2 = 0;
- i40 = 124;
+ } else {
+ i1 = i6;
+ break L118;
+ } else {
+ HEAP32[i41 >> 2] = 0;
+ i1 = 0;
+ i39 = 124;
break;
}
- } else i40 = 124; while (0);
- if ((i40 | 0) == 124) {
- i40 = 0;
- if (i3) break; else {
- i5 = i2;
- i6 = 0;
- }
+ } else {
+ i1 = i4;
+ i39 = 124;
+ } while (0);
+ if ((i39 | 0) == 124) {
+ i39 = 0;
+ if (i2) {
+ i1 = i6;
+ break;
+ } else i5 = 0;
}
- i2 = HEAP32[i41 >> 2] | 0;
+ i2 = HEAP32[i40 >> 2] | 0;
i3 = HEAP32[i2 + 12 >> 2] | 0;
if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i2 = HEAPU8[i3 >> 0] | 0;
- if ((i2 & 255) << 24 >> 24 != (HEAP8[i1 >> 0] | 0)) break;
- i2 = HEAP32[i41 >> 2] | 0;
- i4 = i2 + 12 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0; else HEAP32[i4 >> 2] = i3 + 1;
- i2 = i5;
- i5 = HEAP8[i50 >> 0] | 0;
- i3 = HEAP32[i14 >> 2] | 0;
- i1 = i1 + 1 | 0;
+ if ((i2 & 255) << 24 >> 24 != (HEAP8[i6 >> 0] | 0)) {
+ i1 = i6;
+ break;
+ }
+ i2 = HEAP32[i40 >> 2] | 0;
+ i3 = i2 + 12 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if ((i4 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0; else HEAP32[i3 >> 2] = i4 + 1;
+ i4 = i1;
+ i3 = HEAP8[i49 >> 0] | 0;
+ i1 = HEAP32[i14 >> 2] | 0;
+ i2 = i6 + 1 | 0;
}
- if (i22 ? (i12 = HEAP8[i50 >> 0] | 0, i11 = (i12 & 1) == 0, (i1 | 0) != ((i11 ? i19 : HEAP32[i14 >> 2] | 0) + (i11 ? (i12 & 255) >>> 1 : HEAP32[i16 >> 2] | 0) | 0)) : 0) {
- i40 = 136;
+ if (i13 ? (i11 = HEAP8[i49 >> 0] | 0, i10 = (i11 & 1) == 0, (i1 | 0) != ((i10 ? i15 : HEAP32[i14 >> 2] | 0) + (i10 ? (i11 & 255) >>> 1 : HEAP32[i16 >> 2] | 0) | 0)) : 0) {
+ i39 = 136;
break L21;
}
break;
}
case 4:
{
- i8 = HEAP8[i36 >> 0] | 0;
- i2 = i12;
- i4 = i12;
+ i7 = HEAP8[i36 >> 0] | 0;
+ i5 = i2;
+ i4 = i2;
i1 = 0;
L151 : while (1) {
- i3 = HEAP32[i41 >> 2] | 0;
- do if (i3) {
- if ((HEAP32[i3 + 12 >> 2] | 0) == (HEAP32[i3 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) == -1) {
- HEAP32[i41 >> 2] = 0;
- i3 = 0;
+ i2 = HEAP32[i40 >> 2] | 0;
+ do if (i2) {
+ if ((HEAP32[i2 + 12 >> 2] | 0) == (HEAP32[i2 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) == -1) {
+ HEAP32[i40 >> 2] = 0;
+ i2 = 0;
break;
} else {
- i3 = HEAP32[i41 >> 2] | 0;
+ i2 = HEAP32[i40 >> 2] | 0;
break;
}
- } else i3 = 0; while (0);
- i3 = (i3 | 0) == 0;
+ } else i2 = 0; while (0);
+ i3 = (i2 | 0) == 0;
do if (i4) {
if ((HEAP32[i4 + 12 >> 2] | 0) != (HEAP32[i4 + 16 >> 2] | 0)) if (i3) {
- i6 = i2;
- i5 = i4;
+ i2 = i5;
+ i6 = i4;
break;
- } else break L151;
- if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0) != -1) if (i3 ^ (i2 | 0) == 0) {
- i6 = i2;
- i5 = i2;
+ } else {
+ i2 = i5;
+ break L151;
+ }
+ if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0) != -1) if (i3 ^ (i5 | 0) == 0) {
+ i2 = i5;
+ i6 = i5;
break;
- } else break L151; else {
- HEAP32[i42 >> 2] = 0;
+ } else {
+ i2 = i5;
+ break L151;
+ } else {
+ HEAP32[i41 >> 2] = 0;
i2 = 0;
- i40 = 147;
+ i39 = 147;
break;
}
- } else i40 = 147; while (0);
- if ((i40 | 0) == 147) {
- i40 = 0;
- if (i3) break; else {
- i6 = i2;
- i5 = 0;
- }
- }
- i2 = HEAP32[i41 >> 2] | 0;
- i3 = HEAP32[i2 + 12 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i2 = HEAPU8[i3 >> 0] | 0;
- i3 = i2 & 255;
- if (i3 << 24 >> 24 > -1 ? (HEAP16[(HEAP32[i27 >> 2] | 0) + (i2 << 24 >> 24 << 1) >> 1] & 2048) != 0 : 0) {
- i2 = HEAP32[i39 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i38 >> 2] | 0)) {
- __ZNSt3__119__double_or_nothingIcEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i37, i39, i38);
- i2 = HEAP32[i39 >> 2] | 0;
+ } else {
+ i2 = i5;
+ i39 = 147;
+ } while (0);
+ if ((i39 | 0) == 147) {
+ i39 = 0;
+ if (i3) break; else i6 = 0;
+ }
+ i3 = HEAP32[i40 >> 2] | 0;
+ i4 = HEAP32[i3 + 12 >> 2] | 0;
+ if ((i4 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i3 = HEAPU8[i4 >> 0] | 0;
+ i4 = i3 & 255;
+ if (i4 << 24 >> 24 > -1 ? (HEAP16[(HEAP32[i22 >> 2] | 0) + (i3 << 24 >> 24 << 1) >> 1] & 2048) != 0 : 0) {
+ i3 = HEAP32[i38 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i29 >> 2] | 0)) {
+ __ZNSt3__119__double_or_nothingIcEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i37, i38, i29);
+ i3 = HEAP32[i38 >> 2] | 0;
}
- HEAP32[i39 >> 2] = i2 + 1;
- HEAP8[i2 >> 0] = i3;
+ HEAP32[i38 >> 2] = i3 + 1;
+ HEAP8[i3 >> 0] = i4;
i1 = i1 + 1 | 0;
} else {
- i12 = HEAP8[i45 >> 0] | 0;
- if (!(i3 << 24 >> 24 == i8 << 24 >> 24 & (i1 | 0 ? (((i12 & 1) == 0 ? (i12 & 255) >>> 1 : HEAP32[i17 >> 2] | 0) | 0) != 0 : 0))) {
- i2 = i6;
- break;
- }
+ i11 = HEAP8[i45 >> 0] | 0;
+ if (!(i4 << 24 >> 24 == i7 << 24 >> 24 & (i1 | 0 ? (((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i21 >> 2] | 0) | 0) != 0 : 0))) break;
if ((i9 | 0) == (HEAP32[i32 >> 2] | 0)) {
- __ZNSt3__119__double_or_nothingIjEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i51, i33, i32);
+ __ZNSt3__119__double_or_nothingIjEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i50, i33, i32);
i9 = HEAP32[i33 >> 2] | 0;
}
- i12 = i9 + 4 | 0;
- HEAP32[i33 >> 2] = i12;
+ i11 = i9 + 4 | 0;
+ HEAP32[i33 >> 2] = i11;
HEAP32[i9 >> 2] = i1;
- i9 = i12;
+ i9 = i11;
i1 = 0;
}
- i2 = HEAP32[i41 >> 2] | 0;
- i4 = i2 + 12 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) {
- FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0;
- i2 = i6;
- i4 = i5;
+ i3 = HEAP32[i40 >> 2] | 0;
+ i4 = i3 + 12 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ if ((i5 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) {
+ FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 40 >> 2] & 127](i3) | 0;
+ i5 = i2;
+ i4 = i6;
continue;
} else {
- HEAP32[i4 >> 2] = i3 + 1;
- i2 = i6;
- i4 = i5;
+ HEAP32[i4 >> 2] = i5 + 1;
+ i5 = i2;
+ i4 = i6;
continue;
}
}
- if (i1 | 0 ? (HEAP32[i51 >> 2] | 0) != (i9 | 0) : 0) {
+ if (i1 | 0 ? (HEAP32[i50 >> 2] | 0) != (i9 | 0) : 0) {
if ((i9 | 0) == (HEAP32[i32 >> 2] | 0)) {
- __ZNSt3__119__double_or_nothingIjEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i51, i33, i32);
+ __ZNSt3__119__double_or_nothingIjEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i50, i33, i32);
i9 = HEAP32[i33 >> 2] | 0;
}
- i12 = i9 + 4 | 0;
- HEAP32[i33 >> 2] = i12;
+ i11 = i9 + 4 | 0;
+ HEAP32[i33 >> 2] = i11;
HEAP32[i9 >> 2] = i1;
- i9 = i12;
+ i9 = i11;
}
i4 = HEAP32[i31 >> 2] | 0;
L198 : do if ((i4 | 0) > 0) {
- i1 = HEAP32[i41 >> 2] | 0;
+ i1 = HEAP32[i40 >> 2] | 0;
do if (i1) {
if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) {
- HEAP32[i41 >> 2] = 0;
+ HEAP32[i40 >> 2] = 0;
i1 = 0;
break;
} else {
- i1 = HEAP32[i41 >> 2] | 0;
+ i1 = HEAP32[i40 >> 2] | 0;
break;
}
} else i1 = 0; while (0);
i1 = (i1 | 0) == 0;
do if (i2) {
if ((HEAP32[i2 + 12 >> 2] | 0) == (HEAP32[i2 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) == -1 : 0) {
- HEAP32[i42 >> 2] = 0;
- i40 = 179;
+ HEAP32[i41 >> 2] = 0;
+ i39 = 179;
break;
}
if (i1) i5 = i2; else {
- i40 = 184;
+ i39 = 184;
break L21;
}
- } else i40 = 179; while (0);
- if ((i40 | 0) == 179) {
- i40 = 0;
+ } else i39 = 179; while (0);
+ if ((i39 | 0) == 179) {
+ i39 = 0;
if (i1) {
- i40 = 184;
+ i39 = 184;
break L21;
} else i5 = 0;
}
- i1 = HEAP32[i41 >> 2] | 0;
+ i1 = HEAP32[i40 >> 2] | 0;
i2 = HEAP32[i1 + 12 >> 2] | 0;
if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAPU8[i2 >> 0] | 0;
if ((i1 & 255) << 24 >> 24 != (HEAP8[i30 >> 0] | 0)) {
- i40 = 184;
+ i39 = 184;
break L21;
}
- i1 = HEAP32[i41 >> 2] | 0;
- i3 = i1 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) {
+ i1 = HEAP32[i40 >> 2] | 0;
+ i2 = i1 + 12 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
i1 = i5;
i3 = i5;
} else {
- HEAP32[i3 >> 2] = i2 + 1;
+ HEAP32[i2 >> 2] = i3 + 1;
i1 = i5;
i3 = i5;
}
while (1) {
if ((i4 | 0) <= 0) break L198;
- i2 = HEAP32[i41 >> 2] | 0;
+ i2 = HEAP32[i40 >> 2] | 0;
do if (i2) {
if ((HEAP32[i2 + 12 >> 2] | 0) == (HEAP32[i2 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) == -1) {
- HEAP32[i41 >> 2] = 0;
+ HEAP32[i40 >> 2] = 0;
i2 = 0;
break;
} else {
- i2 = HEAP32[i41 >> 2] | 0;
+ i2 = HEAP32[i40 >> 2] | 0;
break;
}
} else i2 = 0; while (0);
@@ -24486,7 +23375,7 @@ function __ZNSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
i5 = i3;
break;
} else {
- i40 = 206;
+ i39 = 206;
break L21;
}
if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) != -1) if (i2 ^ (i1 | 0) == 0) {
@@ -24494,63 +23383,63 @@ function __ZNSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
i5 = i1;
break;
} else {
- i40 = 206;
+ i39 = 206;
break L21;
} else {
- HEAP32[i42 >> 2] = 0;
+ HEAP32[i41 >> 2] = 0;
i1 = 0;
- i40 = 199;
+ i39 = 199;
break;
}
- } else i40 = 199; while (0);
- if ((i40 | 0) == 199) {
- i40 = 0;
+ } else i39 = 199; while (0);
+ if ((i39 | 0) == 199) {
+ i39 = 0;
if (i2) {
- i40 = 206;
+ i39 = 206;
break L21;
} else {
i6 = i1;
i5 = 0;
}
}
- i1 = HEAP32[i41 >> 2] | 0;
+ i1 = HEAP32[i40 >> 2] | 0;
i2 = HEAP32[i1 + 12 >> 2] | 0;
if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAPU8[i2 >> 0] | 0;
if ((i1 & 255) << 24 >> 24 <= -1) {
- i40 = 206;
+ i39 = 206;
break L21;
}
- if (!(HEAP16[(HEAP32[i27 >> 2] | 0) + (i1 << 24 >> 24 << 1) >> 1] & 2048)) {
- i40 = 206;
+ if (!(HEAP16[(HEAP32[i22 >> 2] | 0) + (i1 << 24 >> 24 << 1) >> 1] & 2048)) {
+ i39 = 206;
break L21;
}
- if ((HEAP32[i39 >> 2] | 0) == (HEAP32[i38 >> 2] | 0)) __ZNSt3__119__double_or_nothingIcEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i37, i39, i38);
- i1 = HEAP32[i41 >> 2] | 0;
+ if ((HEAP32[i38 >> 2] | 0) == (HEAP32[i29 >> 2] | 0)) __ZNSt3__119__double_or_nothingIcEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i37, i38, i29);
+ i1 = HEAP32[i40 >> 2] | 0;
i2 = HEAP32[i1 + 12 >> 2] | 0;
if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAPU8[i2 >> 0] | 0;
- i3 = HEAP32[i39 >> 2] | 0;
- HEAP32[i39 >> 2] = i3 + 1;
- HEAP8[i3 >> 0] = i1;
+ i2 = HEAP32[i38 >> 2] | 0;
+ HEAP32[i38 >> 2] = i2 + 1;
+ HEAP8[i2 >> 0] = i1;
i4 = i4 + -1 | 0;
HEAP32[i31 >> 2] = i4;
- i1 = HEAP32[i41 >> 2] | 0;
- i3 = i1 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) {
+ i1 = HEAP32[i40 >> 2] | 0;
+ i2 = i1 + 12 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
i1 = i6;
i3 = i5;
continue;
} else {
- HEAP32[i3 >> 2] = i2 + 1;
+ HEAP32[i2 >> 2] = i3 + 1;
i1 = i6;
i3 = i5;
continue;
}
}
} while (0);
- if ((HEAP32[i39 >> 2] | 0) == (HEAP32[i37 >> 2] | 0)) {
- i40 = 216;
+ if ((HEAP32[i38 >> 2] | 0) == (HEAP32[i37 >> 2] | 0)) {
+ i39 = 216;
break L21;
}
break;
@@ -24558,16 +23447,16 @@ function __ZNSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
default:
{}
} while (0);
- L262 : do if ((i40 | 0) == 44) while (1) {
- i40 = 0;
- i2 = HEAP32[i41 >> 2] | 0;
+ L262 : do if ((i39 | 0) == 44) while (1) {
+ i39 = 0;
+ i2 = HEAP32[i40 >> 2] | 0;
do if (i2) {
if ((HEAP32[i2 + 12 >> 2] | 0) == (HEAP32[i2 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) == -1) {
- HEAP32[i41 >> 2] = 0;
+ HEAP32[i40 >> 2] = 0;
i2 = 0;
break;
} else {
- i2 = HEAP32[i41 >> 2] | 0;
+ i2 = HEAP32[i40 >> 2] | 0;
break;
}
} else i2 = 0; while (0);
@@ -24583,705 +23472,1470 @@ function __ZNSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
i4 = i1;
break;
} else break L262; else {
- HEAP32[i42 >> 2] = 0;
+ HEAP32[i41 >> 2] = 0;
i1 = 0;
- i40 = 54;
+ i39 = 54;
break;
}
- } else i40 = 54; while (0);
- if ((i40 | 0) == 54) {
- i40 = 0;
+ } else i39 = 54; while (0);
+ if ((i39 | 0) == 54) {
+ i39 = 0;
if (i2) break L262; else {
i5 = i1;
i4 = 0;
}
}
- i1 = HEAP32[i41 >> 2] | 0;
+ i1 = HEAP32[i40 >> 2] | 0;
i2 = HEAP32[i1 + 12 >> 2] | 0;
if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAPU8[i2 >> 0] | 0;
if ((i1 & 255) << 24 >> 24 <= -1) break L262;
- if (!(HEAP16[(HEAP32[i27 >> 2] | 0) + (i1 << 24 >> 24 << 1) >> 1] & 8192)) break L262;
- i1 = HEAP32[i41 >> 2] | 0;
- i3 = i1 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else {
- HEAP32[i3 >> 2] = i2 + 1;
- i1 = HEAPU8[i2 >> 0] | 0;
+ if (!(HEAP16[(HEAP32[i22 >> 2] | 0) + (i1 << 24 >> 24 << 1) >> 1] & 8192)) break L262;
+ i1 = HEAP32[i40 >> 2] | 0;
+ i2 = i1 + 12 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else {
+ HEAP32[i2 >> 2] = i3 + 1;
+ i1 = HEAPU8[i3 >> 0] | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i49, i1 & 255);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i48, i1 & 255);
i1 = i5;
i3 = i4;
- i40 = 44;
+ i39 = 44;
} while (0);
- i13 = i13 + 1 | 0;
+ i12 = i12 + 1 | 0;
}
- L294 : do if ((i40 | 0) == 42) {
- HEAP32[i43 >> 2] = HEAP32[i43 >> 2] | 4;
+ L294 : do if ((i39 | 0) == 42) {
+ HEAP32[i42 >> 2] = HEAP32[i42 >> 2] | 4;
i2 = 0;
- } else if ((i40 | 0) == 98) {
- HEAP32[i43 >> 2] = HEAP32[i43 >> 2] | 4;
+ } else if ((i39 | 0) == 98) {
+ HEAP32[i42 >> 2] = HEAP32[i42 >> 2] | 4;
i2 = 0;
- } else if ((i40 | 0) == 136) {
- HEAP32[i43 >> 2] = HEAP32[i43 >> 2] | 4;
+ } else if ((i39 | 0) == 136) {
+ HEAP32[i42 >> 2] = HEAP32[i42 >> 2] | 4;
i2 = 0;
- } else if ((i40 | 0) == 184) {
- HEAP32[i43 >> 2] = HEAP32[i43 >> 2] | 4;
+ } else if ((i39 | 0) == 184) {
+ HEAP32[i42 >> 2] = HEAP32[i42 >> 2] | 4;
i2 = 0;
- } else if ((i40 | 0) == 206) {
- HEAP32[i43 >> 2] = HEAP32[i43 >> 2] | 4;
+ } else if ((i39 | 0) == 206) {
+ HEAP32[i42 >> 2] = HEAP32[i42 >> 2] | 4;
i2 = 0;
- } else if ((i40 | 0) == 216) {
- HEAP32[i43 >> 2] = HEAP32[i43 >> 2] | 4;
+ } else if ((i39 | 0) == 216) {
+ HEAP32[i42 >> 2] = HEAP32[i42 >> 2] | 4;
i2 = 0;
- } else if ((i40 | 0) == 218) {
- L296 : do if (i7 | 0) {
- i8 = i7 + 1 | 0;
- i5 = i7 + 8 | 0;
- i6 = i7 + 4 | 0;
- i4 = 1;
+ } else if ((i39 | 0) == 218) {
+ L296 : do if (i8 | 0) {
+ i5 = i8 + 1 | 0;
+ i6 = i8 + 8 | 0;
+ i7 = i8 + 4 | 0;
+ i3 = 1;
L298 : while (1) {
- i1 = HEAP8[i7 >> 0] | 0;
- if (!(i1 & 1)) i1 = (i1 & 255) >>> 1; else i1 = HEAP32[i6 >> 2] | 0;
- if (i4 >>> 0 >= i1 >>> 0) break L296;
- i1 = HEAP32[i41 >> 2] | 0;
+ i1 = HEAP8[i8 >> 0] | 0;
+ if (!(i1 & 1)) i1 = (i1 & 255) >>> 1; else i1 = HEAP32[i7 >> 2] | 0;
+ if (i3 >>> 0 >= i1 >>> 0) break L296;
+ i1 = HEAP32[i40 >> 2] | 0;
do if (i1) {
if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) {
- HEAP32[i41 >> 2] = 0;
+ HEAP32[i40 >> 2] = 0;
i1 = 0;
break;
} else {
- i1 = HEAP32[i41 >> 2] | 0;
+ i1 = HEAP32[i40 >> 2] | 0;
break;
}
} else i1 = 0; while (0);
- i2 = (i1 | 0) == 0;
- i1 = HEAP32[i42 >> 2] | 0;
- do if (i1) {
- if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) {
- HEAP32[i42 >> 2] = 0;
- i40 = 234;
+ i1 = (i1 | 0) == 0;
+ i2 = HEAP32[i41 >> 2] | 0;
+ do if (i2) {
+ if ((HEAP32[i2 + 12 >> 2] | 0) == (HEAP32[i2 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) == -1 : 0) {
+ HEAP32[i41 >> 2] = 0;
+ i39 = 234;
break;
}
- if (!i2) break L298;
- } else i40 = 234; while (0);
- if ((i40 | 0) == 234 ? (i40 = 0, i2) : 0) break;
- i1 = HEAP32[i41 >> 2] | 0;
+ if (!i1) break L298;
+ } else i39 = 234; while (0);
+ if ((i39 | 0) == 234 ? (i39 = 0, i1) : 0) break;
+ i1 = HEAP32[i40 >> 2] | 0;
i2 = HEAP32[i1 + 12 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAPU8[i2 >> 0] | 0;
- if (!(HEAP8[i7 >> 0] & 1)) i1 = i8; else i1 = HEAP32[i5 >> 2] | 0;
- if ((i2 & 255) << 24 >> 24 != (HEAP8[i1 + i4 >> 0] | 0)) break;
- i4 = i4 + 1 | 0;
- i1 = HEAP32[i41 >> 2] | 0;
- i3 = i1 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) {
- FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
+ if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAPU8[i2 >> 0] | 0;
+ if (!(HEAP8[i8 >> 0] & 1)) i2 = i5; else i2 = HEAP32[i6 >> 2] | 0;
+ if ((i1 & 255) << 24 >> 24 != (HEAP8[i2 + i3 >> 0] | 0)) break;
+ i1 = i3 + 1 | 0;
+ i2 = HEAP32[i40 >> 2] | 0;
+ i3 = i2 + 12 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if ((i4 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) {
+ FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0;
+ i3 = i1;
continue;
} else {
- HEAP32[i3 >> 2] = i2 + 1;
+ HEAP32[i3 >> 2] = i4 + 1;
+ i3 = i1;
continue;
}
}
- HEAP32[i43 >> 2] = HEAP32[i43 >> 2] | 4;
+ HEAP32[i42 >> 2] = HEAP32[i42 >> 2] | 4;
i2 = 0;
break L294;
} while (0);
- i1 = HEAP32[i51 >> 2] | 0;
+ i1 = HEAP32[i50 >> 2] | 0;
if ((i1 | 0) != (i9 | 0)) {
- HEAP32[i44 >> 2] = 0;
- __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i45, i1, i9, i44);
- if (!(HEAP32[i44 >> 2] | 0)) {
+ HEAP32[i43 >> 2] = 0;
+ __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i45, i1, i9, i43);
+ if (!(HEAP32[i43 >> 2] | 0)) {
i2 = 1;
break;
} else {
- HEAP32[i43 >> 2] = HEAP32[i43 >> 2] | 4;
+ HEAP32[i42 >> 2] = HEAP32[i42 >> 2] | 4;
i2 = 0;
break;
}
} else i2 = 1;
} while (0);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i49);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i48);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i46);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i47);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i50);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i49);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i45);
- i1 = HEAP32[i51 >> 2] | 0;
- HEAP32[i51 >> 2] = 0;
- if (i1 | 0) FUNCTION_TABLE_vi[HEAP32[i48 >> 2] & 255](i1);
- STACKTOP = i52;
+ i1 = HEAP32[i50 >> 2] | 0;
+ HEAP32[i50 >> 2] = 0;
+ if (i1 | 0) FUNCTION_TABLE_vi[HEAP32[i44 >> 2] & 255](i1);
+ STACKTOP = i51;
return i2 | 0;
}
-function __ZN10__cxxabiv112_GLOBAL__N_114parse_encodingINS0_2DbEEEPKcS4_S4_RT_(i1, i21, i22) {
- i1 = i1 | 0;
- i21 = i21 | 0;
+function __ZN10__cxxabiv112_GLOBAL__N_114parse_encodingINS0_2DbEEEPKcS4_S4_RT_(i22, i19, i20) {
i22 = i22 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0;
- i29 = STACKTOP;
+ i19 = i19 | 0;
+ i20 = i20 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i21 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0;
+ i28 = STACKTOP;
STACKTOP = STACKTOP + 80 | 0;
- i24 = i29 + 60 | 0;
- i23 = i29 + 48 | 0;
- i12 = i29 + 36 | 0;
- i13 = i29 + 24 | 0;
- i14 = i29 + 12 | 0;
- i16 = i29;
- L1 : do if ((i1 | 0) != (i21 | 0)) {
- i27 = i22 + 56 | 0;
- i25 = HEAP32[i27 >> 2] | 0;
- i20 = i25 + 1 | 0;
- HEAP32[i27 >> 2] = i20;
- i28 = i22 + 61 | 0;
- i26 = HEAP8[i28 >> 0] | 0;
- if (i20 >>> 0 > 1) HEAP8[i28 >> 0] = 1;
- i2 = HEAP8[i1 >> 0] | 0;
- L6 : do switch (i2 | 0) {
+ i23 = i28 + 60 | 0;
+ i21 = i28 + 48 | 0;
+ i12 = i28 + 36 | 0;
+ i13 = i28 + 24 | 0;
+ i14 = i28 + 12 | 0;
+ i15 = i28;
+ L1 : do if ((i22 | 0) == (i19 | 0)) i1 = i22; else {
+ i25 = i20 + 56 | 0;
+ i26 = HEAP32[i25 >> 2] | 0;
+ i18 = i26 + 1 | 0;
+ HEAP32[i25 >> 2] = i18;
+ i27 = i20 + 61 | 0;
+ i24 = HEAP8[i27 >> 0] | 0;
+ if (i18 >>> 0 > 1) HEAP8[i27 >> 0] = 1;
+ i1 = HEAP8[i22 >> 0] | 0;
+ L6 : do switch (i1 | 0) {
case 84:
case 71:
{
- L126 : do if ((i21 - i1 | 0) > 2) {
- switch (i2 | 0) {
+ L126 : do if ((i19 - i22 | 0) > 2) {
+ switch (i1 | 0) {
case 84:
break;
case 71:
- switch (HEAP8[i1 + 1 >> 0] | 0) {
+ switch (HEAP8[i22 + 1 >> 0] | 0) {
case 86:
{
- i24 = i1 + 2 | 0;
- i3 = __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i24, i21, i22) | 0;
- if ((i3 | 0) == (i24 | 0)) break L126;
- i2 = HEAP32[i22 + 4 >> 2] | 0;
- if ((HEAP32[i22 >> 2] | 0) == (i2 | 0)) break L126;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 35840) | 0;
- i1 = i3;
+ i23 = i22 + 2 | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i23, i19, i20) | 0;
+ if ((i1 | 0) == (i23 | 0)) {
+ i1 = i22;
+ break L126;
+ }
+ i2 = HEAP32[i20 + 4 >> 2] | 0;
+ if ((HEAP32[i20 >> 2] | 0) == (i2 | 0)) {
+ i1 = i22;
+ break L126;
+ }
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 37304) | 0;
break L126;
}
case 82:
{
- i24 = i1 + 2 | 0;
- i3 = __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i24, i21, i22) | 0;
- if ((i3 | 0) == (i24 | 0)) break L126;
- i2 = HEAP32[i22 + 4 >> 2] | 0;
- if ((HEAP32[i22 >> 2] | 0) == (i2 | 0)) break L126;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 35860) | 0;
- i1 = i3;
+ i23 = i22 + 2 | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i23, i19, i20) | 0;
+ if ((i1 | 0) == (i23 | 0)) {
+ i1 = i22;
+ break L126;
+ }
+ i2 = HEAP32[i20 + 4 >> 2] | 0;
+ if ((HEAP32[i20 >> 2] | 0) == (i2 | 0)) {
+ i1 = i22;
+ break L126;
+ }
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 37324) | 0;
break L126;
}
default:
- break L126;
+ {
+ i1 = i22;
+ break L126;
+ }
}
default:
- break L126;
+ {
+ i1 = i22;
+ break L126;
+ }
}
- i3 = i1 + 1 | 0;
- switch (HEAP8[i3 >> 0] | 0) {
+ i1 = i22 + 1 | 0;
+ switch (HEAP8[i1 >> 0] | 0) {
case 86:
{
- i24 = i1 + 2 | 0;
- i3 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i24, i21, i22) | 0;
- if ((i3 | 0) == (i24 | 0)) break L126;
- i2 = HEAP32[i22 + 4 >> 2] | 0;
- if ((HEAP32[i22 >> 2] | 0) == (i2 | 0)) break L126;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 35689) | 0;
- i1 = i3;
+ i23 = i22 + 2 | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i23, i19, i20) | 0;
+ if ((i1 | 0) == (i23 | 0)) {
+ i1 = i22;
+ break L126;
+ }
+ i2 = HEAP32[i20 + 4 >> 2] | 0;
+ if ((HEAP32[i20 >> 2] | 0) == (i2 | 0)) {
+ i1 = i22;
+ break L126;
+ }
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 37153) | 0;
break L126;
}
case 84:
{
- i24 = i1 + 2 | 0;
- i3 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i24, i21, i22) | 0;
- if ((i3 | 0) == (i24 | 0)) break L126;
- i2 = HEAP32[i22 + 4 >> 2] | 0;
- if ((HEAP32[i22 >> 2] | 0) == (i2 | 0)) break L126;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 35701) | 0;
- i1 = i3;
+ i23 = i22 + 2 | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i23, i19, i20) | 0;
+ if ((i1 | 0) == (i23 | 0)) {
+ i1 = i22;
+ break L126;
+ }
+ i2 = HEAP32[i20 + 4 >> 2] | 0;
+ if ((HEAP32[i20 >> 2] | 0) == (i2 | 0)) {
+ i1 = i22;
+ break L126;
+ }
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 37165) | 0;
break L126;
}
case 73:
{
- i24 = i1 + 2 | 0;
- i3 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i24, i21, i22) | 0;
- if ((i3 | 0) == (i24 | 0)) break L126;
- i2 = HEAP32[i22 + 4 >> 2] | 0;
- if ((HEAP32[i22 >> 2] | 0) == (i2 | 0)) break L126;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 35710) | 0;
- i1 = i3;
+ i23 = i22 + 2 | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i23, i19, i20) | 0;
+ if ((i1 | 0) == (i23 | 0)) {
+ i1 = i22;
+ break L126;
+ }
+ i2 = HEAP32[i20 + 4 >> 2] | 0;
+ if ((HEAP32[i20 >> 2] | 0) == (i2 | 0)) {
+ i1 = i22;
+ break L126;
+ }
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 37174) | 0;
break L126;
}
case 83:
{
- i24 = i1 + 2 | 0;
- i3 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i24, i21, i22) | 0;
- if ((i3 | 0) == (i24 | 0)) break L126;
- i2 = HEAP32[i22 + 4 >> 2] | 0;
- if ((HEAP32[i22 >> 2] | 0) == (i2 | 0)) break L126;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 35724) | 0;
- i1 = i3;
+ i23 = i22 + 2 | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i23, i19, i20) | 0;
+ if ((i1 | 0) == (i23 | 0)) {
+ i1 = i22;
+ break L126;
+ }
+ i2 = HEAP32[i20 + 4 >> 2] | 0;
+ if ((HEAP32[i20 >> 2] | 0) == (i2 | 0)) {
+ i1 = i22;
+ break L126;
+ }
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 37188) | 0;
break L126;
}
case 99:
{
- i24 = i1 + 2 | 0;
- i2 = __ZN10__cxxabiv112_GLOBAL__N_117parse_call_offsetEPKcS2_(i24, i21) | 0;
- if ((i2 | 0) == (i24 | 0)) break L126;
- i4 = __ZN10__cxxabiv112_GLOBAL__N_117parse_call_offsetEPKcS2_(i2, i21) | 0;
- if ((i4 | 0) == (i2 | 0)) break L126;
- i3 = __ZN10__cxxabiv112_GLOBAL__N_114parse_encodingINS0_2DbEEEPKcS4_S4_RT_(i4, i21, i22) | 0;
- if ((i3 | 0) == (i4 | 0)) break L126;
- i2 = HEAP32[i22 + 4 >> 2] | 0;
- if ((HEAP32[i22 >> 2] | 0) == (i2 | 0)) break L126;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 35743) | 0;
- i1 = i3;
+ i23 = i22 + 2 | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_117parse_call_offsetEPKcS2_(i23, i19) | 0;
+ if ((i1 | 0) == (i23 | 0)) {
+ i1 = i22;
+ break L126;
+ }
+ i2 = __ZN10__cxxabiv112_GLOBAL__N_117parse_call_offsetEPKcS2_(i1, i19) | 0;
+ if ((i2 | 0) == (i1 | 0)) {
+ i1 = i22;
+ break L126;
+ }
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_114parse_encodingINS0_2DbEEEPKcS4_S4_RT_(i2, i19, i20) | 0;
+ if ((i1 | 0) == (i2 | 0)) {
+ i1 = i22;
+ break L126;
+ }
+ i2 = HEAP32[i20 + 4 >> 2] | 0;
+ if ((HEAP32[i20 >> 2] | 0) == (i2 | 0)) {
+ i1 = i22;
+ break L126;
+ }
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 37207) | 0;
break L126;
}
case 67:
{
- i20 = i1 + 2 | 0;
- i2 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i20, i21, i22) | 0;
- if ((i2 | 0) == (i20 | 0)) break L126;
- i3 = __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i2, i21) | 0;
- if ((i3 | 0) == (i2 | 0) | (i3 | 0) == (i21 | 0)) break L126;
- if ((HEAP8[i3 >> 0] | 0) != 95) break L126;
- i20 = i3 + 1 | 0;
- i11 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i20, i21, i22) | 0;
- if ((i11 | 0) == (i20 | 0)) break L126;
- i4 = i22 + 4 | 0;
+ i18 = i22 + 2 | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i18, i19, i20) | 0;
+ if ((i1 | 0) == (i18 | 0)) {
+ i1 = i22;
+ break L126;
+ }
+ i2 = __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i1, i19) | 0;
+ if ((i2 | 0) == (i1 | 0) | (i2 | 0) == (i19 | 0)) {
+ i1 = i22;
+ break L126;
+ }
+ if ((HEAP8[i2 >> 0] | 0) != 95) {
+ i1 = i22;
+ break L126;
+ }
+ i18 = i2 + 1 | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i18, i19, i20) | 0;
+ if ((i1 | 0) == (i18 | 0)) {
+ i1 = i22;
+ break L126;
+ }
+ i4 = i20 + 4 | 0;
i2 = HEAP32[i4 >> 2] | 0;
- if (((i2 - (HEAP32[i22 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) break L126;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i24, i2 + -24 | 0);
- i3 = HEAP32[i4 >> 2] | 0;
- i2 = i3 + -24 | 0;
- i1 = i3;
+ if (((i2 - (HEAP32[i20 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) {
+ i1 = i22;
+ break L126;
+ }
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i23, i2 + -24 | 0);
+ i5 = HEAP32[i4 >> 2] | 0;
+ i2 = i5 + -24 | 0;
+ i3 = i5;
while (1) {
- if ((i1 | 0) == (i2 | 0)) break;
- i22 = i1 + -24 | 0;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i22 = i3 + -24 | 0;
HEAP32[i4 >> 2] = i22;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i22);
- i1 = HEAP32[i4 >> 2] | 0;
+ i3 = HEAP32[i4 >> 2] | 0;
}
- i10 = i3 + -48 | 0;
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i24, 0, 35770) | 0;
+ i11 = i5 + -48 | 0;
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i23, 0, 37234) | 0;
HEAP32[i13 >> 2] = HEAP32[i2 >> 2];
HEAP32[i13 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
HEAP32[i13 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i3 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i13, 35795) | 0;
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i13, 37259) | 0;
HEAP32[i12 >> 2] = HEAP32[i2 >> 2];
HEAP32[i12 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
HEAP32[i12 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i3 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i14, (HEAP32[i4 >> 2] | 0) + -24 | 0);
i2 = HEAP8[i14 >> 0] | 0;
- i1 = (i2 & 1) == 0;
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i12, i1 ? i14 + 1 | 0 : HEAP32[i14 + 8 >> 2] | 0, i1 ? (i2 & 255) >>> 1 : HEAP32[i14 + 4 >> 2] | 0) | 0;
- HEAP32[i23 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i23 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i23 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i3 = (i2 & 1) == 0;
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i12, i3 ? i14 + 1 | 0 : HEAP32[i14 + 8 >> 2] | 0, i3 ? (i2 & 255) >>> 1 : HEAP32[i14 + 4 >> 2] | 0) | 0;
+ HEAP32[i21 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i21 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i21 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- do if (HEAP8[i10 >> 0] & 1) {
- i9 = i3 + -40 | 0;
- HEAP8[HEAP32[i9 >> 2] >> 0] = 0;
- i6 = i3 + -44 | 0;
- HEAP32[i6 >> 2] = 0;
- i1 = HEAP8[i10 >> 0] | 0;
- if (!(i1 & 1)) i5 = 10; else {
- i5 = HEAP32[i10 >> 2] | 0;
- i1 = i5 & 255;
- i5 = (i5 & -2) + -1 | 0;
+ do if (HEAP8[i11 >> 0] & 1) {
+ i10 = i5 + -40 | 0;
+ HEAP8[HEAP32[i10 >> 2] >> 0] = 0;
+ i7 = i5 + -44 | 0;
+ HEAP32[i7 >> 2] = 0;
+ i2 = HEAP8[i11 >> 0] | 0;
+ if (!(i2 & 1)) i6 = 10; else {
+ i6 = HEAP32[i11 >> 2] | 0;
+ i2 = i6 & 255;
+ i6 = (i6 & -2) + -1 | 0;
}
- if (!(i1 & 1)) {
- i2 = (i1 & 255) >>> 1;
- if ((i1 & 255) < 22) {
- i8 = i2;
- i4 = 10;
- i7 = 1;
+ if (!(i2 & 1)) {
+ i3 = (i2 & 255) >>> 1;
+ if ((i2 & 255) < 22) {
+ i5 = 10;
+ i8 = i3;
+ i9 = 1;
} else {
- i8 = i2;
- i4 = (i2 + 16 & 240) + -1 | 0;
- i7 = 1;
+ i5 = (i3 + 16 & 240) + -1 | 0;
+ i8 = i3;
+ i9 = 1;
}
} else {
+ i5 = 10;
i8 = 0;
- i4 = 10;
- i7 = 0;
+ i9 = 0;
}
- if ((i4 | 0) != (i5 | 0)) {
- if ((i4 | 0) == 10) {
- i3 = i10 + 1 | 0;
- i2 = HEAP32[i9 >> 2] | 0;
- if (i7) {
- _memcpy(i3 | 0, i2 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0;
- _free(i2);
+ if ((i5 | 0) != (i6 | 0)) {
+ if ((i5 | 0) == 10) {
+ i4 = i11 + 1 | 0;
+ i3 = HEAP32[i10 >> 2] | 0;
+ if (i9) {
+ _memcpy(i4 | 0, i3 | 0, ((i2 & 255) >>> 1) + 1 | 0) | 0;
+ _free(i3);
} else {
- HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0;
- _free(i2);
+ HEAP8[i4 >> 0] = HEAP8[i3 >> 0] | 0;
+ _free(i3);
}
- HEAP8[i10 >> 0] = i8 << 1;
+ HEAP8[i11 >> 0] = i8 << 1;
break;
}
- i2 = i4 + 1 | 0;
- i3 = _malloc(i2) | 0;
- if (!(i4 >>> 0 <= i5 >>> 0 & (i3 | 0) == 0)) {
- if (i7) _memcpy(i3 | 0, i10 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
- i22 = HEAP32[i9 >> 2] | 0;
- HEAP8[i3 >> 0] = HEAP8[i22 >> 0] | 0;
+ i3 = i5 + 1 | 0;
+ i4 = _malloc(i3) | 0;
+ if (!(i5 >>> 0 <= i6 >>> 0 & (i4 | 0) == 0)) {
+ if (i9) _memcpy(i4 | 0, i11 + 1 | 0, ((i2 & 255) >>> 1) + 1 | 0) | 0; else {
+ i22 = HEAP32[i10 >> 2] | 0;
+ HEAP8[i4 >> 0] = HEAP8[i22 >> 0] | 0;
_free(i22);
}
- HEAP32[i10 >> 2] = i2 | 1;
- HEAP32[i6 >> 2] = i8;
- HEAP32[i9 >> 2] = i3;
+ HEAP32[i11 >> 2] = i3 | 1;
+ HEAP32[i7 >> 2] = i8;
+ HEAP32[i10 >> 2] = i4;
}
}
} else {
- HEAP8[i10 + 1 >> 0] = 0;
- HEAP8[i10 >> 0] = 0;
+ HEAP8[i11 + 1 >> 0] = 0;
+ HEAP8[i11 >> 0] = 0;
} while (0);
- HEAP32[i10 >> 2] = HEAP32[i23 >> 2];
- HEAP32[i10 + 4 >> 2] = HEAP32[i23 + 4 >> 2];
- HEAP32[i10 + 8 >> 2] = HEAP32[i23 + 8 >> 2];
- i1 = 0;
+ HEAP32[i11 >> 2] = HEAP32[i21 >> 2];
+ HEAP32[i11 + 4 >> 2] = HEAP32[i21 + 4 >> 2];
+ HEAP32[i11 + 8 >> 2] = HEAP32[i21 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i23 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i21 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i23);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i21);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i12);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i13);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i24);
- i1 = i11;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i23);
break L126;
}
default:
{
- i2 = __ZN10__cxxabiv112_GLOBAL__N_117parse_call_offsetEPKcS2_(i3, i21) | 0;
- if ((i2 | 0) == (i3 | 0)) break L126;
- i3 = __ZN10__cxxabiv112_GLOBAL__N_114parse_encodingINS0_2DbEEEPKcS4_S4_RT_(i2, i21, i22) | 0;
- if ((i3 | 0) == (i2 | 0)) break L126;
- i2 = HEAP32[i22 + 4 >> 2] | 0;
- if ((HEAP32[i22 >> 2] | 0) == (i2 | 0)) break L126;
+ i2 = __ZN10__cxxabiv112_GLOBAL__N_117parse_call_offsetEPKcS2_(i1, i19) | 0;
+ if ((i2 | 0) == (i1 | 0)) {
+ i1 = i22;
+ break L126;
+ }
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_114parse_encodingINS0_2DbEEEPKcS4_S4_RT_(i2, i19, i20) | 0;
+ if ((i1 | 0) == (i2 | 0)) {
+ i1 = i22;
+ break L126;
+ }
+ i2 = HEAP32[i20 + 4 >> 2] | 0;
+ if ((HEAP32[i20 >> 2] | 0) == (i2 | 0)) {
+ i1 = i22;
+ break L126;
+ }
i2 = i2 + -24 | 0;
- if ((HEAP8[i1 + 2 >> 0] | 0) == 118) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2, 0, 35800) | 0;
- i1 = i3;
+ if ((HEAP8[i22 + 2 >> 0] | 0) == 118) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2, 0, 37264) | 0;
break L126;
} else {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2, 0, 35818) | 0;
- i1 = i3;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2, 0, 37282) | 0;
break L126;
}
}
}
- } while (0);
+ } else i1 = i22; while (0);
break;
}
default:
{
- i8 = __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i1, i21, i22) | 0;
- i18 = HEAP32[i22 + 48 >> 2] | 0;
- i19 = HEAP32[i22 + 52 >> 2] | 0;
- if ((i8 | 0) != (i1 | 0)) if ((i8 | 0) != (i21 | 0)) {
- switch (HEAP8[i8 >> 0] | 0) {
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i22, i19, i20) | 0;
+ i16 = HEAP32[i20 + 48 >> 2] | 0;
+ i17 = HEAP32[i20 + 52 >> 2] | 0;
+ if ((i1 | 0) != (i22 | 0)) if ((i1 | 0) != (i19 | 0)) {
+ switch (HEAP8[i1 >> 0] | 0) {
case 46:
case 69:
- {
- i1 = i8;
- break L6;
- }
+ break L6;
default:
{}
}
- i20 = HEAP8[i28 >> 0] | 0;
- HEAP8[i28 >> 0] = 0;
+ i18 = HEAP8[i27 >> 0] | 0;
+ HEAP8[i27 >> 0] = 0;
i2 = 0;
while (1) {
if ((i2 | 0) == 3) break;
- HEAP32[i24 + (i2 << 2) >> 2] = 0;
+ HEAP32[i23 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- i17 = i22 + 4 | 0;
- i3 = HEAP32[i17 >> 2] | 0;
- L15 : do if ((HEAP32[i22 >> 2] | 0) != (i3 | 0)) {
- i5 = i3 + -24 | 0;
- i7 = HEAP8[i5 >> 0] | 0;
- i6 = (i7 & 1) == 0;
- if (i6) i2 = (i7 & 255) >>> 1; else i2 = HEAP32[i3 + -20 >> 2] | 0;
+ i14 = i20 + 4 | 0;
+ i7 = HEAP32[i14 >> 2] | 0;
+ L15 : do if ((HEAP32[i20 >> 2] | 0) != (i7 | 0)) {
+ i6 = i7 + -24 | 0;
+ i4 = HEAP8[i6 >> 0] | 0;
+ i5 = (i4 & 1) == 0;
+ if (i5) i2 = (i4 & 255) >>> 1; else i2 = HEAP32[i7 + -20 >> 2] | 0;
if (i2) {
- if (!(HEAP8[i22 + 60 >> 0] | 0)) {
- if (i6) {
- i2 = i5 + 1 | 0;
- i4 = (i7 & 255) >>> 1;
+ if (!(HEAP8[i20 + 60 >> 0] | 0)) {
+ if (i5) {
+ i2 = i6 + 1 | 0;
+ i3 = (i4 & 255) >>> 1;
} else {
- i2 = HEAP32[i3 + -16 >> 2] | 0;
- i4 = HEAP32[i3 + -20 >> 2] | 0;
+ i2 = HEAP32[i7 + -16 >> 2] | 0;
+ i3 = HEAP32[i7 + -20 >> 2] | 0;
}
- if ((HEAP8[i2 + i4 + -1 >> 0] | 0) == 62) {
- if (i6) {
- i2 = i5 + 1 | 0;
- i4 = (i7 & 255) >>> 1;
+ if ((HEAP8[i2 + i3 + -1 >> 0] | 0) == 62) {
+ if (i5) {
+ i2 = (i4 & 255) >>> 1;
+ i3 = i6 + 1 | 0;
} else {
- i2 = HEAP32[i3 + -16 >> 2] | 0;
- i4 = HEAP32[i3 + -20 >> 2] | 0;
+ i2 = HEAP32[i7 + -20 >> 2] | 0;
+ i3 = HEAP32[i7 + -16 >> 2] | 0;
}
- if ((HEAP8[i2 + (i4 + -2) >> 0] | 0) != 45) {
- if (i6) {
- i4 = i5 + 1 | 0;
- i2 = (i7 & 255) >>> 1;
+ if ((HEAP8[i3 + (i2 + -2) >> 0] | 0) != 45) {
+ if (i5) {
+ i3 = (i4 & 255) >>> 1;
+ i2 = i6 + 1 | 0;
} else {
- i4 = HEAP32[i3 + -16 >> 2] | 0;
- i2 = HEAP32[i3 + -20 >> 2] | 0;
+ i3 = HEAP32[i7 + -20 >> 2] | 0;
+ i2 = HEAP32[i7 + -16 >> 2] | 0;
}
- if ((HEAP8[i4 + (i2 + -2) >> 0] | 0) != 62) {
- i2 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i8, i21, i22) | 0;
- if ((i2 | 0) == (i8 | 0)) {
- i3 = 0;
- i2 = i1;
+ if ((HEAP8[i2 + (i3 + -2) >> 0] | 0) != 62) {
+ i10 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i1, i19, i20) | 0;
+ if ((i10 | 0) == (i1 | 0)) {
+ i1 = i22;
+ i2 = 0;
break;
}
- i14 = HEAP32[i17 >> 2] | 0;
- i3 = i14;
- if (((i14 - (HEAP32[i22 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) {
- i3 = 0;
- i2 = i1;
+ i13 = HEAP32[i14 >> 2] | 0;
+ i1 = i13;
+ if (((i13 - (HEAP32[i20 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) {
+ i1 = i22;
+ i2 = 0;
break;
}
- i5 = i3 + -24 | 0;
- HEAP32[i23 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i23 + 4 >> 2] = HEAP32[i5 + 4 >> 2];
- HEAP32[i23 + 8 >> 2] = HEAP32[i5 + 8 >> 2];
- i4 = 0;
+ i2 = i1 + -24 | 0;
+ HEAP32[i21 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i21 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i21 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i4 | 0) == 3) break;
- HEAP32[i5 + (i4 << 2) >> 2] = 0;
- i4 = i4 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- i11 = i3 + -12 | 0;
- L45 : do if (!(HEAP8[i24 >> 0] & 1)) {
- HEAP8[i24 + 1 >> 0] = 0;
- HEAP8[i24 >> 0] = 0;
+ i9 = i1 + -12 | 0;
+ L45 : do if (!(HEAP8[i23 >> 0] & 1)) {
+ HEAP8[i23 + 1 >> 0] = 0;
+ HEAP8[i23 >> 0] = 0;
} else {
- i8 = i24 + 8 | 0;
- i4 = HEAP32[i8 >> 2] | 0;
- HEAP8[i4 >> 0] = 0;
- i9 = i24 + 4 | 0;
- HEAP32[i9 >> 2] = 0;
- i7 = HEAP32[i24 >> 2] | 0;
- i10 = (i7 & -2) + -1 | 0;
- i5 = i7 & 255;
- do if (!(i5 & 1)) {
- i3 = i7 >>> 1 & 127;
- if ((i5 & 255) < 22) {
- _memcpy(i24 + 1 | 0, i4 | 0, (i7 >>> 1 & 127) + 1 | 0) | 0;
- _free(i4);
+ i5 = i23 + 8 | 0;
+ i2 = HEAP32[i5 >> 2] | 0;
+ HEAP8[i2 >> 0] = 0;
+ i6 = i23 + 4 | 0;
+ HEAP32[i6 >> 2] = 0;
+ i7 = HEAP32[i23 >> 2] | 0;
+ i8 = (i7 & -2) + -1 | 0;
+ i3 = i7 & 255;
+ do if (!(i3 & 1)) {
+ i1 = i7 >>> 1 & 127;
+ if ((i3 & 255) < 22) {
+ _memcpy(i23 + 1 | 0, i2 | 0, (i7 >>> 1 & 127) + 1 | 0) | 0;
+ _free(i2);
break;
}
- i4 = i3 + 16 & 240;
- i6 = i4 + -1 | 0;
- if ((i6 | 0) == (i10 | 0)) break L45;
- i5 = _malloc(i4) | 0;
- if (i6 >>> 0 <= i10 >>> 0 & (i5 | 0) == 0) break L45;
- _memcpy(i5 | 0, i24 + 1 | 0, (i7 >>> 1 & 127) + 1 | 0) | 0;
- HEAP32[i24 >> 2] = i4 | 1;
- HEAP32[i9 >> 2] = i3;
- HEAP32[i8 >> 2] = i5;
+ i2 = i1 + 16 & 240;
+ i4 = i2 + -1 | 0;
+ if ((i4 | 0) == (i8 | 0)) break L45;
+ i3 = _malloc(i2) | 0;
+ if (i4 >>> 0 <= i8 >>> 0 & (i3 | 0) == 0) break L45;
+ _memcpy(i3 | 0, i23 + 1 | 0, (i7 >>> 1 & 127) + 1 | 0) | 0;
+ HEAP32[i23 >> 2] = i2 | 1;
+ HEAP32[i6 >> 2] = i1;
+ HEAP32[i5 >> 2] = i3;
break L45;
} else {
- HEAP8[i24 + 1 >> 0] = 0;
- _free(i4);
- i3 = 0;
+ HEAP8[i23 + 1 >> 0] = 0;
+ _free(i2);
+ i1 = 0;
} while (0);
- HEAP8[i24 >> 0] = i3 << 1;
+ HEAP8[i23 >> 0] = i1 << 1;
} while (0);
- HEAP32[i24 >> 2] = HEAP32[i11 >> 2];
- HEAP32[i24 + 4 >> 2] = HEAP32[i11 + 4 >> 2];
- HEAP32[i24 + 8 >> 2] = HEAP32[i11 + 8 >> 2];
- i3 = 0;
+ HEAP32[i23 >> 2] = HEAP32[i9 >> 2];
+ HEAP32[i23 + 4 >> 2] = HEAP32[i9 + 4 >> 2];
+ HEAP32[i23 + 8 >> 2] = HEAP32[i9 + 8 >> 2];
+ i1 = 0;
while (1) {
- if ((i3 | 0) == 3) break;
- HEAP32[i11 + (i3 << 2) >> 2] = 0;
- i3 = i3 + 1 | 0;
+ if ((i1 | 0) == 3) break;
+ HEAP32[i9 + (i1 << 2) >> 2] = 0;
+ i1 = i1 + 1 | 0;
}
- i14 = HEAP8[i24 >> 0] | 0;
- if (!(((i14 & 1) == 0 ? (i14 & 255) >>> 1 : HEAP32[i24 + 4 >> 2] | 0) | 0)) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9push_backEc(i23, 32);
- i3 = HEAP32[i17 >> 2] | 0;
- i5 = i3 + -24 | 0;
- i4 = i3;
+ i13 = HEAP8[i23 >> 0] | 0;
+ if (!(((i13 & 1) == 0 ? (i13 & 255) >>> 1 : HEAP32[i23 + 4 >> 2] | 0) | 0)) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9push_backEc(i21, 32);
+ i1 = HEAP32[i14 >> 2] | 0;
+ i2 = i1 + -24 | 0;
+ i3 = i1;
while (1) {
- if ((i4 | 0) == (i5 | 0)) break;
- i14 = i4 + -24 | 0;
- HEAP32[i17 >> 2] = i14;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i14);
- i4 = HEAP32[i17 >> 2] | 0;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i13 = i3 + -24 | 0;
+ HEAP32[i14 >> 2] = i13;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i13);
+ i3 = HEAP32[i14 >> 2] | 0;
}
- i14 = HEAP8[i23 >> 0] | 0;
- i13 = (i14 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKcj(i3 + -48 | 0, 0, i13 ? i23 + 1 | 0 : HEAP32[i23 + 8 >> 2] | 0, i13 ? (i14 & 255) >>> 1 : HEAP32[i23 + 4 >> 2] | 0) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i23);
- i3 = HEAP32[i17 >> 2] | 0;
- } else i2 = i8;
- } else i2 = i8;
- } else i2 = i8;
- } else i2 = i8;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9push_backEc(i3 + -24 | 0, 40);
- if ((i2 | 0) != (i21 | 0) ? (HEAP8[i2 >> 0] | 0) == 118 : 0) {
- i3 = HEAP32[i22 >> 2] | 0;
- i4 = HEAP32[i17 >> 2] | 0;
- i2 = i2 + 1 | 0;
- } else i15 = 128;
- do if ((i15 | 0) == 128) {
- i12 = i23 + 4 | 0;
- i10 = i16 + 8 | 0;
- i14 = i16 + 1 | 0;
- i11 = i16 + 4 | 0;
- i9 = i23 + 8 | 0;
- i13 = i23 + 1 | 0;
- i8 = 1;
+ i2 = HEAP8[i21 >> 0] | 0;
+ i13 = (i2 & 1) == 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKcj(i1 + -48 | 0, 0, i13 ? i21 + 1 | 0 : HEAP32[i21 + 8 >> 2] | 0, i13 ? (i2 & 255) >>> 1 : HEAP32[i21 + 4 >> 2] | 0) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i21);
+ i2 = HEAP32[i14 >> 2] | 0;
+ i1 = i10;
+ } else i2 = i7;
+ } else i2 = i7;
+ } else i2 = i7;
+ } else i2 = i7;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9push_backEc(i2 + -24 | 0, 40);
+ if ((i1 | 0) != (i19 | 0) ? (HEAP8[i1 >> 0] | 0) == 118 : 0) {
+ i2 = HEAP32[i20 >> 2] | 0;
+ i3 = HEAP32[i14 >> 2] | 0;
+ i1 = i1 + 1 | 0;
+ } else i11 = 128;
+ do if ((i11 | 0) == 128) {
+ i8 = i21 + 4 | 0;
+ i9 = i15 + 8 | 0;
+ i10 = i15 + 1 | 0;
+ i11 = i15 + 4 | 0;
+ i12 = i21 + 8 | 0;
+ i13 = i21 + 1 | 0;
+ i7 = 1;
L75 : while (1) {
- i3 = HEAP32[i22 >> 2] | 0;
- i4 = HEAP32[i17 >> 2] | 0;
+ i2 = HEAP32[i20 >> 2] | 0;
+ i3 = HEAP32[i14 >> 2] | 0;
while (1) {
- i5 = (i4 - i3 | 0) / 24 | 0;
- i6 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i2, i21, i22) | 0;
- i4 = HEAP32[i17 >> 2] | 0;
- i3 = HEAP32[i22 >> 2] | 0;
- i7 = (i4 - i3 | 0) / 24 | 0;
- if ((i6 | 0) == (i2 | 0)) {
- i15 = 151;
+ i4 = (i3 - i2 | 0) / 24 | 0;
+ i5 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i1, i19, i20) | 0;
+ i3 = HEAP32[i14 >> 2] | 0;
+ i2 = HEAP32[i20 >> 2] | 0;
+ i6 = (i3 - i2 | 0) / 24 | 0;
+ if ((i5 | 0) == (i1 | 0)) {
+ i11 = 151;
break L75;
}
- if (i7 >>> 0 > i5 >>> 0) {
- i2 = i6;
+ if (i6 >>> 0 > i4 >>> 0) {
+ i1 = i5;
+ i5 = i6;
break;
- } else i2 = i6;
+ } else i1 = i5;
}
- i3 = 0;
+ i2 = 0;
while (1) {
- if ((i3 | 0) == 3) {
- i3 = i5;
+ if ((i2 | 0) == 3) {
+ i2 = i4;
break;
}
- HEAP32[i23 + (i3 << 2) >> 2] = 0;
- i3 = i3 + 1 | 0;
+ HEAP32[i21 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
while (1) {
- if (i3 >>> 0 >= i7 >>> 0) break;
- i15 = HEAP8[i23 >> 0] | 0;
- if (((i15 & 1) == 0 ? (i15 & 255) >>> 1 : HEAP32[i12 >> 2] | 0) | 0) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i23, 34990) | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i16, (HEAP32[i22 >> 2] | 0) + (i3 * 24 | 0) | 0);
- i15 = HEAP8[i16 >> 0] | 0;
- i6 = (i15 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i23, i6 ? i14 : HEAP32[i10 >> 2] | 0, i6 ? (i15 & 255) >>> 1 : HEAP32[i11 >> 2] | 0) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i16);
- i3 = i3 + 1 | 0;
+ if (i2 >>> 0 >= i5 >>> 0) break;
+ i6 = HEAP8[i21 >> 0] | 0;
+ if (((i6 & 1) == 0 ? (i6 & 255) >>> 1 : HEAP32[i8 >> 2] | 0) | 0) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i21, 36454) | 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i15, (HEAP32[i20 >> 2] | 0) + (i2 * 24 | 0) | 0);
+ i6 = HEAP8[i15 >> 0] | 0;
+ i3 = (i6 & 1) == 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i21, i3 ? i10 : HEAP32[i9 >> 2] | 0, i3 ? (i6 & 255) >>> 1 : HEAP32[i11 >> 2] | 0) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i15);
+ i2 = i2 + 1 | 0;
}
while (1) {
- if (i5 >>> 0 >= i7 >>> 0) break;
- i3 = HEAP32[i17 >> 2] | 0;
- i4 = i3 + -24 | 0;
+ if (i4 >>> 0 >= i5 >>> 0) break;
+ i3 = HEAP32[i14 >> 2] | 0;
+ i2 = i3 + -24 | 0;
while (1) {
- if ((i3 | 0) == (i4 | 0)) break;
- i15 = i3 + -24 | 0;
- HEAP32[i17 >> 2] = i15;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i15);
- i3 = HEAP32[i17 >> 2] | 0;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i6 = i3 + -24 | 0;
+ HEAP32[i14 >> 2] = i6;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i6);
+ i3 = HEAP32[i14 >> 2] | 0;
}
- i5 = i5 + 1 | 0;
+ i4 = i4 + 1 | 0;
}
- i5 = HEAP8[i23 >> 0] | 0;
- i3 = HEAP32[i12 >> 2] | 0;
- if (!(((i5 & 1) == 0 ? (i5 & 255) >>> 1 : i3) | 0)) i3 = i8; else {
- i4 = HEAP32[i17 >> 2] | 0;
- if ((HEAP32[i22 >> 2] | 0) == (i4 | 0)) {
- i15 = 163;
+ i4 = HEAP8[i21 >> 0] | 0;
+ i2 = HEAP32[i8 >> 2] | 0;
+ if (!(((i4 & 1) == 0 ? (i4 & 255) >>> 1 : i2) | 0)) i2 = i7; else {
+ i3 = HEAP32[i14 >> 2] | 0;
+ if ((HEAP32[i20 >> 2] | 0) == (i3 | 0)) {
+ i11 = 163;
break;
}
- if (!i8) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i4 + -24 | 0, 34990) | 0;
- i4 = HEAP32[i17 >> 2] | 0;
- i5 = HEAP8[i23 >> 0] | 0;
- i3 = HEAP32[i12 >> 2] | 0;
+ if (!i7) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i3 + -24 | 0, 36454) | 0;
+ i3 = HEAP32[i14 >> 2] | 0;
+ i4 = HEAP8[i21 >> 0] | 0;
+ i2 = HEAP32[i8 >> 2] | 0;
}
- i15 = (i5 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i4 + -24 | 0, i15 ? i13 : HEAP32[i9 >> 2] | 0, i15 ? (i5 & 255) >>> 1 : i3) | 0;
- i3 = 0;
+ i7 = (i4 & 1) == 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i3 + -24 | 0, i7 ? i13 : HEAP32[i12 >> 2] | 0, i7 ? (i4 & 255) >>> 1 : i2) | 0;
+ i2 = 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i23);
- i8 = i3;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i21);
+ i7 = i2;
}
- if ((i15 | 0) == 151) break; else if ((i15 | 0) == 163) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i23);
- i3 = 0;
- i2 = i1;
+ if ((i11 | 0) == 151) break; else if ((i11 | 0) == 163) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i21);
+ i1 = i22;
+ i2 = 0;
break L15;
}
} while (0);
- if ((i3 | 0) != (i4 | 0)) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9push_backEc(i4 + -24 | 0, 41);
- if (i18 & 1 | 0) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i17 >> 2] | 0) + -24 | 0, 34006) | 0;
- if (i18 & 2 | 0) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i17 >> 2] | 0) + -24 | 0, 34013) | 0;
- if (i18 & 4 | 0) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i17 >> 2] | 0) + -24 | 0, 34023) | 0;
- switch (i19 | 0) {
+ if ((i2 | 0) != (i3 | 0)) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9push_backEc(i3 + -24 | 0, 41);
+ if (i16 & 1 | 0) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i14 >> 2] | 0) + -24 | 0, 35470) | 0;
+ if (i16 & 2 | 0) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i14 >> 2] | 0) + -24 | 0, 35477) | 0;
+ if (i16 & 4 | 0) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i14 >> 2] | 0) + -24 | 0, 35487) | 0;
+ switch (i17 | 0) {
case 1:
{
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i17 >> 2] | 0) + -24 | 0, 35597) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i14 >> 2] | 0) + -24 | 0, 37061) | 0;
break;
}
case 2:
{
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i17 >> 2] | 0) + -24 | 0, 35600) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i14 >> 2] | 0) + -24 | 0, 37064) | 0;
break;
}
default:
{}
}
- i3 = HEAP8[i24 >> 0] | 0;
- i23 = (i3 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj((HEAP32[i17 >> 2] | 0) + -24 | 0, i23 ? i24 + 1 | 0 : HEAP32[i24 + 8 >> 2] | 0, i23 ? (i3 & 255) >>> 1 : HEAP32[i24 + 4 >> 2] | 0) | 0;
- i3 = 1;
+ i2 = HEAP8[i23 >> 0] | 0;
+ i21 = (i2 & 1) == 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj((HEAP32[i14 >> 2] | 0) + -24 | 0, i21 ? i23 + 1 | 0 : HEAP32[i23 + 8 >> 2] | 0, i21 ? (i2 & 255) >>> 1 : HEAP32[i23 + 4 >> 2] | 0) | 0;
+ i2 = 1;
} else {
- i3 = 0;
- i2 = i1;
+ i1 = i22;
+ i2 = 0;
}
} else {
- i3 = 0;
- i2 = i1;
+ i1 = i22;
+ i2 = 0;
}
} else {
- i3 = 0;
- i2 = i1;
+ i1 = i22;
+ i2 = 0;
} while (0);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i24);
- HEAP8[i28 >> 0] = i20;
- if (i3) i1 = i2; else {
- HEAP8[i28 >> 0] = i26;
- HEAP32[i27 >> 2] = i25;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i23);
+ HEAP8[i27 >> 0] = i18;
+ if (!i2) {
+ HEAP8[i27 >> 0] = i24;
+ HEAP32[i25 >> 2] = i26;
+ i1 = i22;
break L1;
}
- } else i1 = i21;
+ } else i1 = i19; else i1 = i22;
}
} while (0);
- HEAP8[i28 >> 0] = i26;
- HEAP32[i27 >> 2] = i25;
+ HEAP8[i27 >> 0] = i24;
+ HEAP32[i25 >> 2] = i26;
} while (0);
- STACKTOP = i29;
+ STACKTOP = i28;
return i1 | 0;
}
+function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner11visitBinaryEPNS_6BinaryE(i16, i18, i17) {
+ i16 = i16 | 0;
+ i18 = i18 | 0;
+ i17 = i17 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, d5 = 0.0, d6 = 0.0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, d12 = 0.0, d13 = 0.0, i14 = 0, i15 = 0, i19 = 0;
+ i19 = STACKTOP;
+ STACKTOP = STACKTOP + 144 | 0;
+ i3 = i19 + 120 | 0;
+ i14 = i19 + 104 | 0;
+ i1 = i19 + 64 | 0;
+ i15 = i19 + 88 | 0;
+ i8 = i19 + 48 | 0;
+ i9 = i19 + 32 | 0;
+ i10 = i19 + 16 | 0;
+ i11 = i19;
+ i7 = i17 + 12 | 0;
+ __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i3, i18, HEAP32[i7 >> 2] | 0);
+ i2 = i3 + 16 | 0;
+ if ((HEAP32[i2 >> 2] | 0) == 0 ? (HEAP32[i14 >> 2] = HEAP32[i3 >> 2], HEAP32[i14 + 4 >> 2] = HEAP32[i3 + 4 >> 2], HEAP32[i14 + 8 >> 2] = HEAP32[i3 + 8 >> 2], HEAP32[i14 + 12 >> 2] = HEAP32[i3 + 12 >> 2], i4 = i17 + 16 | 0, __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i1, i18, HEAP32[i4 >> 2] | 0), HEAP32[i3 >> 2] = HEAP32[i1 >> 2], HEAP32[i3 + 4 >> 2] = HEAP32[i1 + 4 >> 2], HEAP32[i3 + 8 >> 2] = HEAP32[i1 + 8 >> 2], HEAP32[i3 + 12 >> 2] = HEAP32[i1 + 12 >> 2], HEAP32[i3 + 16 >> 2] = HEAP32[i1 + 16 >> 2], (HEAP32[i2 >> 2] | 0) == 0) : 0) {
+ HEAP32[i15 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i15 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
+ HEAP32[i15 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ HEAP32[i15 + 12 >> 2] = HEAP32[i3 + 12 >> 2];
+ i1 = HEAP32[i14 >> 2] | 0;
+ if ((i1 | 0) != (HEAP32[(HEAP32[i7 >> 2] | 0) + 4 >> 2] | 0)) ___assert_fail(20699, 19746, 454, 20729);
+ if ((HEAP32[i15 >> 2] | 0) != (HEAP32[(HEAP32[i4 >> 2] | 0) + 4 >> 2] | 0)) ___assert_fail(20741, 19746, 455, 20729);
+ L11 : do switch (i1 | 0) {
+ case 1:
+ {
+ i2 = __ZN4wasm7Literal6geti32Ev(i14) | 0;
+ i1 = __ZN4wasm7Literal6geti32Ev(i15) | 0;
+ do switch (HEAP32[i17 + 8 >> 2] | 0) {
+ case 0:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = i1 + i2;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 1:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = i2 - i1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 2:
+ {
+ i18 = Math_imul(i1, i2) | 0;
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = i18;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 3:
+ {
+ if (i1) {
+ if ((i2 | 0) == -2147483648 & (i1 | 0) == -1) {
+ i18 = HEAP32[(HEAP32[i18 + 4 >> 2] | 0) + 12 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i18 >> 2] | 0) + 20 >> 2] & 127](i18, 20788);
+ }
+ } else {
+ i18 = HEAP32[(HEAP32[i18 + 4 >> 2] | 0) + 12 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i18 >> 2] | 0) + 20 >> 2] & 127](i18, 20773);
+ }
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = (i2 | 0) / (i1 | 0) | 0;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 4:
+ {
+ if (!i1) {
+ i18 = HEAP32[(HEAP32[i18 + 4 >> 2] | 0) + 12 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i18 >> 2] | 0) + 20 >> 2] & 127](i18, 20807);
+ }
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = (i2 >>> 0) / (i1 >>> 0) | 0;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 5:
+ {
+ if (i1) {
+ if ((i2 | 0) == -2147483648 & (i1 | 0) == -1) {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = 0;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ } else {
+ i18 = HEAP32[(HEAP32[i18 + 4 >> 2] | 0) + 12 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i18 >> 2] | 0) + 20 >> 2] & 127](i18, 20822);
+ }
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = (i2 | 0) % (i1 | 0) | 0;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 6:
+ {
+ if (!i1) {
+ i18 = HEAP32[(HEAP32[i18 + 4 >> 2] | 0) + 12 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i18 >> 2] | 0) + 20 >> 2] & 127](i18, 20837);
+ }
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = (i2 >>> 0) % (i1 >>> 0) | 0;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 7:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = i1 & i2;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 8:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = i1 | i2;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 9:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = i1 ^ i2;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 10:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = i2 << (i1 & 31);
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 11:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = i2 >>> (i1 & 31);
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 12:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = i2 >> (i1 & 31);
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 17:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = (i2 | 0) == (i1 | 0) & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 18:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = (i2 | 0) != (i1 | 0) & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 19:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = (i2 | 0) < (i1 | 0) & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 20:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = i2 >>> 0 < i1 >>> 0 & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 21:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = (i2 | 0) <= (i1 | 0) & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 22:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = i2 >>> 0 <= i1 >>> 0 & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 23:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = (i2 | 0) > (i1 | 0) & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 24:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = i2 >>> 0 > i1 >>> 0 & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 25:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = (i2 | 0) >= (i1 | 0) & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 26:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = i2 >>> 0 >= i1 >>> 0 & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ default:
+ _abort();
+ } while (0);
+ break;
+ }
+ case 2:
+ {
+ i3 = __ZN4wasm7Literal6geti64Ev(i14) | 0;
+ i4 = tempRet0;
+ i1 = __ZN4wasm7Literal6geti64Ev(i15) | 0;
+ i2 = tempRet0;
+ do switch (HEAP32[i17 + 8 >> 2] | 0) {
+ case 0:
+ {
+ i17 = _i64Add(i1 | 0, i2 | 0, i3 | 0, i4 | 0) | 0;
+ HEAP32[i16 >> 2] = 2;
+ i18 = i16 + 8 | 0;
+ HEAP32[i18 >> 2] = i17;
+ HEAP32[i18 + 4 >> 2] = tempRet0;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 1:
+ {
+ i17 = _i64Subtract(i3 | 0, i4 | 0, i1 | 0, i2 | 0) | 0;
+ HEAP32[i16 >> 2] = 2;
+ i18 = i16 + 8 | 0;
+ HEAP32[i18 >> 2] = i17;
+ HEAP32[i18 + 4 >> 2] = tempRet0;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 2:
+ {
+ i17 = ___muldi3(i1 | 0, i2 | 0, i3 | 0, i4 | 0) | 0;
+ HEAP32[i16 >> 2] = 2;
+ i18 = i16 + 8 | 0;
+ HEAP32[i18 >> 2] = i17;
+ HEAP32[i18 + 4 >> 2] = tempRet0;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 3:
+ {
+ if (!((i1 | 0) == 0 & (i2 | 0) == 0)) {
+ if ((i3 | 0) == 0 & (i4 | 0) == -2147483648 & ((i1 | 0) == -1 & (i2 | 0) == -1)) {
+ i18 = HEAP32[(HEAP32[i18 + 4 >> 2] | 0) + 12 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i18 >> 2] | 0) + 20 >> 2] & 127](i18, 20867);
+ }
+ } else {
+ i18 = HEAP32[(HEAP32[i18 + 4 >> 2] | 0) + 12 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i18 >> 2] | 0) + 20 >> 2] & 127](i18, 20852);
+ }
+ i17 = ___divdi3(i3 | 0, i4 | 0, i1 | 0, i2 | 0) | 0;
+ HEAP32[i16 >> 2] = 2;
+ i18 = i16 + 8 | 0;
+ HEAP32[i18 >> 2] = i17;
+ HEAP32[i18 + 4 >> 2] = tempRet0;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 4:
+ {
+ if ((i1 | 0) == 0 & (i2 | 0) == 0) {
+ i18 = HEAP32[(HEAP32[i18 + 4 >> 2] | 0) + 12 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i18 >> 2] | 0) + 20 >> 2] & 127](i18, 20886);
+ }
+ i17 = ___udivdi3(i3 | 0, i4 | 0, i1 | 0, i2 | 0) | 0;
+ HEAP32[i16 >> 2] = 2;
+ i18 = i16 + 8 | 0;
+ HEAP32[i18 >> 2] = i17;
+ HEAP32[i18 + 4 >> 2] = tempRet0;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 5:
+ {
+ if (!((i1 | 0) == 0 & (i2 | 0) == 0)) {
+ if ((i3 | 0) == 0 & (i4 | 0) == -2147483648 & ((i1 | 0) == -1 & (i2 | 0) == -1)) {
+ HEAP32[i16 >> 2] = 2;
+ i18 = i16 + 8 | 0;
+ HEAP32[i18 >> 2] = 0;
+ HEAP32[i18 + 4 >> 2] = 0;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ } else {
+ i18 = HEAP32[(HEAP32[i18 + 4 >> 2] | 0) + 12 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i18 >> 2] | 0) + 20 >> 2] & 127](i18, 20901);
+ }
+ i17 = ___remdi3(i3 | 0, i4 | 0, i1 | 0, i2 | 0) | 0;
+ HEAP32[i16 >> 2] = 2;
+ i18 = i16 + 8 | 0;
+ HEAP32[i18 >> 2] = i17;
+ HEAP32[i18 + 4 >> 2] = tempRet0;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 6:
+ {
+ if ((i1 | 0) == 0 & (i2 | 0) == 0) {
+ i18 = HEAP32[(HEAP32[i18 + 4 >> 2] | 0) + 12 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i18 >> 2] | 0) + 20 >> 2] & 127](i18, 20916);
+ }
+ i17 = ___uremdi3(i3 | 0, i4 | 0, i1 | 0, i2 | 0) | 0;
+ HEAP32[i16 >> 2] = 2;
+ i18 = i16 + 8 | 0;
+ HEAP32[i18 >> 2] = i17;
+ HEAP32[i18 + 4 >> 2] = tempRet0;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 7:
+ {
+ HEAP32[i16 >> 2] = 2;
+ i18 = i16 + 8 | 0;
+ HEAP32[i18 >> 2] = i1 & i3;
+ HEAP32[i18 + 4 >> 2] = i2 & i4;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 8:
+ {
+ HEAP32[i16 >> 2] = 2;
+ i18 = i16 + 8 | 0;
+ HEAP32[i18 >> 2] = i1 | i3;
+ HEAP32[i18 + 4 >> 2] = i2 | i4;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 9:
+ {
+ HEAP32[i16 >> 2] = 2;
+ i18 = i16 + 8 | 0;
+ HEAP32[i18 >> 2] = i1 ^ i3;
+ HEAP32[i18 + 4 >> 2] = i2 ^ i4;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 10:
+ {
+ i17 = _bitshift64Shl(i3 | 0, i4 | 0, i1 & 63 | 0) | 0;
+ HEAP32[i16 >> 2] = 2;
+ i18 = i16 + 8 | 0;
+ HEAP32[i18 >> 2] = i17;
+ HEAP32[i18 + 4 >> 2] = tempRet0;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 11:
+ {
+ i17 = _bitshift64Lshr(i3 | 0, i4 | 0, i1 & 63 | 0) | 0;
+ HEAP32[i16 >> 2] = 2;
+ i18 = i16 + 8 | 0;
+ HEAP32[i18 >> 2] = i17;
+ HEAP32[i18 + 4 >> 2] = tempRet0;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 12:
+ {
+ i17 = _bitshift64Ashr(i3 | 0, i4 | 0, i1 & 63 | 0) | 0;
+ HEAP32[i16 >> 2] = 2;
+ i18 = i16 + 8 | 0;
+ HEAP32[i18 >> 2] = i17;
+ HEAP32[i18 + 4 >> 2] = tempRet0;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 17:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = (i3 | 0) == (i1 | 0) & (i4 | 0) == (i2 | 0) & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 18:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = ((i3 | 0) != (i1 | 0) | (i4 | 0) != (i2 | 0)) & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 19:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = ((i4 | 0) < (i2 | 0) | (i4 | 0) == (i2 | 0) & i3 >>> 0 < i1 >>> 0) & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 20:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = (i4 >>> 0 < i2 >>> 0 | (i4 | 0) == (i2 | 0) & i3 >>> 0 < i1 >>> 0) & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 21:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = ((i4 | 0) < (i2 | 0) | (i4 | 0) == (i2 | 0) & i3 >>> 0 <= i1 >>> 0) & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 22:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = (i4 >>> 0 < i2 >>> 0 | (i4 | 0) == (i2 | 0) & i3 >>> 0 <= i1 >>> 0) & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 23:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = ((i4 | 0) > (i2 | 0) | (i4 | 0) == (i2 | 0) & i3 >>> 0 > i1 >>> 0) & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 24:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = (i4 >>> 0 > i2 >>> 0 | (i4 | 0) == (i2 | 0) & i3 >>> 0 > i1 >>> 0) & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 25:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = ((i4 | 0) > (i2 | 0) | (i4 | 0) == (i2 | 0) & i3 >>> 0 >= i1 >>> 0) & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 26:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = (i4 >>> 0 > i2 >>> 0 | (i4 | 0) == (i2 | 0) & i3 >>> 0 >= i1 >>> 0) & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ default:
+ _abort();
+ } while (0);
+ break;
+ }
+ case 3:
+ {
+ d5 = +__ZN4wasm7Literal6getf32Ev(i14);
+ d6 = +__ZN4wasm7Literal6getf32Ev(i15);
+ L98 : do switch (HEAP32[i17 + 8 >> 2] | 0) {
+ case 0:
+ {
+ d12 = d5 + d6;
+ break;
+ }
+ case 1:
+ {
+ d12 = d5 - d6;
+ break;
+ }
+ case 2:
+ {
+ d12 = d5 * d6;
+ break;
+ }
+ case 13:
+ {
+ d12 = d5 / d6;
+ break;
+ }
+ case 14:
+ {
+ i18 = (__ZN4wasm7Literal14reinterpreti32Ev(i14) | 0) & 2147483647 | (__ZN4wasm7Literal14reinterpreti32Ev(i15) | 0) & -2147483648;
+ HEAP32[i9 >> 2] = 1;
+ HEAP32[i9 + 8 >> 2] = i18;
+ __ZN4wasm7Literal9castToF32Ev(i8, i9);
+ HEAP32[i16 >> 2] = HEAP32[i8 >> 2];
+ HEAP32[i16 + 4 >> 2] = HEAP32[i8 + 4 >> 2];
+ HEAP32[i16 + 8 >> 2] = HEAP32[i8 + 8 >> 2];
+ HEAP32[i16 + 12 >> 2] = HEAP32[i8 + 12 >> 2];
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 15:
+ if (d5 == 0.0 & d5 == d6) {
+ d12 = 1.0 / d5 < 0.0 ? d5 : d6;
+ break L98;
+ } else {
+ d12 = d6 < d5 ? d6 : d5;
+ break L98;
+ }
+ case 16:
+ if (d5 == 0.0 & d5 == d6) {
+ d12 = 1.0 / d5 < 0.0 ? d6 : d5;
+ break L98;
+ } else {
+ d12 = d5 < d6 ? d6 : d5;
+ break L98;
+ }
+ case 17:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = d5 == d6 & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 18:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = d5 != d6 & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 27:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = d5 < d6 & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 28:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = d5 <= d6 & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 29:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = d5 > d6 & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 30:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = d5 >= d6 & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ default:
+ _abort();
+ } while (0);
+ d13 = +__ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner6fixNaNEfff(i18, d5, d6, d12);
+ HEAP32[i16 >> 2] = 3;
+ HEAPF32[i16 + 8 >> 2] = d13;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break;
+ }
+ case 4:
+ {
+ d5 = +__ZN4wasm7Literal6getf64Ev(i14);
+ d6 = +__ZN4wasm7Literal6getf64Ev(i15);
+ L121 : do switch (HEAP32[i17 + 8 >> 2] | 0) {
+ case 0:
+ {
+ d13 = d5 + d6;
+ break;
+ }
+ case 1:
+ {
+ d13 = d5 - d6;
+ break;
+ }
+ case 2:
+ {
+ d13 = d5 * d6;
+ break;
+ }
+ case 13:
+ {
+ d13 = d5 / d6;
+ break;
+ }
+ case 14:
+ {
+ i14 = __ZN4wasm7Literal14reinterpreti64Ev(i14) | 0;
+ i17 = tempRet0 & 2147483647;
+ __ZN4wasm7Literal14reinterpreti64Ev(i15) | 0;
+ HEAP32[i11 >> 2] = 2;
+ i18 = i11 + 8 | 0;
+ HEAP32[i18 >> 2] = i14;
+ HEAP32[i18 + 4 >> 2] = tempRet0 & -2147483648 | i17;
+ __ZN4wasm7Literal9castToF64Ev(i10, i11);
+ HEAP32[i16 >> 2] = HEAP32[i10 >> 2];
+ HEAP32[i16 + 4 >> 2] = HEAP32[i10 + 4 >> 2];
+ HEAP32[i16 + 8 >> 2] = HEAP32[i10 + 8 >> 2];
+ HEAP32[i16 + 12 >> 2] = HEAP32[i10 + 12 >> 2];
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 15:
+ if (d5 == 0.0 & d5 == d6) {
+ d13 = 1.0 / d5 < 0.0 ? d5 : d6;
+ break L121;
+ } else {
+ d13 = d6 < d5 ? d6 : d5;
+ break L121;
+ }
+ case 16:
+ if (d5 == 0.0 & d5 == d6) {
+ d13 = 1.0 / d5 < 0.0 ? d6 : d5;
+ break L121;
+ } else {
+ d13 = d5 < d6 ? d6 : d5;
+ break L121;
+ }
+ case 17:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = d5 == d6 & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 18:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = d5 != d6 & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 27:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = d5 < d6 & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 28:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = d5 <= d6 & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 29:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = d5 > d6 & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ case 30:
+ {
+ HEAP32[i16 >> 2] = 1;
+ HEAP32[i16 + 8 >> 2] = d5 >= d6 & 1;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break L11;
+ }
+ default:
+ _abort();
+ } while (0);
+ d13 = +__ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner6fixNaNEddd(i18, d5, d6, d13);
+ HEAP32[i16 >> 2] = 4;
+ HEAPF64[i16 + 8 >> 3] = d13;
+ HEAP32[i16 + 16 >> 2] = 0;
+ break;
+ }
+ default:
+ _abort();
+ } while (0);
+ } else {
+ HEAP32[i16 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i16 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
+ HEAP32[i16 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ HEAP32[i16 + 12 >> 2] = HEAP32[i3 + 12 >> 2];
+ HEAP32[i16 + 16 >> 2] = HEAP32[i3 + 16 >> 2];
+ HEAP32[i16 + 20 >> 2] = HEAP32[i3 + 20 >> 2];
+ }
+ STACKTOP = i19;
+ return;
+}
+
function __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_S4_RT_(i1, i16, i13) {
i1 = i1 | 0;
i16 = i16 | 0;
@@ -25290,19 +24944,19 @@ function __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_
i17 = STACKTOP;
STACKTOP = STACKTOP + 112 | 0;
i15 = i17 + 88 | 0;
- i9 = i17 + 64 | 0;
- i8 = i17 + 48 | 0;
- i10 = i17 + 24 | 0;
- i7 = i17 + 12 | 0;
+ i8 = i17 + 64 | 0;
+ i9 = i17 + 48 | 0;
+ i7 = i17 + 24 | 0;
+ i10 = i17 + 12 | 0;
i12 = i17;
L1 : do if ((i1 | 0) != (i16 | 0)) {
- i2 = HEAP8[i1 >> 0] | 0;
- i4 = i2 << 24 >> 24;
+ i3 = HEAP8[i1 >> 0] | 0;
+ i4 = i3 << 24 >> 24;
switch (i4 | 0) {
case 68:
case 67:
{
- L6 : do if ((i16 - i1 | 0) > 1 ? (i6 = i13 + 4 | 0, i3 = HEAP32[i6 >> 2] | 0, (HEAP32[i13 >> 2] | 0) != (i3 | 0)) : 0) {
+ L6 : do if ((i16 - i1 | 0) > 1 ? (i6 = i13 + 4 | 0, i2 = HEAP32[i6 >> 2] | 0, (HEAP32[i13 >> 2] | 0) != (i2 | 0)) : 0) {
switch (i4 | 0) {
case 67:
{
@@ -25315,13 +24969,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_
default:
break L6;
}
- __ZN10__cxxabiv112_GLOBAL__N_19base_nameINSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEEEET_RS9_(i8, i3 + -24 | 0);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i9, i8);
+ __ZN10__cxxabiv112_GLOBAL__N_19base_nameINSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEEEET_RS9_(i9, i2 + -24 | 0);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i8, i9);
i2 = HEAP32[i6 >> 2] | 0;
i16 = HEAP32[i13 + 8 >> 2] | 0;
i5 = i16;
if (i2 >>> 0 < i16 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i9);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i8);
HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 24;
} else {
i3 = HEAP32[i13 >> 2] | 0;
@@ -25337,13 +24991,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i15, i2, i6, i13 + 12 | 0);
i16 = i15 + 8 | 0;
i14 = HEAP32[i16 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i14, i9);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i14, i8);
HEAP32[i16 >> 2] = i14 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i13, i15);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i15);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i9);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i8);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i9);
HEAP8[i13 + 60 >> 0] = 1;
i1 = i1 + 2 | 0;
break L6;
@@ -25362,23 +25016,23 @@ function __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_
default:
break L6;
}
- __ZN10__cxxabiv112_GLOBAL__N_19base_nameINSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEEEET_RS9_(i12, i3 + -24 | 0);
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i12, 0, 34445) | 0;
- HEAP32[i7 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i7 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i7 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ __ZN10__cxxabiv112_GLOBAL__N_19base_nameINSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEEEET_RS9_(i12, i2 + -24 | 0);
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i12, 0, 35909) | 0;
+ HEAP32[i10 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i10 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i10 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i10, i7);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i7, i10);
i2 = HEAP32[i6 >> 2] | 0;
i16 = HEAP32[i13 + 8 >> 2] | 0;
i5 = i16;
if (i2 >>> 0 < i16 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i10);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i7);
HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 24;
} else {
i3 = HEAP32[i13 >> 2] | 0;
@@ -25394,13 +25048,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i15, i2, i6, i13 + 12 | 0);
i16 = i15 + 8 | 0;
i14 = HEAP32[i16 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i14, i10);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i14, i7);
HEAP32[i16 >> 2] = i14 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i13, i15);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i15);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i10);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i7);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i10);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i12);
HEAP8[i13 + 60 >> 0] = 1;
i1 = i1 + 2 | 0;
@@ -25409,18 +25063,18 @@ function __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_
}
case 85:
{
- L40 : do if ((i16 - i1 | 0) > 2 & i2 << 24 >> 24 == 85) {
+ L40 : do if ((i16 - i1 | 0) > 2 & i3 << 24 >> 24 == 85) {
switch (HEAP8[i1 + 1 >> 0] | 0) {
case 116:
{
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i8, 35369, 8);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i9, i8);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i9, 36833, 8);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i8, i9);
i7 = i13 + 4 | 0;
i2 = HEAP32[i7 >> 2] | 0;
i14 = HEAP32[i13 + 8 >> 2] | 0;
i3 = i14;
if (i2 >>> 0 < i14 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i9);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i8);
HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + 24;
} else {
i4 = HEAP32[i13 >> 2] | 0;
@@ -25436,23 +25090,23 @@ function __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i15, i2, i6, i13 + 12 | 0);
i14 = i15 + 8 | 0;
i12 = HEAP32[i14 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i12, i9);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i12, i8);
HEAP32[i14 >> 2] = i12 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i13, i15);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i15);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i9);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i8);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i9);
i2 = i1 + 2 | 0;
if ((i2 | 0) == (i16 | 0)) {
- i2 = HEAP32[i7 >> 2] | 0;
- i3 = i2 + -24 | 0;
+ i3 = HEAP32[i7 >> 2] | 0;
+ i2 = i3 + -24 | 0;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break L40;
- i16 = i2 + -24 | 0;
+ if ((i3 | 0) == (i2 | 0)) break L40;
+ i16 = i3 + -24 | 0;
HEAP32[i7 >> 2] = i16;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i16);
- i2 = HEAP32[i7 >> 2] | 0;
+ i3 = HEAP32[i7 >> 2] | 0;
}
}
if (((HEAP8[i2 >> 0] | 0) + -48 | 0) >>> 0 < 10) {
@@ -25473,14 +25127,14 @@ function __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_
i1 = i2 + 1 | 0;
break L40;
}
- i2 = HEAP32[i7 >> 2] | 0;
- i3 = i2 + -24 | 0;
+ i3 = HEAP32[i7 >> 2] | 0;
+ i2 = i3 + -24 | 0;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break L40;
- i16 = i2 + -24 | 0;
+ if ((i3 | 0) == (i2 | 0)) break L40;
+ i16 = i3 + -24 | 0;
HEAP32[i7 >> 2] = i16;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i16);
- i2 = HEAP32[i7 >> 2] | 0;
+ i3 = HEAP32[i7 >> 2] | 0;
}
}
case 108:
@@ -25488,14 +25142,14 @@ function __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_
default:
break L40;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i7, 35378, 9);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i10, i7);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i10, 36842, 9);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i7, i10);
i14 = i13 + 4 | 0;
i2 = HEAP32[i14 >> 2] | 0;
i11 = HEAP32[i13 + 8 >> 2] | 0;
i3 = i11;
if (i2 >>> 0 < i11 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i10);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i7);
HEAP32[i14 >> 2] = (HEAP32[i14 >> 2] | 0) + 24;
} else {
i4 = HEAP32[i13 >> 2] | 0;
@@ -25511,46 +25165,46 @@ function __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i15, i2, i6, i13 + 12 | 0);
i11 = i15 + 8 | 0;
i9 = HEAP32[i11 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i9, i10);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i9, i7);
HEAP32[i11 >> 2] = i9 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i13, i15);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i15);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i10);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i7);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i10);
i3 = i1 + 2 | 0;
do if ((HEAP8[i3 >> 0] | 0) != 118) {
i2 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i3, i16, i13) | 0;
if ((i2 | 0) == (i3 | 0)) {
- i2 = HEAP32[i14 >> 2] | 0;
- i3 = i2 + -24 | 0;
+ i3 = HEAP32[i14 >> 2] | 0;
+ i2 = i3 + -24 | 0;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break L40;
- i16 = i2 + -24 | 0;
+ if ((i3 | 0) == (i2 | 0)) break L40;
+ i16 = i3 + -24 | 0;
HEAP32[i14 >> 2] = i16;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i16);
- i2 = HEAP32[i14 >> 2] | 0;
+ i3 = HEAP32[i14 >> 2] | 0;
}
}
i3 = HEAP32[i14 >> 2] | 0;
if (((i3 - (HEAP32[i13 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) break L40;
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i15, i3 + -24 | 0);
i5 = HEAP32[i14 >> 2] | 0;
- i4 = i5 + -24 | 0;
- i3 = i5;
+ i3 = i5 + -24 | 0;
+ i4 = i5;
while (1) {
- if ((i3 | 0) == (i4 | 0)) break;
- i11 = i3 + -24 | 0;
+ if ((i4 | 0) == (i3 | 0)) break;
+ i11 = i4 + -24 | 0;
HEAP32[i14 >> 2] = i11;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i11);
- i3 = HEAP32[i14 >> 2] | 0;
+ i4 = HEAP32[i14 >> 2] | 0;
}
i3 = HEAP8[i15 >> 0] | 0;
i8 = (i3 & 1) == 0;
i9 = i15 + 8 | 0;
- i11 = i15 + 1 | 0;
- i10 = i15 + 4 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i5 + -48 | 0, i8 ? i11 : HEAP32[i9 >> 2] | 0, i8 ? (i3 & 255) >>> 1 : HEAP32[i10 >> 2] | 0) | 0;
+ i10 = i15 + 1 | 0;
+ i11 = i15 + 4 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i5 + -48 | 0, i8 ? i10 : HEAP32[i9 >> 2] | 0, i8 ? (i3 & 255) >>> 1 : HEAP32[i11 >> 2] | 0) | 0;
while (1) {
i8 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i2, i16, i13) | 0;
if ((i8 | 0) == (i2 | 0)) {
@@ -25564,19 +25218,19 @@ function __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i12, i2 + -24 | 0);
L104 : do if (!(i3 & 1)) {
- HEAP8[i11 >> 0] = 0;
+ HEAP8[i10 >> 0] = 0;
HEAP8[i15 >> 0] = 0;
} else {
i3 = HEAP32[i9 >> 2] | 0;
HEAP8[i3 >> 0] = 0;
- HEAP32[i10 >> 2] = 0;
+ HEAP32[i11 >> 2] = 0;
i6 = HEAP32[i15 >> 2] | 0;
i7 = (i6 & -2) + -1 | 0;
i4 = i6 & 255;
do if (!(i4 & 1)) {
i2 = i6 >>> 1 & 127;
if ((i4 & 255) < 22) {
- _memcpy(i11 | 0, i3 | 0, (i6 >>> 1 & 127) + 1 | 0) | 0;
+ _memcpy(i10 | 0, i3 | 0, (i6 >>> 1 & 127) + 1 | 0) | 0;
_free(i3);
break;
}
@@ -25585,13 +25239,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_
if ((i5 | 0) == (i7 | 0)) break L104;
i4 = _malloc(i3) | 0;
if (i5 >>> 0 <= i7 >>> 0 & (i4 | 0) == 0) break L104;
- _memcpy(i4 | 0, i11 | 0, (i6 >>> 1 & 127) + 1 | 0) | 0;
+ _memcpy(i4 | 0, i10 | 0, (i6 >>> 1 & 127) + 1 | 0) | 0;
HEAP32[i15 >> 2] = i3 | 1;
- HEAP32[i10 >> 2] = i2;
+ HEAP32[i11 >> 2] = i2;
HEAP32[i9 >> 2] = i4;
break L104;
} else {
- HEAP8[i11 >> 0] = 0;
+ HEAP8[i10 >> 0] = 0;
_free(i3);
i2 = 0;
} while (0);
@@ -25608,28 +25262,28 @@ function __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i12);
i5 = HEAP32[i14 >> 2] | 0;
- i3 = i5 + -24 | 0;
- i2 = i5;
+ i2 = i5 + -24 | 0;
+ i3 = i5;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break;
- i7 = i2 + -24 | 0;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i7 = i3 + -24 | 0;
HEAP32[i14 >> 2] = i7;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7);
- i2 = HEAP32[i14 >> 2] | 0;
+ i3 = HEAP32[i14 >> 2] | 0;
}
i3 = HEAP8[i15 >> 0] | 0;
- i4 = (i3 & 1) == 0;
- i2 = i4 ? (i3 & 255) >>> 1 : HEAP32[i10 >> 2] | 0;
- if (!i2) {
+ i2 = (i3 & 1) == 0;
+ i4 = i2 ? (i3 & 255) >>> 1 : HEAP32[i11 >> 2] | 0;
+ if (!i4) {
i2 = i8;
continue;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i5 + -48 | 0, 34990) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj((HEAP32[i14 >> 2] | 0) + -24 | 0, i4 ? i11 : HEAP32[i9 >> 2] | 0, i2) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i5 + -48 | 0, 36454) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj((HEAP32[i14 >> 2] | 0) + -24 | 0, i2 ? i10 : HEAP32[i9 >> 2] | 0, i4) | 0;
i2 = i8;
}
if ((i4 | 0) == 91) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i14 >> 2] | 0) + -24 | 0, 34358) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i14 >> 2] | 0) + -24 | 0, 35822) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i15);
i3 = i2;
break;
@@ -25644,14 +25298,14 @@ function __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_
if ((i3 | 0) != (i16 | 0) ? (HEAP8[i3 >> 0] | 0) == 69 : 0) {
i2 = i3 + 1 | 0;
if ((i2 | 0) == (i16 | 0)) {
- i2 = HEAP32[i14 >> 2] | 0;
- i3 = i2 + -24 | 0;
+ i3 = HEAP32[i14 >> 2] | 0;
+ i2 = i3 + -24 | 0;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break L40;
- i16 = i2 + -24 | 0;
+ if ((i3 | 0) == (i2 | 0)) break L40;
+ i16 = i3 + -24 | 0;
HEAP32[i14 >> 2] = i16;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i16);
- i2 = HEAP32[i14 >> 2] | 0;
+ i3 = HEAP32[i14 >> 2] | 0;
}
}
L139 : do if (((HEAP8[i2 >> 0] | 0) + -48 | 0) >>> 0 < 10) {
@@ -25670,35 +25324,34 @@ function __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_
i4 = i11 + -16 | 0;
if (!(i6 & 1)) {
i5 = i12 + 1 | 0;
- i7 = i6;
+ i10 = (i6 & 255) >>> 1;
i8 = 10;
- i9 = (i6 & 255) >>> 1;
} else {
i5 = HEAP32[i4 >> 2] | 0;
- i8 = HEAP32[i12 >> 2] | 0;
+ i6 = HEAP32[i12 >> 2] | 0;
i4 = i5 + 7 | 0;
- i7 = i8 & 255;
- i8 = (i8 & -2) + -1 | 0;
- i9 = HEAP32[i11 + -20 >> 2] | 0;
+ i10 = HEAP32[i11 + -20 >> 2] | 0;
+ i8 = (i6 & -2) + -1 | 0;
+ i6 = i6 & 255;
}
- i10 = i4 - i5 | 0;
- i6 = i3 - i2 | 0;
+ i9 = i4 - i5 | 0;
+ i7 = i3 - i2 | 0;
if ((i3 | 0) != (i2 | 0)) {
- if ((i8 - i9 | 0) >>> 0 >= i6 >>> 0) {
- if (!(i7 & 1)) i4 = i12 + 1 | 0; else i4 = HEAP32[i11 + -16 >> 2] | 0;
- if ((i9 | 0) == (i10 | 0)) i5 = i4; else {
- i5 = i4 + i10 | 0;
- _memmove(i5 + i6 | 0, i5 | 0, i9 - i10 | 0) | 0;
+ if ((i8 - i10 | 0) >>> 0 >= i7 >>> 0) {
+ if (!(i6 & 1)) i4 = i12 + 1 | 0; else i4 = HEAP32[i11 + -16 >> 2] | 0;
+ if ((i10 | 0) == (i9 | 0)) i5 = i4; else {
+ i5 = i4 + i9 | 0;
+ _memmove(i5 + i7 | 0, i5 | 0, i10 - i9 | 0) | 0;
i5 = i4;
}
} else {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9__grow_byEjjjjjj(i12, i8, i9 + i6 - i8 | 0, i9, i10, i6);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9__grow_byEjjjjjj(i12, i8, i10 + i7 - i8 | 0, i10, i9, i7);
i5 = HEAP32[i11 + -16 >> 2] | 0;
}
- i4 = i9 + i6 | 0;
+ i4 = i10 + i7 | 0;
if (!(HEAP8[i12 >> 0] & 1)) HEAP8[i12 >> 0] = i4 << 1; else HEAP32[i11 + -20 >> 2] = i4;
HEAP8[i5 + i4 >> 0] = 0;
- i4 = i5 + i10 | 0;
+ i4 = i5 + i9 | 0;
while (1) {
if ((i2 | 0) == (i3 | 0)) {
i2 = i3;
@@ -25714,24 +25367,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_
i1 = i2 + 1 | 0;
break;
}
- i2 = HEAP32[i14 >> 2] | 0;
- i3 = i2 + -24 | 0;
+ i3 = HEAP32[i14 >> 2] | 0;
+ i2 = i3 + -24 | 0;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break L40;
- i16 = i2 + -24 | 0;
+ if ((i3 | 0) == (i2 | 0)) break L40;
+ i16 = i3 + -24 | 0;
HEAP32[i14 >> 2] = i16;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i16);
- i2 = HEAP32[i14 >> 2] | 0;
+ i3 = HEAP32[i14 >> 2] | 0;
}
}
- i2 = HEAP32[i14 >> 2] | 0;
- i3 = i2 + -24 | 0;
+ i3 = HEAP32[i14 >> 2] | 0;
+ i2 = i3 + -24 | 0;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break L40;
- i16 = i2 + -24 | 0;
+ if ((i3 | 0) == (i2 | 0)) break L40;
+ i16 = i3 + -24 | 0;
HEAP32[i14 >> 2] = i16;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i16);
- i2 = HEAP32[i14 >> 2] | 0;
+ i3 = HEAP32[i14 >> 2] | 0;
}
} while (0);
break L1;
@@ -25761,706 +25414,30 @@ function __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_
return i1 | 0;
}
-function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner11visitBinaryEPNS_6BinaryE(i12, i14, i13) {
- i12 = i12 | 0;
- i14 = i14 | 0;
- i13 = i13 | 0;
- var i1 = 0, i2 = 0, d3 = 0.0, d4 = 0.0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, d9 = 0.0, d10 = 0.0, i11 = 0, i15 = 0;
- i15 = STACKTOP;
- STACKTOP = STACKTOP + 80 | 0;
- i1 = i15 + 56 | 0;
- i7 = i15 + 40 | 0;
- i2 = i15;
- i11 = i15 + 24 | 0;
- i6 = i13 + 12 | 0;
- __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i1, i14, HEAP32[i6 >> 2] | 0);
- i5 = i1 + 16 | 0;
- if ((HEAP32[i5 >> 2] | 0) == 0 ? (HEAP32[i7 >> 2] = HEAP32[i1 >> 2], HEAP32[i7 + 4 >> 2] = HEAP32[i1 + 4 >> 2], HEAP32[i7 + 8 >> 2] = HEAP32[i1 + 8 >> 2], HEAP32[i7 + 12 >> 2] = HEAP32[i1 + 12 >> 2], i8 = i13 + 16 | 0, __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i2, i14, HEAP32[i8 >> 2] | 0), HEAP32[i1 >> 2] = HEAP32[i2 >> 2], HEAP32[i1 + 4 >> 2] = HEAP32[i2 + 4 >> 2], HEAP32[i1 + 8 >> 2] = HEAP32[i2 + 8 >> 2], HEAP32[i1 + 12 >> 2] = HEAP32[i2 + 12 >> 2], HEAP32[i1 + 16 >> 2] = HEAP32[i2 + 16 >> 2], (HEAP32[i5 >> 2] | 0) == 0) : 0) {
- HEAP32[i11 >> 2] = HEAP32[i1 >> 2];
- HEAP32[i11 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
- HEAP32[i11 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
- HEAP32[i11 + 12 >> 2] = HEAP32[i1 + 12 >> 2];
- i1 = HEAP32[i7 >> 2] | 0;
- if ((i1 | 0) != (HEAP32[(HEAP32[i6 >> 2] | 0) + 4 >> 2] | 0)) ___assert_fail(20132, 19231, 446, 20162);
- if ((HEAP32[i11 >> 2] | 0) != (HEAP32[(HEAP32[i8 >> 2] | 0) + 4 >> 2] | 0)) ___assert_fail(20174, 19231, 447, 20162);
- L11 : do switch (i1 | 0) {
- case 1:
- {
- i2 = __ZN4wasm7Literal6geti32Ev(i7) | 0;
- i1 = __ZN4wasm7Literal6geti32Ev(i11) | 0;
- do switch (HEAP32[i13 + 8 >> 2] | 0) {
- case 0:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = i1 + i2;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 1:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = i2 - i1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 2:
- {
- i14 = Math_imul(i1, i2) | 0;
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = i14;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 3:
- {
- if (i1) {
- if ((i2 | 0) == -2147483648 & (i1 | 0) == -1) {
- i14 = HEAP32[(HEAP32[i14 + 4 >> 2] | 0) + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i14 >> 2] | 0) + 20 >> 2] & 127](i14, 20221);
- }
- } else {
- i14 = HEAP32[(HEAP32[i14 + 4 >> 2] | 0) + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i14 >> 2] | 0) + 20 >> 2] & 127](i14, 20206);
- }
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = (i2 | 0) / (i1 | 0) | 0;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 4:
- {
- if (!i1) {
- i14 = HEAP32[(HEAP32[i14 + 4 >> 2] | 0) + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i14 >> 2] | 0) + 20 >> 2] & 127](i14, 20240);
- }
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = (i2 >>> 0) / (i1 >>> 0) | 0;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 5:
- {
- if (i1) {
- if ((i2 | 0) == -2147483648 & (i1 | 0) == -1) {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = 0;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- } else {
- i14 = HEAP32[(HEAP32[i14 + 4 >> 2] | 0) + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i14 >> 2] | 0) + 20 >> 2] & 127](i14, 20255);
- }
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = (i2 | 0) % (i1 | 0) | 0;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 6:
- {
- if (!i1) {
- i14 = HEAP32[(HEAP32[i14 + 4 >> 2] | 0) + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i14 >> 2] | 0) + 20 >> 2] & 127](i14, 20270);
- }
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = (i2 >>> 0) % (i1 >>> 0) | 0;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 7:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = i1 & i2;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 8:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = i1 | i2;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 9:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = i1 ^ i2;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 10:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = i2 << (i1 & 31);
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 11:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = i2 >>> (i1 & 31);
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 12:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = i2 >> (i1 & 31);
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 17:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = (i2 | 0) == (i1 | 0) & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 18:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = (i2 | 0) != (i1 | 0) & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 19:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = (i2 | 0) < (i1 | 0) & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 20:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = i2 >>> 0 < i1 >>> 0 & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 21:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = (i2 | 0) <= (i1 | 0) & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 22:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = i2 >>> 0 <= i1 >>> 0 & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 23:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = (i2 | 0) > (i1 | 0) & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 24:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = i2 >>> 0 > i1 >>> 0 & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 25:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = (i2 | 0) >= (i1 | 0) & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 26:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = i2 >>> 0 >= i1 >>> 0 & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- default:
- _abort();
- } while (0);
- break;
- }
- case 2:
- {
- i5 = __ZN4wasm7Literal6geti64Ev(i7) | 0;
- i6 = tempRet0;
- i1 = __ZN4wasm7Literal6geti64Ev(i11) | 0;
- i2 = tempRet0;
- do switch (HEAP32[i13 + 8 >> 2] | 0) {
- case 0:
- {
- i13 = _i64Add(i1 | 0, i2 | 0, i5 | 0, i6 | 0) | 0;
- HEAP32[i12 >> 2] = 2;
- i14 = i12 + 8 | 0;
- HEAP32[i14 >> 2] = i13;
- HEAP32[i14 + 4 >> 2] = tempRet0;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 1:
- {
- i13 = _i64Subtract(i5 | 0, i6 | 0, i1 | 0, i2 | 0) | 0;
- HEAP32[i12 >> 2] = 2;
- i14 = i12 + 8 | 0;
- HEAP32[i14 >> 2] = i13;
- HEAP32[i14 + 4 >> 2] = tempRet0;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 2:
- {
- i13 = ___muldi3(i1 | 0, i2 | 0, i5 | 0, i6 | 0) | 0;
- HEAP32[i12 >> 2] = 2;
- i14 = i12 + 8 | 0;
- HEAP32[i14 >> 2] = i13;
- HEAP32[i14 + 4 >> 2] = tempRet0;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 3:
- {
- if (!((i1 | 0) == 0 & (i2 | 0) == 0)) {
- if ((i5 | 0) == 0 & (i6 | 0) == -2147483648 & ((i1 | 0) == -1 & (i2 | 0) == -1)) {
- i14 = HEAP32[(HEAP32[i14 + 4 >> 2] | 0) + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i14 >> 2] | 0) + 20 >> 2] & 127](i14, 20300);
- }
- } else {
- i14 = HEAP32[(HEAP32[i14 + 4 >> 2] | 0) + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i14 >> 2] | 0) + 20 >> 2] & 127](i14, 20285);
- }
- i13 = ___divdi3(i5 | 0, i6 | 0, i1 | 0, i2 | 0) | 0;
- HEAP32[i12 >> 2] = 2;
- i14 = i12 + 8 | 0;
- HEAP32[i14 >> 2] = i13;
- HEAP32[i14 + 4 >> 2] = tempRet0;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 4:
- {
- if ((i1 | 0) == 0 & (i2 | 0) == 0) {
- i14 = HEAP32[(HEAP32[i14 + 4 >> 2] | 0) + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i14 >> 2] | 0) + 20 >> 2] & 127](i14, 20319);
- }
- i13 = ___udivdi3(i5 | 0, i6 | 0, i1 | 0, i2 | 0) | 0;
- HEAP32[i12 >> 2] = 2;
- i14 = i12 + 8 | 0;
- HEAP32[i14 >> 2] = i13;
- HEAP32[i14 + 4 >> 2] = tempRet0;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 5:
- {
- if (!((i1 | 0) == 0 & (i2 | 0) == 0)) {
- if ((i5 | 0) == 0 & (i6 | 0) == -2147483648 & ((i1 | 0) == -1 & (i2 | 0) == -1)) {
- HEAP32[i12 >> 2] = 2;
- i14 = i12 + 8 | 0;
- HEAP32[i14 >> 2] = 0;
- HEAP32[i14 + 4 >> 2] = 0;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- } else {
- i14 = HEAP32[(HEAP32[i14 + 4 >> 2] | 0) + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i14 >> 2] | 0) + 20 >> 2] & 127](i14, 20334);
- }
- i13 = ___remdi3(i5 | 0, i6 | 0, i1 | 0, i2 | 0) | 0;
- HEAP32[i12 >> 2] = 2;
- i14 = i12 + 8 | 0;
- HEAP32[i14 >> 2] = i13;
- HEAP32[i14 + 4 >> 2] = tempRet0;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 6:
- {
- if ((i1 | 0) == 0 & (i2 | 0) == 0) {
- i14 = HEAP32[(HEAP32[i14 + 4 >> 2] | 0) + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i14 >> 2] | 0) + 20 >> 2] & 127](i14, 20349);
- }
- i13 = ___uremdi3(i5 | 0, i6 | 0, i1 | 0, i2 | 0) | 0;
- HEAP32[i12 >> 2] = 2;
- i14 = i12 + 8 | 0;
- HEAP32[i14 >> 2] = i13;
- HEAP32[i14 + 4 >> 2] = tempRet0;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 7:
- {
- HEAP32[i12 >> 2] = 2;
- i14 = i12 + 8 | 0;
- HEAP32[i14 >> 2] = i1 & i5;
- HEAP32[i14 + 4 >> 2] = i2 & i6;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 8:
- {
- HEAP32[i12 >> 2] = 2;
- i14 = i12 + 8 | 0;
- HEAP32[i14 >> 2] = i1 | i5;
- HEAP32[i14 + 4 >> 2] = i2 | i6;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 9:
- {
- HEAP32[i12 >> 2] = 2;
- i14 = i12 + 8 | 0;
- HEAP32[i14 >> 2] = i1 ^ i5;
- HEAP32[i14 + 4 >> 2] = i2 ^ i6;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 10:
- {
- i13 = _bitshift64Shl(i5 | 0, i6 | 0, i1 & 63 | 0) | 0;
- HEAP32[i12 >> 2] = 2;
- i14 = i12 + 8 | 0;
- HEAP32[i14 >> 2] = i13;
- HEAP32[i14 + 4 >> 2] = tempRet0;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 11:
- {
- i13 = _bitshift64Lshr(i5 | 0, i6 | 0, i1 & 63 | 0) | 0;
- HEAP32[i12 >> 2] = 2;
- i14 = i12 + 8 | 0;
- HEAP32[i14 >> 2] = i13;
- HEAP32[i14 + 4 >> 2] = tempRet0;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 12:
- {
- i13 = _bitshift64Ashr(i5 | 0, i6 | 0, i1 & 63 | 0) | 0;
- HEAP32[i12 >> 2] = 2;
- i14 = i12 + 8 | 0;
- HEAP32[i14 >> 2] = i13;
- HEAP32[i14 + 4 >> 2] = tempRet0;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 17:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = (i5 | 0) == (i1 | 0) & (i6 | 0) == (i2 | 0) & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 18:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = ((i5 | 0) != (i1 | 0) | (i6 | 0) != (i2 | 0)) & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 19:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = ((i6 | 0) < (i2 | 0) | (i6 | 0) == (i2 | 0) & i5 >>> 0 < i1 >>> 0) & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 20:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = (i6 >>> 0 < i2 >>> 0 | (i6 | 0) == (i2 | 0) & i5 >>> 0 < i1 >>> 0) & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 21:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = ((i6 | 0) < (i2 | 0) | (i6 | 0) == (i2 | 0) & i5 >>> 0 <= i1 >>> 0) & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 22:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = (i6 >>> 0 < i2 >>> 0 | (i6 | 0) == (i2 | 0) & i5 >>> 0 <= i1 >>> 0) & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 23:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = ((i6 | 0) > (i2 | 0) | (i6 | 0) == (i2 | 0) & i5 >>> 0 > i1 >>> 0) & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 24:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = (i6 >>> 0 > i2 >>> 0 | (i6 | 0) == (i2 | 0) & i5 >>> 0 > i1 >>> 0) & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 25:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = ((i6 | 0) > (i2 | 0) | (i6 | 0) == (i2 | 0) & i5 >>> 0 >= i1 >>> 0) & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 26:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = (i6 >>> 0 > i2 >>> 0 | (i6 | 0) == (i2 | 0) & i5 >>> 0 >= i1 >>> 0) & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- default:
- _abort();
- } while (0);
- break;
- }
- case 3:
- {
- d4 = +__ZN4wasm7Literal6getf32Ev(i7);
- d3 = +__ZN4wasm7Literal6getf32Ev(i11);
- L98 : do switch (HEAP32[i13 + 8 >> 2] | 0) {
- case 0:
- {
- d9 = d4 + d3;
- break;
- }
- case 1:
- {
- d9 = d4 - d3;
- break;
- }
- case 2:
- {
- d9 = d4 * d3;
- break;
- }
- case 13:
- {
- d9 = d4 / d3;
- break;
- }
- case 14:
- {
- d10 = +_copysignf(d4, d3);
- HEAP32[i12 >> 2] = 3;
- HEAPF32[i12 + 8 >> 2] = d10;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 15:
- if (d4 == 0.0 & d4 == d3) {
- d9 = 1.0 / d4 < 0.0 ? d4 : d3;
- break L98;
- } else {
- d9 = d3 < d4 ? d3 : d4;
- break L98;
- }
- case 16:
- if (d4 == 0.0 & d4 == d3) {
- d9 = 1.0 / d4 < 0.0 ? d3 : d4;
- break L98;
- } else {
- d9 = d4 < d3 ? d3 : d4;
- break L98;
- }
- case 17:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = d4 == d3 & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 18:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = d4 != d3 & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 27:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = d4 < d3 & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 28:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = d4 <= d3 & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 29:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = d4 > d3 & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 30:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = d4 >= d3 & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- default:
- _abort();
- } while (0);
- d10 = +__ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner6fixNaNEfff(i14, d4, d3, d9);
- HEAP32[i12 >> 2] = 3;
- HEAPF32[i12 + 8 >> 2] = d10;
- HEAP32[i12 + 16 >> 2] = 0;
- break;
- }
- case 4:
- {
- d4 = +__ZN4wasm7Literal6getf64Ev(i7);
- d3 = +__ZN4wasm7Literal6getf64Ev(i11);
- L121 : do switch (HEAP32[i13 + 8 >> 2] | 0) {
- case 0:
- {
- d10 = d4 + d3;
- break;
- }
- case 1:
- {
- d10 = d4 - d3;
- break;
- }
- case 2:
- {
- d10 = d4 * d3;
- break;
- }
- case 13:
- {
- d10 = d4 / d3;
- break;
- }
- case 14:
- {
- d10 = +_copysign(d4, d3);
- HEAP32[i12 >> 2] = 4;
- HEAPF64[i12 + 8 >> 3] = d10;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 15:
- if (d4 == 0.0 & d4 == d3) {
- d10 = 1.0 / d4 < 0.0 ? d4 : d3;
- break L121;
- } else {
- d10 = d3 < d4 ? d3 : d4;
- break L121;
- }
- case 16:
- if (d4 == 0.0 & d4 == d3) {
- d10 = 1.0 / d4 < 0.0 ? d3 : d4;
- break L121;
- } else {
- d10 = d4 < d3 ? d3 : d4;
- break L121;
- }
- case 17:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = d4 == d3 & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 18:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = d4 != d3 & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 27:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = d4 < d3 & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 28:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = d4 <= d3 & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 29:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = d4 > d3 & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- case 30:
- {
- HEAP32[i12 >> 2] = 1;
- HEAP32[i12 + 8 >> 2] = d4 >= d3 & 1;
- HEAP32[i12 + 16 >> 2] = 0;
- break L11;
- }
- default:
- _abort();
- } while (0);
- d10 = +__ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner6fixNaNEddd(i14, d4, d3, d10);
- HEAP32[i12 >> 2] = 4;
- HEAPF64[i12 + 8 >> 3] = d10;
- HEAP32[i12 + 16 >> 2] = 0;
- break;
- }
- default:
- _abort();
- } while (0);
- } else {
- HEAP32[i12 >> 2] = HEAP32[i1 >> 2];
- HEAP32[i12 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
- HEAP32[i12 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
- HEAP32[i12 + 12 >> 2] = HEAP32[i1 + 12 >> 2];
- HEAP32[i12 + 16 >> 2] = HEAP32[i1 + 16 >> 2];
- HEAP32[i12 + 20 >> 2] = HEAP32[i1 + 20 >> 2];
- }
- STACKTOP = i15;
- return;
-}
-function _vfscanf(i33, i2, i18) {
+function _vfscanf(i33, i2, i24) {
i33 = i33 | 0;
i2 = i2 | 0;
- i18 = i18 | 0;
- var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, d7 = 0.0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i34 = 0;
+ i24 = i24 | 0;
+ var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, d7 = 0.0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i34 = 0;
i34 = STACKTOP;
STACKTOP = STACKTOP + 304 | 0;
- i19 = i34 + 16 | 0;
+ i25 = i34 + 16 | 0;
i27 = i34 + 8 | 0;
- i25 = i34 + 33 | 0;
+ i26 = i34 + 33 | 0;
i28 = i34;
- i17 = i34 + 32 | 0;
+ i16 = i34 + 32 | 0;
if ((HEAP32[i33 + 76 >> 2] | 0) > -1) i32 = ___lockfile(i33) | 0; else i32 = 0;
i1 = HEAP8[i2 >> 0] | 0;
L4 : do if (i1 << 24 >> 24) {
i29 = i33 + 4 | 0;
i30 = i33 + 100 | 0;
- i26 = i33 + 108 | 0;
- i24 = i33 + 8 | 0;
- i20 = i25 + 10 | 0;
- i21 = i25 + 33 | 0;
- i16 = i27 + 4 | 0;
- i22 = i25 + 46 | 0;
- i23 = i25 + 94 | 0;
+ i23 = i33 + 108 | 0;
+ i17 = i33 + 8 | 0;
+ i18 = i26 + 10 | 0;
+ i19 = i26 + 33 | 0;
+ i20 = i27 + 4 | 0;
+ i21 = i26 + 46 | 0;
+ i22 = i26 + 94 | 0;
i4 = i1;
i1 = 0;
i5 = i2;
@@ -26469,11 +25446,11 @@ function _vfscanf(i33, i2, i18) {
i2 = 0;
L6 : while (1) {
L8 : do if (!(_isspace(i4 & 255) | 0)) {
- i6 = (HEAP8[i5 >> 0] | 0) == 37;
- L10 : do if (i6) {
+ i4 = (HEAP8[i5 >> 0] | 0) == 37;
+ L10 : do if (i4) {
i8 = i5 + 1 | 0;
- i4 = HEAP8[i8 >> 0] | 0;
- L12 : do switch (i4 << 24 >> 24) {
+ i6 = HEAP8[i8 >> 0] | 0;
+ L12 : do switch (i6 << 24 >> 24) {
case 37:
break L10;
case 42:
@@ -26484,22 +25461,22 @@ function _vfscanf(i33, i2, i18) {
}
default:
{
- i6 = (i4 & 255) + -48 | 0;
+ i6 = (i6 & 255) + -48 | 0;
if (i6 >>> 0 < 10 ? (HEAP8[i5 + 2 >> 0] | 0) == 36 : 0) {
- HEAP32[i19 >> 2] = HEAP32[i18 >> 2];
+ HEAP32[i25 >> 2] = HEAP32[i24 >> 2];
while (1) {
- i15 = (HEAP32[i19 >> 2] | 0) + (4 - 1) & ~(4 - 1);
+ i15 = (HEAP32[i25 >> 2] | 0) + (4 - 1) & ~(4 - 1);
i4 = HEAP32[i15 >> 2] | 0;
- HEAP32[i19 >> 2] = i15 + 4;
+ HEAP32[i25 >> 2] = i15 + 4;
if (i6 >>> 0 > 1) i6 = i6 + -1 | 0; else break;
}
i15 = i4;
i6 = i5 + 3 | 0;
break L12;
}
- i6 = (HEAP32[i18 >> 2] | 0) + (4 - 1) & ~(4 - 1);
+ i6 = (HEAP32[i24 >> 2] | 0) + (4 - 1) & ~(4 - 1);
i15 = HEAP32[i6 >> 2] | 0;
- HEAP32[i18 >> 2] = i6 + 4;
+ HEAP32[i24 >> 2] = i6 + 4;
i6 = i8;
}
} while (0);
@@ -26666,7 +25643,7 @@ function _vfscanf(i33, i2, i18) {
i6 = (HEAP32[i29 >> 2] | 0) + -1 | 0;
HEAP32[i29 >> 2] = i6;
}
- i14 = (HEAP32[i26 >> 2] | 0) + i10 + i6 - (HEAP32[i24 >> 2] | 0) | 0;
+ i14 = (HEAP32[i23 >> 2] | 0) + i10 + i6 - (HEAP32[i17 >> 2] | 0) | 0;
i13 = i8;
}
}
@@ -26688,35 +25665,35 @@ function _vfscanf(i33, i2, i18) {
{
i12 = (i9 | 0) == 99;
L70 : do if ((i9 | 16 | 0) == 115) {
- _memset(i25 | 0, -1, 257) | 0;
- HEAP8[i25 >> 0] = 0;
+ _memset(i26 | 0, -1, 257) | 0;
+ HEAP8[i26 >> 0] = 0;
if ((i9 | 0) == 115) {
- HEAP8[i21 >> 0] = 0;
- HEAP8[i20 >> 0] = 0;
- HEAP8[i20 + 1 >> 0] = 0;
- HEAP8[i20 + 2 >> 0] = 0;
- HEAP8[i20 + 3 >> 0] = 0;
- HEAP8[i20 + 4 >> 0] = 0;
+ HEAP8[i19 >> 0] = 0;
+ HEAP8[i18 >> 0] = 0;
+ HEAP8[i18 + 1 >> 0] = 0;
+ HEAP8[i18 + 2 >> 0] = 0;
+ HEAP8[i18 + 3 >> 0] = 0;
+ HEAP8[i18 + 4 >> 0] = 0;
}
} else {
i9 = i5 + 1 | 0;
i10 = (HEAP8[i9 >> 0] | 0) == 94;
i6 = i10 & 1;
i5 = i10 ? i5 + 2 | 0 : i9;
- _memset(i25 | 0, i10 & 1 | 0, 257) | 0;
- HEAP8[i25 >> 0] = 0;
+ _memset(i26 | 0, i10 & 1 | 0, 257) | 0;
+ HEAP8[i26 >> 0] = 0;
switch (HEAP8[i5 >> 0] | 0) {
case 45:
{
i10 = (i6 ^ 1) & 255;
- HEAP8[i22 >> 0] = i10;
+ HEAP8[i21 >> 0] = i10;
i5 = i5 + 1 | 0;
break;
}
case 93:
{
i10 = (i6 ^ 1) & 255;
- HEAP8[i23 >> 0] = i10;
+ HEAP8[i22 >> 0] = i10;
i5 = i5 + 1 | 0;
break;
}
@@ -26752,7 +25729,7 @@ function _vfscanf(i33, i2, i18) {
i5 = i5 & 255;
do {
i5 = i5 + 1 | 0;
- HEAP8[i25 + i5 >> 0] = i10;
+ HEAP8[i26 + i5 >> 0] = i10;
i6 = HEAP8[i9 >> 0] | 0;
} while ((i5 | 0) < (i6 & 255 | 0));
i5 = i9;
@@ -26762,7 +25739,7 @@ function _vfscanf(i33, i2, i18) {
default:
{}
} while (0);
- HEAP8[i25 + ((i6 & 255) + 1) >> 0] = i10;
+ HEAP8[i26 + ((i6 & 255) + 1) >> 0] = i10;
i5 = i5 + 1 | 0;
}
} while (0);
@@ -26779,7 +25756,7 @@ function _vfscanf(i33, i2, i18) {
}
} else i2 = i15;
HEAP32[i27 >> 2] = 0;
- HEAP32[i16 >> 2] = 0;
+ HEAP32[i20 >> 2] = 0;
i3 = 0;
L95 : while (1) {
i8 = (i2 | 0) == 0;
@@ -26790,9 +25767,9 @@ function _vfscanf(i33, i2, i18) {
HEAP32[i29 >> 2] = i6 + 1;
i6 = HEAPU8[i6 >> 0] | 0;
} else i6 = ___shgetc(i33) | 0;
- if (!(HEAP8[i25 + (i6 + 1) >> 0] | 0)) break L95;
- HEAP8[i17 >> 0] = i6;
- switch (_mbrtowc(i28, i17, 1, i27) | 0) {
+ if (!(HEAP8[i26 + (i6 + 1) >> 0] | 0)) break L95;
+ HEAP8[i16 >> 0] = i6;
+ switch (_mbrtowc(i28, i16, 1, i27) | 0) {
case -1:
{
i3 = 0;
@@ -26847,7 +25824,7 @@ function _vfscanf(i33, i2, i18) {
HEAP32[i29 >> 2] = i2 + 1;
i2 = HEAPU8[i2 >> 0] | 0;
} else i2 = ___shgetc(i33) | 0;
- if (!(HEAP8[i25 + (i2 + 1) >> 0] | 0)) {
+ if (!(HEAP8[i26 + (i2 + 1) >> 0] | 0)) {
i8 = i6;
i2 = 0;
break L89;
@@ -26877,7 +25854,7 @@ function _vfscanf(i33, i2, i18) {
HEAP32[i29 >> 2] = i2 + 1;
i2 = HEAPU8[i2 >> 0] | 0;
} else i2 = ___shgetc(i33) | 0;
- if (!(HEAP8[i25 + (i2 + 1) >> 0] | 0)) {
+ if (!(HEAP8[i26 + (i2 + 1) >> 0] | 0)) {
i8 = 0;
i3 = 0;
i2 = 0;
@@ -26893,7 +25870,7 @@ function _vfscanf(i33, i2, i18) {
HEAP32[i29 >> 2] = i2 + 1;
i2 = HEAPU8[i2 >> 0] | 0;
} else i2 = ___shgetc(i33) | 0;
- if (!(HEAP8[i25 + (i2 + 1) >> 0] | 0)) {
+ if (!(HEAP8[i26 + (i2 + 1) >> 0] | 0)) {
i8 = i3;
i3 = i15;
i2 = 0;
@@ -26909,7 +25886,7 @@ function _vfscanf(i33, i2, i18) {
i6 = (HEAP32[i29 >> 2] | 0) + -1 | 0;
HEAP32[i29 >> 2] = i6;
}
- i6 = i6 - (HEAP32[i24 >> 2] | 0) + (HEAP32[i26 >> 2] | 0) | 0;
+ i6 = i6 - (HEAP32[i17 >> 2] | 0) + (HEAP32[i23 >> 2] | 0) | 0;
if (!i6) break L6;
if (!((i6 | 0) == (i13 | 0) | i12 ^ 1)) break L6;
do if (i11) if (i10) {
@@ -26966,7 +25943,7 @@ function _vfscanf(i33, i2, i18) {
case 97:
{
d7 = +___floatscan(i33, i11, 0);
- if ((HEAP32[i26 >> 2] | 0) == ((HEAP32[i24 >> 2] | 0) - (HEAP32[i29 >> 2] | 0) | 0)) break L6;
+ if ((HEAP32[i23 >> 2] | 0) == ((HEAP32[i17 >> 2] | 0) - (HEAP32[i29 >> 2] | 0) | 0)) break L6;
if (i15) switch (i11 | 0) {
case 0:
{
@@ -26994,7 +25971,7 @@ function _vfscanf(i33, i2, i18) {
L169 : do if ((i31 | 0) == 136) {
i31 = 0;
i6 = ___intscan(i33, i6, 0, -1, -1) | 0;
- if ((HEAP32[i26 >> 2] | 0) == ((HEAP32[i24 >> 2] | 0) - (HEAP32[i29 >> 2] | 0) | 0)) break L6;
+ if ((HEAP32[i23 >> 2] | 0) == ((HEAP32[i17 >> 2] | 0) - (HEAP32[i29 >> 2] | 0) | 0)) break L6;
if ((i15 | 0) != 0 & (i9 | 0) == 112) {
HEAP32[i15 >> 2] = i6;
break;
@@ -27032,10 +26009,10 @@ function _vfscanf(i33, i2, i18) {
}
} while (0);
i1 = ((i15 | 0) != 0 & 1) + i1 | 0;
- i6 = (HEAP32[i26 >> 2] | 0) + i14 + (HEAP32[i29 >> 2] | 0) - (HEAP32[i24 >> 2] | 0) | 0;
+ i6 = (HEAP32[i23 >> 2] | 0) + i14 + (HEAP32[i29 >> 2] | 0) - (HEAP32[i17 >> 2] | 0) | 0;
break L8;
} while (0);
- i5 = i5 + (i6 & 1) | 0;
+ i5 = i5 + (i4 & 1) | 0;
___shlim(i33, 0);
i4 = HEAP32[i29 >> 2] | 0;
if (i4 >>> 0 < (HEAP32[i30 >> 2] | 0) >>> 0) {
@@ -27064,7 +26041,7 @@ function _vfscanf(i33, i2, i18) {
i4 = (HEAP32[i29 >> 2] | 0) + -1 | 0;
HEAP32[i29 >> 2] = i4;
}
- i6 = (HEAP32[i26 >> 2] | 0) + i10 + i4 - (HEAP32[i24 >> 2] | 0) | 0;
+ i6 = (HEAP32[i23 >> 2] | 0) + i10 + i4 - (HEAP32[i17 >> 2] | 0) | 0;
} while (0);
i5 = i5 + 1 | 0;
i4 = HEAP8[i5 >> 0] | 0;
@@ -27103,48 +26080,48 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionE
i42 = STACKTOP;
STACKTOP = STACKTOP + 128 | 0;
i39 = i42 + 112 | 0;
- i33 = i42 + 16 | 0;
- i29 = i42 + 100 | 0;
- i12 = i42 + 8 | 0;
- i7 = i42 + 104 | 0;
+ i19 = i42 + 16 | 0;
+ i18 = i42 + 100 | 0;
+ i11 = i42 + 8 | 0;
+ i5 = i42 + 104 | 0;
i8 = i42 + 96 | 0;
i9 = i42;
i38 = i42 + 44 | 0;
- i35 = i42 + 92 | 0;
- i36 = i42 + 88 | 0;
- i37 = i42 + 84 | 0;
- i21 = i42 + 80 | 0;
- i22 = i42 + 76 | 0;
- i23 = i42 + 72 | 0;
- i24 = i42 + 68 | 0;
- i25 = i42 + 64 | 0;
- i26 = i42 + 60 | 0;
- i27 = i42 + 56 | 0;
- i28 = i42 + 52 | 0;
- i30 = i42 + 48 | 0;
- i31 = i42 + 40 | 0;
- i32 = i42 + 36 | 0;
- i34 = i42 + 32 | 0;
+ i32 = i42 + 92 | 0;
+ i33 = i42 + 88 | 0;
+ i34 = i42 + 84 | 0;
+ i35 = i42 + 80 | 0;
+ i36 = i42 + 76 | 0;
+ i37 = i42 + 72 | 0;
+ i20 = i42 + 68 | 0;
+ i21 = i42 + 64 | 0;
+ i22 = i42 + 60 | 0;
+ i23 = i42 + 56 | 0;
+ i24 = i42 + 52 | 0;
+ i25 = i42 + 48 | 0;
+ i26 = i42 + 40 | 0;
+ i27 = i42 + 36 | 0;
+ i29 = i42 + 32 | 0;
i13 = i40 + 4 | 0;
- i11 = HEAP32[i13 >> 2] | 0;
- i16 = i11 + -12 | 0;
+ i12 = HEAP32[i13 >> 2] | 0;
+ i16 = i12 + -12 | 0;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i15);
i4 = HEAP32[i15 >> 2] | 0;
- i1 = HEAP8[i4 >> 0] | 0;
- L1 : do if (i1 << 24 >> 24) {
- i3 = i14;
+ i2 = HEAP8[i4 >> 0] | 0;
+ L1 : do if (i2 << 24 >> 24) {
+ i1 = i14;
while (1) {
- i2 = HEAP8[i3 >> 0] | 0;
- if (!(i2 << 24 >> 24)) break;
- if (i2 << 24 >> 24 == i1 << 24 >> 24) {
+ i3 = HEAP8[i1 >> 0] | 0;
+ if (!(i3 << 24 >> 24)) break;
+ if (i3 << 24 >> 24 == i2 << 24 >> 24) {
i41 = 4;
break L1;
- } else i3 = i3 + 1 | 0;
+ } else i1 = i1 + 1 | 0;
}
- i3 = i11 + -8 | 0;
+ i3 = i12 + -8 | 0;
i1 = HEAP32[i3 >> 2] | 0;
i10 = (i1 | 0) == (HEAP32[i16 >> 2] | 0);
- do if (!(HEAP8[i17 >> 0] | 0)) if ((i1 | 0) == (HEAP32[i11 + -4 >> 2] | 0)) {
+ do if (!(HEAP8[i17 >> 0] | 0)) if ((i1 | 0) == (HEAP32[i12 + -4 >> 2] | 0)) {
__ZNSt3__16vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEE21__push_back_slow_pathIRKS6_EEvOT_(i16, i17);
break;
} else {
@@ -27156,108 +26133,109 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionE
HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + 8;
break;
} else {
- __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i33, i4);
- if ((HEAP32[i33 + 12 >> 2] | 0) != 1) {
+ __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i19, i4);
+ if ((HEAP32[i19 + 12 >> 2] | 0) != 1) {
i1 = HEAP32[i15 >> 2] | 0;
switch (HEAP8[i1 >> 0] | 0) {
case 40:
{
- i6 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i17) | 0;
- HEAP32[i7 >> 2] = i6;
- HEAP32[i39 >> 2] = HEAP32[i7 >> 2];
- i6 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseCallES1_RPc(i40, i39, i15) | 0;
- i5 = i17;
- HEAP32[i5 >> 2] = 1;
- HEAP32[i5 + 4 >> 2] = i6;
- i5 = 1;
+ i7 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i17) | 0;
+ HEAP32[i5 >> 2] = i7;
+ HEAP32[i39 >> 2] = HEAP32[i5 >> 2];
+ i7 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseCallES1_RPc(i40, i39, i15) | 0;
+ i6 = i17;
+ HEAP32[i6 >> 2] = 1;
+ HEAP32[i6 + 4 >> 2] = i7;
+ i6 = 1;
break;
}
case 91:
{
- i6 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i17) | 0;
- HEAP32[i8 >> 2] = i6;
+ i7 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i17) | 0;
+ HEAP32[i8 >> 2] = i7;
HEAP32[i39 >> 2] = HEAP32[i8 >> 2];
- i6 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseIndexingES1_RPc(i40, i39, i15) | 0;
- i5 = i17;
- HEAP32[i5 >> 2] = 1;
- HEAP32[i5 + 4 >> 2] = i6;
- i5 = 1;
+ i7 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseIndexingES1_RPc(i40, i39, i15) | 0;
+ i6 = i17;
+ HEAP32[i6 >> 2] = 1;
+ HEAP32[i6 + 4 >> 2] = i7;
+ i6 = 1;
break;
}
default:
{
- __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4dumpEPKcPc(23046, i1);
+ __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4dumpEPKcPc(23634, i1);
_abort();
}
}
i1 = i9;
- HEAP32[i1 >> 2] = i5;
- HEAP32[i1 + 4 >> 2] = i6;
+ HEAP32[i1 >> 2] = i6;
+ HEAP32[i1 + 4 >> 2] = i7;
HEAP32[i39 >> 2] = HEAP32[i9 >> 2];
HEAP32[i39 + 4 >> 2] = HEAP32[i9 + 4 >> 2];
i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i40, i39, i15, i14) | 0;
break L1;
}
i1 = HEAP32[i3 >> 2] | 0;
- i2 = i11 + -4 | 0;
+ i2 = i12 + -4 | 0;
if ((i1 | 0) == (HEAP32[i2 >> 2] | 0)) __ZNSt3__16vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEE21__push_back_slow_pathIRKS6_EEvOT_(i16, i17); else {
i9 = i17;
- i11 = HEAP32[i9 + 4 >> 2] | 0;
+ i12 = HEAP32[i9 + 4 >> 2] | 0;
i17 = i1;
HEAP32[i17 >> 2] = HEAP32[i9 >> 2];
- HEAP32[i17 + 4 >> 2] = i11;
+ HEAP32[i17 + 4 >> 2] = i12;
HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + 8;
}
- HEAP32[i15 >> 2] = (HEAP32[i15 >> 2] | 0) + (HEAP32[i33 + 8 >> 2] | 0);
- i1 = HEAP32[i33 >> 2] | 0;
- HEAP8[i12 >> 0] = 0;
- HEAP32[i12 + 4 >> 2] = i1;
+ HEAP32[i15 >> 2] = (HEAP32[i15 >> 2] | 0) + (HEAP32[i19 + 8 >> 2] | 0);
+ i1 = HEAP32[i19 >> 2] | 0;
+ HEAP8[i11 >> 0] = 0;
+ HEAP32[i11 + 4 >> 2] = i1;
i1 = HEAP32[i3 >> 2] | 0;
if (i1 >>> 0 < (HEAP32[i2 >> 2] | 0) >>> 0) {
+ i12 = i11;
i16 = HEAP32[i12 + 4 >> 2] | 0;
i17 = i1;
HEAP32[i17 >> 2] = HEAP32[i12 >> 2];
HEAP32[i17 + 4 >> 2] = i16;
HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + 8;
- } else __ZNSt3__16vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEE21__push_back_slow_pathIS6_EEvOT_(i16, i12);
+ } else __ZNSt3__16vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEE21__push_back_slow_pathIS6_EEvOT_(i16, i11);
} while (0);
i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i40, i15, i14) | 0;
if (i10) {
i11 = HEAP32[i13 >> 2] | 0;
i10 = i11 + -12 | 0;
- i8 = HEAP32[9317] | 0;
+ i8 = HEAP32[9685] | 0;
i11 = i11 + -8 | 0;
- i9 = HEAP32[9316] | 0;
+ i9 = HEAP32[9684] | 0;
L30 : while (1) {
if ((i9 | 0) == (i8 | 0)) break;
L33 : do if (!(HEAP8[i9 + 20 >> 0] | 0)) {
- i6 = i9 + 24 | 0;
- i1 = 0;
+ i5 = i9 + 24 | 0;
+ i4 = 0;
while (1) {
i17 = HEAP32[i10 >> 2] | 0;
- i2 = i17;
- if ((i1 | 0) >= ((HEAP32[i11 >> 2] | 0) - i17 >> 3 | 0)) break L33;
- if (!(HEAP8[i2 + (i1 << 3) >> 0] | 0)) {
- i4 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement5getOpEv(i2 + (i1 << 3) | 0) | 0;
- HEAP32[i38 >> 2] = i4;
+ i1 = i17;
+ if ((i4 | 0) >= ((HEAP32[i11 >> 2] | 0) - i17 >> 3 | 0)) break L33;
+ if (!(HEAP8[i1 + (i4 << 3) >> 0] | 0)) {
+ i3 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement5getOpEv(i1 + (i4 << 3) | 0) | 0;
+ HEAP32[i38 >> 2] = i3;
L40 : do if (__ZNKSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE4findIS2_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS2_PvEEEERKT_(i9, i38) | 0) {
- i2 = HEAP32[i6 >> 2] | 0;
- i3 = (i1 | 0) > 0;
- if (i3 & (i2 | 0) == 0 ? (i17 = HEAP32[i10 >> 2] | 0, i19 = i17, (i1 | 0) < (((HEAP32[i11 >> 2] | 0) - i17 >> 3) + -1 | 0)) : 0) {
- i5 = i1 + -1 | 0;
- i17 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i19 + (i5 << 3) | 0) | 0;
- HEAP32[i28 >> 2] = i17;
- HEAP32[i30 >> 2] = i4;
- i17 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv((HEAP32[i10 >> 2] | 0) + (i1 + 1 << 3) | 0) | 0;
- HEAP32[i31 >> 2] = i17;
- HEAP32[i29 >> 2] = HEAP32[i28 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i30 >> 2];
- HEAP32[i39 >> 2] = HEAP32[i31 >> 2];
- i17 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10makeBinaryES1_NS_7IStringES1_(i40, i29, i33, i39) | 0;
- i2 = i19 + (i1 << 3) | 0;
+ i1 = HEAP32[i5 >> 2] | 0;
+ i2 = (i4 | 0) > 0;
+ if (i2 & (i1 | 0) == 0 ? (i17 = HEAP32[i10 >> 2] | 0, i30 = i17, (i4 | 0) < (((HEAP32[i11 >> 2] | 0) - i17 >> 3) + -1 | 0)) : 0) {
+ i1 = i4 + -1 | 0;
+ i17 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i30 + (i1 << 3) | 0) | 0;
+ HEAP32[i24 >> 2] = i17;
+ HEAP32[i25 >> 2] = i3;
+ i17 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv((HEAP32[i10 >> 2] | 0) + (i4 + 1 << 3) | 0) | 0;
+ HEAP32[i26 >> 2] = i17;
+ HEAP32[i18 >> 2] = HEAP32[i24 >> 2];
+ HEAP32[i19 >> 2] = HEAP32[i25 >> 2];
+ HEAP32[i39 >> 2] = HEAP32[i26 >> 2];
+ i17 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10makeBinaryES1_NS_7IStringES1_(i40, i18, i19, i39) | 0;
+ i2 = i30 + (i4 << 3) | 0;
HEAP32[i2 >> 2] = 1;
HEAP32[i2 + 4 >> 2] = i17;
- i2 = (HEAP32[i10 >> 2] | 0) + (i1 << 3) + 8 | 0;
+ i2 = (HEAP32[i10 >> 2] | 0) + (i4 << 3) + 8 | 0;
i17 = i2 + 8 | 0;
i3 = (HEAP32[i11 >> 2] | 0) - i17 | 0;
_memmove(i2 | 0, i17 | 0, i3 | 0) | 0;
@@ -27269,51 +26247,51 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionE
HEAP32[i11 >> 2] = i17;
i2 = i17;
}
- i1 = (HEAP32[i10 >> 2] | 0) + (i1 << 3) + -8 | 0;
- i17 = i1 + 8 | 0;
+ i3 = (HEAP32[i10 >> 2] | 0) + (i4 << 3) + -8 | 0;
+ i17 = i3 + 8 | 0;
i2 = i2 - i17 | 0;
- _memmove(i1 | 0, i17 | 0, i2 | 0) | 0;
- i2 = i1 + (i2 >> 3 << 3) | 0;
- i1 = HEAP32[i11 >> 2] | 0;
+ _memmove(i3 | 0, i17 | 0, i2 | 0) | 0;
+ i2 = i3 + (i2 >> 3 << 3) | 0;
+ i3 = HEAP32[i11 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i2 | 0)) {
- i1 = i5;
- break L40;
- }
- i17 = i1 + -8 | 0;
+ if ((i3 | 0) == (i2 | 0)) break L40;
+ i17 = i3 + -8 | 0;
HEAP32[i11 >> 2] = i17;
- i1 = i17;
+ i3 = i17;
}
}
- if ((i2 | 0) == 1 ? (i17 = HEAP32[i10 >> 2] | 0, i20 = i17, (i1 | 0) < (((HEAP32[i11 >> 2] | 0) - i17 >> 3) + -1 | 0)) : 0) {
- if (i3 ? HEAP8[i20 + (i1 + -1 << 3) >> 0] | 0 : 0) break;
- HEAP32[i32 >> 2] = i4;
- i17 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i20 + (i1 + 1 << 3) | 0) | 0;
- HEAP32[i34 >> 2] = i17;
- HEAP32[i33 >> 2] = HEAP32[i32 >> 2];
- HEAP32[i39 >> 2] = HEAP32[i34 >> 2];
- i17 = __ZN6cashew12ValueBuilder10makePrefixENS_7IStringENS_3RefE(i33, i39) | 0;
- i2 = i20 + (i1 << 3) | 0;
+ if ((i1 | 0) == 1 ? (i17 = HEAP32[i10 >> 2] | 0, i31 = i17, (i4 | 0) < (((HEAP32[i11 >> 2] | 0) - i17 >> 3) + -1 | 0)) : 0) {
+ if (i2 ? HEAP8[i31 + (i4 + -1 << 3) >> 0] | 0 : 0) {
+ i1 = i4;
+ break;
+ }
+ HEAP32[i27 >> 2] = i3;
+ i17 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i31 + (i4 + 1 << 3) | 0) | 0;
+ HEAP32[i29 >> 2] = i17;
+ HEAP32[i19 >> 2] = HEAP32[i27 >> 2];
+ HEAP32[i39 >> 2] = HEAP32[i29 >> 2];
+ i17 = __ZN6cashew12ValueBuilder10makePrefixENS_7IStringENS_3RefE(i19, i39) | 0;
+ i2 = i31 + (i4 << 3) | 0;
HEAP32[i2 >> 2] = 1;
HEAP32[i2 + 4 >> 2] = i17;
- i2 = (HEAP32[i10 >> 2] | 0) + (i1 << 3) + 8 | 0;
+ i2 = (HEAP32[i10 >> 2] | 0) + (i4 << 3) + 8 | 0;
i17 = i2 + 8 | 0;
- i3 = (HEAP32[i11 >> 2] | 0) - i17 | 0;
- _memmove(i2 | 0, i17 | 0, i3 | 0) | 0;
- i3 = i2 + (i3 >> 3 << 3) | 0;
+ i1 = (HEAP32[i11 >> 2] | 0) - i17 | 0;
+ _memmove(i2 | 0, i17 | 0, i1 | 0) | 0;
+ i1 = i2 + (i1 >> 3 << 3) | 0;
i2 = HEAP32[i11 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break;
+ if ((i2 | 0) == (i1 | 0)) break;
i17 = i2 + -8 | 0;
HEAP32[i11 >> 2] = i17;
i2 = i17;
}
- i1 = i1 + -2 | 0;
+ i1 = i4 + -2 | 0;
i1 = (i1 | 0) < 0 ? 0 : i1;
- }
- } while (0);
- }
- i1 = i1 + 1 | 0;
+ } else i1 = i4;
+ } else i1 = i4; while (0);
+ } else i1 = i4;
+ i4 = i1 + 1 | 0;
}
} else {
i7 = i9 + 24 | 0;
@@ -27326,23 +26304,23 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionE
i6 = i1;
continue;
}
- i3 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement5getOpEv(i2 + (i1 << 3) | 0) | 0;
- HEAP32[i38 >> 2] = i3;
- i4 = i3;
+ i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement5getOpEv(i2 + (i1 << 3) | 0) | 0;
+ HEAP32[i38 >> 2] = i2;
+ i4 = i2;
L69 : do if (__ZNKSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE4findIS2_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS2_PvEEEERKT_(i9, i38) | 0) {
- i2 = HEAP32[i7 >> 2] | 0;
+ i3 = HEAP32[i7 >> 2] | 0;
i5 = (i1 | 0) > 0;
- if (i5 & (i2 | 0) == 0 ? (i17 = HEAP32[i10 >> 2] | 0, i18 = i17, (i1 | 0) < (((HEAP32[i11 >> 2] | 0) - i17 >> 3) + -1 | 0)) : 0) {
- i17 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i18 + (i6 + -2 << 3) | 0) | 0;
- HEAP32[i35 >> 2] = i17;
- HEAP32[i36 >> 2] = i4;
+ if (i5 & (i3 | 0) == 0 ? (i17 = HEAP32[i10 >> 2] | 0, i28 = i17, (i1 | 0) < (((HEAP32[i11 >> 2] | 0) - i17 >> 3) + -1 | 0)) : 0) {
+ i17 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i28 + (i6 + -2 << 3) | 0) | 0;
+ HEAP32[i32 >> 2] = i17;
+ HEAP32[i33 >> 2] = i4;
i17 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv((HEAP32[i10 >> 2] | 0) + (i6 << 3) | 0) | 0;
- HEAP32[i37 >> 2] = i17;
- HEAP32[i29 >> 2] = HEAP32[i35 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i39 >> 2] = HEAP32[i37 >> 2];
- i17 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10makeBinaryES1_NS_7IStringES1_(i40, i29, i33, i39) | 0;
- i2 = i18 + (i1 << 3) | 0;
+ HEAP32[i34 >> 2] = i17;
+ HEAP32[i18 >> 2] = HEAP32[i32 >> 2];
+ HEAP32[i19 >> 2] = HEAP32[i33 >> 2];
+ HEAP32[i39 >> 2] = HEAP32[i34 >> 2];
+ i17 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10makeBinaryES1_NS_7IStringES1_(i40, i18, i19, i39) | 0;
+ i2 = i28 + (i1 << 3) | 0;
HEAP32[i2 >> 2] = 1;
HEAP32[i2 + 4 >> 2] = i17;
i2 = (HEAP32[i10 >> 2] | 0) + (i1 << 3) + 8 | 0;
@@ -27357,50 +26335,50 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionE
HEAP32[i11 >> 2] = i17;
i2 = i17;
}
- i17 = (HEAP32[i10 >> 2] | 0) + (i1 << 3) + -8 | 0;
- i16 = i17 + 8 | 0;
- i3 = i2 - i16 | 0;
- _memmove(i17 | 0, i16 | 0, i3 | 0) | 0;
- i3 = i17 + (i3 >> 3 << 3) | 0;
- i2 = HEAP32[i11 >> 2] | 0;
+ i3 = (HEAP32[i10 >> 2] | 0) + (i1 << 3) + -8 | 0;
+ i17 = i3 + 8 | 0;
+ i2 = i2 - i17 | 0;
+ _memmove(i3 | 0, i17 | 0, i2 | 0) | 0;
+ i2 = i3 + (i2 >> 3 << 3) | 0;
+ i3 = HEAP32[i11 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break L69;
- i17 = i2 + -8 | 0;
+ if ((i3 | 0) == (i2 | 0)) break L69;
+ i17 = i3 + -8 | 0;
HEAP32[i11 >> 2] = i17;
- i2 = i17;
+ i3 = i17;
}
}
- switch (i2 | 0) {
+ switch (i3 | 0) {
case 1:
break;
case 3:
{
- if ((i3 | 0) != (HEAP32[9301] | 0)) break L69;
+ if ((i2 | 0) != (HEAP32[9669] | 0)) break L69;
i2 = HEAP32[i10 >> 2] | 0;
if (!((i1 | 0) > 2 ? (i1 | 0) < (((HEAP32[i11 >> 2] | 0) - i2 >> 3) + -1 | 0) : 0)) {
i41 = 53;
break L30;
}
- if ((__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement5getOpEv(i2 + (i6 + -3 << 3) | 0) | 0) != (HEAP32[9300] | 0)) break L69;
+ if ((__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement5getOpEv(i2 + (i6 + -3 << 3) | 0) | 0) != (HEAP32[9668] | 0)) break L69;
i17 = (HEAP32[i10 >> 2] | 0) + (i6 + -4 << 3) | 0;
i16 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i17) | 0;
- HEAP32[i23 >> 2] = i16;
+ HEAP32[i37 >> 2] = i16;
i16 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv((HEAP32[i10 >> 2] | 0) + (i6 + -2 << 3) | 0) | 0;
- HEAP32[i24 >> 2] = i16;
+ HEAP32[i20 >> 2] = i16;
i16 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv((HEAP32[i10 >> 2] | 0) + (i6 << 3) | 0) | 0;
- HEAP32[i25 >> 2] = i16;
- HEAP32[i29 >> 2] = HEAP32[i23 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i24 >> 2];
- HEAP32[i39 >> 2] = HEAP32[i25 >> 2];
- i16 = __ZN6cashew12ValueBuilder15makeConditionalENS_3RefES1_S1_(i29, i33, i39) | 0;
+ HEAP32[i21 >> 2] = i16;
+ HEAP32[i18 >> 2] = HEAP32[i37 >> 2];
+ HEAP32[i19 >> 2] = HEAP32[i20 >> 2];
+ HEAP32[i39 >> 2] = HEAP32[i21 >> 2];
+ i16 = __ZN6cashew12ValueBuilder15makeConditionalENS_3RefES1_S1_(i18, i19, i39) | 0;
HEAP32[i17 >> 2] = 1;
HEAP32[i17 + 4 >> 2] = i16;
i1 = (HEAP32[i10 >> 2] | 0) + (i1 << 3) | 0;
- HEAP32[i26 >> 2] = i1 + -16;
- HEAP32[i27 >> 2] = i1 + 16;
- HEAP32[i33 >> 2] = HEAP32[i26 >> 2];
- HEAP32[i39 >> 2] = HEAP32[i27 >> 2];
- __ZNSt3__16vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEE5eraseENS_11__wrap_iterIPKS6_EESD_(i10, i33, i39) | 0;
+ HEAP32[i22 >> 2] = i1 + -16;
+ HEAP32[i23 >> 2] = i1 + 16;
+ HEAP32[i19 >> 2] = HEAP32[i22 >> 2];
+ HEAP32[i39 >> 2] = HEAP32[i23 >> 2];
+ __ZNSt3__16vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEE5eraseENS_11__wrap_iterIPKS6_EESD_(i10, i19, i39) | 0;
i1 = (HEAP32[i11 >> 2] | 0) - (HEAP32[i10 >> 2] | 0) >> 3;
break L69;
}
@@ -27411,26 +26389,26 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionE
i2 = i17;
if ((i1 | 0) < (((HEAP32[i11 >> 2] | 0) - i17 >> 3) + -1 | 0)) {
if (i5 ? HEAP8[i2 + (i6 + -2 << 3) >> 0] | 0 : 0) break;
- HEAP32[i21 >> 2] = i4;
+ HEAP32[i35 >> 2] = i4;
i17 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i2 + (i6 << 3) | 0) | 0;
- HEAP32[i22 >> 2] = i17;
- HEAP32[i33 >> 2] = HEAP32[i21 >> 2];
- HEAP32[i39 >> 2] = HEAP32[i22 >> 2];
- i17 = __ZN6cashew12ValueBuilder10makePrefixENS_7IStringENS_3RefE(i33, i39) | 0;
- i2 = i2 + (i1 << 3) | 0;
- HEAP32[i2 >> 2] = 1;
- HEAP32[i2 + 4 >> 2] = i17;
- i2 = (HEAP32[i10 >> 2] | 0) + (i1 << 3) + 8 | 0;
- i17 = i2 + 8 | 0;
- i3 = (HEAP32[i11 >> 2] | 0) - i17 | 0;
- _memmove(i2 | 0, i17 | 0, i3 | 0) | 0;
- i3 = i2 + (i3 >> 3 << 3) | 0;
- i2 = HEAP32[i11 >> 2] | 0;
+ HEAP32[i36 >> 2] = i17;
+ HEAP32[i19 >> 2] = HEAP32[i35 >> 2];
+ HEAP32[i39 >> 2] = HEAP32[i36 >> 2];
+ i17 = __ZN6cashew12ValueBuilder10makePrefixENS_7IStringENS_3RefE(i19, i39) | 0;
+ i3 = i2 + (i1 << 3) | 0;
+ HEAP32[i3 >> 2] = 1;
+ HEAP32[i3 + 4 >> 2] = i17;
+ i3 = (HEAP32[i10 >> 2] | 0) + (i1 << 3) + 8 | 0;
+ i17 = i3 + 8 | 0;
+ i2 = (HEAP32[i11 >> 2] | 0) - i17 | 0;
+ _memmove(i3 | 0, i17 | 0, i2 | 0) | 0;
+ i2 = i3 + (i2 >> 3 << 3) | 0;
+ i3 = HEAP32[i11 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break L69;
- i17 = i2 + -8 | 0;
+ if ((i3 | 0) == (i2 | 0)) break L69;
+ i17 = i3 + -8 | 0;
HEAP32[i11 >> 2] = i17;
- i2 = i17;
+ i3 = i17;
}
}
} while (0);
@@ -27439,9 +26417,9 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionE
} while (0);
i9 = i9 + 28 | 0;
}
- if ((i41 | 0) == 53) ___assert_fail(23072, 22233, 794, 23106);
+ if ((i41 | 0) == 53) ___assert_fail(23660, 22821, 794, 23694);
i1 = HEAP32[i10 >> 2] | 0;
- if (((HEAP32[i11 >> 2] | 0) - i1 | 0) != 8) ___assert_fail(23122, 22233, 821, 23106);
+ if (((HEAP32[i11 >> 2] | 0) - i1 | 0) != 8) ___assert_fail(23710, 22821, 821, 23694);
i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i1) | 0;
i2 = HEAP32[i10 >> 2] | 0;
i3 = HEAP32[i11 >> 2] | 0;
@@ -27454,18 +26432,18 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionE
}
} else i41 = 4; while (0);
if ((i41 | 0) == 4) {
- i2 = i11 + -8 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- do if ((i1 | 0) != (HEAP32[i16 >> 2] | 0)) if ((i1 | 0) == (HEAP32[i11 + -4 >> 2] | 0)) {
+ i1 = i12 + -8 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ do if ((i2 | 0) != (HEAP32[i16 >> 2] | 0)) if ((i2 | 0) == (HEAP32[i12 + -4 >> 2] | 0)) {
__ZNSt3__16vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEE21__push_back_slow_pathIRKS6_EEvOT_(i16, i17);
break;
} else {
i39 = i17;
i40 = HEAP32[i39 + 4 >> 2] | 0;
- i41 = i1;
+ i41 = i2;
HEAP32[i41 >> 2] = HEAP32[i39 >> 2];
HEAP32[i41 + 4 >> 2] = i40;
- HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 8;
+ HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 8;
break;
} while (0);
i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i17) | 0;
@@ -27474,476 +26452,491 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionE
return i1 | 0;
}
-function __ZN4wasm10parseConstEN6cashew7IStringENS_8WasmTypeER10MixedArena(i1, i10, i2) {
+function __ZN4wasm10parseConstEN6cashew7IStringENS_8WasmTypeER10MixedArena(i1, i19, i2) {
i1 = i1 | 0;
- i10 = i10 | 0;
+ i19 = i19 | 0;
i2 = i2 | 0;
- var i3 = 0, i4 = 0, d5 = 0.0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, d21 = 0.0;
- i20 = STACKTOP;
- STACKTOP = STACKTOP + 368 | 0;
- i19 = i20 + 144 | 0;
- i18 = i20;
- i6 = i20 + 344 | 0;
- i7 = i20 + 332 | 0;
- i14 = i20 + 320 | 0;
- i12 = i20 + 308 | 0;
- i15 = i20 + 296 | 0;
- i13 = i20 + 284 | 0;
- i16 = HEAP32[i1 >> 2] | 0;
- i17 = __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(i2) | 0;
- HEAP32[i17 + 8 >> 2] = i10;
- HEAP32[i17 + 4 >> 2] = i10;
- L1 : do if ((i10 + -3 | 0) >>> 0 < 2) {
- if ((i16 | 0) == (HEAP32[9152] | 0)) switch (i10 | 0) {
+ var d3 = 0.0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, d24 = 0.0;
+ i23 = STACKTOP;
+ STACKTOP = STACKTOP + 432 | 0;
+ i21 = i23 + 208 | 0;
+ i20 = i23 + 64 | 0;
+ i6 = i23 + 408 | 0;
+ i13 = i23 + 48 | 0;
+ i14 = i23 + 32 | 0;
+ i7 = i23 + 396 | 0;
+ i15 = i23 + 16 | 0;
+ i16 = i23;
+ i11 = i23 + 384 | 0;
+ i8 = i23 + 372 | 0;
+ i12 = i23 + 360 | 0;
+ i9 = i23 + 348 | 0;
+ i4 = HEAP32[i1 >> 2] | 0;
+ i22 = __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(i2) | 0;
+ HEAP32[i22 + 4 >> 2] = i19;
+ L1 : do if ((i19 + -3 | 0) >>> 0 < 2) {
+ if ((i4 | 0) == (HEAP32[9518] | 0)) switch (i19 | 0) {
case 3:
{
- HEAPF32[i17 + 16 >> 2] = inf;
- i9 = i17;
+ HEAP32[i22 + 8 >> 2] = 3;
+ HEAPF32[i22 + 16 >> 2] = inf;
+ i18 = i22;
break L1;
}
case 4:
{
- HEAPF64[i17 + 16 >> 3] = inf;
- i9 = i17;
+ HEAP32[i22 + 8 >> 2] = 4;
+ HEAPF64[i22 + 16 >> 3] = inf;
+ i18 = i22;
break L1;
}
default:
{
- i9 = 0;
+ i18 = 0;
break L1;
}
}
- if ((i16 | 0) == (HEAP32[9195] | 0)) switch (i10 | 0) {
+ if ((i4 | 0) == (HEAP32[9562] | 0)) switch (i19 | 0) {
case 3:
{
- HEAPF32[i17 + 16 >> 2] = -inf;
- i9 = i17;
+ HEAP32[i22 + 8 >> 2] = 3;
+ HEAPF32[i22 + 16 >> 2] = -inf;
+ i18 = i22;
break L1;
}
case 4:
{
- HEAPF64[i17 + 16 >> 3] = -inf;
- i9 = i17;
+ HEAP32[i22 + 8 >> 2] = 4;
+ HEAPF64[i22 + 16 >> 3] = -inf;
+ i18 = i22;
break L1;
}
default:
{
- i9 = 0;
+ i18 = 0;
break L1;
}
}
- if ((i16 | 0) == (HEAP32[9151] | 0)) switch (i10 | 0) {
+ if ((i4 | 0) == (HEAP32[9517] | 0)) switch (i19 | 0) {
case 3:
{
- d5 = +_nan(44980);
- HEAPF32[i17 + 16 >> 2] = d5;
- i9 = i17;
+ d3 = +_nan(46453);
+ HEAP32[i22 + 8 >> 2] = 3;
+ HEAPF32[i22 + 16 >> 2] = d3;
+ i18 = i22;
break L1;
}
case 4:
{
- d5 = +_nan(44980);
- HEAPF64[i17 + 16 >> 3] = d5;
- i9 = i17;
+ d3 = +_nan(46453);
+ HEAP32[i22 + 8 >> 2] = 4;
+ HEAPF64[i22 + 16 >> 3] = d3;
+ i18 = i22;
break L1;
}
default:
{
- i9 = 0;
+ i18 = 0;
break L1;
}
}
- i8 = (HEAP8[i16 >> 0] | 0) == 45;
- i4 = i8 ? i16 + 1 | 0 : i16;
- i4 = (HEAP8[i4 >> 0] | 0) == 43 ? i4 + 1 | 0 : i4;
- if (((HEAP8[i4 >> 0] | 0) == 110 ? (HEAP8[i4 + 1 >> 0] | 0) == 97 : 0) ? (HEAP8[i4 + 2 >> 0] | 0) == 110 : 0) {
- i2 = (HEAP8[i4 + 3 >> 0] | 0) == 58;
- i1 = i4 + 4 | 0;
- i3 = i2 ? i1 : 0;
- do if (i2) {
- if ((HEAP8[i1 >> 0] | 0) == 48 ? (HEAP8[i4 + 5 >> 0] | 0) == 120 : 0) break;
- ___assert_fail(13304, 13360, 66, 13374);
+ i10 = (HEAP8[i4 >> 0] | 0) == 45;
+ i1 = i4 + 1 | 0;
+ i2 = i10 ? i1 : i4;
+ if (i10) i5 = i1; else i5 = (HEAP8[i2 >> 0] | 0) == 43 ? i2 + 1 | 0 : i2;
+ if (((HEAP8[i5 >> 0] | 0) == 110 ? (HEAP8[i5 + 1 >> 0] | 0) == 97 : 0) ? (HEAP8[i5 + 2 >> 0] | 0) == 110 : 0) {
+ i1 = (HEAP8[i5 + 3 >> 0] | 0) == 58;
+ i2 = i5 + 4 | 0;
+ i4 = i1 ? i2 : 0;
+ do if (i1) {
+ if ((HEAP8[i2 >> 0] | 0) == 48 ? (HEAP8[i5 + 5 >> 0] | 0) == 120 : 0) break;
+ ___assert_fail(13889, 13945, 70, 13959);
} while (0);
- switch (i10 | 0) {
+ switch (i19 | 0) {
case 3:
{
- if (i2) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i6, i3, _strlen(i3) | 0);
- i3 = i18 + 60 | 0;
- i2 = i18 + 8 | 0;
- HEAP32[i18 >> 2] = 2580;
- HEAP32[i3 >> 2] = 2600;
- HEAP32[i18 + 4 >> 2] = 0;
- __ZNSt3__18ios_base4initEPv(i18 + 60 | 0, i2);
- HEAP32[i18 + 132 >> 2] = 0;
- HEAP32[i18 + 136 >> 2] = -1;
- HEAP32[i18 >> 2] = 2524;
- HEAP32[i3 >> 2] = 2544;
- __ZNSt3__115basic_streambufIcNS_11char_traitsIcEEEC2Ev(i2);
- HEAP32[i2 >> 2] = 2616;
- i3 = i18 + 40 | 0;
- i1 = 0;
+ if (i1) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i6, i4, _strlen(i4) | 0);
+ i2 = i20 + 60 | 0;
+ i1 = i20 + 8 | 0;
+ HEAP32[i20 >> 2] = 2780;
+ HEAP32[i2 >> 2] = 2800;
+ HEAP32[i20 + 4 >> 2] = 0;
+ __ZNSt3__18ios_base4initEPv(i20 + 60 | 0, i1);
+ HEAP32[i20 + 132 >> 2] = 0;
+ HEAP32[i20 + 136 >> 2] = -1;
+ HEAP32[i20 >> 2] = 2724;
+ HEAP32[i2 >> 2] = 2744;
+ __ZNSt3__115basic_streambufIcNS_11char_traitsIcEEEC2Ev(i1);
+ HEAP32[i1 >> 2] = 2816;
+ i2 = i20 + 40 | 0;
+ i4 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i3 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i4 | 0) == 3) break;
+ HEAP32[i2 + (i4 << 2) >> 2] = 0;
+ i4 = i4 + 1 | 0;
}
- HEAP32[i18 + 52 >> 2] = 0;
- HEAP32[i18 + 56 >> 2] = 8;
- __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE(i2, i6);
+ HEAP32[i20 + 52 >> 2] = 0;
+ HEAP32[i20 + 56 >> 2] = 8;
+ __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE(i1, i6);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i6);
- i7 = i18 + (HEAP32[(HEAP32[i18 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0;
- HEAP32[i7 >> 2] = HEAP32[i7 >> 2] & -75 | 8;
- __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERj(i18, i19) | 0;
- HEAP32[i19 >> 2] = HEAP32[i19 >> 2] | 2139095040;
- __ZNSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i18);
- } else HEAP32[i19 >> 2] = 2143289344;
- if (i8) {
- i8 = HEAP32[i19 >> 2] | -2147483648;
- HEAP32[i19 >> 2] = i8;
- i1 = i8;
- d5 = (HEAP32[tempDoublePtr >> 2] = i8, +HEAPF32[tempDoublePtr >> 2]);
+ i19 = i20 + (HEAP32[(HEAP32[i20 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0;
+ HEAP32[i19 >> 2] = HEAP32[i19 >> 2] & -75 | 8;
+ __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERj(i20, i21) | 0;
+ HEAP32[i21 >> 2] = HEAP32[i21 >> 2] | 2139095040;
+ __ZNSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i20);
+ } else HEAP32[i21 >> 2] = 2143289344;
+ if (i10) {
+ i1 = HEAP32[i21 >> 2] | -2147483648;
+ HEAP32[i21 >> 2] = i1;
+ d3 = (HEAP32[tempDoublePtr >> 2] = i1, +HEAPF32[tempDoublePtr >> 2]);
} else {
- d5 = +HEAPF32[i19 >> 2];
- i1 = (HEAPF32[tempDoublePtr >> 2] = d5, HEAP32[tempDoublePtr >> 2] | 0);
- }
- d21 = +Math_abs(+d5);
- if ((HEAPF32[tempDoublePtr >> 2] = d21, HEAP32[tempDoublePtr >> 2] | 0) >>> 0 <= 2139095040) {
- i8 = i1 | 1;
- HEAP32[i19 >> 2] = i8;
- d5 = (HEAP32[tempDoublePtr >> 2] = i8, +HEAPF32[tempDoublePtr >> 2]);
- }
- HEAPF32[i17 + 16 >> 2] = d5;
- d21 = +Math_abs(+d5);
- if ((HEAPF32[tempDoublePtr >> 2] = d21, HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 2139095040) {
- i9 = i17;
- break L1;
- } else ___assert_fail(13385, 13360, 80, 13374);
- break;
+ d24 = +HEAPF32[i21 >> 2];
+ d3 = d24;
+ i1 = (HEAPF32[tempDoublePtr >> 2] = d24, HEAP32[tempDoublePtr >> 2] | 0);
+ }
+ d24 = +Math_abs(+d3);
+ if ((HEAPF32[tempDoublePtr >> 2] = d24, HEAP32[tempDoublePtr >> 2] | 0) >>> 0 <= 2139095040) {
+ i1 = i1 | 1;
+ HEAP32[i21 >> 2] = i1;
+ }
+ i18 = i22 + 8 | 0;
+ HEAP32[i14 >> 2] = 1;
+ HEAP32[i14 + 8 >> 2] = i1;
+ __ZN4wasm7Literal9castToF32Ev(i13, i14);
+ HEAP32[i18 >> 2] = HEAP32[i13 >> 2];
+ HEAP32[i18 + 4 >> 2] = HEAP32[i13 + 4 >> 2];
+ HEAP32[i18 + 8 >> 2] = HEAP32[i13 + 8 >> 2];
+ HEAP32[i18 + 12 >> 2] = HEAP32[i13 + 12 >> 2];
+ i18 = i22;
+ break L1;
}
case 4:
{
- if (i2) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i7, i3, _strlen(i3) | 0);
- i3 = i18 + 60 | 0;
- i2 = i18 + 8 | 0;
- HEAP32[i18 >> 2] = 2580;
- HEAP32[i3 >> 2] = 2600;
- HEAP32[i18 + 4 >> 2] = 0;
- __ZNSt3__18ios_base4initEPv(i18 + 60 | 0, i2);
- HEAP32[i18 + 132 >> 2] = 0;
- HEAP32[i18 + 136 >> 2] = -1;
- HEAP32[i18 >> 2] = 2524;
- HEAP32[i3 >> 2] = 2544;
+ if (i1) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i7, i4, _strlen(i4) | 0);
+ i1 = i20 + 60 | 0;
+ i2 = i20 + 8 | 0;
+ HEAP32[i20 >> 2] = 2780;
+ HEAP32[i1 >> 2] = 2800;
+ HEAP32[i20 + 4 >> 2] = 0;
+ __ZNSt3__18ios_base4initEPv(i20 + 60 | 0, i2);
+ HEAP32[i20 + 132 >> 2] = 0;
+ HEAP32[i20 + 136 >> 2] = -1;
+ HEAP32[i20 >> 2] = 2724;
+ HEAP32[i1 >> 2] = 2744;
__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEEC2Ev(i2);
- HEAP32[i2 >> 2] = 2616;
- i3 = i18 + 40 | 0;
- i1 = 0;
+ HEAP32[i2 >> 2] = 2816;
+ i1 = i20 + 40 | 0;
+ i4 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i3 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i4 | 0) == 3) break;
+ HEAP32[i1 + (i4 << 2) >> 2] = 0;
+ i4 = i4 + 1 | 0;
}
- HEAP32[i18 + 52 >> 2] = 0;
- HEAP32[i18 + 56 >> 2] = 8;
+ HEAP32[i20 + 52 >> 2] = 0;
+ HEAP32[i20 + 56 >> 2] = 8;
__ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE(i2, i7);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i7);
- i4 = i18 + (HEAP32[(HEAP32[i18 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0;
- HEAP32[i4 >> 2] = HEAP32[i4 >> 2] & -75 | 8;
- __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERy(i18, i19) | 0;
- i4 = i19;
- i6 = HEAP32[i4 + 4 >> 2] | 2146435072;
- i7 = i19;
- HEAP32[i7 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i7 + 4 >> 2] = i6;
- __ZNSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i18);
+ i14 = i20 + (HEAP32[(HEAP32[i20 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0;
+ HEAP32[i14 >> 2] = HEAP32[i14 >> 2] & -75 | 8;
+ __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERy(i20, i21) | 0;
+ i14 = i21;
+ i18 = HEAP32[i14 + 4 >> 2] | 2146435072;
+ i19 = i21;
+ HEAP32[i19 >> 2] = HEAP32[i14 >> 2];
+ HEAP32[i19 + 4 >> 2] = i18;
+ __ZNSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i20);
} else {
- i7 = i19;
- HEAP32[i7 >> 2] = 0;
- HEAP32[i7 + 4 >> 2] = 2146959360;
+ i20 = i21;
+ HEAP32[i20 >> 2] = 0;
+ HEAP32[i20 + 4 >> 2] = 2146959360;
}
- if (i8) {
- i2 = i19;
- i1 = HEAP32[i2 >> 2] | 0;
- i2 = HEAP32[i2 + 4 >> 2] | -2147483648;
- i8 = i19;
- HEAP32[i8 >> 2] = i1;
- HEAP32[i8 + 4 >> 2] = i2;
- HEAP32[tempDoublePtr >> 2] = i1;
- HEAP32[tempDoublePtr + 4 >> 2] = i2;
- d5 = +HEAPF64[tempDoublePtr >> 3];
+ if (i10) {
+ i1 = i21;
+ i2 = HEAP32[i1 >> 2] | 0;
+ i1 = HEAP32[i1 + 4 >> 2] | -2147483648;
+ i20 = i21;
+ HEAP32[i20 >> 2] = i2;
+ HEAP32[i20 + 4 >> 2] = i1;
+ HEAP32[tempDoublePtr >> 2] = i2;
+ HEAP32[tempDoublePtr + 4 >> 2] = i1;
+ d3 = +HEAPF64[tempDoublePtr >> 3];
} else {
- d5 = +HEAPF64[i19 >> 3];
- HEAPF64[tempDoublePtr >> 3] = d5;
- i1 = HEAP32[tempDoublePtr >> 2] | 0;
- i2 = HEAP32[tempDoublePtr + 4 >> 2] | 0;
- }
- d21 = +Math_abs(+d5);
- HEAPF64[tempDoublePtr >> 3] = d21;
- i8 = HEAP32[tempDoublePtr + 4 >> 2] | 0;
- if (!(i8 >>> 0 > 2146435072 | (i8 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0)) {
- i8 = i1 | 1;
- i7 = i19;
- HEAP32[i7 >> 2] = i8;
- HEAP32[i7 + 4 >> 2] = i2;
- HEAP32[tempDoublePtr >> 2] = i8;
- HEAP32[tempDoublePtr + 4 >> 2] = i2;
- d5 = +HEAPF64[tempDoublePtr >> 3];
- }
- HEAPF64[i17 + 16 >> 3] = d5;
- d21 = +Math_abs(+d5);
- HEAPF64[tempDoublePtr >> 3] = d21;
- i8 = HEAP32[tempDoublePtr + 4 >> 2] | 0;
- if (i8 >>> 0 > 2146435072 | (i8 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0) {
- i9 = i17;
- break L1;
- } else ___assert_fail(13407, 13360, 95, 13374);
- break;
+ d3 = +HEAPF64[i21 >> 3];
+ HEAPF64[tempDoublePtr >> 3] = d3;
+ i2 = HEAP32[tempDoublePtr >> 2] | 0;
+ i1 = HEAP32[tempDoublePtr + 4 >> 2] | 0;
+ }
+ d24 = +Math_abs(+d3);
+ HEAPF64[tempDoublePtr >> 3] = d24;
+ i20 = HEAP32[tempDoublePtr + 4 >> 2] | 0;
+ if (!(i20 >>> 0 > 2146435072 | (i20 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0)) {
+ i2 = i2 | 1;
+ HEAP32[i21 >> 2] = i2;
+ HEAP32[i21 + 4 >> 2] = i1;
+ }
+ i18 = i22 + 8 | 0;
+ HEAP32[i16 >> 2] = 2;
+ i21 = i16 + 8 | 0;
+ HEAP32[i21 >> 2] = i2;
+ HEAP32[i21 + 4 >> 2] = i1;
+ __ZN4wasm7Literal9castToF64Ev(i15, i16);
+ HEAP32[i18 >> 2] = HEAP32[i15 >> 2];
+ HEAP32[i18 + 4 >> 2] = HEAP32[i15 + 4 >> 2];
+ HEAP32[i18 + 8 >> 2] = HEAP32[i15 + 8 >> 2];
+ HEAP32[i18 + 12 >> 2] = HEAP32[i15 + 12 >> 2];
+ i18 = i22;
+ break L1;
}
default:
{
- i9 = 0;
+ i18 = 0;
break L1;
}
}
}
- if ((i16 | 0) == (HEAP32[9196] | 0)) switch (i10 | 0) {
+ if ((i4 | 0) == (HEAP32[9563] | 0)) switch (i19 | 0) {
case 3:
{
- d21 = -+_nan(44980);
- HEAPF32[i17 + 16 >> 2] = d21;
- i9 = i17;
+ d24 = -+_nan(46453);
+ HEAP32[i22 + 8 >> 2] = 3;
+ HEAPF32[i22 + 16 >> 2] = d24;
+ i18 = i22;
break L1;
}
case 4:
{
- d21 = -+_nan(44980);
- HEAPF64[i17 + 16 >> 3] = d21;
- i9 = i17;
+ d24 = -+_nan(46453);
+ HEAP32[i22 + 8 >> 2] = 4;
+ HEAPF64[i22 + 16 >> 3] = d24;
+ i18 = i22;
break L1;
}
default:
{
- i9 = 0;
+ i18 = 0;
break L1;
}
- } else i11 = 54;
- } else i11 = 54; while (0);
- L75 : do if ((i11 | 0) == 54) switch (i10 | 0) {
- case 1:
- {
- i2 = HEAP8[i16 >> 0] | 0;
- switch (i2 << 24 >> 24) {
- case 48:
- {
- i1 = i16 + 1 | 0;
- if ((HEAP8[i1 >> 0] | 0) == 120) i11 = 59; else i11 = 63;
- break;
- }
- case 45:
- {
- i1 = i16 + 1 | 0;
- if ((HEAP8[i1 >> 0] | 0) == 48 ? (HEAP8[i16 + 2 >> 0] | 0) == 120 : 0) i11 = 59; else i11 = 63;
- break;
- }
- default:
- i11 = 63;
- }
- if ((i11 | 0) == 59) {
- i4 = i2 << 24 >> 24 == 45;
- i3 = i4 ? i1 : i16;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i14, i3, _strlen(i3) | 0);
- i3 = i19 + 60 | 0;
- i2 = i19 + 8 | 0;
- HEAP32[i19 >> 2] = 2580;
- HEAP32[i3 >> 2] = 2600;
- HEAP32[i19 + 4 >> 2] = 0;
- __ZNSt3__18ios_base4initEPv(i19 + 60 | 0, i2);
- HEAP32[i19 + 132 >> 2] = 0;
- HEAP32[i19 + 136 >> 2] = -1;
- HEAP32[i19 >> 2] = 2524;
- HEAP32[i3 >> 2] = 2544;
- __ZNSt3__115basic_streambufIcNS_11char_traitsIcEEEC2Ev(i2);
- HEAP32[i2 >> 2] = 2616;
- i3 = i19 + 40 | 0;
- i1 = 0;
- while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i3 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
- }
- HEAP32[i19 + 52 >> 2] = 0;
- HEAP32[i19 + 56 >> 2] = 8;
- __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE(i2, i14);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i14);
- i9 = i19 + (HEAP32[(HEAP32[i19 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0;
- HEAP32[i9 >> 2] = HEAP32[i9 >> 2] & -75 | 8;
- __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERj(i19, i18) | 0;
- i9 = HEAP32[i18 >> 2] | 0;
- HEAP32[i17 + 16 >> 2] = i4 ? 0 - i9 | 0 : i9;
- __ZNSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i19);
- i9 = i17;
- break L75;
- } else if ((i11 | 0) == 63) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i12, i16, _strlen(i16) | 0);
- i3 = i19 + 60 | 0;
- i2 = i19 + 8 | 0;
- HEAP32[i19 >> 2] = 2580;
- HEAP32[i3 >> 2] = 2600;
- HEAP32[i19 + 4 >> 2] = 0;
- __ZNSt3__18ios_base4initEPv(i19 + 60 | 0, i2);
- HEAP32[i19 + 132 >> 2] = 0;
- HEAP32[i19 + 136 >> 2] = -1;
- HEAP32[i19 >> 2] = 2524;
- HEAP32[i3 >> 2] = 2544;
- __ZNSt3__115basic_streambufIcNS_11char_traitsIcEEEC2Ev(i2);
- HEAP32[i2 >> 2] = 2616;
- i3 = i19 + 40 | 0;
- i1 = 0;
- while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i3 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ } else i17 = 52;
+ } else i17 = 52; while (0);
+ L72 : do if ((i17 | 0) == 52) {
+ L74 : do switch (i19 | 0) {
+ case 1:
+ {
+ i2 = HEAP8[i4 >> 0] | 0;
+ switch (i2 << 24 >> 24) {
+ case 48:
+ {
+ i1 = i4 + 1 | 0;
+ if ((HEAP8[i1 >> 0] | 0) == 120) i17 = 57; else i17 = 61;
+ break;
+ }
+ case 45:
+ {
+ i1 = i4 + 1 | 0;
+ if ((HEAP8[i1 >> 0] | 0) == 48 ? (HEAP8[i4 + 2 >> 0] | 0) == 120 : 0) i17 = 57; else i17 = 61;
+ break;
+ }
+ default:
+ i17 = 61;
+ }
+ if ((i17 | 0) == 57) {
+ i5 = i2 << 24 >> 24 == 45;
+ i2 = i5 ? i1 : i4;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i11, i2, _strlen(i2) | 0);
+ i2 = i21 + 60 | 0;
+ i1 = i21 + 8 | 0;
+ HEAP32[i21 >> 2] = 2780;
+ HEAP32[i2 >> 2] = 2800;
+ HEAP32[i21 + 4 >> 2] = 0;
+ __ZNSt3__18ios_base4initEPv(i21 + 60 | 0, i1);
+ HEAP32[i21 + 132 >> 2] = 0;
+ HEAP32[i21 + 136 >> 2] = -1;
+ HEAP32[i21 >> 2] = 2724;
+ HEAP32[i2 >> 2] = 2744;
+ __ZNSt3__115basic_streambufIcNS_11char_traitsIcEEEC2Ev(i1);
+ HEAP32[i1 >> 2] = 2816;
+ i2 = i21 + 40 | 0;
+ i4 = 0;
+ while (1) {
+ if ((i4 | 0) == 3) break;
+ HEAP32[i2 + (i4 << 2) >> 2] = 0;
+ i4 = i4 + 1 | 0;
+ }
+ HEAP32[i21 + 52 >> 2] = 0;
+ HEAP32[i21 + 56 >> 2] = 8;
+ __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE(i1, i11);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i11);
+ i1 = i21 + (HEAP32[(HEAP32[i21 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0;
+ HEAP32[i1 >> 2] = HEAP32[i1 >> 2] & -75 | 8;
+ __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERj(i21, i20) | 0;
+ i20 = HEAP32[i20 >> 2] | 0;
+ i1 = i22 + 8 | 0;
+ HEAP32[i1 >> 2] = 1;
+ HEAP32[i22 + 16 >> 2] = i5 ? 0 - i20 | 0 : i20;
+ __ZNSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i21);
+ break L74;
+ } else if ((i17 | 0) == 61) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i8, i4, _strlen(i4) | 0);
+ i2 = i21 + 60 | 0;
+ i1 = i21 + 8 | 0;
+ HEAP32[i21 >> 2] = 2780;
+ HEAP32[i2 >> 2] = 2800;
+ HEAP32[i21 + 4 >> 2] = 0;
+ __ZNSt3__18ios_base4initEPv(i21 + 60 | 0, i1);
+ HEAP32[i21 + 132 >> 2] = 0;
+ HEAP32[i21 + 136 >> 2] = -1;
+ HEAP32[i21 >> 2] = 2724;
+ HEAP32[i2 >> 2] = 2744;
+ __ZNSt3__115basic_streambufIcNS_11char_traitsIcEEEC2Ev(i1);
+ HEAP32[i1 >> 2] = 2816;
+ i2 = i21 + 40 | 0;
+ i4 = 0;
+ while (1) {
+ if ((i4 | 0) == 3) break;
+ HEAP32[i2 + (i4 << 2) >> 2] = 0;
+ i4 = i4 + 1 | 0;
+ }
+ HEAP32[i21 + 52 >> 2] = 0;
+ HEAP32[i21 + 56 >> 2] = 8;
+ __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE(i1, i8);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i8);
+ __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERi(i21, i20) | 0;
+ i20 = HEAP32[i20 >> 2] | 0;
+ i1 = i22 + 8 | 0;
+ HEAP32[i1 >> 2] = 1;
+ HEAP32[i22 + 16 >> 2] = i20;
+ __ZNSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i21);
+ break L74;
}
- HEAP32[i19 + 52 >> 2] = 0;
- HEAP32[i19 + 56 >> 2] = 8;
- __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE(i2, i12);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i12);
- __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERi(i19, i18) | 0;
- HEAP32[i17 + 16 >> 2] = HEAP32[i18 >> 2];
- __ZNSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i19);
- i9 = i17;
- break L75;
+ break;
}
- break;
- }
- case 2:
- {
- i2 = HEAP8[i16 >> 0] | 0;
- switch (i2 << 24 >> 24) {
- case 48:
- {
- i1 = i16 + 1 | 0;
- if ((HEAP8[i1 >> 0] | 0) == 120) i11 = 71; else i11 = 75;
- break;
- }
- case 45:
- {
- i1 = i16 + 1 | 0;
- if ((HEAP8[i1 >> 0] | 0) == 48 ? (HEAP8[i16 + 2 >> 0] | 0) == 120 : 0) i11 = 71; else i11 = 75;
- break;
- }
- default:
- i11 = 75;
- }
- if ((i11 | 0) == 71) {
- i4 = i2 << 24 >> 24 == 45;
- i3 = i4 ? i1 : i16;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i15, i3, _strlen(i3) | 0);
- i3 = i19 + 60 | 0;
- i2 = i19 + 8 | 0;
- HEAP32[i19 >> 2] = 2580;
- HEAP32[i3 >> 2] = 2600;
- HEAP32[i19 + 4 >> 2] = 0;
- __ZNSt3__18ios_base4initEPv(i19 + 60 | 0, i2);
- HEAP32[i19 + 132 >> 2] = 0;
- HEAP32[i19 + 136 >> 2] = -1;
- HEAP32[i19 >> 2] = 2524;
- HEAP32[i3 >> 2] = 2544;
- __ZNSt3__115basic_streambufIcNS_11char_traitsIcEEEC2Ev(i2);
- HEAP32[i2 >> 2] = 2616;
- i3 = i19 + 40 | 0;
- i1 = 0;
- while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i3 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
- }
- HEAP32[i19 + 52 >> 2] = 0;
- HEAP32[i19 + 56 >> 2] = 8;
- __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE(i2, i15);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i15);
- i16 = i19 + (HEAP32[(HEAP32[i19 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0;
- HEAP32[i16 >> 2] = HEAP32[i16 >> 2] & -75 | 8;
- __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERy(i19, i18) | 0;
- i16 = HEAP32[i18 >> 2] | 0;
- i18 = HEAP32[i18 + 4 >> 2] | 0;
- i15 = _i64Subtract(0, 0, i16 | 0, i18 | 0) | 0;
- i9 = i17 + 16 | 0;
- HEAP32[i9 >> 2] = i4 ? i15 : i16;
- HEAP32[i9 + 4 >> 2] = i4 ? tempRet0 : i18;
- __ZNSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i19);
- i9 = i17;
- break L75;
- } else if ((i11 | 0) == 75) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i13, i16, _strlen(i16) | 0);
- i3 = i19 + 60 | 0;
- i2 = i19 + 8 | 0;
- HEAP32[i19 >> 2] = 2580;
- HEAP32[i3 >> 2] = 2600;
- HEAP32[i19 + 4 >> 2] = 0;
- __ZNSt3__18ios_base4initEPv(i19 + 60 | 0, i2);
- HEAP32[i19 + 132 >> 2] = 0;
- HEAP32[i19 + 136 >> 2] = -1;
- HEAP32[i19 >> 2] = 2524;
- HEAP32[i3 >> 2] = 2544;
- __ZNSt3__115basic_streambufIcNS_11char_traitsIcEEEC2Ev(i2);
- HEAP32[i2 >> 2] = 2616;
- i3 = i19 + 40 | 0;
- i1 = 0;
- while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i3 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ case 2:
+ {
+ i2 = HEAP8[i4 >> 0] | 0;
+ switch (i2 << 24 >> 24) {
+ case 48:
+ {
+ i1 = i4 + 1 | 0;
+ if ((HEAP8[i1 >> 0] | 0) == 120) i17 = 69; else i17 = 73;
+ break;
+ }
+ case 45:
+ {
+ i1 = i4 + 1 | 0;
+ if ((HEAP8[i1 >> 0] | 0) == 48 ? (HEAP8[i4 + 2 >> 0] | 0) == 120 : 0) i17 = 69; else i17 = 73;
+ break;
+ }
+ default:
+ i17 = 73;
+ }
+ if ((i17 | 0) == 69) {
+ i5 = i2 << 24 >> 24 == 45;
+ i2 = i5 ? i1 : i4;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i12, i2, _strlen(i2) | 0);
+ i2 = i21 + 60 | 0;
+ i1 = i21 + 8 | 0;
+ HEAP32[i21 >> 2] = 2780;
+ HEAP32[i2 >> 2] = 2800;
+ HEAP32[i21 + 4 >> 2] = 0;
+ __ZNSt3__18ios_base4initEPv(i21 + 60 | 0, i1);
+ HEAP32[i21 + 132 >> 2] = 0;
+ HEAP32[i21 + 136 >> 2] = -1;
+ HEAP32[i21 >> 2] = 2724;
+ HEAP32[i2 >> 2] = 2744;
+ __ZNSt3__115basic_streambufIcNS_11char_traitsIcEEEC2Ev(i1);
+ HEAP32[i1 >> 2] = 2816;
+ i2 = i21 + 40 | 0;
+ i4 = 0;
+ while (1) {
+ if ((i4 | 0) == 3) break;
+ HEAP32[i2 + (i4 << 2) >> 2] = 0;
+ i4 = i4 + 1 | 0;
+ }
+ HEAP32[i21 + 52 >> 2] = 0;
+ HEAP32[i21 + 56 >> 2] = 8;
+ __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE(i1, i12);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i12);
+ i17 = i21 + (HEAP32[(HEAP32[i21 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0;
+ HEAP32[i17 >> 2] = HEAP32[i17 >> 2] & -75 | 8;
+ __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERy(i21, i20) | 0;
+ i17 = i20;
+ i16 = HEAP32[i17 >> 2] | 0;
+ i17 = HEAP32[i17 + 4 >> 2] | 0;
+ i15 = _i64Subtract(0, 0, i16 | 0, i17 | 0) | 0;
+ i1 = i22 + 8 | 0;
+ HEAP32[i1 >> 2] = 2;
+ i20 = i22 + 16 | 0;
+ HEAP32[i20 >> 2] = i5 ? i15 : i16;
+ HEAP32[i20 + 4 >> 2] = i5 ? tempRet0 : i17;
+ __ZNSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i21);
+ break L74;
+ } else if ((i17 | 0) == 73) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i9, i4, _strlen(i4) | 0);
+ i2 = i21 + 60 | 0;
+ i1 = i21 + 8 | 0;
+ HEAP32[i21 >> 2] = 2780;
+ HEAP32[i2 >> 2] = 2800;
+ HEAP32[i21 + 4 >> 2] = 0;
+ __ZNSt3__18ios_base4initEPv(i21 + 60 | 0, i1);
+ HEAP32[i21 + 132 >> 2] = 0;
+ HEAP32[i21 + 136 >> 2] = -1;
+ HEAP32[i21 >> 2] = 2724;
+ HEAP32[i2 >> 2] = 2744;
+ __ZNSt3__115basic_streambufIcNS_11char_traitsIcEEEC2Ev(i1);
+ HEAP32[i1 >> 2] = 2816;
+ i2 = i21 + 40 | 0;
+ i4 = 0;
+ while (1) {
+ if ((i4 | 0) == 3) break;
+ HEAP32[i2 + (i4 << 2) >> 2] = 0;
+ i4 = i4 + 1 | 0;
+ }
+ HEAP32[i21 + 52 >> 2] = 0;
+ HEAP32[i21 + 56 >> 2] = 8;
+ __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE(i1, i9);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i9);
+ __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERx(i21, i20) | 0;
+ i17 = i20;
+ i16 = HEAP32[i17 >> 2] | 0;
+ i17 = HEAP32[i17 + 4 >> 2] | 0;
+ i1 = i22 + 8 | 0;
+ HEAP32[i1 >> 2] = 2;
+ i20 = i22 + 16 | 0;
+ HEAP32[i20 >> 2] = i16;
+ HEAP32[i20 + 4 >> 2] = i17;
+ __ZNSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i21);
+ break L74;
}
- HEAP32[i19 + 52 >> 2] = 0;
- HEAP32[i19 + 56 >> 2] = 8;
- __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE(i2, i13);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i13);
- __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERx(i19, i18) | 0;
- i16 = i18;
- i18 = HEAP32[i16 + 4 >> 2] | 0;
- i9 = i17 + 16 | 0;
- HEAP32[i9 >> 2] = HEAP32[i16 >> 2];
- HEAP32[i9 + 4 >> 2] = i18;
- __ZNSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i19);
- i9 = i17;
- break L75;
+ break;
}
- break;
- }
- case 3:
- {
- d21 = +_strtof(i16, i19);
- HEAPF32[i17 + 16 >> 2] = d21;
- d21 = +Math_abs(+d21);
- if ((HEAPF32[tempDoublePtr >> 2] = d21, HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 2139095040) ___assert_fail(13429, 13360, 149, 13374); else {
- i9 = i17;
- break L75;
+ case 3:
+ {
+ d24 = +_strtof(i4, i21);
+ i1 = i22 + 8 | 0;
+ HEAP32[i1 >> 2] = 3;
+ HEAPF32[i22 + 16 >> 2] = d24;
+ break;
}
- break;
- }
- case 4:
- {
- d21 = +_strtod(i16, i19);
- HEAPF64[i17 + 16 >> 3] = d21;
- d21 = +Math_abs(+d21);
- HEAPF64[tempDoublePtr >> 3] = d21;
- i19 = HEAP32[tempDoublePtr + 4 >> 2] | 0;
- if (i19 >>> 0 > 2146435072 | (i19 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0) ___assert_fail(13452, 13360, 155, 13374); else {
- i9 = i17;
- break L75;
+ case 4:
+ {
+ d24 = +_strtod(i4, i21);
+ i1 = i22 + 8 | 0;
+ HEAP32[i1 >> 2] = 4;
+ HEAPF64[i22 + 16 >> 3] = d24;
+ break;
}
- break;
- }
- default:
- {
- i9 = 0;
- break L75;
- }
+ default:
+ {
+ i18 = 0;
+ break L72;
+ }
+ } while (0);
+ if ((HEAP32[i1 >> 2] | 0) == (i19 | 0)) i18 = i22; else ___assert_fail(13970, 13945, 160, 13959);
} while (0);
- STACKTOP = i20;
- return i9 | 0;
+ STACKTOP = i23;
+ return i18 | 0;
}
function __ZN10__cxxabiv112_GLOBAL__N_118parse_substitutionINS0_2DbEEEPKcS4_S4_RT_(i12, i5, i15) {
@@ -27955,11 +26948,11 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_substitutionINS0_2DbEEEPKcS4_S4_R
STACKTOP = STACKTOP + 176 | 0;
i14 = i16 + 144 | 0;
i6 = i16 + 120 | 0;
- i11 = i16 + 96 | 0;
- i7 = i16 + 72 | 0;
- i8 = i16 + 48 | 0;
- i9 = i16 + 24 | 0;
- i10 = i16;
+ i7 = i16 + 96 | 0;
+ i8 = i16 + 72 | 0;
+ i9 = i16 + 48 | 0;
+ i10 = i16 + 24 | 0;
+ i11 = i16;
L1 : do if ((i5 - i12 | 0) > 1 ? (HEAP8[i12 >> 0] | 0) == 83 : 0) {
i2 = i12 + 1 | 0;
i1 = HEAP8[i2 >> 0] | 0;
@@ -27967,7 +26960,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_substitutionINS0_2DbEEEPKcS4_S4_R
switch (i3 | 0) {
case 97:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj15EEERAT__Kc(i6, 35006);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj15EEERAT__Kc(i6, 36470);
i1 = i15 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i13 = HEAP32[i15 + 8 >> 2] | 0;
@@ -28000,13 +26993,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_substitutionINS0_2DbEEEPKcS4_S4_R
}
case 98:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj18EEERAT__Kc(i11, 35021);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj18EEERAT__Kc(i7, 36485);
i1 = i15 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i13 = HEAP32[i15 + 8 >> 2] | 0;
i3 = i13;
if (i2 >>> 0 < i13 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i11);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i7);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i15 >> 2] | 0;
@@ -28021,25 +27014,25 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_substitutionINS0_2DbEEEPKcS4_S4_R
} else i1 = 2147483647;
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i14, i1, i4, i15 + 12 | 0);
i13 = i14 + 8 | 0;
- i10 = HEAP32[i13 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i10, i11);
- HEAP32[i13 >> 2] = i10 + 24;
+ i11 = HEAP32[i13 >> 2] | 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i11, i7);
+ HEAP32[i13 >> 2] = i11 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i15, i14);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i14);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i11);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7);
i13 = i12 + 2 | 0;
break L1;
}
case 115:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj12EEERAT__Kc(i7, 35039);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj12EEERAT__Kc(i8, 36503);
i1 = i15 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i13 = HEAP32[i15 + 8 >> 2] | 0;
i3 = i13;
if (i2 >>> 0 < i13 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i7);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i8);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i15 >> 2] | 0;
@@ -28055,57 +27048,57 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_substitutionINS0_2DbEEEPKcS4_S4_R
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i14, i1, i4, i15 + 12 | 0);
i13 = i14 + 8 | 0;
i11 = HEAP32[i13 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i11, i7);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i11, i8);
HEAP32[i13 >> 2] = i11 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i15, i14);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i14);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8);
i13 = i12 + 2 | 0;
break L1;
}
case 105:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj13EEERAT__Kc(i8, 35051);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj13EEERAT__Kc(i9, 36515);
i1 = i15 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i13 = HEAP32[i15 + 8 >> 2] | 0;
- i3 = i13;
+ i4 = i13;
if (i2 >>> 0 < i13 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i8);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i9);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i15 >> 2] | 0;
i13 = i2 - i1 | 0;
- i4 = (i13 | 0) / 24 | 0;
- i2 = i4 + 1 | 0;
+ i3 = (i13 | 0) / 24 | 0;
+ i2 = i3 + 1 | 0;
if ((i13 | 0) < -24) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i15);
- i1 = (i3 - i1 | 0) / 24 | 0;
+ i1 = (i4 - i1 | 0) / 24 | 0;
if (i1 >>> 0 < 1073741823) {
i1 = i1 << 1;
i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 2147483647;
- __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i14, i1, i4, i15 + 12 | 0);
+ __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i14, i1, i3, i15 + 12 | 0);
i13 = i14 + 8 | 0;
i11 = HEAP32[i13 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i11, i8);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i11, i9);
HEAP32[i13 >> 2] = i11 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i15, i14);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i14);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i9);
i13 = i12 + 2 | 0;
break L1;
}
case 111:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj13EEERAT__Kc(i9, 35064);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj13EEERAT__Kc(i10, 36528);
i1 = i15 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i13 = HEAP32[i15 + 8 >> 2] | 0;
i3 = i13;
if (i2 >>> 0 < i13 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i9);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i10);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i15 >> 2] | 0;
@@ -28121,24 +27114,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_substitutionINS0_2DbEEEPKcS4_S4_R
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i14, i1, i4, i15 + 12 | 0);
i13 = i14 + 8 | 0;
i11 = HEAP32[i13 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i11, i9);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i11, i10);
HEAP32[i13 >> 2] = i11 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i15, i14);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i14);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i9);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i10);
i13 = i12 + 2 | 0;
break L1;
}
case 100:
{
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj14EEERAT__Kc(i10, 35077);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj14EEERAT__Kc(i11, 36541);
i1 = i15 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i13 = HEAP32[i15 + 8 >> 2] | 0;
i3 = i13;
if (i2 >>> 0 < i13 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i10);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i11);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i15 >> 2] | 0;
@@ -28153,13 +27146,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_substitutionINS0_2DbEEEPKcS4_S4_R
} else i1 = 2147483647;
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i14, i1, i4, i15 + 12 | 0);
i13 = i14 + 8 | 0;
- i11 = HEAP32[i13 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i11, i10);
- HEAP32[i13 >> 2] = i11 + 24;
+ i10 = HEAP32[i13 >> 2] | 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i10, i11);
+ HEAP32[i13 >> 2] = i10 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i15, i14);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i14);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i10);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i11);
i13 = i12 + 2 | 0;
break L1;
}
@@ -28171,18 +27164,18 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_substitutionINS0_2DbEEEPKcS4_S4_R
break L1;
}
i7 = HEAP32[i1 + 4 >> 2] | 0;
- i9 = i15 + 4 | 0;
- i10 = i15 + 8 | 0;
- i11 = i15 + 12 | 0;
- i8 = i14 + 8 | 0;
+ i8 = i15 + 4 | 0;
+ i9 = i15 + 8 | 0;
+ i10 = i15 + 12 | 0;
+ i11 = i14 + 8 | 0;
i6 = HEAP32[i1 >> 2] | 0;
while (1) {
if ((i6 | 0) == (i7 | 0)) {
i1 = 55;
break;
}
- i1 = HEAP32[i9 >> 2] | 0;
- i5 = HEAP32[i10 >> 2] | 0;
+ i1 = HEAP32[i8 >> 2] | 0;
+ i5 = HEAP32[i9 >> 2] | 0;
i2 = i5;
if ((i1 | 0) == (i5 | 0)) {
i3 = HEAP32[i15 >> 2] | 0;
@@ -28198,17 +27191,17 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_substitutionINS0_2DbEEEPKcS4_S4_R
i1 = i1 << 1;
i1 = i1 >>> 0 < i4 >>> 0 ? i4 : i1;
} else i1 = 2147483647;
- __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i14, i1, i5, i11);
- i5 = HEAP32[i8 >> 2] | 0;
+ __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i14, i1, i5, i10);
+ i5 = HEAP32[i11 >> 2] | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i5, i6);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i5 + 12 | 0, i6 + 12 | 0);
- HEAP32[i8 >> 2] = i5 + 24;
+ HEAP32[i11 >> 2] = i5 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i15, i14);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i14);
} else {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i1, i6);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i1 + 12 | 0, i6 + 12 | 0);
- HEAP32[i9 >> 2] = (HEAP32[i9 >> 2] | 0) + 24;
+ HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 24;
}
i6 = i6 + 24 | 0;
}
@@ -28252,26 +27245,26 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_substitutionINS0_2DbEEEPKcS4_S4_R
i13 = i12;
break L1;
}
- i2 = i2 + 1 | 0;
+ i1 = i2 + 1 | 0;
i11 = HEAP32[i15 + 16 >> 2] | 0;
- i1 = i11;
- if (i2 >>> 0 >= (HEAP32[i15 + 20 >> 2] | 0) - i11 >> 4 >>> 0) {
+ i2 = i11;
+ if (i1 >>> 0 >= (HEAP32[i15 + 20 >> 2] | 0) - i11 >> 4 >>> 0) {
i13 = i12;
break L1;
}
- i8 = HEAP32[i1 + (i2 << 4) + 4 >> 2] | 0;
- i10 = i15 + 4 | 0;
- i11 = i15 + 8 | 0;
- i12 = i15 + 12 | 0;
- i9 = i14 + 8 | 0;
- i7 = HEAP32[i1 + (i2 << 4) >> 2] | 0;
+ i8 = HEAP32[i2 + (i1 << 4) + 4 >> 2] | 0;
+ i9 = i15 + 4 | 0;
+ i10 = i15 + 8 | 0;
+ i11 = i15 + 12 | 0;
+ i12 = i14 + 8 | 0;
+ i7 = HEAP32[i2 + (i1 << 4) >> 2] | 0;
while (1) {
if ((i7 | 0) == (i8 | 0)) {
i1 = 76;
break;
}
- i1 = HEAP32[i10 >> 2] | 0;
- i6 = HEAP32[i11 >> 2] | 0;
+ i1 = HEAP32[i9 >> 2] | 0;
+ i6 = HEAP32[i10 >> 2] | 0;
i2 = i6;
if ((i1 | 0) == (i6 | 0)) {
i3 = HEAP32[i15 >> 2] | 0;
@@ -28287,17 +27280,17 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_substitutionINS0_2DbEEEPKcS4_S4_R
i1 = i1 << 1;
i1 = i1 >>> 0 < i5 >>> 0 ? i5 : i1;
} else i1 = 2147483647;
- __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i14, i1, i6, i12);
- i6 = HEAP32[i9 >> 2] | 0;
+ __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i14, i1, i6, i11);
+ i6 = HEAP32[i12 >> 2] | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i6, i7);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i6 + 12 | 0, i7 + 12 | 0);
- HEAP32[i9 >> 2] = i6 + 24;
+ HEAP32[i12 >> 2] = i6 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i15, i14);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i14);
} else {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i1, i7);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i1 + 12 | 0, i7 + 12 | 0);
- HEAP32[i10 >> 2] = (HEAP32[i10 >> 2] | 0) + 24;
+ HEAP32[i9 >> 2] = (HEAP32[i9 >> 2] | 0) + 24;
}
i7 = i7 + 24 | 0;
}
@@ -28343,7 +27336,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S
i1 = i15;
break;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 34450) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 35914) | 0;
break;
}
if (((i2 - i4 | 0) > 2 ? (HEAP8[i4 >> 0] | 0) == 115 : 0) ? (HEAP8[i4 + 1 >> 0] | 0) == 114 : 0) {
@@ -28365,14 +27358,14 @@ function __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i16, i1 + -24 | 0);
i1 = HEAP32[i9 >> 2] | 0;
- i3 = i1 + -24 | 0;
- i2 = i1;
+ i2 = i1 + -24 | 0;
+ i3 = i1;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break;
- i11 = i2 + -24 | 0;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i11 = i3 + -24 | 0;
HEAP32[i9 >> 2] = i11;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i11);
- i2 = HEAP32[i9 >> 2] | 0;
+ i3 = HEAP32[i9 >> 2] | 0;
}
i11 = HEAP8[i16 >> 0] | 0;
i8 = (i11 & 1) == 0;
@@ -28383,22 +27376,22 @@ function __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S
i1 = i4;
break;
}
- i1 = HEAP32[i9 >> 2] | 0;
- i2 = i1 + -24 | 0;
+ i2 = HEAP32[i9 >> 2] | 0;
+ i1 = i2 + -24 | 0;
while (1) {
- if ((i1 | 0) == (i2 | 0)) break;
- i14 = i1 + -24 | 0;
+ if ((i2 | 0) == (i1 | 0)) break;
+ i14 = i2 + -24 | 0;
HEAP32[i9 >> 2] = i14;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i14);
- i1 = HEAP32[i9 >> 2] | 0;
+ i2 = HEAP32[i9 >> 2] | 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i16);
i1 = i15;
break L1;
} while (0);
i5 = i10 + 8 | 0;
- i7 = i10 + 1 | 0;
- i6 = i10 + 4 | 0;
+ i6 = i10 + 1 | 0;
+ i7 = i10 + 4 | 0;
while (1) {
if ((HEAP8[i1 >> 0] | 0) == 69) break;
i4 = __ZN10__cxxabiv112_GLOBAL__N_115parse_simple_idINS0_2DbEEEPKcS4_S4_RT_(i1, i13, i14) | 0;
@@ -28413,28 +27406,28 @@ function __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i16, i1 + -24 | 0);
i3 = HEAP32[i9 >> 2] | 0;
- i2 = i3 + -24 | 0;
- i1 = i3;
+ i1 = i3 + -24 | 0;
+ i2 = i3;
while (1) {
- if ((i1 | 0) == (i2 | 0)) break;
- i11 = i1 + -24 | 0;
+ if ((i2 | 0) == (i1 | 0)) break;
+ i11 = i2 + -24 | 0;
HEAP32[i9 >> 2] = i11;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i11);
- i1 = HEAP32[i9 >> 2] | 0;
+ i2 = HEAP32[i9 >> 2] | 0;
}
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i16, 0, 34450) | 0;
- HEAP32[i10 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i10 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i10 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i16, 0, 35914) | 0;
+ HEAP32[i10 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i10 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i10 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
i1 = HEAP8[i10 >> 0] | 0;
i11 = (i1 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i3 + -48 | 0, i11 ? i7 : HEAP32[i5 >> 2] | 0, i11 ? (i1 & 255) >>> 1 : HEAP32[i6 >> 2] | 0) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i3 + -48 | 0, i11 ? i6 : HEAP32[i5 >> 2] | 0, i11 ? (i1 & 255) >>> 1 : HEAP32[i7 >> 2] | 0) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i10);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i16);
i1 = i4;
@@ -28466,24 +27459,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i16, i2 + -24 | 0);
i4 = HEAP32[i9 >> 2] | 0;
- i3 = i4 + -24 | 0;
- i2 = i4;
+ i2 = i4 + -24 | 0;
+ i3 = i4;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break;
- i15 = i2 + -24 | 0;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i15 = i3 + -24 | 0;
HEAP32[i9 >> 2] = i15;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i15);
- i2 = HEAP32[i9 >> 2] | 0;
+ i3 = HEAP32[i9 >> 2] | 0;
}
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i16, 0, 34450) | 0;
- HEAP32[i12 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i12 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i12 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i16, 0, 35914) | 0;
+ HEAP32[i12 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i12 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i12 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
i15 = HEAP8[i12 >> 0] | 0;
i14 = (i15 & 1) == 0;
@@ -28504,14 +27497,14 @@ function __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i16, i1 + -24 | 0);
i1 = HEAP32[i4 >> 2] | 0;
- i3 = i1 + -24 | 0;
- i2 = i1;
+ i2 = i1 + -24 | 0;
+ i3 = i1;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break;
- i12 = i2 + -24 | 0;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i12 = i3 + -24 | 0;
HEAP32[i4 >> 2] = i12;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i12);
- i2 = HEAP32[i4 >> 2] | 0;
+ i3 = HEAP32[i4 >> 2] | 0;
}
i2 = HEAP8[i16 >> 0] | 0;
i12 = (i2 & 1) == 0;
@@ -28547,24 +27540,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i16, i2 + -24 | 0);
i4 = HEAP32[i5 >> 2] | 0;
- i3 = i4 + -24 | 0;
- i2 = i4;
+ i2 = i4 + -24 | 0;
+ i3 = i4;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break;
- i15 = i2 + -24 | 0;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i15 = i3 + -24 | 0;
HEAP32[i5 >> 2] = i15;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i15);
- i2 = HEAP32[i5 >> 2] | 0;
+ i3 = HEAP32[i5 >> 2] | 0;
}
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i16, 0, 34450) | 0;
- HEAP32[i6 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i6 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i6 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i16, 0, 35914) | 0;
+ HEAP32[i6 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i6 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i6 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
i15 = HEAP8[i6 >> 0] | 0;
i14 = (i15 & 1) == 0;
@@ -28576,18 +27569,18 @@ function __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S
i1 = __ZN10__cxxabiv112_GLOBAL__N_115parse_simple_idINS0_2DbEEEPKcS4_S4_RT_(i3, i13, i14) | 0;
if (!((i1 | 0) == (i3 | 0) | (i1 | 0) == (i13 | 0))) {
if (i5) {
- i3 = i14 + 4 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((HEAP32[i14 >> 2] | 0) == (i2 | 0)) {
+ i2 = i14 + 4 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((HEAP32[i14 >> 2] | 0) == (i3 | 0)) {
i1 = i15;
break;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 34450) | 0;
- i8 = i3;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i3 + -24 | 0, 0, 35914) | 0;
+ i8 = i2;
} else i8 = i14 + 4 | 0;
i5 = i9 + 8 | 0;
- i7 = i9 + 1 | 0;
- i6 = i9 + 4 | 0;
+ i6 = i9 + 1 | 0;
+ i7 = i9 + 4 | 0;
while (1) {
if ((HEAP8[i1 >> 0] | 0) == 69) break;
i4 = __ZN10__cxxabiv112_GLOBAL__N_115parse_simple_idINS0_2DbEEEPKcS4_S4_RT_(i1, i13, i14) | 0;
@@ -28602,28 +27595,28 @@ function __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i16, i1 + -24 | 0);
i3 = HEAP32[i8 >> 2] | 0;
- i2 = i3 + -24 | 0;
- i1 = i3;
+ i1 = i3 + -24 | 0;
+ i2 = i3;
while (1) {
- if ((i1 | 0) == (i2 | 0)) break;
- i12 = i1 + -24 | 0;
+ if ((i2 | 0) == (i1 | 0)) break;
+ i12 = i2 + -24 | 0;
HEAP32[i8 >> 2] = i12;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i12);
- i1 = HEAP32[i8 >> 2] | 0;
+ i2 = HEAP32[i8 >> 2] | 0;
}
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i16, 0, 34450) | 0;
- HEAP32[i9 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i9 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i9 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i16, 0, 35914) | 0;
+ HEAP32[i9 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i9 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i9 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
i1 = HEAP8[i9 >> 0] | 0;
i12 = (i1 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i3 + -48 | 0, i12 ? i7 : HEAP32[i5 >> 2] | 0, i12 ? (i1 & 255) >>> 1 : HEAP32[i6 >> 2] | 0) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i3 + -48 | 0, i12 ? i6 : HEAP32[i5 >> 2] | 0, i12 ? (i1 & 255) >>> 1 : HEAP32[i7 >> 2] | 0) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i9);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i16);
i1 = i4;
@@ -28652,24 +27645,24 @@ function __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S
if (((i2 - (HEAP32[i14 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) {
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i16, i2 + -24 | 0);
i4 = HEAP32[i8 >> 2] | 0;
- i3 = i4 + -24 | 0;
- i2 = i4;
+ i2 = i4 + -24 | 0;
+ i3 = i4;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break;
- i15 = i2 + -24 | 0;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i15 = i3 + -24 | 0;
HEAP32[i8 >> 2] = i15;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i15);
- i2 = HEAP32[i8 >> 2] | 0;
+ i3 = HEAP32[i8 >> 2] | 0;
}
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i16, 0, 34450) | 0;
- HEAP32[i11 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i11 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i11 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i16, 0, 35914) | 0;
+ HEAP32[i11 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i11 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i11 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
i15 = HEAP8[i11 >> 0] | 0;
i14 = (i15 & 1) == 0;
@@ -28684,134 +27677,133 @@ function __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S
return i1 | 0;
}
-function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner10visitUnaryEPNS_5UnaryE(i18, i10, i16) {
- i18 = i18 | 0;
- i10 = i10 | 0;
- i16 = i16 | 0;
- var d1 = 0.0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, d7 = 0.0, d8 = 0.0, i9 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i17 = 0, i19 = 0;
- i19 = STACKTOP;
- STACKTOP = STACKTOP + 176 | 0;
- i11 = i19 + 152 | 0;
- i2 = i19 + 104 | 0;
- i17 = i19 + 80 | 0;
- i9 = i19 + 136 | 0;
- i12 = i19 + 128 | 0;
- i13 = i19 + 96 | 0;
- i14 = i19 + 72 | 0;
- i15 = i19 + 64 | 0;
- i3 = i19 + 48 | 0;
- i4 = i19 + 32 | 0;
- i5 = i19 + 16 | 0;
- i6 = i19;
- __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i2, i10, HEAP32[i16 + 12 >> 2] | 0);
+function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner10visitUnaryEPNS_5UnaryE(i27, i19, i25) {
+ i27 = i27 | 0;
+ i19 = i19 | 0;
+ i25 = i25 | 0;
+ var d1 = 0.0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, d16 = 0.0, d17 = 0.0, i18 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i26 = 0, i28 = 0;
+ i28 = STACKTOP;
+ STACKTOP = STACKTOP + 320 | 0;
+ i20 = i28 + 296 | 0;
+ i2 = i28 + 248 | 0;
+ i26 = i28 + 224 | 0;
+ i3 = i28 + 280 | 0;
+ i22 = i28 + 272 | 0;
+ i21 = i28 + 240 | 0;
+ i18 = i28 + 208 | 0;
+ i24 = i28 + 200 | 0;
+ i23 = i28 + 192 | 0;
+ i8 = i28 + 176 | 0;
+ i9 = i28 + 160 | 0;
+ i10 = i28 + 144 | 0;
+ i11 = i28 + 128 | 0;
+ i12 = i28 + 112 | 0;
+ i13 = i28 + 96 | 0;
+ i14 = i28 + 80 | 0;
+ i15 = i28 + 64 | 0;
+ i4 = i28 + 48 | 0;
+ i5 = i28 + 32 | 0;
+ i6 = i28 + 16 | 0;
+ i7 = i28;
+ __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i2, i19, HEAP32[i25 + 12 >> 2] | 0);
if (!(HEAP32[i2 + 16 >> 2] | 0)) {
- HEAP32[i17 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i17 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i17 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- HEAP32[i17 + 12 >> 2] = HEAP32[i2 + 12 >> 2];
- L3 : do switch (HEAP32[i17 >> 2] | 0) {
+ HEAP32[i26 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i26 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i26 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ HEAP32[i26 + 12 >> 2] = HEAP32[i2 + 12 >> 2];
+ L3 : do switch (HEAP32[i26 >> 2] | 0) {
case 1:
{
- i2 = __ZN4wasm7Literal6geti32Ev(i17) | 0;
- switch (HEAP32[i16 + 8 >> 2] | 0) {
+ i2 = __ZN4wasm7Literal6geti32Ev(i26) | 0;
+ switch (HEAP32[i25 + 8 >> 2] | 0) {
case 0:
{
- i17 = __ZN4wasm18CountLeadingZeroesIjEEiT_(i2) | 0;
- HEAP32[i18 >> 2] = 1;
- HEAP32[i18 + 8 >> 2] = i17;
- HEAP32[i18 + 16 >> 2] = 0;
+ i26 = __ZN4wasm18CountLeadingZeroesIjEEiT_(i2) | 0;
+ HEAP32[i27 >> 2] = 1;
+ HEAP32[i27 + 8 >> 2] = i26;
+ HEAP32[i27 + 16 >> 2] = 0;
break L3;
}
case 1:
{
- i17 = __ZN4wasm19CountTrailingZeroesIjEEiT_(i2) | 0;
- HEAP32[i18 >> 2] = 1;
- HEAP32[i18 + 8 >> 2] = i17;
- HEAP32[i18 + 16 >> 2] = 0;
+ i26 = __ZN4wasm19CountTrailingZeroesIjEEiT_(i2) | 0;
+ HEAP32[i27 >> 2] = 1;
+ HEAP32[i27 + 8 >> 2] = i26;
+ HEAP32[i27 + 16 >> 2] = 0;
break L3;
}
case 2:
{
- i17 = __ZN4wasm8PopCountIjEEiT_(i2) | 0;
- HEAP32[i18 >> 2] = 1;
- HEAP32[i18 + 8 >> 2] = i17;
- HEAP32[i18 + 16 >> 2] = 0;
+ i26 = __ZN4wasm8PopCountIjEEiT_(i2) | 0;
+ HEAP32[i27 >> 2] = 1;
+ HEAP32[i27 + 8 >> 2] = i26;
+ HEAP32[i27 + 16 >> 2] = 0;
break L3;
}
case 24:
{
- d8 = +Math_abs(+(+__ZN4wasm7Literal14reinterpretf32Ev(i17)));
- if ((HEAPF32[tempDoublePtr >> 2] = d8, HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 2139095040) {
- i17 = __ZN4wasm7Literal6geti32Ev(i17) | 0 | 2139095040;
- HEAP32[i9 >> 2] = 1;
- HEAP32[i9 + 8 >> 2] = i17;
- d8 = +__ZN4wasm7Literal14reinterpretf32Ev(i9);
- HEAP32[i18 >> 2] = 3;
- HEAPF32[i18 + 8 >> 2] = d8;
- HEAP32[i18 + 16 >> 2] = 0;
- break L3;
- } else {
- d8 = +__ZN4wasm7Literal14reinterpretf32Ev(i17);
- HEAP32[i18 >> 2] = 3;
- HEAPF32[i18 + 8 >> 2] = d8;
- HEAP32[i18 + 16 >> 2] = 0;
- break L3;
- }
+ __ZN4wasm7Literal9castToF32Ev(i3, i26);
+ HEAP32[i27 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i27 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
+ HEAP32[i27 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ HEAP32[i27 + 12 >> 2] = HEAP32[i3 + 12 >> 2];
+ HEAP32[i27 + 16 >> 2] = 0;
+ break L3;
}
case 10:
{
- i16 = __ZN4wasm7Literal6geti32Ev(i17) | 0;
- HEAP32[i18 >> 2] = 2;
- i17 = i18 + 8 | 0;
- HEAP32[i17 >> 2] = i16;
- HEAP32[i17 + 4 >> 2] = ((i16 | 0) < 0) << 31 >> 31;
- HEAP32[i18 + 16 >> 2] = 0;
+ i25 = __ZN4wasm7Literal6geti32Ev(i26) | 0;
+ HEAP32[i27 >> 2] = 2;
+ i26 = i27 + 8 | 0;
+ HEAP32[i26 >> 2] = i25;
+ HEAP32[i26 + 4 >> 2] = ((i25 | 0) < 0) << 31 >> 31;
+ HEAP32[i27 + 16 >> 2] = 0;
break L3;
}
case 11:
{
- i16 = __ZN4wasm7Literal6geti32Ev(i17) | 0;
- HEAP32[i18 >> 2] = 2;
- i17 = i18 + 8 | 0;
- HEAP32[i17 >> 2] = i16;
- HEAP32[i17 + 4 >> 2] = 0;
- HEAP32[i18 + 16 >> 2] = 0;
+ i25 = __ZN4wasm7Literal6geti32Ev(i26) | 0;
+ HEAP32[i27 >> 2] = 2;
+ i26 = i27 + 8 | 0;
+ HEAP32[i26 >> 2] = i25;
+ HEAP32[i26 + 4 >> 2] = 0;
+ HEAP32[i27 + 16 >> 2] = 0;
break L3;
}
case 19:
{
- i16 = (HEAP32[i16 + 4 >> 2] | 0) == 3;
- i2 = __ZN4wasm7Literal6geti32Ev(i17) | 0;
- if (i16) {
- HEAPF32[i12 >> 2] = +(i2 >>> 0);
+ i25 = (HEAP32[i25 + 4 >> 2] | 0) == 3;
+ i2 = __ZN4wasm7Literal6geti32Ev(i26) | 0;
+ if (i25) {
+ HEAPF32[i22 >> 2] = +(i2 >>> 0);
i2 = 3;
- d1 = +HEAPF64[i12 >> 3];
+ d1 = +HEAPF64[i22 >> 3];
} else {
d1 = +(i2 >>> 0);
- HEAPF64[i12 >> 3] = d1;
+ HEAPF64[i22 >> 3] = d1;
i2 = 4;
}
- HEAP32[i18 >> 2] = i2;
- HEAPF64[i18 + 8 >> 3] = d1;
- HEAP32[i18 + 16 >> 2] = 0;
+ HEAP32[i27 >> 2] = i2;
+ HEAPF64[i27 + 8 >> 3] = d1;
+ HEAP32[i27 + 16 >> 2] = 0;
break L3;
}
case 18:
{
- i16 = (HEAP32[i16 + 4 >> 2] | 0) == 3;
- i2 = __ZN4wasm7Literal6geti32Ev(i17) | 0;
- if (i16) {
- HEAPF32[i13 >> 2] = +(i2 | 0);
+ i25 = (HEAP32[i25 + 4 >> 2] | 0) == 3;
+ i2 = __ZN4wasm7Literal6geti32Ev(i26) | 0;
+ if (i25) {
+ HEAPF32[i21 >> 2] = +(i2 | 0);
i2 = 3;
- d1 = +HEAPF64[i13 >> 3];
+ d1 = +HEAPF64[i21 >> 3];
} else {
d1 = +(i2 | 0);
- HEAPF64[i13 >> 3] = d1;
+ HEAPF64[i21 >> 3] = d1;
i2 = 4;
}
- HEAP32[i18 >> 2] = i2;
- HEAPF64[i18 + 8 >> 3] = d1;
- HEAP32[i18 + 16 >> 2] = 0;
+ HEAP32[i27 >> 2] = i2;
+ HEAPF64[i27 + 8 >> 3] = d1;
+ HEAP32[i27 + 16 >> 2] = 0;
break L3;
}
default:
@@ -28821,91 +27813,93 @@ function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vect
}
case 2:
{
- i2 = __ZN4wasm7Literal6geti64Ev(i17) | 0;
+ i2 = __ZN4wasm7Literal6geti64Ev(i26) | 0;
i3 = tempRet0;
- switch (HEAP32[i16 + 8 >> 2] | 0) {
+ switch (HEAP32[i25 + 8 >> 2] | 0) {
case 0:
{
- i16 = __ZN4wasm18CountLeadingZeroesIyEEiT_(i2, i3) | 0;
- HEAP32[i18 >> 2] = 2;
- i17 = i18 + 8 | 0;
- HEAP32[i17 >> 2] = i16;
- HEAP32[i17 + 4 >> 2] = ((i16 | 0) < 0) << 31 >> 31;
- HEAP32[i18 + 16 >> 2] = 0;
+ i25 = __ZN4wasm18CountLeadingZeroesIyEEiT_(i2, i3) | 0;
+ HEAP32[i27 >> 2] = 2;
+ i26 = i27 + 8 | 0;
+ HEAP32[i26 >> 2] = i25;
+ HEAP32[i26 + 4 >> 2] = ((i25 | 0) < 0) << 31 >> 31;
+ HEAP32[i27 + 16 >> 2] = 0;
break L3;
}
case 1:
{
- i16 = __ZN4wasm19CountTrailingZeroesIyEEiT_(i2, i3) | 0;
- HEAP32[i18 >> 2] = 2;
- i17 = i18 + 8 | 0;
- HEAP32[i17 >> 2] = i16;
- HEAP32[i17 + 4 >> 2] = ((i16 | 0) < 0) << 31 >> 31;
- HEAP32[i18 + 16 >> 2] = 0;
+ i25 = __ZN4wasm19CountTrailingZeroesIyEEiT_(i2, i3) | 0;
+ HEAP32[i27 >> 2] = 2;
+ i26 = i27 + 8 | 0;
+ HEAP32[i26 >> 2] = i25;
+ HEAP32[i26 + 4 >> 2] = ((i25 | 0) < 0) << 31 >> 31;
+ HEAP32[i27 + 16 >> 2] = 0;
break L3;
}
case 2:
{
- i16 = __ZN4wasm8PopCountIyEEiT_(i2, i3) | 0;
- HEAP32[i18 >> 2] = 2;
- i17 = i18 + 8 | 0;
- HEAP32[i17 >> 2] = i16;
- HEAP32[i17 + 4 >> 2] = ((i16 | 0) < 0) << 31 >> 31;
- HEAP32[i18 + 16 >> 2] = 0;
+ i25 = __ZN4wasm8PopCountIyEEiT_(i2, i3) | 0;
+ HEAP32[i27 >> 2] = 2;
+ i26 = i27 + 8 | 0;
+ HEAP32[i26 >> 2] = i25;
+ HEAP32[i26 + 4 >> 2] = ((i25 | 0) < 0) << 31 >> 31;
+ HEAP32[i27 + 16 >> 2] = 0;
break L3;
}
case 12:
{
- i17 = __ZN4wasm7Literal6geti64Ev(i17) | 0;
- HEAP32[i18 >> 2] = 1;
- HEAP32[i18 + 8 >> 2] = i17;
- HEAP32[i18 + 16 >> 2] = 0;
+ i26 = __ZN4wasm7Literal6geti64Ev(i26) | 0;
+ HEAP32[i27 >> 2] = 1;
+ HEAP32[i27 + 8 >> 2] = i26;
+ HEAP32[i27 + 16 >> 2] = 0;
break L3;
}
case 24:
{
- d8 = +__ZN4wasm7Literal14reinterpretf64Ev(i17);
- HEAP32[i18 >> 2] = 4;
- HEAPF64[i18 + 8 >> 3] = d8;
- HEAP32[i18 + 16 >> 2] = 0;
+ __ZN4wasm7Literal9castToF64Ev(i18, i26);
+ HEAP32[i27 >> 2] = HEAP32[i18 >> 2];
+ HEAP32[i27 + 4 >> 2] = HEAP32[i18 + 4 >> 2];
+ HEAP32[i27 + 8 >> 2] = HEAP32[i18 + 8 >> 2];
+ HEAP32[i27 + 12 >> 2] = HEAP32[i18 + 12 >> 2];
+ HEAP32[i27 + 16 >> 2] = 0;
break L3;
}
case 21:
{
- i16 = (HEAP32[i16 + 4 >> 2] | 0) == 3;
- i2 = __ZN4wasm7Literal6geti64Ev(i17) | 0;
+ i25 = (HEAP32[i25 + 4 >> 2] | 0) == 3;
+ i2 = __ZN4wasm7Literal6geti64Ev(i26) | 0;
i3 = tempRet0;
- if (i16) {
- HEAPF32[i14 >> 2] = +(i2 >>> 0) + 4294967296.0 * +(i3 >>> 0);
+ if (i25) {
+ HEAPF32[i24 >> 2] = +(i2 >>> 0) + 4294967296.0 * +(i3 >>> 0);
i2 = 3;
- d1 = +HEAPF64[i14 >> 3];
+ d1 = +HEAPF64[i24 >> 3];
} else {
d1 = +(i2 >>> 0) + 4294967296.0 * +(i3 >>> 0);
- HEAPF64[i14 >> 3] = d1;
+ HEAPF64[i24 >> 3] = d1;
i2 = 4;
}
- HEAP32[i18 >> 2] = i2;
- HEAPF64[i18 + 8 >> 3] = d1;
- HEAP32[i18 + 16 >> 2] = 0;
+ HEAP32[i27 >> 2] = i2;
+ HEAPF64[i27 + 8 >> 3] = d1;
+ HEAP32[i27 + 16 >> 2] = 0;
break L3;
}
case 20:
{
- i16 = (HEAP32[i16 + 4 >> 2] | 0) == 3;
- i2 = __ZN4wasm7Literal6geti64Ev(i17) | 0;
+ i25 = (HEAP32[i25 + 4 >> 2] | 0) == 3;
+ i2 = __ZN4wasm7Literal6geti64Ev(i26) | 0;
i3 = tempRet0;
- if (i16) {
- HEAPF32[i15 >> 2] = +(i2 >>> 0) + 4294967296.0 * +(i3 | 0);
+ if (i25) {
+ HEAPF32[i23 >> 2] = +(i2 >>> 0) + 4294967296.0 * +(i3 | 0);
i2 = 3;
- d1 = +HEAPF64[i15 >> 3];
+ d1 = +HEAPF64[i23 >> 3];
} else {
d1 = +(i2 >>> 0) + 4294967296.0 * +(i3 | 0);
- HEAPF64[i15 >> 3] = d1;
+ HEAPF64[i23 >> 3] = d1;
i2 = 4;
}
- HEAP32[i18 >> 2] = i2;
- HEAPF64[i18 + 8 >> 3] = d1;
- HEAP32[i18 + 16 >> 2] = 0;
+ HEAP32[i27 >> 2] = i2;
+ HEAPF64[i27 + 8 >> 3] = d1;
+ HEAP32[i27 + 16 >> 2] = 0;
break L3;
}
default:
@@ -28915,256 +27909,292 @@ function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vect
}
case 3:
{
- d1 = +__ZN4wasm7Literal6getf32Ev(i17);
- do switch (HEAP32[i16 + 8 >> 2] | 0) {
+ d1 = +__ZN4wasm7Literal6getf32Ev(i26);
+ do switch (HEAP32[i25 + 8 >> 2] | 0) {
case 3:
{
- d7 = -d1;
- break;
+ i26 = (__ZN4wasm7Literal14reinterpreti32Ev(i26) | 0) ^ -2147483648;
+ HEAP32[i9 >> 2] = 1;
+ HEAP32[i9 + 8 >> 2] = i26;
+ __ZN4wasm7Literal9castToF32Ev(i8, i9);
+ HEAP32[i27 >> 2] = HEAP32[i8 >> 2];
+ HEAP32[i27 + 4 >> 2] = HEAP32[i8 + 4 >> 2];
+ HEAP32[i27 + 8 >> 2] = HEAP32[i8 + 8 >> 2];
+ HEAP32[i27 + 12 >> 2] = HEAP32[i8 + 12 >> 2];
+ HEAP32[i27 + 16 >> 2] = 0;
+ break L3;
}
case 4:
{
- d7 = +Math_abs(+d1);
- break;
+ i26 = (__ZN4wasm7Literal14reinterpreti32Ev(i26) | 0) & 2147483647;
+ HEAP32[i11 >> 2] = 1;
+ HEAP32[i11 + 8 >> 2] = i26;
+ __ZN4wasm7Literal9castToF32Ev(i10, i11);
+ HEAP32[i27 >> 2] = HEAP32[i10 >> 2];
+ HEAP32[i27 + 4 >> 2] = HEAP32[i10 + 4 >> 2];
+ HEAP32[i27 + 8 >> 2] = HEAP32[i10 + 8 >> 2];
+ HEAP32[i27 + 12 >> 2] = HEAP32[i10 + 12 >> 2];
+ HEAP32[i27 + 16 >> 2] = 0;
+ break L3;
}
case 5:
{
- d7 = +Math_ceil(+d1);
+ d16 = +Math_ceil(+d1);
break;
}
case 6:
{
- d7 = +Math_floor(+d1);
+ d16 = +Math_floor(+d1);
break;
}
case 7:
{
- d7 = +_truncf(d1);
+ d16 = +_truncf(d1);
break;
}
case 8:
{
- d7 = +_nearbyintf(d1);
+ d16 = +_nearbyintf(d1);
break;
}
case 9:
{
- d7 = +Math_sqrt(+d1);
+ d16 = +Math_sqrt(+d1);
break;
}
case 13:
{
- HEAP32[i11 >> 2] = HEAP32[i17 >> 2];
- HEAP32[i11 + 4 >> 2] = HEAP32[i17 + 4 >> 2];
- HEAP32[i11 + 8 >> 2] = HEAP32[i17 + 8 >> 2];
- HEAP32[i11 + 12 >> 2] = HEAP32[i17 + 12 >> 2];
- __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner11truncSFloatEPNS_5UnaryES5_(i3, i10, i16, i11);
- HEAP32[i18 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i18 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i18 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- HEAP32[i18 + 12 >> 2] = HEAP32[i3 + 12 >> 2];
- HEAP32[i18 + 16 >> 2] = 0;
+ HEAP32[i20 >> 2] = HEAP32[i26 >> 2];
+ HEAP32[i20 + 4 >> 2] = HEAP32[i26 + 4 >> 2];
+ HEAP32[i20 + 8 >> 2] = HEAP32[i26 + 8 >> 2];
+ HEAP32[i20 + 12 >> 2] = HEAP32[i26 + 12 >> 2];
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner11truncSFloatEPNS_5UnaryES5_(i12, i19, i25, i20);
+ HEAP32[i27 >> 2] = HEAP32[i12 >> 2];
+ HEAP32[i27 + 4 >> 2] = HEAP32[i12 + 4 >> 2];
+ HEAP32[i27 + 8 >> 2] = HEAP32[i12 + 8 >> 2];
+ HEAP32[i27 + 12 >> 2] = HEAP32[i12 + 12 >> 2];
+ HEAP32[i27 + 16 >> 2] = 0;
break L3;
}
case 14:
{
- HEAP32[i11 >> 2] = HEAP32[i17 >> 2];
- HEAP32[i11 + 4 >> 2] = HEAP32[i17 + 4 >> 2];
- HEAP32[i11 + 8 >> 2] = HEAP32[i17 + 8 >> 2];
- HEAP32[i11 + 12 >> 2] = HEAP32[i17 + 12 >> 2];
- __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner11truncUFloatEPNS_5UnaryES5_(i4, i10, i16, i11);
- HEAP32[i18 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i18 + 4 >> 2] = HEAP32[i4 + 4 >> 2];
- HEAP32[i18 + 8 >> 2] = HEAP32[i4 + 8 >> 2];
- HEAP32[i18 + 12 >> 2] = HEAP32[i4 + 12 >> 2];
- HEAP32[i18 + 16 >> 2] = 0;
+ HEAP32[i20 >> 2] = HEAP32[i26 >> 2];
+ HEAP32[i20 + 4 >> 2] = HEAP32[i26 + 4 >> 2];
+ HEAP32[i20 + 8 >> 2] = HEAP32[i26 + 8 >> 2];
+ HEAP32[i20 + 12 >> 2] = HEAP32[i26 + 12 >> 2];
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner11truncUFloatEPNS_5UnaryES5_(i13, i19, i25, i20);
+ HEAP32[i27 >> 2] = HEAP32[i13 >> 2];
+ HEAP32[i27 + 4 >> 2] = HEAP32[i13 + 4 >> 2];
+ HEAP32[i27 + 8 >> 2] = HEAP32[i13 + 8 >> 2];
+ HEAP32[i27 + 12 >> 2] = HEAP32[i13 + 12 >> 2];
+ HEAP32[i27 + 16 >> 2] = 0;
break L3;
}
case 17:
{
- i17 = __ZN4wasm7Literal14reinterpreti32Ev(i17) | 0;
- HEAP32[i18 >> 2] = 1;
- HEAP32[i18 + 8 >> 2] = i17;
- HEAP32[i18 + 16 >> 2] = 0;
+ i26 = __ZN4wasm7Literal14reinterpreti32Ev(i26) | 0;
+ HEAP32[i27 >> 2] = 1;
+ HEAP32[i27 + 8 >> 2] = i26;
+ HEAP32[i27 + 16 >> 2] = 0;
break L3;
}
case 22:
{
- d8 = +__ZN4wasm7Literal6getf32Ev(i17);
- HEAP32[i18 >> 2] = 4;
- HEAPF64[i18 + 8 >> 3] = d8;
- HEAP32[i18 + 16 >> 2] = 0;
+ d17 = +__ZN4wasm7Literal6getf32Ev(i26);
+ HEAP32[i27 >> 2] = 4;
+ HEAPF64[i27 + 8 >> 3] = d17;
+ HEAP32[i27 + 16 >> 2] = 0;
break L3;
}
default:
_abort();
} while (0);
- d8 = +__ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner6fixNaNEff(i10, d1, d7);
- HEAP32[i18 >> 2] = 3;
- HEAPF32[i18 + 8 >> 2] = d8;
- HEAP32[i18 + 16 >> 2] = 0;
+ d17 = +__ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner6fixNaNEff(i19, d1, d16);
+ HEAP32[i27 >> 2] = 3;
+ HEAPF32[i27 + 8 >> 2] = d17;
+ HEAP32[i27 + 16 >> 2] = 0;
break;
}
case 4:
{
- d1 = +__ZN4wasm7Literal6getf64Ev(i17);
- do switch (HEAP32[i16 + 8 >> 2] | 0) {
+ d1 = +__ZN4wasm7Literal6getf64Ev(i26);
+ do switch (HEAP32[i25 + 8 >> 2] | 0) {
case 3:
{
- d8 = -d1;
- break;
+ i25 = __ZN4wasm7Literal14reinterpreti64Ev(i26) | 0;
+ HEAP32[i15 >> 2] = 2;
+ i26 = i15 + 8 | 0;
+ HEAP32[i26 >> 2] = i25;
+ HEAP32[i26 + 4 >> 2] = tempRet0 ^ -2147483648;
+ __ZN4wasm7Literal9castToF64Ev(i14, i15);
+ HEAP32[i27 >> 2] = HEAP32[i14 >> 2];
+ HEAP32[i27 + 4 >> 2] = HEAP32[i14 + 4 >> 2];
+ HEAP32[i27 + 8 >> 2] = HEAP32[i14 + 8 >> 2];
+ HEAP32[i27 + 12 >> 2] = HEAP32[i14 + 12 >> 2];
+ HEAP32[i27 + 16 >> 2] = 0;
+ break L3;
}
case 4:
{
- d8 = +Math_abs(+d1);
- break;
+ i25 = __ZN4wasm7Literal14reinterpreti64Ev(i26) | 0;
+ HEAP32[i5 >> 2] = 2;
+ i26 = i5 + 8 | 0;
+ HEAP32[i26 >> 2] = i25;
+ HEAP32[i26 + 4 >> 2] = tempRet0 & 2147483647;
+ __ZN4wasm7Literal9castToF64Ev(i4, i5);
+ HEAP32[i27 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i27 + 4 >> 2] = HEAP32[i4 + 4 >> 2];
+ HEAP32[i27 + 8 >> 2] = HEAP32[i4 + 8 >> 2];
+ HEAP32[i27 + 12 >> 2] = HEAP32[i4 + 12 >> 2];
+ HEAP32[i27 + 16 >> 2] = 0;
+ break L3;
}
case 5:
{
- d8 = +Math_ceil(+d1);
+ d17 = +Math_ceil(+d1);
break;
}
case 6:
{
- d8 = +Math_floor(+d1);
+ d17 = +Math_floor(+d1);
break;
}
case 7:
{
- d8 = +_trunc(d1);
+ d17 = +_trunc(d1);
break;
}
case 8:
{
- d8 = +_nearbyint(d1);
+ d17 = +_nearbyint(d1);
break;
}
case 9:
{
- d8 = +Math_sqrt(+d1);
+ d17 = +Math_sqrt(+d1);
break;
}
case 15:
{
- HEAP32[i11 >> 2] = HEAP32[i17 >> 2];
- HEAP32[i11 + 4 >> 2] = HEAP32[i17 + 4 >> 2];
- HEAP32[i11 + 8 >> 2] = HEAP32[i17 + 8 >> 2];
- HEAP32[i11 + 12 >> 2] = HEAP32[i17 + 12 >> 2];
- __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner11truncSFloatEPNS_5UnaryES5_(i5, i10, i16, i11);
- HEAP32[i18 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i18 + 4 >> 2] = HEAP32[i5 + 4 >> 2];
- HEAP32[i18 + 8 >> 2] = HEAP32[i5 + 8 >> 2];
- HEAP32[i18 + 12 >> 2] = HEAP32[i5 + 12 >> 2];
- HEAP32[i18 + 16 >> 2] = 0;
+ HEAP32[i20 >> 2] = HEAP32[i26 >> 2];
+ HEAP32[i20 + 4 >> 2] = HEAP32[i26 + 4 >> 2];
+ HEAP32[i20 + 8 >> 2] = HEAP32[i26 + 8 >> 2];
+ HEAP32[i20 + 12 >> 2] = HEAP32[i26 + 12 >> 2];
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner11truncSFloatEPNS_5UnaryES5_(i6, i19, i25, i20);
+ HEAP32[i27 >> 2] = HEAP32[i6 >> 2];
+ HEAP32[i27 + 4 >> 2] = HEAP32[i6 + 4 >> 2];
+ HEAP32[i27 + 8 >> 2] = HEAP32[i6 + 8 >> 2];
+ HEAP32[i27 + 12 >> 2] = HEAP32[i6 + 12 >> 2];
+ HEAP32[i27 + 16 >> 2] = 0;
break L3;
}
case 16:
{
- HEAP32[i11 >> 2] = HEAP32[i17 >> 2];
- HEAP32[i11 + 4 >> 2] = HEAP32[i17 + 4 >> 2];
- HEAP32[i11 + 8 >> 2] = HEAP32[i17 + 8 >> 2];
- HEAP32[i11 + 12 >> 2] = HEAP32[i17 + 12 >> 2];
- __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner11truncUFloatEPNS_5UnaryES5_(i6, i10, i16, i11);
- HEAP32[i18 >> 2] = HEAP32[i6 >> 2];
- HEAP32[i18 + 4 >> 2] = HEAP32[i6 + 4 >> 2];
- HEAP32[i18 + 8 >> 2] = HEAP32[i6 + 8 >> 2];
- HEAP32[i18 + 12 >> 2] = HEAP32[i6 + 12 >> 2];
- HEAP32[i18 + 16 >> 2] = 0;
+ HEAP32[i20 >> 2] = HEAP32[i26 >> 2];
+ HEAP32[i20 + 4 >> 2] = HEAP32[i26 + 4 >> 2];
+ HEAP32[i20 + 8 >> 2] = HEAP32[i26 + 8 >> 2];
+ HEAP32[i20 + 12 >> 2] = HEAP32[i26 + 12 >> 2];
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner11truncUFloatEPNS_5UnaryES5_(i7, i19, i25, i20);
+ HEAP32[i27 >> 2] = HEAP32[i7 >> 2];
+ HEAP32[i27 + 4 >> 2] = HEAP32[i7 + 4 >> 2];
+ HEAP32[i27 + 8 >> 2] = HEAP32[i7 + 8 >> 2];
+ HEAP32[i27 + 12 >> 2] = HEAP32[i7 + 12 >> 2];
+ HEAP32[i27 + 16 >> 2] = 0;
break L3;
}
case 17:
{
- i16 = __ZN4wasm7Literal14reinterpreti64Ev(i17) | 0;
- HEAP32[i18 >> 2] = 2;
- i17 = i18 + 8 | 0;
- HEAP32[i17 >> 2] = i16;
- HEAP32[i17 + 4 >> 2] = tempRet0;
- HEAP32[i18 + 16 >> 2] = 0;
+ i25 = __ZN4wasm7Literal14reinterpreti64Ev(i26) | 0;
+ HEAP32[i27 >> 2] = 2;
+ i26 = i27 + 8 | 0;
+ HEAP32[i26 >> 2] = i25;
+ HEAP32[i26 + 4 >> 2] = tempRet0;
+ HEAP32[i27 + 16 >> 2] = 0;
break L3;
}
case 23:
{
- d8 = +__ZN4wasm7Literal6getf64Ev(i17);
- HEAP32[i18 >> 2] = 3;
- HEAPF32[i18 + 8 >> 2] = d8;
- HEAP32[i18 + 16 >> 2] = 0;
+ d17 = +__ZN4wasm7Literal6getf64Ev(i26);
+ HEAP32[i27 >> 2] = 3;
+ HEAPF32[i27 + 8 >> 2] = d17;
+ HEAP32[i27 + 16 >> 2] = 0;
break L3;
}
default:
_abort();
} while (0);
- d8 = +__ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner6fixNaNEdd(i10, d1, d8);
- HEAP32[i18 >> 2] = 4;
- HEAPF64[i18 + 8 >> 3] = d8;
- HEAP32[i18 + 16 >> 2] = 0;
+ d17 = +__ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner6fixNaNEdd(i19, d1, d17);
+ HEAP32[i27 >> 2] = 4;
+ HEAPF64[i27 + 8 >> 3] = d17;
+ HEAP32[i27 + 16 >> 2] = 0;
break;
}
default:
_abort();
} while (0);
} else {
- HEAP32[i18 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i18 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i18 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- HEAP32[i18 + 12 >> 2] = HEAP32[i2 + 12 >> 2];
- HEAP32[i18 + 16 >> 2] = HEAP32[i2 + 16 >> 2];
- HEAP32[i18 + 20 >> 2] = HEAP32[i2 + 20 >> 2];
+ HEAP32[i27 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i27 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i27 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ HEAP32[i27 + 12 >> 2] = HEAP32[i2 + 12 >> 2];
+ HEAP32[i27 + 16 >> 2] = HEAP32[i2 + 16 >> 2];
+ HEAP32[i27 + 20 >> 2] = HEAP32[i2 + 20 >> 2];
}
- STACKTOP = i19;
+ STACKTOP = i28;
return;
}
-function __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_RT_(i29, i26, i34) {
+function __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_RT_(i29, i28, i35) {
i29 = i29 | 0;
- i26 = i26 | 0;
- i34 = i34 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i27 = 0, i28 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i35 = 0, i36 = 0, i37 = 0;
+ i28 = i28 | 0;
+ i35 = i35 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i36 = 0, i37 = 0;
i36 = STACKTOP;
STACKTOP = STACKTOP + 80 | 0;
- i31 = i36 + 60 | 0;
- i33 = i36;
- i27 = i36 + 48 | 0;
- i35 = i36 + 24 | 0;
+ i33 = i36 + 60 | 0;
+ i34 = i36;
+ i25 = i36 + 48 | 0;
+ i31 = i36 + 24 | 0;
i32 = i36 + 12 | 0;
- do if ((i26 - i29 | 0) > 1 ? (HEAP8[i29 >> 0] | 0) == 73 : 0) {
- i28 = i34 + 61 | 0;
- i24 = i34 + 36 | 0;
- L4 : do if (HEAP8[i28 >> 0] | 0) {
- i3 = HEAP32[i24 >> 2] | 0;
- i1 = HEAP32[i3 + -16 >> 2] | 0;
- i3 = i3 + -12 | 0;
+ do if ((i28 - i29 | 0) > 1 ? (HEAP8[i29 >> 0] | 0) == 73 : 0) {
+ i27 = i35 + 61 | 0;
+ i24 = i35 + 36 | 0;
+ L4 : do if (HEAP8[i27 >> 0] | 0) {
+ i2 = HEAP32[i24 >> 2] | 0;
+ i1 = HEAP32[i2 + -16 >> 2] | 0;
+ i2 = i2 + -12 | 0;
while (1) {
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (i1 | 0)) break L4;
- i30 = i2 + -16 | 0;
- HEAP32[i3 >> 2] = i30;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (i1 | 0)) break L4;
+ i30 = i3 + -16 | 0;
+ HEAP32[i2 >> 2] = i30;
__ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i30);
}
} while (0);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i33, 34988, 1);
- i30 = i34 + 4 | 0;
- i22 = i34 + 12 | 0;
- i17 = i31 + 8 | 0;
- i16 = i31 + 8 | 0;
- i25 = i33 + 4 | 0;
- i14 = i27 + 8 | 0;
- i21 = i27 + 1 | 0;
- i20 = i27 + 4 | 0;
- i23 = i34 + 32 | 0;
- i18 = i34 + 40 | 0;
- i19 = i34 + 44 | 0;
- i15 = i31 + 8 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i34, 36452, 1);
+ i30 = i35 + 4 | 0;
+ i14 = i35 + 12 | 0;
+ i15 = i33 + 8 | 0;
+ i16 = i33 + 8 | 0;
+ i26 = i34 + 4 | 0;
+ i17 = i25 + 8 | 0;
+ i18 = i25 + 1 | 0;
+ i19 = i25 + 4 | 0;
+ i23 = i35 + 32 | 0;
+ i20 = i35 + 40 | 0;
+ i21 = i35 + 44 | 0;
+ i22 = i33 + 8 | 0;
i1 = i29 + 1 | 0;
L10 : while (1) {
if ((HEAP8[i1 >> 0] | 0) == 69) {
i2 = 48;
break;
}
- do if (HEAP8[i28 >> 0] | 0) {
- i8 = HEAP32[i22 >> 2] | 0;
+ do if (HEAP8[i27 >> 0] | 0) {
+ i8 = HEAP32[i14 >> 2] | 0;
i2 = HEAP32[i24 >> 2] | 0;
- i4 = HEAP32[i18 >> 2] | 0;
- if (i2 >>> 0 < i4 >>> 0) {
+ i3 = HEAP32[i20 >> 2] | 0;
+ if (i2 >>> 0 < i3 >>> 0) {
HEAP32[i2 >> 2] = 0;
HEAP32[i2 + 4 >> 2] = 0;
HEAP32[i2 + 8 >> 2] = 0;
@@ -29172,95 +28202,95 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_
HEAP32[i24 >> 2] = (HEAP32[i24 >> 2] | 0) + 16;
break;
}
- i3 = HEAP32[i23 >> 2] | 0;
- i13 = i2 - i3 | 0;
+ i4 = HEAP32[i23 >> 2] | 0;
+ i13 = i2 - i4 | 0;
i7 = i13 >> 4;
i5 = i7 + 1 | 0;
if ((i13 | 0) < -16) {
i2 = 13;
break L10;
}
- i2 = i4 - i3 | 0;
+ i2 = i3 - i4 | 0;
if (i2 >> 4 >>> 0 < 1073741823) {
i2 = i2 >> 3;
i2 = i2 >>> 0 < i5 >>> 0 ? i5 : i2;
} else i2 = 2147483647;
- __ZNSt3__114__split_bufferINS_6vectorINS1_IN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEEERNS5_IS9_Lj4096EEEEC2EjjSB_(i31, i2, i7, i19);
- i13 = HEAP32[i15 >> 2] | 0;
+ __ZNSt3__114__split_bufferINS_6vectorINS1_IN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEEERNS5_IS9_Lj4096EEEEC2EjjSB_(i33, i2, i7, i21);
+ i13 = HEAP32[i22 >> 2] | 0;
HEAP32[i13 >> 2] = 0;
HEAP32[i13 + 4 >> 2] = 0;
HEAP32[i13 + 8 >> 2] = 0;
HEAP32[i13 + 12 >> 2] = i8;
- HEAP32[i15 >> 2] = i13 + 16;
- __ZNSt3__16vectorINS0_INS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEEENS4_IS8_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS8_RS9_EE(i23, i31);
- __ZNSt3__114__split_bufferINS_6vectorINS1_IN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEEERNS5_IS9_Lj4096EEEED2Ev(i31);
+ HEAP32[i22 >> 2] = i13 + 16;
+ __ZNSt3__16vectorINS0_INS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEEENS4_IS8_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS8_RS9_EE(i23, i33);
+ __ZNSt3__114__split_bufferINS_6vectorINS1_IN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEEERNS5_IS9_Lj4096EEEED2Ev(i33);
} while (0);
- i13 = ((HEAP32[i30 >> 2] | 0) - (HEAP32[i34 >> 2] | 0) | 0) / 24 | 0;
- i12 = __ZN10__cxxabiv112_GLOBAL__N_118parse_template_argINS0_2DbEEEPKcS4_S4_RT_(i1, i26, i34) | 0;
- i3 = ((HEAP32[i30 >> 2] | 0) - (HEAP32[i34 >> 2] | 0) | 0) / 24 | 0;
- L23 : do if (HEAP8[i28 >> 0] | 0) {
- i2 = HEAP32[i24 >> 2] | 0;
- i4 = i2 + -16 | 0;
+ i12 = ((HEAP32[i30 >> 2] | 0) - (HEAP32[i35 >> 2] | 0) | 0) / 24 | 0;
+ i13 = __ZN10__cxxabiv112_GLOBAL__N_118parse_template_argINS0_2DbEEEPKcS4_S4_RT_(i1, i28, i35) | 0;
+ i3 = ((HEAP32[i30 >> 2] | 0) - (HEAP32[i35 >> 2] | 0) | 0) / 24 | 0;
+ L23 : do if (HEAP8[i27 >> 0] | 0) {
+ i4 = HEAP32[i24 >> 2] | 0;
+ i2 = i4 + -16 | 0;
while (1) {
- if ((i2 | 0) == (i4 | 0)) break L23;
- i11 = i2 + -16 | 0;
+ if ((i4 | 0) == (i2 | 0)) break L23;
+ i11 = i4 + -16 | 0;
HEAP32[i24 >> 2] = i11;
__ZNSt3__113__vector_baseINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEED2Ev(i11);
- i2 = HEAP32[i24 >> 2] | 0;
+ i4 = HEAP32[i24 >> 2] | 0;
}
} while (0);
- if ((i12 | 0) == (i1 | 0) | (i12 | 0) == (i26 | 0)) {
+ if ((i13 | 0) == (i1 | 0) | (i13 | 0) == (i28 | 0)) {
i2 = 62;
break;
}
- L30 : do if (!(HEAP8[i28 >> 0] | 0)) i1 = i13; else {
+ L30 : do if (!(HEAP8[i27 >> 0] | 0)) i1 = i12; else {
i8 = HEAP32[i24 >> 2] | 0;
i1 = i8 + -16 | 0;
- i9 = HEAP32[i22 >> 2] | 0;
+ i9 = HEAP32[i14 >> 2] | 0;
i2 = i8 + -12 | 0;
i4 = HEAP32[i2 >> 2] | 0;
i11 = HEAP32[i8 + -8 >> 2] | 0;
- i5 = i11;
+ i7 = i11;
if (i4 >>> 0 < i11 >>> 0) {
HEAP32[i4 >> 2] = 0;
HEAP32[i4 + 4 >> 2] = 0;
HEAP32[i4 + 8 >> 2] = 0;
HEAP32[i4 + 12 >> 2] = i9;
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 16;
- i11 = i13;
+ i11 = i12;
} else {
i2 = HEAP32[i1 >> 2] | 0;
i11 = i4 - i2 | 0;
- i7 = i11 >> 4;
- i4 = i7 + 1 | 0;
+ i5 = i11 >> 4;
+ i4 = i5 + 1 | 0;
if ((i11 | 0) < -16) {
i2 = 26;
break L10;
}
- i2 = i5 - i2 | 0;
+ i2 = i7 - i2 | 0;
if (i2 >> 4 >>> 0 < 1073741823) {
i2 = i2 >> 3;
i2 = i2 >>> 0 < i4 >>> 0 ? i4 : i2;
} else i2 = 2147483647;
- __ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i31, i2, i7, i8 + -4 | 0);
- i11 = HEAP32[i17 >> 2] | 0;
+ __ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i33, i2, i5, i8 + -4 | 0);
+ i11 = HEAP32[i15 >> 2] | 0;
HEAP32[i11 >> 2] = 0;
HEAP32[i11 + 4 >> 2] = 0;
HEAP32[i11 + 8 >> 2] = 0;
HEAP32[i11 + 12 >> 2] = i9;
- HEAP32[i17 >> 2] = i11 + 16;
- __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i1, i31);
- __ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i31);
- i11 = i13;
+ HEAP32[i15 >> 2] = i11 + 16;
+ __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i1, i33);
+ __ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i33);
+ i11 = i12;
}
while (1) {
if (i11 >>> 0 >= i3 >>> 0) {
- i1 = i13;
+ i1 = i12;
break L30;
}
i8 = HEAP32[(HEAP32[i24 >> 2] | 0) + -12 >> 2] | 0;
i1 = i8 + -16 | 0;
- i9 = HEAP32[i34 >> 2] | 0;
+ i9 = HEAP32[i35 >> 2] | 0;
i10 = i9 + (i11 * 24 | 0) | 0;
i2 = i8 + -12 | 0;
i4 = HEAP32[i2 >> 2] | 0;
@@ -29280,13 +28310,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_
i2 = i2 << 1;
i2 = i2 >>> 0 < i4 >>> 0 ? i4 : i2;
} else i2 = 2147483647;
- __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i31, i2, i7, i8 + -4 | 0);
+ __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i33, i2, i7, i8 + -4 | 0);
i37 = HEAP32[i16 >> 2] | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i37, i10);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i37 + 12 | 0, i9 + (i11 * 24 | 0) + 12 | 0);
HEAP32[i16 >> 2] = i37 + 24;
- __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i1, i31);
- __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i31);
+ __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i1, i33);
+ __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i33);
} else {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i4, i10);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i4 + 12 | 0, i9 + (i11 * 24 | 0) + 12 | 0);
@@ -29297,78 +28327,78 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_
} while (0);
while (1) {
if (i1 >>> 0 >= i3 >>> 0) break;
- i37 = HEAP8[i33 >> 0] | 0;
- if (((i37 & 1) == 0 ? (i37 & 255) >>> 1 : HEAP32[i25 >> 2] | 0) >>> 0 > 1) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i33, 34990) | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i27, (HEAP32[i34 >> 2] | 0) + (i1 * 24 | 0) | 0);
- i37 = HEAP8[i27 >> 0] | 0;
+ i37 = HEAP8[i34 >> 0] | 0;
+ if (((i37 & 1) == 0 ? (i37 & 255) >>> 1 : HEAP32[i26 >> 2] | 0) >>> 0 > 1) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i34, 36454) | 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i25, (HEAP32[i35 >> 2] | 0) + (i1 * 24 | 0) | 0);
+ i37 = HEAP8[i25 >> 0] | 0;
i11 = (i37 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i33, i11 ? i21 : HEAP32[i14 >> 2] | 0, i11 ? (i37 & 255) >>> 1 : HEAP32[i20 >> 2] | 0) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i27);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i34, i11 ? i18 : HEAP32[i17 >> 2] | 0, i11 ? (i37 & 255) >>> 1 : HEAP32[i19 >> 2] | 0) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i25);
i1 = i1 + 1 | 0;
}
while (1) {
- if ((i3 | 0) == (i13 | 0)) {
- i1 = i12;
+ if ((i3 | 0) == (i12 | 0)) {
+ i1 = i13;
continue L10;
}
- i1 = HEAP32[i30 >> 2] | 0;
- i2 = i1 + -24 | 0;
+ i2 = HEAP32[i30 >> 2] | 0;
+ i1 = i2 + -24 | 0;
while (1) {
- if ((i1 | 0) == (i2 | 0)) break;
- i37 = i1 + -24 | 0;
+ if ((i2 | 0) == (i1 | 0)) break;
+ i37 = i2 + -24 | 0;
HEAP32[i30 >> 2] = i37;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i37);
- i1 = HEAP32[i30 >> 2] | 0;
+ i2 = HEAP32[i30 >> 2] | 0;
}
i3 = i3 + -1 | 0;
}
}
if ((i2 | 0) == 13) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i23); else if ((i2 | 0) == 26) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i1); else if ((i2 | 0) == 34) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i1); else if ((i2 | 0) == 48) {
i6 = i1 + 1 | 0;
- i37 = HEAP8[i33 >> 0] | 0;
+ i37 = HEAP8[i34 >> 0] | 0;
i29 = (i37 & 1) == 0;
- if ((HEAP8[(i29 ? i33 + 1 | 0 : HEAP32[i33 + 8 >> 2] | 0) + (i29 ? (i37 & 255) >>> 1 : HEAP32[i25 >> 2] | 0) + -1 >> 0] | 0) == 62) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i33, 34993) | 0; else __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i33, 34403) | 0;
- HEAP32[i32 >> 2] = HEAP32[i33 >> 2];
- HEAP32[i32 + 4 >> 2] = HEAP32[i33 + 4 >> 2];
- HEAP32[i32 + 8 >> 2] = HEAP32[i33 + 8 >> 2];
+ if ((HEAP8[(i29 ? i34 + 1 | 0 : HEAP32[i34 + 8 >> 2] | 0) + (i29 ? (i37 & 255) >>> 1 : HEAP32[i26 >> 2] | 0) + -1 >> 0] | 0) == 62) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i34, 36457) | 0; else __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i34, 35867) | 0;
+ HEAP32[i32 >> 2] = HEAP32[i34 >> 2];
+ HEAP32[i32 + 4 >> 2] = HEAP32[i34 + 4 >> 2];
+ HEAP32[i32 + 8 >> 2] = HEAP32[i34 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i33 + (i1 << 2) >> 2] = 0;
+ HEAP32[i34 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i35, i32);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i31, i32);
i1 = HEAP32[i30 >> 2] | 0;
- i37 = HEAP32[i34 + 8 >> 2] | 0;
+ i37 = HEAP32[i35 + 8 >> 2] | 0;
i4 = i37;
if (i1 >>> 0 < i37 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i1, i35);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i1, i31);
HEAP32[i30 >> 2] = (HEAP32[i30 >> 2] | 0) + 24;
} else {
- i2 = HEAP32[i34 >> 2] | 0;
+ i2 = HEAP32[i35 >> 2] | 0;
i37 = i1 - i2 | 0;
i5 = (i37 | 0) / 24 | 0;
i3 = i5 + 1 | 0;
- if ((i37 | 0) < -24) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i34);
+ if ((i37 | 0) < -24) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i35);
i1 = (i4 - i2 | 0) / 24 | 0;
if (i1 >>> 0 < 1073741823) {
i1 = i1 << 1;
i1 = i1 >>> 0 < i3 >>> 0 ? i3 : i1;
} else i1 = 2147483647;
- __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i31, i1, i5, i34 + 12 | 0);
- i37 = i31 + 8 | 0;
+ __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i33, i1, i5, i35 + 12 | 0);
+ i37 = i33 + 8 | 0;
i30 = HEAP32[i37 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i30, i35);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i30, i31);
HEAP32[i37 >> 2] = i30 + 24;
- __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i34, i31);
- __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i31);
+ __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i35, i33);
+ __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i33);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i35);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i31);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i32);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i33);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i34);
break;
} else if ((i2 | 0) == 62) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i33);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i34);
i6 = i29;
break;
}
@@ -29377,252 +28407,6 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_
return i6 | 0;
}
-function __ZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefE(i29, i2) {
- i29 = i29 | 0;
- i2 = i2 | 0;
- var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0, i37 = 0, i38 = 0, i39 = 0, i40 = 0, i41 = 0;
- i41 = STACKTOP;
- STACKTOP = STACKTOP + 288 | 0;
- i20 = i41 + 72 | 0;
- i18 = i41 + 272 | 0;
- i35 = i41 + 268 | 0;
- i22 = i41 + 264 | 0;
- i3 = i41 + 260 | 0;
- i26 = i41 + 256 | 0;
- i24 = i41 + 277 | 0;
- i25 = i41 + 276 | 0;
- i36 = i41 + 224 | 0;
- i37 = i41 + 216 | 0;
- i33 = i41 + 204 | 0;
- i34 = i41 + 188 | 0;
- i32 = i41 + 132 | 0;
- i23 = i41 + 112 | 0;
- i28 = i41 + 104 | 0;
- i9 = i41 + 252 | 0;
- i10 = i41 + 248 | 0;
- i12 = i41 + 244 | 0;
- i11 = i41 + 220 | 0;
- i27 = i41 + 100 | 0;
- i14 = i41 + 200 | 0;
- i15 = i41 + 184 | 0;
- i17 = i41 + 128 | 0;
- i16 = i41 + 108 | 0;
- i39 = i41 + 48 | 0;
- i40 = i41 + 24 | 0;
- i38 = i41;
- i19 = i41 + 96 | 0;
- i1 = i29 + 44 | 0;
- if (HEAP32[i1 >> 2] | 0 ? (i30 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38004, 13146) | 0, i31 = __ZN6cashew3RefixEj(i2, 1) | 0, i31 = __ZN6cashew5Value10getIStringEv(HEAP32[i31 >> 2] | 0) | 0, __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i30, HEAP32[i31 >> 2] | 0) | 0, 10) | 0, (HEAP32[i1 >> 2] | 0) > 1) : 0) {
- __ZN6cashew5Value9stringifyERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEb(HEAP32[i2 >> 2] | 0, 38004, 0);
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(38004, 10) | 0;
- }
- i21 = i29 + 4 | 0;
- i8 = __ZN10MixedArena5allocIN4wasm8FunctionEEEPT_v(HEAP32[i21 >> 2] | 0) | 0;
- HEAP32[i35 >> 2] = i8;
- i30 = __ZN6cashew3RefixEj(i2, 1) | 0;
- i30 = __ZN6cashew5Value10getIStringEv(HEAP32[i30 >> 2] | 0) | 0;
- HEAP32[i8 >> 2] = HEAP32[i30 >> 2];
- i8 = __ZN6cashew3RefixEj(i2, 2) | 0;
- i8 = HEAP32[i8 >> 2] | 0;
- i30 = __ZN6cashew3RefixEj(i2, 3) | 0;
- HEAP32[i22 >> 2] = HEAP32[i30 >> 2];
- HEAP32[i3 >> 2] = 0;
- HEAP32[i26 >> 2] = i3;
- HEAP32[i36 >> 2] = 0;
- HEAP32[i36 + 4 >> 2] = 0;
- HEAP32[i36 + 8 >> 2] = 0;
- HEAP32[i36 + 12 >> 2] = 0;
- HEAPF32[i36 + 16 >> 2] = 1.0;
- HEAP32[i37 >> 2] = 0;
- HEAP32[i33 >> 2] = 0;
- i30 = i33 + 4 | 0;
- HEAP32[i30 >> 2] = 0;
- HEAP32[i33 + 8 >> 2] = 0;
- HEAP32[i34 >> 2] = 0;
- i31 = i34 + 4 | 0;
- HEAP32[i31 >> 2] = 0;
- HEAP32[i34 + 8 >> 2] = 0;
- HEAP32[i32 >> 2] = 0;
- HEAP32[i32 + 4 >> 2] = 0;
- HEAP32[i32 + 8 >> 2] = 0;
- HEAP32[i32 + 12 >> 2] = 0;
- HEAPF32[i32 + 16 >> 2] = 1.0;
- i13 = i32 + 20 | 0;
- HEAP32[i32 + 48 >> 2] = 0;
- HEAP32[i13 >> 2] = 0;
- HEAP32[i13 + 4 >> 2] = 0;
- HEAP32[i13 + 8 >> 2] = 0;
- HEAP32[i13 + 12 >> 2] = 0;
- HEAP32[i13 + 16 >> 2] = 0;
- HEAP32[i13 + 20 >> 2] = 0;
- i13 = i29 + 80 | 0;
- i7 = 0;
- while (1) {
- if (i7 >>> 0 >= (__ZN6cashew5Value4sizeEv(i8) | 0) >>> 0) {
- i1 = 6;
- break;
- }
- i6 = __ZN6cashew3RefixEj(i22, i7) | 0;
- HEAP32[i23 >> 2] = HEAP32[i6 >> 2];
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i23, 0) | 0, 36924) | 0)) {
- i1 = 8;
- break;
- }
- i6 = __ZN6cashew3RefixEj(i23, 1) | 0;
- HEAP32[i23 >> 2] = HEAP32[i6 >> 2];
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i23, 0) | 0, 36928) | 0)) {
- i1 = 11;
- break;
- }
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i23, 2) | 0, 0) | 0, 36932) | 0)) {
- i1 = 11;
- break;
- }
- i1 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i23, 2) | 0, 1) | 0;
- i1 = __ZN6cashew5Value10getIStringEv(HEAP32[i1 >> 2] | 0) | 0;
- i1 = HEAP32[i1 >> 2] | 0;
- HEAP32[i28 >> 2] = i1;
- i5 = __ZN6cashew3RefixEj(i23, 3) | 0;
- HEAP32[i9 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i10 >> 2] = HEAP32[i13 >> 2];
- HEAP32[i18 >> 2] = HEAP32[i9 >> 2];
- HEAP32[i20 >> 2] = HEAP32[i10 >> 2];
- i5 = __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i18, 0, 0, i20) | 0;
- i2 = HEAP32[i35 >> 2] | 0;
- i6 = __ZN4wasm13asmToWasmTypeE7AsmType(i5) | 0;
- HEAP32[i12 >> 2] = i6;
- i4 = i2 + 12 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if (i3 >>> 0 < (HEAP32[i2 + 16 >> 2] | 0) >>> 0) {
- HEAP32[i3 >> 2] = i1;
- HEAP32[i3 + 4 >> 2] = i6;
- HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 8;
- } else __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRN6cashew7IStringENS1_8WasmTypeEEEEvDpOT_(i2 + 8 | 0, i28, i12);
- __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE15__insert_uniqueERKS2_(i20, i36, i28);
- HEAP32[i11 >> 2] = i1;
- HEAP32[i20 >> 2] = HEAP32[i11 >> 2];
- __ZN7AsmData8addParamEN6cashew7IStringE7AsmType(i32, i20, i5);
- i7 = i7 + 1 | 0;
- }
- if ((i1 | 0) == 6) {
- i1 = __ZN6cashew5Value4sizeEv(i8) | 0;
- while (1) {
- if (i1 >>> 0 >= (__ZN6cashew5Value4sizeEv(HEAP32[i22 >> 2] | 0) | 0) >>> 0) break;
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i22, i1) | 0, 0) | 0, 36936) | 0)) break;
- i8 = __ZN6cashew3RefixEj(i22, i1) | 0;
- HEAP32[i23 >> 2] = HEAP32[i8 >> 2];
- i8 = 0;
- while (1) {
- i12 = __ZN6cashew3RefixEj(i23, 1) | 0;
- if (i8 >>> 0 >= (__ZN6cashew5Value4sizeEv(HEAP32[i12 >> 2] | 0) | 0) >>> 0) break;
- i2 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i23, 1) | 0, i8) | 0;
- HEAP32[i28 >> 2] = HEAP32[i2 >> 2];
- i2 = __ZN6cashew3RefixEj(i28, 0) | 0;
- i2 = __ZN6cashew5Value10getIStringEv(HEAP32[i2 >> 2] | 0) | 0;
- i2 = HEAP32[i2 >> 2] | 0;
- HEAP32[i27 >> 2] = i2;
- i6 = __ZN6cashew3RefixEj(i28, 1) | 0;
- HEAP32[i14 >> 2] = HEAP32[i6 >> 2];
- HEAP32[i15 >> 2] = HEAP32[i13 >> 2];
- HEAP32[i18 >> 2] = HEAP32[i14 >> 2];
- HEAP32[i20 >> 2] = HEAP32[i15 >> 2];
- i6 = __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i18, 0, 1, i20) | 0;
- i3 = HEAP32[i35 >> 2] | 0;
- i7 = __ZN4wasm13asmToWasmTypeE7AsmType(i6) | 0;
- HEAP32[i17 >> 2] = i7;
- i5 = i3 + 24 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- if (i4 >>> 0 < (HEAP32[i3 + 28 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
- HEAP32[i4 + 4 >> 2] = i7;
- HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 8;
- } else __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRN6cashew7IStringENS1_8WasmTypeEEEEvDpOT_(i3 + 20 | 0, i27, i17);
- __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE15__insert_uniqueERKS2_(i20, i36, i27);
- HEAP32[i16 >> 2] = i2;
- HEAP32[i20 >> 2] = HEAP32[i16 >> 2];
- __ZN7AsmData6addVarEN6cashew7IStringE7AsmType(i32, i20, i6);
- i8 = i8 + 1 | 0;
- }
- i1 = i1 + 1 | 0;
- }
- HEAP8[i18 >> 0] = 0;
- HEAP32[i23 >> 2] = i18;
- HEAP32[i23 + 4 >> 2] = i35;
- HEAP32[i23 + 8 >> 2] = i36;
- HEAP32[i23 + 12 >> 2] = i32;
- HEAP8[i28 >> 0] = 0;
- HEAP8[i27 >> 0] = 0;
- HEAP32[i39 + 16 >> 2] = 0;
- HEAP32[i40 + 16 >> 2] = 0;
- i18 = __Znwj(68) | 0;
- HEAP32[i18 >> 2] = 2772;
- HEAP32[i18 + 4 >> 2] = i29;
- HEAP32[i18 + 8 >> 2] = i38;
- HEAP32[i18 + 12 >> 2] = i36;
- HEAP32[i18 + 16 >> 2] = i40;
- HEAP32[i18 + 20 >> 2] = i32;
- HEAP32[i18 + 24 >> 2] = i23;
- HEAP32[i18 + 28 >> 2] = i28;
- HEAP32[i18 + 32 >> 2] = i35;
- HEAP32[i18 + 36 >> 2] = i27;
- HEAP32[i18 + 40 >> 2] = i37;
- HEAP32[i18 + 44 >> 2] = i24;
- HEAP32[i18 + 48 >> 2] = i33;
- HEAP32[i18 + 52 >> 2] = i39;
- HEAP32[i18 + 56 >> 2] = i34;
- HEAP32[i18 + 60 >> 2] = i25;
- HEAP32[i18 + 64 >> 2] = i26;
- HEAP32[i38 + 16 >> 2] = i18;
- i28 = i29;
- i29 = i38;
- HEAP32[i20 + 16 >> 2] = i20;
- HEAP32[i20 >> 2] = 2816;
- HEAP32[i20 + 4 >> 2] = i28;
- HEAP32[i20 + 8 >> 2] = i29;
- __ZNSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEjEE4swapERS7_(i20, i40);
- __ZNSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEjEED2Ev(i20);
- HEAP32[i20 + 16 >> 2] = i20;
- HEAP32[i20 >> 2] = 2860;
- HEAP32[i20 + 4 >> 2] = i28;
- HEAP32[i20 + 8 >> 2] = i29;
- __ZNSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEjEE4swapERS7_(i20, i39);
- __ZNSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEjEED2Ev(i20);
- HEAP32[i19 >> 2] = HEAP32[i22 >> 2];
- HEAP32[i20 >> 2] = HEAP32[i19 >> 2];
- i29 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEjEEclES5_j(i39, i20, i1) | 0;
- HEAP32[(HEAP32[i35 >> 2] | 0) + 36 >> 2] = i29;
- if (HEAP8[i27 >> 0] | 0) {
- i1 = __ZN4wasm10Expression8dyn_castINS_5BlockEEEPT_v(HEAP32[(HEAP32[i35 >> 2] | 0) + 36 >> 2] | 0) | 0;
- if (!((i1 | 0) != 0 ? (HEAP32[i1 + 8 >> 2] | 0) == 0 : 0)) {
- i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i21 >> 2] | 0) | 0;
- i4 = (HEAP32[i35 >> 2] | 0) + 36 | 0;
- i3 = i1 + 16 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 20 >> 2] | 0)) __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i1 + 12 | 0, i4); else {
- HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + 4;
- }
- HEAP32[(HEAP32[i35 >> 2] | 0) + 36 >> 2] = i1;
- }
- HEAP32[i1 + 8 >> 2] = HEAP32[9155];
- }
- if ((HEAP32[i30 >> 2] | 0) == (HEAP32[i33 >> 2] | 0) ? (HEAP32[i31 >> 2] | 0) == (HEAP32[i34 >> 2] | 0) : 0) if (!(HEAP32[i37 >> 2] | 0)) {
- i37 = HEAP32[i35 >> 2] | 0;
- __ZNSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEED2Ev(i38);
- __ZNSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEjEED2Ev(i40);
- __ZNSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEjEED2Ev(i39);
- __ZN7AsmDataD2Ev(i32);
- __ZNSt3__113__vector_baseIN6cashew7IStringENS_9allocatorIS2_EEED2Ev(i34);
- __ZNSt3__113__vector_baseIN6cashew7IStringENS_9allocatorIS2_EEED2Ev(i33);
- __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev(i36);
- STACKTOP = i41;
- return i37 | 0;
- } else ___assert_fail(13278, 12455, 1484, 13170);
- ___assert_fail(13226, 12455, 1483, 13170);
- } else if ((i1 | 0) == 8) ___assert_fail(13154, 12455, 742, 13170); else if ((i1 | 0) == 11) ___assert_fail(13186, 12455, 744, 13170);
- return 0;
-}
-
function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjP2tmcc(i41, i35, i36, i39, i37, i40, i38, i1) {
i41 = i41 | 0;
i35 = i35 | 0;
@@ -29635,52 +28419,52 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i42 = 0, i43 = 0, i44 = 0;
i42 = STACKTOP;
STACKTOP = STACKTOP + 144 | 0;
- i33 = i42 + 132 | 0;
- i27 = i42 + 116 | 0;
- i34 = i42 + 128 | 0;
- i1 = i42 + 124 | 0;
- i11 = i42 + 120 | 0;
- i25 = i42 + 112 | 0;
- i29 = i42 + 108 | 0;
- i2 = i42 + 104 | 0;
- i3 = i42 + 100 | 0;
- i4 = i42 + 96 | 0;
- i5 = i42 + 92 | 0;
- i6 = i42 + 88 | 0;
- i7 = i42 + 84 | 0;
- i8 = i42 + 80 | 0;
- i9 = i42 + 76 | 0;
- i10 = i42 + 72 | 0;
- i12 = i42 + 68 | 0;
- i13 = i42 + 64 | 0;
- i14 = i42 + 60 | 0;
- i15 = i42 + 56 | 0;
- i16 = i42 + 52 | 0;
- i17 = i42 + 48 | 0;
- i18 = i42 + 44 | 0;
- i19 = i42 + 40 | 0;
- i20 = i42 + 36 | 0;
- i21 = i42 + 32 | 0;
- i22 = i42 + 28 | 0;
- i23 = i42 + 24 | 0;
- i24 = i42 + 20 | 0;
- i26 = i42 + 16 | 0;
- i28 = i42 + 12 | 0;
- i30 = i42 + 8 | 0;
- i31 = i42 + 4 | 0;
- i32 = i42;
+ i2 = i42 + 132 | 0;
+ i1 = i42 + 116 | 0;
+ i28 = i42 + 128 | 0;
+ i13 = i42 + 124 | 0;
+ i24 = i42 + 120 | 0;
+ i29 = i42 + 112 | 0;
+ i30 = i42 + 108 | 0;
+ i31 = i42 + 104 | 0;
+ i32 = i42 + 100 | 0;
+ i33 = i42 + 96 | 0;
+ i34 = i42 + 92 | 0;
+ i3 = i42 + 88 | 0;
+ i4 = i42 + 84 | 0;
+ i5 = i42 + 80 | 0;
+ i6 = i42 + 76 | 0;
+ i7 = i42 + 72 | 0;
+ i8 = i42 + 68 | 0;
+ i9 = i42 + 64 | 0;
+ i10 = i42 + 60 | 0;
+ i11 = i42 + 56 | 0;
+ i12 = i42 + 52 | 0;
+ i14 = i42 + 48 | 0;
+ i15 = i42 + 44 | 0;
+ i16 = i42 + 40 | 0;
+ i17 = i42 + 36 | 0;
+ i18 = i42 + 32 | 0;
+ i19 = i42 + 28 | 0;
+ i20 = i42 + 24 | 0;
+ i21 = i42 + 20 | 0;
+ i22 = i42 + 16 | 0;
+ i23 = i42 + 12 | 0;
+ i25 = i42 + 8 | 0;
+ i26 = i42 + 4 | 0;
+ i27 = i42;
HEAP32[i37 >> 2] = 0;
i44 = __ZNKSt3__18ios_base6getlocEv(i39) | 0;
- HEAP32[i34 >> 2] = i44;
- i34 = __ZNKSt3__16locale9use_facetERNS0_2idE(i34, 38996) | 0;
+ HEAP32[i28 >> 2] = i44;
+ i28 = __ZNKSt3__16locale9use_facetERNS0_2idE(i28, 40468) | 0;
__ZNSt3__114__shared_count16__release_sharedEv(i44) | 0;
do switch (i38 << 24 >> 24 | 0) {
case 65:
case 97:
{
- HEAP32[i1 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i1 >> 2];
- __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__get_weekdaynameERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 24 | 0, i35, i33, i37, i34);
+ HEAP32[i13 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i13 >> 2];
+ __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__get_weekdaynameERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 24 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
@@ -29688,9 +28472,9 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
case 66:
case 98:
{
- HEAP32[i11 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i11 >> 2];
- __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE15__get_monthnameERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 16 | 0, i35, i33, i37, i34);
+ HEAP32[i24 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i24 >> 2];
+ __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE15__get_monthnameERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 16 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
@@ -29698,16 +28482,16 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
{
i44 = i41 + 8 | 0;
i44 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i44 >> 2] | 0) + 12 >> 2] & 127](i44) | 0;
- HEAP32[i25 >> 2] = HEAP32[i35 >> 2];
- HEAP32[i29 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i29 >> 2] = HEAP32[i35 >> 2];
+ HEAP32[i30 >> 2] = HEAP32[i36 >> 2];
i38 = HEAP8[i44 >> 0] | 0;
i36 = (i38 & 1) == 0;
i43 = i44 + 4 | 0;
i44 = i36 ? i43 : HEAP32[i44 + 8 >> 2] | 0;
i43 = i44 + ((i36 ? (i38 & 255) >>> 1 : HEAP32[i43 >> 2] | 0) << 2) | 0;
- HEAP32[i27 >> 2] = HEAP32[i25 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i29 >> 2];
- i43 = __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i41, i27, i33, i39, i37, i40, i44, i43) | 0;
+ HEAP32[i1 >> 2] = HEAP32[i29 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i30 >> 2];
+ i43 = __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i41, i1, i2, i39, i37, i40, i44, i43) | 0;
HEAP32[i35 >> 2] = i43;
i43 = 26;
break;
@@ -29715,189 +28499,189 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
case 101:
case 100:
{
- HEAP32[i2 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i2 >> 2];
- __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE9__get_dayERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 12 | 0, i35, i33, i37, i34);
+ HEAP32[i31 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i31 >> 2];
+ __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE9__get_dayERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 12 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
case 68:
{
- HEAP32[i3 >> 2] = HEAP32[i35 >> 2];
- HEAP32[i4 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i27 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i4 >> 2];
- i43 = __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i41, i27, i33, i39, i37, i40, 8684, 8716) | 0;
+ HEAP32[i32 >> 2] = HEAP32[i35 >> 2];
+ HEAP32[i33 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i32 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i33 >> 2];
+ i43 = __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i41, i1, i2, i39, i37, i40, 9252, 9284) | 0;
HEAP32[i35 >> 2] = i43;
i43 = 26;
break;
}
case 70:
{
- HEAP32[i5 >> 2] = HEAP32[i35 >> 2];
- HEAP32[i6 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i27 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i6 >> 2];
- i43 = __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i41, i27, i33, i39, i37, i40, 8716, 8748) | 0;
+ HEAP32[i34 >> 2] = HEAP32[i35 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i34 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
+ i43 = __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i41, i1, i2, i39, i37, i40, 9284, 9316) | 0;
HEAP32[i35 >> 2] = i43;
i43 = 26;
break;
}
case 72:
{
- HEAP32[i7 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i7 >> 2];
- __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE10__get_hourERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 8 | 0, i35, i33, i37, i34);
+ HEAP32[i4 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
+ __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE10__get_hourERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 8 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
case 73:
{
- HEAP32[i8 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i8 >> 2];
- __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13__get_12_hourERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 8 | 0, i35, i33, i37, i34);
+ HEAP32[i5 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i5 >> 2];
+ __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13__get_12_hourERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 8 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
case 106:
{
- HEAP32[i9 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i9 >> 2];
- __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE18__get_day_year_numERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 28 | 0, i35, i33, i37, i34);
+ HEAP32[i6 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i6 >> 2];
+ __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE18__get_day_year_numERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 28 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
case 109:
{
- HEAP32[i10 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i10 >> 2];
- __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11__get_monthERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 16 | 0, i35, i33, i37, i34);
+ HEAP32[i7 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i7 >> 2];
+ __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11__get_monthERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 16 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
case 77:
{
- HEAP32[i12 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i12 >> 2];
- __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE12__get_minuteERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 4 | 0, i35, i33, i37, i34);
+ HEAP32[i8 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i8 >> 2];
+ __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE12__get_minuteERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 4 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
case 116:
case 110:
{
- HEAP32[i13 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i13 >> 2];
- __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__get_white_spaceERS4_S4_RjRKNS_5ctypeIwEE(i41, i35, i33, i37, i34);
+ HEAP32[i9 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i9 >> 2];
+ __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__get_white_spaceERS4_S4_RjRKNS_5ctypeIwEE(i41, i35, i2, i37, i28);
i43 = 26;
break;
}
case 112:
{
- HEAP32[i14 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i14 >> 2];
- __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11__get_am_pmERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 8 | 0, i35, i33, i37, i34);
+ HEAP32[i10 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i10 >> 2];
+ __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11__get_am_pmERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 8 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
case 114:
{
- HEAP32[i15 >> 2] = HEAP32[i35 >> 2];
- HEAP32[i16 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i27 >> 2] = HEAP32[i15 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i16 >> 2];
- i43 = __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i41, i27, i33, i39, i37, i40, 8748, 8792) | 0;
+ HEAP32[i11 >> 2] = HEAP32[i35 >> 2];
+ HEAP32[i12 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i11 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i12 >> 2];
+ i43 = __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i41, i1, i2, i39, i37, i40, 9316, 9360) | 0;
HEAP32[i35 >> 2] = i43;
i43 = 26;
break;
}
case 82:
{
- HEAP32[i17 >> 2] = HEAP32[i35 >> 2];
- HEAP32[i18 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i27 >> 2] = HEAP32[i17 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i18 >> 2];
- i43 = __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i41, i27, i33, i39, i37, i40, 8792, 8812) | 0;
+ HEAP32[i14 >> 2] = HEAP32[i35 >> 2];
+ HEAP32[i15 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i14 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i15 >> 2];
+ i43 = __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i41, i1, i2, i39, i37, i40, 9360, 9380) | 0;
HEAP32[i35 >> 2] = i43;
i43 = 26;
break;
}
case 83:
{
- HEAP32[i19 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i19 >> 2];
- __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE12__get_secondERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40, i35, i33, i37, i34);
+ HEAP32[i16 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i16 >> 2];
+ __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE12__get_secondERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40, i35, i2, i37, i28);
i43 = 26;
break;
}
case 84:
{
- HEAP32[i20 >> 2] = HEAP32[i35 >> 2];
- HEAP32[i21 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i27 >> 2] = HEAP32[i20 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i21 >> 2];
- i43 = __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i41, i27, i33, i39, i37, i40, 8812, 8844) | 0;
+ HEAP32[i17 >> 2] = HEAP32[i35 >> 2];
+ HEAP32[i18 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i17 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i18 >> 2];
+ i43 = __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i41, i1, i2, i39, i37, i40, 9380, 9412) | 0;
HEAP32[i35 >> 2] = i43;
i43 = 26;
break;
}
case 119:
{
- HEAP32[i22 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i22 >> 2];
- __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13__get_weekdayERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 24 | 0, i35, i33, i37, i34);
+ HEAP32[i19 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i19 >> 2];
+ __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13__get_weekdayERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 24 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
case 120:
{
- i1 = HEAP32[(HEAP32[i41 >> 2] | 0) + 20 >> 2] | 0;
- HEAP32[i23 >> 2] = HEAP32[i35 >> 2];
- HEAP32[i24 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i27 >> 2] = HEAP32[i23 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i24 >> 2];
- i1 = FUNCTION_TABLE_iiiiiii[i1 & 63](i41, i27, i33, i39, i37, i40) | 0;
+ i44 = HEAP32[(HEAP32[i41 >> 2] | 0) + 20 >> 2] | 0;
+ HEAP32[i20 >> 2] = HEAP32[i35 >> 2];
+ HEAP32[i21 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i20 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i21 >> 2];
+ i1 = FUNCTION_TABLE_iiiiiii[i44 & 63](i41, i1, i2, i39, i37, i40) | 0;
break;
}
case 88:
{
i44 = i41 + 8 | 0;
i44 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i44 >> 2] | 0) + 24 >> 2] & 127](i44) | 0;
- HEAP32[i26 >> 2] = HEAP32[i35 >> 2];
- HEAP32[i28 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i22 >> 2] = HEAP32[i35 >> 2];
+ HEAP32[i23 >> 2] = HEAP32[i36 >> 2];
i38 = HEAP8[i44 >> 0] | 0;
i36 = (i38 & 1) == 0;
i43 = i44 + 4 | 0;
i44 = i36 ? i43 : HEAP32[i44 + 8 >> 2] | 0;
i43 = i44 + ((i36 ? (i38 & 255) >>> 1 : HEAP32[i43 >> 2] | 0) << 2) | 0;
- HEAP32[i27 >> 2] = HEAP32[i26 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i28 >> 2];
- i43 = __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i41, i27, i33, i39, i37, i40, i44, i43) | 0;
+ HEAP32[i1 >> 2] = HEAP32[i22 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i23 >> 2];
+ i43 = __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i41, i1, i2, i39, i37, i40, i44, i43) | 0;
HEAP32[i35 >> 2] = i43;
i43 = 26;
break;
}
case 121:
{
- HEAP32[i30 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i30 >> 2];
- __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE10__get_yearERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 20 | 0, i35, i33, i37, i34);
+ HEAP32[i25 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i25 >> 2];
+ __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE10__get_yearERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 20 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
case 89:
{
- HEAP32[i31 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i31 >> 2];
- __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11__get_year4ERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 20 | 0, i35, i33, i37, i34);
+ HEAP32[i26 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i26 >> 2];
+ __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11__get_year4ERiRS4_S4_RjRKNS_5ctypeIwEE(i41, i40 + 20 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
case 37:
{
- HEAP32[i32 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i32 >> 2];
- __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13__get_percentERS4_S4_RjRKNS_5ctypeIwEE(i41, i35, i33, i37, i34);
+ HEAP32[i27 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i27 >> 2];
+ __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13__get_percentERS4_S4_RjRKNS_5ctypeIwEE(i41, i35, i2, i37, i28);
i43 = 26;
break;
}
@@ -29911,6 +28695,7 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
STACKTOP = i42;
return i1 | 0;
}
+
function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjP2tmcc(i41, i35, i36, i39, i37, i40, i38, i1) {
i41 = i41 | 0;
i35 = i35 | 0;
@@ -29923,52 +28708,52 @@ function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i42 = 0, i43 = 0, i44 = 0;
i42 = STACKTOP;
STACKTOP = STACKTOP + 144 | 0;
- i33 = i42 + 132 | 0;
- i27 = i42 + 116 | 0;
- i34 = i42 + 128 | 0;
- i1 = i42 + 124 | 0;
- i11 = i42 + 120 | 0;
- i25 = i42 + 112 | 0;
- i29 = i42 + 108 | 0;
- i2 = i42 + 104 | 0;
- i3 = i42 + 100 | 0;
- i4 = i42 + 96 | 0;
- i5 = i42 + 92 | 0;
- i6 = i42 + 88 | 0;
- i7 = i42 + 84 | 0;
- i8 = i42 + 80 | 0;
- i9 = i42 + 76 | 0;
- i10 = i42 + 72 | 0;
- i12 = i42 + 68 | 0;
- i13 = i42 + 64 | 0;
- i14 = i42 + 60 | 0;
- i15 = i42 + 56 | 0;
- i16 = i42 + 52 | 0;
- i17 = i42 + 48 | 0;
- i18 = i42 + 44 | 0;
- i19 = i42 + 40 | 0;
- i20 = i42 + 36 | 0;
- i21 = i42 + 32 | 0;
- i22 = i42 + 28 | 0;
- i23 = i42 + 24 | 0;
- i24 = i42 + 20 | 0;
- i26 = i42 + 16 | 0;
- i28 = i42 + 12 | 0;
- i30 = i42 + 8 | 0;
- i31 = i42 + 4 | 0;
- i32 = i42;
+ i2 = i42 + 132 | 0;
+ i1 = i42 + 116 | 0;
+ i28 = i42 + 128 | 0;
+ i13 = i42 + 124 | 0;
+ i24 = i42 + 120 | 0;
+ i29 = i42 + 112 | 0;
+ i30 = i42 + 108 | 0;
+ i31 = i42 + 104 | 0;
+ i32 = i42 + 100 | 0;
+ i33 = i42 + 96 | 0;
+ i34 = i42 + 92 | 0;
+ i3 = i42 + 88 | 0;
+ i4 = i42 + 84 | 0;
+ i5 = i42 + 80 | 0;
+ i6 = i42 + 76 | 0;
+ i7 = i42 + 72 | 0;
+ i8 = i42 + 68 | 0;
+ i9 = i42 + 64 | 0;
+ i10 = i42 + 60 | 0;
+ i11 = i42 + 56 | 0;
+ i12 = i42 + 52 | 0;
+ i14 = i42 + 48 | 0;
+ i15 = i42 + 44 | 0;
+ i16 = i42 + 40 | 0;
+ i17 = i42 + 36 | 0;
+ i18 = i42 + 32 | 0;
+ i19 = i42 + 28 | 0;
+ i20 = i42 + 24 | 0;
+ i21 = i42 + 20 | 0;
+ i22 = i42 + 16 | 0;
+ i23 = i42 + 12 | 0;
+ i25 = i42 + 8 | 0;
+ i26 = i42 + 4 | 0;
+ i27 = i42;
HEAP32[i37 >> 2] = 0;
i44 = __ZNKSt3__18ios_base6getlocEv(i39) | 0;
- HEAP32[i34 >> 2] = i44;
- i34 = __ZNKSt3__16locale9use_facetERNS0_2idE(i34, 38964) | 0;
+ HEAP32[i28 >> 2] = i44;
+ i28 = __ZNKSt3__16locale9use_facetERNS0_2idE(i28, 40436) | 0;
__ZNSt3__114__shared_count16__release_sharedEv(i44) | 0;
do switch (i38 << 24 >> 24 | 0) {
case 65:
case 97:
{
- HEAP32[i1 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i1 >> 2];
- __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__get_weekdaynameERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 24 | 0, i35, i33, i37, i34);
+ HEAP32[i13 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i13 >> 2];
+ __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__get_weekdaynameERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 24 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
@@ -29976,9 +28761,9 @@ function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
case 66:
case 98:
{
- HEAP32[i11 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i11 >> 2];
- __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE15__get_monthnameERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 16 | 0, i35, i33, i37, i34);
+ HEAP32[i24 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i24 >> 2];
+ __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE15__get_monthnameERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 16 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
@@ -29986,15 +28771,15 @@ function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
{
i43 = i41 + 8 | 0;
i43 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i43 >> 2] | 0) + 12 >> 2] & 127](i43) | 0;
- HEAP32[i25 >> 2] = HEAP32[i35 >> 2];
- HEAP32[i29 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i29 >> 2] = HEAP32[i35 >> 2];
+ HEAP32[i30 >> 2] = HEAP32[i36 >> 2];
i38 = HEAP8[i43 >> 0] | 0;
i36 = (i38 & 1) == 0;
i44 = i36 ? i43 + 1 | 0 : HEAP32[i43 + 8 >> 2] | 0;
i43 = i44 + (i36 ? (i38 & 255) >>> 1 : HEAP32[i43 + 4 >> 2] | 0) | 0;
- HEAP32[i27 >> 2] = HEAP32[i25 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i29 >> 2];
- i43 = __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i41, i27, i33, i39, i37, i40, i44, i43) | 0;
+ HEAP32[i1 >> 2] = HEAP32[i29 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i30 >> 2];
+ i43 = __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i41, i1, i2, i39, i37, i40, i44, i43) | 0;
HEAP32[i35 >> 2] = i43;
i43 = 26;
break;
@@ -30002,188 +28787,188 @@ function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
case 101:
case 100:
{
- HEAP32[i2 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i2 >> 2];
- __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE9__get_dayERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 12 | 0, i35, i33, i37, i34);
+ HEAP32[i31 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i31 >> 2];
+ __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE9__get_dayERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 12 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
case 68:
{
- HEAP32[i3 >> 2] = HEAP32[i35 >> 2];
- HEAP32[i4 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i27 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i4 >> 2];
- i43 = __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i41, i27, i33, i39, i37, i40, 31636, 31644) | 0;
+ HEAP32[i32 >> 2] = HEAP32[i35 >> 2];
+ HEAP32[i33 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i32 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i33 >> 2];
+ i43 = __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i41, i1, i2, i39, i37, i40, 33100, 33108) | 0;
HEAP32[i35 >> 2] = i43;
i43 = 26;
break;
}
case 70:
{
- HEAP32[i5 >> 2] = HEAP32[i35 >> 2];
- HEAP32[i6 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i27 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i6 >> 2];
- i43 = __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i41, i27, i33, i39, i37, i40, 31644, 31652) | 0;
+ HEAP32[i34 >> 2] = HEAP32[i35 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i34 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
+ i43 = __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i41, i1, i2, i39, i37, i40, 33108, 33116) | 0;
HEAP32[i35 >> 2] = i43;
i43 = 26;
break;
}
case 72:
{
- HEAP32[i7 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i7 >> 2];
- __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE10__get_hourERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 8 | 0, i35, i33, i37, i34);
+ HEAP32[i4 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
+ __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE10__get_hourERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 8 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
case 73:
{
- HEAP32[i8 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i8 >> 2];
- __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13__get_12_hourERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 8 | 0, i35, i33, i37, i34);
+ HEAP32[i5 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i5 >> 2];
+ __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13__get_12_hourERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 8 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
case 106:
{
- HEAP32[i9 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i9 >> 2];
- __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE18__get_day_year_numERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 28 | 0, i35, i33, i37, i34);
+ HEAP32[i6 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i6 >> 2];
+ __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE18__get_day_year_numERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 28 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
case 109:
{
- HEAP32[i10 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i10 >> 2];
- __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11__get_monthERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 16 | 0, i35, i33, i37, i34);
+ HEAP32[i7 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i7 >> 2];
+ __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11__get_monthERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 16 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
case 77:
{
- HEAP32[i12 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i12 >> 2];
- __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE12__get_minuteERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 4 | 0, i35, i33, i37, i34);
+ HEAP32[i8 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i8 >> 2];
+ __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE12__get_minuteERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 4 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
case 116:
case 110:
{
- HEAP32[i13 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i13 >> 2];
- __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__get_white_spaceERS4_S4_RjRKNS_5ctypeIcEE(i41, i35, i33, i37, i34);
+ HEAP32[i9 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i9 >> 2];
+ __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__get_white_spaceERS4_S4_RjRKNS_5ctypeIcEE(i41, i35, i2, i37, i28);
i43 = 26;
break;
}
case 112:
{
- HEAP32[i14 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i14 >> 2];
- __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11__get_am_pmERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 8 | 0, i35, i33, i37, i34);
+ HEAP32[i10 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i10 >> 2];
+ __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11__get_am_pmERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 8 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
case 114:
{
- HEAP32[i15 >> 2] = HEAP32[i35 >> 2];
- HEAP32[i16 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i27 >> 2] = HEAP32[i15 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i16 >> 2];
- i43 = __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i41, i27, i33, i39, i37, i40, 31652, 31663) | 0;
+ HEAP32[i11 >> 2] = HEAP32[i35 >> 2];
+ HEAP32[i12 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i11 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i12 >> 2];
+ i43 = __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i41, i1, i2, i39, i37, i40, 33116, 33127) | 0;
HEAP32[i35 >> 2] = i43;
i43 = 26;
break;
}
case 82:
{
- HEAP32[i17 >> 2] = HEAP32[i35 >> 2];
- HEAP32[i18 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i27 >> 2] = HEAP32[i17 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i18 >> 2];
- i43 = __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i41, i27, i33, i39, i37, i40, 31663, 31668) | 0;
+ HEAP32[i14 >> 2] = HEAP32[i35 >> 2];
+ HEAP32[i15 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i14 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i15 >> 2];
+ i43 = __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i41, i1, i2, i39, i37, i40, 33127, 33132) | 0;
HEAP32[i35 >> 2] = i43;
i43 = 26;
break;
}
case 83:
{
- HEAP32[i19 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i19 >> 2];
- __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE12__get_secondERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40, i35, i33, i37, i34);
+ HEAP32[i16 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i16 >> 2];
+ __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE12__get_secondERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40, i35, i2, i37, i28);
i43 = 26;
break;
}
case 84:
{
- HEAP32[i20 >> 2] = HEAP32[i35 >> 2];
- HEAP32[i21 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i27 >> 2] = HEAP32[i20 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i21 >> 2];
- i43 = __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i41, i27, i33, i39, i37, i40, 31668, 31676) | 0;
+ HEAP32[i17 >> 2] = HEAP32[i35 >> 2];
+ HEAP32[i18 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i17 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i18 >> 2];
+ i43 = __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i41, i1, i2, i39, i37, i40, 33132, 33140) | 0;
HEAP32[i35 >> 2] = i43;
i43 = 26;
break;
}
case 119:
{
- HEAP32[i22 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i22 >> 2];
- __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13__get_weekdayERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 24 | 0, i35, i33, i37, i34);
+ HEAP32[i19 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i19 >> 2];
+ __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13__get_weekdayERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 24 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
case 120:
{
- i1 = HEAP32[(HEAP32[i41 >> 2] | 0) + 20 >> 2] | 0;
- HEAP32[i23 >> 2] = HEAP32[i35 >> 2];
- HEAP32[i24 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i27 >> 2] = HEAP32[i23 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i24 >> 2];
- i1 = FUNCTION_TABLE_iiiiiii[i1 & 63](i41, i27, i33, i39, i37, i40) | 0;
+ i44 = HEAP32[(HEAP32[i41 >> 2] | 0) + 20 >> 2] | 0;
+ HEAP32[i20 >> 2] = HEAP32[i35 >> 2];
+ HEAP32[i21 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i20 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i21 >> 2];
+ i1 = FUNCTION_TABLE_iiiiiii[i44 & 63](i41, i1, i2, i39, i37, i40) | 0;
break;
}
case 88:
{
i43 = i41 + 8 | 0;
i43 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i43 >> 2] | 0) + 24 >> 2] & 127](i43) | 0;
- HEAP32[i26 >> 2] = HEAP32[i35 >> 2];
- HEAP32[i28 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i22 >> 2] = HEAP32[i35 >> 2];
+ HEAP32[i23 >> 2] = HEAP32[i36 >> 2];
i38 = HEAP8[i43 >> 0] | 0;
i36 = (i38 & 1) == 0;
i44 = i36 ? i43 + 1 | 0 : HEAP32[i43 + 8 >> 2] | 0;
i43 = i44 + (i36 ? (i38 & 255) >>> 1 : HEAP32[i43 + 4 >> 2] | 0) | 0;
- HEAP32[i27 >> 2] = HEAP32[i26 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i28 >> 2];
- i43 = __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i41, i27, i33, i39, i37, i40, i44, i43) | 0;
+ HEAP32[i1 >> 2] = HEAP32[i22 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i23 >> 2];
+ i43 = __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i41, i1, i2, i39, i37, i40, i44, i43) | 0;
HEAP32[i35 >> 2] = i43;
i43 = 26;
break;
}
case 121:
{
- HEAP32[i30 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i30 >> 2];
- __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE10__get_yearERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 20 | 0, i35, i33, i37, i34);
+ HEAP32[i25 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i25 >> 2];
+ __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE10__get_yearERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 20 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
case 89:
{
- HEAP32[i31 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i31 >> 2];
- __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11__get_year4ERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 20 | 0, i35, i33, i37, i34);
+ HEAP32[i26 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i26 >> 2];
+ __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11__get_year4ERiRS4_S4_RjRKNS_5ctypeIcEE(i41, i40 + 20 | 0, i35, i2, i37, i28);
i43 = 26;
break;
}
case 37:
{
- HEAP32[i32 >> 2] = HEAP32[i36 >> 2];
- HEAP32[i33 >> 2] = HEAP32[i32 >> 2];
- __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13__get_percentERS4_S4_RjRKNS_5ctypeIcEE(i41, i35, i33, i37, i34);
+ HEAP32[i27 >> 2] = HEAP32[i36 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i27 >> 2];
+ __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13__get_percentERS4_S4_RjRKNS_5ctypeIcEE(i41, i35, i2, i37, i28);
i43 = 26;
break;
}
@@ -30203,29 +28988,29 @@ function _free(i1) {
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0;
if (!i1) return;
i3 = i1 + -8 | 0;
- i7 = HEAP32[9359] | 0;
+ i7 = HEAP32[9727] | 0;
if (i3 >>> 0 < i7 >>> 0) _abort();
i1 = HEAP32[i1 + -4 >> 2] | 0;
i2 = i1 & 3;
if ((i2 | 0) == 1) _abort();
i4 = i1 & -8;
- i13 = i3 + i4 | 0;
+ i12 = i3 + i4 | 0;
do if (!(i1 & 1)) {
i1 = HEAP32[i3 >> 2] | 0;
if (!i2) return;
i10 = i3 + (0 - i1) | 0;
i9 = i1 + i4 | 0;
if (i10 >>> 0 < i7 >>> 0) _abort();
- if ((i10 | 0) == (HEAP32[9360] | 0)) {
- i2 = i13 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if ((i1 & 3 | 0) != 3) {
+ if ((i10 | 0) == (HEAP32[9728] | 0)) {
+ i1 = i12 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ if ((i2 & 3 | 0) != 3) {
i16 = i10;
i6 = i9;
break;
}
- HEAP32[9357] = i9;
- HEAP32[i2 >> 2] = i1 & -2;
+ HEAP32[9725] = i9;
+ HEAP32[i1 >> 2] = i2 & -2;
HEAP32[i10 + 4 >> 2] = i9 | 1;
HEAP32[i10 + i9 >> 2] = i9;
return;
@@ -30234,13 +29019,13 @@ function _free(i1) {
if (i1 >>> 0 < 256) {
i2 = HEAP32[i10 + 8 >> 2] | 0;
i3 = HEAP32[i10 + 12 >> 2] | 0;
- i1 = 37460 + (i4 << 1 << 2) | 0;
+ i1 = 38932 + (i4 << 1 << 2) | 0;
if ((i2 | 0) != (i1 | 0)) {
if (i2 >>> 0 < i7 >>> 0) _abort();
if ((HEAP32[i2 + 12 >> 2] | 0) != (i10 | 0)) _abort();
}
if ((i3 | 0) == (i2 | 0)) {
- HEAP32[9355] = HEAP32[9355] & ~(1 << i4);
+ HEAP32[9723] = HEAP32[9723] & ~(1 << i4);
i16 = i10;
i6 = i9;
break;
@@ -30259,29 +29044,29 @@ function _free(i1) {
i5 = HEAP32[i10 + 24 >> 2] | 0;
i3 = HEAP32[i10 + 12 >> 2] | 0;
do if ((i3 | 0) == (i10 | 0)) {
- i3 = i10 + 16 | 0;
- i2 = i3 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i2 = i10 + 16 | 0;
+ i3 = i2 + 4 | 0;
+ i1 = HEAP32[i3 >> 2] | 0;
if (!i1) {
- i1 = HEAP32[i3 >> 2] | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
i8 = 0;
break;
- } else i2 = i3;
- }
+ }
+ } else i2 = i3;
while (1) {
- i4 = i1 + 20 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if (i3 | 0) {
- i1 = i3;
- i2 = i4;
+ i3 = i1 + 20 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if (i4 | 0) {
+ i1 = i4;
+ i2 = i3;
continue;
}
- i4 = i1 + 16 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if (!i3) break; else {
- i1 = i3;
- i2 = i4;
+ i3 = i1 + 16 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if (!i4) break; else {
+ i1 = i4;
+ i2 = i3;
}
}
if (i2 >>> 0 < i7 >>> 0) _abort(); else {
@@ -30304,17 +29089,17 @@ function _free(i1) {
} while (0);
if (i5) {
i1 = HEAP32[i10 + 28 >> 2] | 0;
- i2 = 37724 + (i1 << 2) | 0;
+ i2 = 39196 + (i1 << 2) | 0;
if ((i10 | 0) == (HEAP32[i2 >> 2] | 0)) {
HEAP32[i2 >> 2] = i8;
if (!i8) {
- HEAP32[9356] = HEAP32[9356] & ~(1 << i1);
+ HEAP32[9724] = HEAP32[9724] & ~(1 << i1);
i16 = i10;
i6 = i9;
break;
}
} else {
- if (i5 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort();
+ if (i5 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort();
i1 = i5 + 16 | 0;
if ((HEAP32[i1 >> 2] | 0) == (i10 | 0)) HEAP32[i1 >> 2] = i8; else HEAP32[i5 + 20 >> 2] = i8;
if (!i8) {
@@ -30323,18 +29108,18 @@ function _free(i1) {
break;
}
}
- i3 = HEAP32[9359] | 0;
+ i3 = HEAP32[9727] | 0;
if (i8 >>> 0 < i3 >>> 0) _abort();
HEAP32[i8 + 24 >> 2] = i5;
- i2 = i10 + 16 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- do if (i1 | 0) if (i1 >>> 0 < i3 >>> 0) _abort(); else {
- HEAP32[i8 + 16 >> 2] = i1;
- HEAP32[i1 + 24 >> 2] = i8;
+ i1 = i10 + 16 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ do if (i2 | 0) if (i2 >>> 0 < i3 >>> 0) _abort(); else {
+ HEAP32[i8 + 16 >> 2] = i2;
+ HEAP32[i2 + 24 >> 2] = i8;
break;
} while (0);
- i1 = HEAP32[i2 + 4 >> 2] | 0;
- if (i1) if (i1 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort(); else {
+ i1 = HEAP32[i1 + 4 >> 2] | 0;
+ if (i1) if (i1 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort(); else {
HEAP32[i8 + 20 >> 2] = i1;
HEAP32[i1 + 24 >> 2] = i8;
i16 = i10;
@@ -30352,25 +29137,25 @@ function _free(i1) {
i16 = i3;
i6 = i4;
} while (0);
- if (i16 >>> 0 >= i13 >>> 0) _abort();
- i1 = i13 + 4 | 0;
+ if (i16 >>> 0 >= i12 >>> 0) _abort();
+ i1 = i12 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
if (!(i2 & 1)) _abort();
if (!(i2 & 2)) {
- if ((i13 | 0) == (HEAP32[9361] | 0)) {
- i15 = (HEAP32[9358] | 0) + i6 | 0;
- HEAP32[9358] = i15;
- HEAP32[9361] = i16;
+ if ((i12 | 0) == (HEAP32[9729] | 0)) {
+ i15 = (HEAP32[9726] | 0) + i6 | 0;
+ HEAP32[9726] = i15;
+ HEAP32[9729] = i16;
HEAP32[i16 + 4 >> 2] = i15 | 1;
- if ((i16 | 0) != (HEAP32[9360] | 0)) return;
- HEAP32[9360] = 0;
- HEAP32[9357] = 0;
+ if ((i16 | 0) != (HEAP32[9728] | 0)) return;
+ HEAP32[9728] = 0;
+ HEAP32[9725] = 0;
return;
}
- if ((i13 | 0) == (HEAP32[9360] | 0)) {
- i15 = (HEAP32[9357] | 0) + i6 | 0;
- HEAP32[9357] = i15;
- HEAP32[9360] = i16;
+ if ((i12 | 0) == (HEAP32[9728] | 0)) {
+ i15 = (HEAP32[9725] | 0) + i6 | 0;
+ HEAP32[9725] = i15;
+ HEAP32[9728] = i16;
HEAP32[i16 + 4 >> 2] = i15 | 1;
HEAP32[i16 + i15 >> 2] = i15;
return;
@@ -30378,108 +29163,108 @@ function _free(i1) {
i6 = (i2 & -8) + i6 | 0;
i4 = i2 >>> 3;
do if (i2 >>> 0 >= 256) {
- i5 = HEAP32[i13 + 24 >> 2] | 0;
- i1 = HEAP32[i13 + 12 >> 2] | 0;
- do if ((i1 | 0) == (i13 | 0)) {
- i3 = i13 + 16 | 0;
- i2 = i3 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i5 = HEAP32[i12 + 24 >> 2] | 0;
+ i1 = HEAP32[i12 + 12 >> 2] | 0;
+ do if ((i1 | 0) == (i12 | 0)) {
+ i2 = i12 + 16 | 0;
+ i3 = i2 + 4 | 0;
+ i1 = HEAP32[i3 >> 2] | 0;
if (!i1) {
- i1 = HEAP32[i3 >> 2] | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
- i12 = 0;
+ i13 = 0;
break;
- } else i2 = i3;
- }
+ }
+ } else i2 = i3;
while (1) {
- i4 = i1 + 20 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if (i3 | 0) {
- i1 = i3;
- i2 = i4;
+ i3 = i1 + 20 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if (i4 | 0) {
+ i1 = i4;
+ i2 = i3;
continue;
}
- i4 = i1 + 16 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if (!i3) break; else {
- i1 = i3;
- i2 = i4;
+ i3 = i1 + 16 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if (!i4) break; else {
+ i1 = i4;
+ i2 = i3;
}
}
- if (i2 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort(); else {
+ if (i2 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort(); else {
HEAP32[i2 >> 2] = 0;
- i12 = i1;
+ i13 = i1;
break;
}
} else {
- i2 = HEAP32[i13 + 8 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort();
+ i2 = HEAP32[i12 + 8 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort();
i3 = i2 + 12 | 0;
- if ((HEAP32[i3 >> 2] | 0) != (i13 | 0)) _abort();
+ if ((HEAP32[i3 >> 2] | 0) != (i12 | 0)) _abort();
i4 = i1 + 8 | 0;
- if ((HEAP32[i4 >> 2] | 0) == (i13 | 0)) {
+ if ((HEAP32[i4 >> 2] | 0) == (i12 | 0)) {
HEAP32[i3 >> 2] = i1;
HEAP32[i4 >> 2] = i2;
- i12 = i1;
+ i13 = i1;
break;
} else _abort();
} while (0);
if (i5 | 0) {
- i1 = HEAP32[i13 + 28 >> 2] | 0;
- i2 = 37724 + (i1 << 2) | 0;
- if ((i13 | 0) == (HEAP32[i2 >> 2] | 0)) {
- HEAP32[i2 >> 2] = i12;
- if (!i12) {
- HEAP32[9356] = HEAP32[9356] & ~(1 << i1);
+ i1 = HEAP32[i12 + 28 >> 2] | 0;
+ i2 = 39196 + (i1 << 2) | 0;
+ if ((i12 | 0) == (HEAP32[i2 >> 2] | 0)) {
+ HEAP32[i2 >> 2] = i13;
+ if (!i13) {
+ HEAP32[9724] = HEAP32[9724] & ~(1 << i1);
break;
}
} else {
- if (i5 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort();
+ if (i5 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort();
i1 = i5 + 16 | 0;
- if ((HEAP32[i1 >> 2] | 0) == (i13 | 0)) HEAP32[i1 >> 2] = i12; else HEAP32[i5 + 20 >> 2] = i12;
- if (!i12) break;
+ if ((HEAP32[i1 >> 2] | 0) == (i12 | 0)) HEAP32[i1 >> 2] = i13; else HEAP32[i5 + 20 >> 2] = i13;
+ if (!i13) break;
}
- i3 = HEAP32[9359] | 0;
- if (i12 >>> 0 < i3 >>> 0) _abort();
- HEAP32[i12 + 24 >> 2] = i5;
- i2 = i13 + 16 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- do if (i1 | 0) if (i1 >>> 0 < i3 >>> 0) _abort(); else {
- HEAP32[i12 + 16 >> 2] = i1;
- HEAP32[i1 + 24 >> 2] = i12;
+ i3 = HEAP32[9727] | 0;
+ if (i13 >>> 0 < i3 >>> 0) _abort();
+ HEAP32[i13 + 24 >> 2] = i5;
+ i1 = i12 + 16 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ do if (i2 | 0) if (i2 >>> 0 < i3 >>> 0) _abort(); else {
+ HEAP32[i13 + 16 >> 2] = i2;
+ HEAP32[i2 + 24 >> 2] = i13;
break;
} while (0);
- i1 = HEAP32[i2 + 4 >> 2] | 0;
- if (i1 | 0) if (i1 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort(); else {
- HEAP32[i12 + 20 >> 2] = i1;
- HEAP32[i1 + 24 >> 2] = i12;
+ i1 = HEAP32[i1 + 4 >> 2] | 0;
+ if (i1 | 0) if (i1 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort(); else {
+ HEAP32[i13 + 20 >> 2] = i1;
+ HEAP32[i1 + 24 >> 2] = i13;
break;
}
}
} else {
- i2 = HEAP32[i13 + 8 >> 2] | 0;
- i3 = HEAP32[i13 + 12 >> 2] | 0;
- i1 = 37460 + (i4 << 1 << 2) | 0;
+ i2 = HEAP32[i12 + 8 >> 2] | 0;
+ i3 = HEAP32[i12 + 12 >> 2] | 0;
+ i1 = 38932 + (i4 << 1 << 2) | 0;
if ((i2 | 0) != (i1 | 0)) {
- if (i2 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort();
- if ((HEAP32[i2 + 12 >> 2] | 0) != (i13 | 0)) _abort();
+ if (i2 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort();
+ if ((HEAP32[i2 + 12 >> 2] | 0) != (i12 | 0)) _abort();
}
if ((i3 | 0) == (i2 | 0)) {
- HEAP32[9355] = HEAP32[9355] & ~(1 << i4);
+ HEAP32[9723] = HEAP32[9723] & ~(1 << i4);
break;
}
if ((i3 | 0) != (i1 | 0)) {
- if (i3 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort();
+ if (i3 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort();
i1 = i3 + 8 | 0;
- if ((HEAP32[i1 >> 2] | 0) == (i13 | 0)) i11 = i1; else _abort();
+ if ((HEAP32[i1 >> 2] | 0) == (i12 | 0)) i11 = i1; else _abort();
} else i11 = i3 + 8 | 0;
HEAP32[i2 + 12 >> 2] = i3;
HEAP32[i11 >> 2] = i2;
} while (0);
HEAP32[i16 + 4 >> 2] = i6 | 1;
HEAP32[i16 + i6 >> 2] = i6;
- if ((i16 | 0) == (HEAP32[9360] | 0)) {
- HEAP32[9357] = i6;
+ if ((i16 | 0) == (HEAP32[9728] | 0)) {
+ HEAP32[9725] = i6;
return;
}
} else {
@@ -30489,18 +29274,18 @@ function _free(i1) {
}
i1 = i6 >>> 3;
if (i6 >>> 0 < 256) {
- i3 = 37460 + (i1 << 1 << 2) | 0;
- i2 = HEAP32[9355] | 0;
+ i3 = 38932 + (i1 << 1 << 2) | 0;
+ i2 = HEAP32[9723] | 0;
i1 = 1 << i1;
if (i2 & i1) {
i1 = i3 + 8 | 0;
i2 = HEAP32[i1 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort(); else {
+ if (i2 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort(); else {
i14 = i1;
i15 = i2;
}
} else {
- HEAP32[9355] = i2 | i1;
+ HEAP32[9723] = i2 | i1;
i14 = i3 + 8 | 0;
i15 = i3;
}
@@ -30511,111 +29296,112 @@ function _free(i1) {
return;
}
i1 = i6 >>> 8;
- if (i1) if (i6 >>> 0 > 16777215) i2 = 31; else {
+ if (i1) if (i6 >>> 0 > 16777215) i3 = 31; else {
i14 = (i1 + 1048320 | 0) >>> 16 & 8;
i15 = i1 << i14;
i13 = (i15 + 520192 | 0) >>> 16 & 4;
i15 = i15 << i13;
- i2 = (i15 + 245760 | 0) >>> 16 & 2;
- i2 = 14 - (i13 | i14 | i2) + (i15 << i2 >>> 15) | 0;
- i2 = i6 >>> (i2 + 7 | 0) & 1 | i2 << 1;
- } else i2 = 0;
- i5 = 37724 + (i2 << 2) | 0;
- HEAP32[i16 + 28 >> 2] = i2;
+ i3 = (i15 + 245760 | 0) >>> 16 & 2;
+ i3 = 14 - (i13 | i14 | i3) + (i15 << i3 >>> 15) | 0;
+ i3 = i6 >>> (i3 + 7 | 0) & 1 | i3 << 1;
+ } else i3 = 0;
+ i4 = 39196 + (i3 << 2) | 0;
+ HEAP32[i16 + 28 >> 2] = i3;
HEAP32[i16 + 20 >> 2] = 0;
HEAP32[i16 + 16 >> 2] = 0;
- i1 = HEAP32[9356] | 0;
- i3 = 1 << i2;
- do if (i1 & i3) {
- i4 = i6 << ((i2 | 0) == 31 ? 0 : 25 - (i2 >>> 1) | 0);
- i3 = HEAP32[i5 >> 2] | 0;
+ i1 = HEAP32[9724] | 0;
+ i2 = 1 << i3;
+ do if (i1 & i2) {
+ i5 = i6 << ((i3 | 0) == 31 ? 0 : 25 - (i3 >>> 1) | 0);
+ i1 = HEAP32[i4 >> 2] | 0;
while (1) {
- if ((HEAP32[i3 + 4 >> 2] & -8 | 0) == (i6 | 0)) {
- i2 = 130;
+ if ((HEAP32[i1 + 4 >> 2] & -8 | 0) == (i6 | 0)) {
+ i3 = i1;
+ i4 = 130;
break;
}
- i1 = i3 + 16 + (i4 >>> 31 << 2) | 0;
- i2 = HEAP32[i1 >> 2] | 0;
- if (!i2) {
- i2 = 127;
+ i2 = i1 + 16 + (i5 >>> 31 << 2) | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if (!i3) {
+ i4 = 127;
break;
} else {
- i4 = i4 << 1;
- i3 = i2;
+ i5 = i5 << 1;
+ i1 = i3;
}
}
- if ((i2 | 0) == 127) if (i1 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort(); else {
- HEAP32[i1 >> 2] = i16;
- HEAP32[i16 + 24 >> 2] = i3;
+ if ((i4 | 0) == 127) if (i2 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort(); else {
+ HEAP32[i2 >> 2] = i16;
+ HEAP32[i16 + 24 >> 2] = i1;
HEAP32[i16 + 12 >> 2] = i16;
HEAP32[i16 + 8 >> 2] = i16;
break;
- } else if ((i2 | 0) == 130) {
- i2 = i3 + 8 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- i15 = HEAP32[9359] | 0;
- if (i1 >>> 0 >= i15 >>> 0 & i3 >>> 0 >= i15 >>> 0) {
- HEAP32[i1 + 12 >> 2] = i16;
- HEAP32[i2 >> 2] = i16;
- HEAP32[i16 + 8 >> 2] = i1;
+ } else if ((i4 | 0) == 130) {
+ i1 = i3 + 8 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ i15 = HEAP32[9727] | 0;
+ if (i2 >>> 0 >= i15 >>> 0 & i3 >>> 0 >= i15 >>> 0) {
+ HEAP32[i2 + 12 >> 2] = i16;
+ HEAP32[i1 >> 2] = i16;
+ HEAP32[i16 + 8 >> 2] = i2;
HEAP32[i16 + 12 >> 2] = i3;
HEAP32[i16 + 24 >> 2] = 0;
break;
} else _abort();
}
} else {
- HEAP32[9356] = i1 | i3;
- HEAP32[i5 >> 2] = i16;
- HEAP32[i16 + 24 >> 2] = i5;
+ HEAP32[9724] = i1 | i2;
+ HEAP32[i4 >> 2] = i16;
+ HEAP32[i16 + 24 >> 2] = i4;
HEAP32[i16 + 12 >> 2] = i16;
HEAP32[i16 + 8 >> 2] = i16;
} while (0);
- i16 = (HEAP32[9363] | 0) + -1 | 0;
- HEAP32[9363] = i16;
- if (!i16) i1 = 37876; else return;
+ i16 = (HEAP32[9731] | 0) + -1 | 0;
+ HEAP32[9731] = i16;
+ if (!i16) i1 = 39348; else return;
while (1) {
i1 = HEAP32[i1 >> 2] | 0;
if (!i1) break; else i1 = i1 + 8 | 0;
}
- HEAP32[9363] = -1;
+ HEAP32[9731] = -1;
return;
}
-function __ZN10__cxxabiv112_GLOBAL__N_120parse_template_paramINS0_2DbEEEPKcS4_S4_RT_(i17, i13, i20) {
- i17 = i17 | 0;
+function __ZN10__cxxabiv112_GLOBAL__N_120parse_template_paramINS0_2DbEEEPKcS4_S4_RT_(i18, i13, i20) {
+ i18 = i18 | 0;
i13 = i13 | 0;
i20 = i20 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i14 = 0, i15 = 0, i16 = 0, i18 = 0, i19 = 0, i21 = 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i19 = 0, i21 = 0;
i21 = STACKTOP;
STACKTOP = STACKTOP + 96 | 0;
i19 = i21 + 64 | 0;
i5 = i21 + 40 | 0;
- i18 = i21 + 16 | 0;
- i16 = i21;
- i15 = i17;
- L1 : do if ((i13 - i15 | 0) > 1 ? (HEAP8[i17 >> 0] | 0) == 84 : 0) {
- i12 = HEAP8[i17 + 1 >> 0] | 0;
+ i16 = i21 + 16 | 0;
+ i17 = i21;
+ i15 = i18;
+ L1 : do if ((i13 - i15 | 0) > 1 ? (HEAP8[i18 >> 0] | 0) == 84 : 0) {
+ i12 = HEAP8[i18 + 1 >> 0] | 0;
if (i12 << 24 >> 24 == 95) {
i1 = HEAP32[i20 + 36 >> 2] | 0;
if ((HEAP32[i20 + 32 >> 2] | 0) == (i1 | 0)) {
- i1 = i17;
+ i1 = i18;
break;
}
i2 = HEAP32[i1 + -16 >> 2] | 0;
if ((i2 | 0) != (HEAP32[i1 + -12 >> 2] | 0)) {
i7 = HEAP32[i2 + 4 >> 2] | 0;
- i9 = i20 + 4 | 0;
- i10 = i20 + 8 | 0;
- i11 = i20 + 12 | 0;
- i8 = i19 + 8 | 0;
+ i8 = i20 + 4 | 0;
+ i9 = i20 + 8 | 0;
+ i10 = i20 + 12 | 0;
+ i11 = i19 + 8 | 0;
i6 = HEAP32[i2 >> 2] | 0;
while (1) {
if ((i6 | 0) == (i7 | 0)) {
i1 = 8;
break;
}
- i1 = HEAP32[i9 >> 2] | 0;
- i5 = HEAP32[i10 >> 2] | 0;
+ i1 = HEAP32[i8 >> 2] | 0;
+ i5 = HEAP32[i9 >> 2] | 0;
i2 = i5;
if ((i1 | 0) == (i5 | 0)) {
i3 = HEAP32[i20 >> 2] | 0;
@@ -30631,75 +29417,75 @@ function __ZN10__cxxabiv112_GLOBAL__N_120parse_template_paramINS0_2DbEEEPKcS4_S4
i1 = i1 << 1;
i1 = i1 >>> 0 < i4 >>> 0 ? i4 : i1;
} else i1 = 2147483647;
- __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i19, i1, i5, i11);
- i5 = HEAP32[i8 >> 2] | 0;
+ __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i19, i1, i5, i10);
+ i5 = HEAP32[i11 >> 2] | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i5, i6);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i5 + 12 | 0, i6 + 12 | 0);
- HEAP32[i8 >> 2] = i5 + 24;
+ HEAP32[i11 >> 2] = i5 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i20, i19);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i19);
} else {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i1, i6);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i1 + 12 | 0, i6 + 12 | 0);
- HEAP32[i9 >> 2] = (HEAP32[i9 >> 2] | 0) + 24;
+ HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 24;
}
i6 = i6 + 24 | 0;
}
if ((i1 | 0) == 8) {
- i1 = i17 + 2 | 0;
+ i1 = i18 + 2 | 0;
break;
} else if ((i1 | 0) == 12) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i20);
} else {
HEAP8[i5 >> 0] = 4;
- i2 = i5 + 1 | 0;
- HEAP8[i2 >> 0] = 84;
- HEAP8[i2 + 1 >> 0] = 95;
+ i1 = i5 + 1 | 0;
+ HEAP8[i1 >> 0] = 84;
+ HEAP8[i1 + 1 >> 0] = 95;
HEAP8[i5 + 3 >> 0] = 0;
- i2 = i5 + 12 | 0;
- i1 = 0;
+ i1 = i5 + 12 | 0;
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
i1 = i20 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
- i18 = HEAP32[i20 + 8 >> 2] | 0;
- i3 = i18;
- if (i2 >>> 0 < i18 >>> 0) {
+ i17 = HEAP32[i20 + 8 >> 2] | 0;
+ i3 = i17;
+ if (i2 >>> 0 < i17 >>> 0) {
__ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i5);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i20 >> 2] | 0;
- i18 = i2 - i1 | 0;
- i4 = (i18 | 0) / 24 | 0;
+ i17 = i2 - i1 | 0;
+ i4 = (i17 | 0) / 24 | 0;
i2 = i4 + 1 | 0;
- if ((i18 | 0) < -24) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i20);
+ if ((i17 | 0) < -24) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i20);
i1 = (i3 - i1 | 0) / 24 | 0;
if (i1 >>> 0 < 1073741823) {
i1 = i1 << 1;
i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 2147483647;
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i19, i1, i4, i20 + 12 | 0);
- i18 = i19 + 8 | 0;
- i16 = HEAP32[i18 >> 2] | 0;
+ i17 = i19 + 8 | 0;
+ i16 = HEAP32[i17 >> 2] | 0;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i16, i5);
- HEAP32[i18 >> 2] = i16 + 24;
+ HEAP32[i17 >> 2] = i16 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i20, i19);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i19);
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i5);
HEAP8[i20 + 62 >> 0] = 1;
- i1 = i17 + 2 | 0;
+ i1 = i18 + 2 | 0;
break;
}
}
i1 = (i12 << 24 >> 24) + -48 | 0;
if (i1 >>> 0 < 10) {
- i4 = i17 + 2 | 0;
+ i4 = i18 + 2 | 0;
while (1) {
if ((i4 | 0) == (i13 | 0)) {
- i1 = i17;
+ i1 = i18;
break L1;
}
i2 = HEAP8[i4 >> 0] | 0;
@@ -30709,23 +29495,23 @@ function __ZN10__cxxabiv112_GLOBAL__N_120parse_template_paramINS0_2DbEEEPKcS4_S4
i4 = i4 + 1 | 0;
}
if (i2 << 24 >> 24 == 95 ? (i14 = HEAP32[i20 + 36 >> 2] | 0, (HEAP32[i20 + 32 >> 2] | 0) != (i14 | 0)) : 0) {
- i2 = i1 + 1 | 0;
+ i1 = i1 + 1 | 0;
i13 = HEAP32[i14 + -16 >> 2] | 0;
- i1 = i13;
- if (i2 >>> 0 < (HEAP32[i14 + -12 >> 2] | 0) - i13 >> 4 >>> 0) {
- i8 = HEAP32[i1 + (i2 << 4) + 4 >> 2] | 0;
- i10 = i20 + 4 | 0;
- i11 = i20 + 8 | 0;
- i12 = i20 + 12 | 0;
- i9 = i19 + 8 | 0;
- i7 = HEAP32[i1 + (i2 << 4) >> 2] | 0;
+ i2 = i13;
+ if (i1 >>> 0 < (HEAP32[i14 + -12 >> 2] | 0) - i13 >> 4 >>> 0) {
+ i8 = HEAP32[i2 + (i1 << 4) + 4 >> 2] | 0;
+ i9 = i20 + 4 | 0;
+ i10 = i20 + 8 | 0;
+ i11 = i20 + 12 | 0;
+ i12 = i19 + 8 | 0;
+ i7 = HEAP32[i2 + (i1 << 4) >> 2] | 0;
while (1) {
if ((i7 | 0) == (i8 | 0)) {
i1 = 38;
break;
}
- i1 = HEAP32[i10 >> 2] | 0;
- i14 = HEAP32[i11 >> 2] | 0;
+ i1 = HEAP32[i9 >> 2] | 0;
+ i14 = HEAP32[i10 >> 2] | 0;
i2 = i14;
if ((i1 | 0) == (i14 | 0)) {
i3 = HEAP32[i20 >> 2] | 0;
@@ -30741,17 +29527,17 @@ function __ZN10__cxxabiv112_GLOBAL__N_120parse_template_paramINS0_2DbEEEPKcS4_S4
i1 = i1 << 1;
i1 = i1 >>> 0 < i5 >>> 0 ? i5 : i1;
} else i1 = 2147483647;
- __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i19, i1, i6, i12);
- i14 = HEAP32[i9 >> 2] | 0;
+ __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i19, i1, i6, i11);
+ i14 = HEAP32[i12 >> 2] | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i14, i7);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i14 + 12 | 0, i7 + 12 | 0);
- HEAP32[i9 >> 2] = i14 + 24;
+ HEAP32[i12 >> 2] = i14 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i20, i19);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i19);
} else {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i1, i7);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i1 + 12 | 0, i7 + 12 | 0);
- HEAP32[i10 >> 2] = (HEAP32[i10 >> 2] | 0) + 24;
+ HEAP32[i9 >> 2] = (HEAP32[i9 >> 2] | 0) + 24;
}
i7 = i7 + 24 | 0;
}
@@ -30761,288 +29547,289 @@ function __ZN10__cxxabiv112_GLOBAL__N_120parse_template_paramINS0_2DbEEEPKcS4_S4
} else if ((i1 | 0) == 42) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i20);
}
i1 = i4 + 1 | 0;
- i5 = i1 - i15 | 0;
- if (i5 >>> 0 > 4294967279) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i16);
- if (i5 >>> 0 < 11) {
- HEAP8[i16 >> 0] = i5 << 1;
- i4 = i16 + 1 | 0;
+ i4 = i1 - i15 | 0;
+ if (i4 >>> 0 > 4294967279) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i17);
+ if (i4 >>> 0 < 11) {
+ HEAP8[i17 >> 0] = i4 << 1;
+ i5 = i17 + 1 | 0;
} else {
- i15 = i5 + 16 & -16;
- i4 = _malloc(i15) | 0;
- HEAP32[i16 + 8 >> 2] = i4;
- HEAP32[i16 >> 2] = i15 | 1;
- HEAP32[i16 + 4 >> 2] = i5;
- }
- i2 = i17;
- i3 = i4;
+ i15 = i4 + 16 & -16;
+ i5 = _malloc(i15) | 0;
+ HEAP32[i17 + 8 >> 2] = i5;
+ HEAP32[i17 >> 2] = i15 | 1;
+ HEAP32[i17 + 4 >> 2] = i4;
+ }
+ i2 = i18;
+ i3 = i5;
while (1) {
if ((i2 | 0) == (i1 | 0)) break;
HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0;
i2 = i2 + 1 | 0;
i3 = i3 + 1 | 0;
}
- HEAP8[i4 + i5 >> 0] = 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i18, i16);
+ HEAP8[i5 + i4 >> 0] = 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i16, i17);
i2 = i20 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
- i17 = HEAP32[i20 + 8 >> 2] | 0;
- i4 = i17;
- if (i3 >>> 0 < i17 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i18);
+ i18 = HEAP32[i20 + 8 >> 2] | 0;
+ i4 = i18;
+ if (i3 >>> 0 < i18 >>> 0) {
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i16);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
i2 = HEAP32[i20 >> 2] | 0;
- i17 = i3 - i2 | 0;
- i5 = (i17 | 0) / 24 | 0;
+ i18 = i3 - i2 | 0;
+ i5 = (i18 | 0) / 24 | 0;
i3 = i5 + 1 | 0;
- if ((i17 | 0) < -24) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i20);
+ if ((i18 | 0) < -24) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i20);
i2 = (i4 - i2 | 0) / 24 | 0;
if (i2 >>> 0 < 1073741823) {
i2 = i2 << 1;
i2 = i2 >>> 0 < i3 >>> 0 ? i3 : i2;
} else i2 = 2147483647;
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i19, i2, i5, i20 + 12 | 0);
- i17 = i19 + 8 | 0;
- i15 = HEAP32[i17 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i15, i18);
- HEAP32[i17 >> 2] = i15 + 24;
+ i18 = i19 + 8 | 0;
+ i15 = HEAP32[i18 >> 2] | 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i15, i16);
+ HEAP32[i18 >> 2] = i15 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i20, i19);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i19);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i18);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i16);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i16);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i17);
HEAP8[i20 + 62 >> 0] = 1;
- } else i1 = i17;
- } else i1 = i17;
- } else i1 = i17; while (0);
+ } else i1 = i18;
+ } else i1 = i18;
+ } else i1 = i18; while (0);
STACKTOP = i21;
return i1 | 0;
}
-function __ZN4wasm22SExpressionWasmBuilder13parseFunctionERNS_7ElementE(i34, i28) {
- i34 = i34 | 0;
- i28 = i28 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i35 = 0, i36 = 0, i37 = 0;
- i37 = STACKTOP;
- STACKTOP = STACKTOP + 32 | 0;
- i36 = i37 + 20 | 0;
- i25 = i37 + 16 | 0;
- i29 = i37 + 12 | 0;
- i27 = i37 + 8 | 0;
- i24 = i37;
- i26 = i37 + 4 | 0;
- i31 = i34 + 4 | 0;
- i33 = __ZN10MixedArena5allocIN4wasm8FunctionEEEPT_v(HEAP32[i31 >> 2] | 0) | 0;
- i35 = i34 + 52 | 0;
- HEAP32[i35 >> 2] = i33;
- i32 = __ZN4wasm7Element4listEv(i28) | 0;
- if (!(HEAP8[HEAP32[(HEAP32[i32 >> 2] | 0) + 4 >> 2] >> 0] | 0)) {
- i1 = __ZN4wasm7Element4listEv(i28) | 0;
- i1 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] | 0) | 0;
+
+function __ZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefE(i38, i2) {
+ i38 = i38 | 0;
+ i2 = i2 | 0;
+ var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0, i37 = 0, i39 = 0;
+ i39 = STACKTOP;
+ STACKTOP = STACKTOP + 288 | 0;
+ i21 = i39 + 72 | 0;
+ i20 = i39 + 272 | 0;
+ i28 = i39 + 268 | 0;
+ i24 = i39 + 264 | 0;
+ i3 = i39 + 260 | 0;
+ i32 = i39 + 256 | 0;
+ i30 = i39 + 277 | 0;
+ i31 = i39 + 276 | 0;
+ i29 = i39 + 224 | 0;
+ i35 = i39 + 216 | 0;
+ i25 = i39 + 204 | 0;
+ i26 = i39 + 188 | 0;
+ i23 = i39 + 132 | 0;
+ i27 = i39 + 112 | 0;
+ i33 = i39 + 100 | 0;
+ i8 = i39 + 252 | 0;
+ i9 = i39 + 248 | 0;
+ i10 = i39 + 244 | 0;
+ i12 = i39 + 220 | 0;
+ i34 = i39 + 48 | 0;
+ i16 = i39 + 200 | 0;
+ i17 = i39 + 184 | 0;
+ i18 = i39 + 128 | 0;
+ i19 = i39 + 104 | 0;
+ i37 = i39 + 24 | 0;
+ i36 = i39;
+ i22 = i39 + 96 | 0;
+ i1 = i38 + 44 | 0;
+ if (HEAP32[i1 >> 2] | 0 ? (i14 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39476, 13720) | 0, i15 = __ZN6cashew3RefixEj(i2, 1) | 0, i15 = __ZN6cashew5Value10getIStringEv(HEAP32[i15 >> 2] | 0) | 0, __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i14, HEAP32[i15 >> 2] | 0) | 0, 10) | 0, (HEAP32[i1 >> 2] | 0) > 1) : 0) {
+ __ZN6cashew5Value9stringifyERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEb(HEAP32[i2 >> 2] | 0, 39476, 0);
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(39476, 10) | 0;
+ }
+ i11 = __ZN10MixedArena5allocIN4wasm8FunctionEEEPT_v(HEAP32[i38 + 4 >> 2] | 0) | 0;
+ HEAP32[i28 >> 2] = i11;
+ i14 = __ZN6cashew3RefixEj(i2, 1) | 0;
+ i14 = __ZN6cashew5Value10getIStringEv(HEAP32[i14 >> 2] | 0) | 0;
+ HEAP32[i11 >> 2] = HEAP32[i14 >> 2];
+ i11 = __ZN6cashew3RefixEj(i2, 2) | 0;
+ i11 = HEAP32[i11 >> 2] | 0;
+ i14 = __ZN6cashew3RefixEj(i2, 3) | 0;
+ HEAP32[i24 >> 2] = HEAP32[i14 >> 2];
+ HEAP32[i3 >> 2] = 0;
+ HEAP32[i32 >> 2] = i3;
+ HEAP32[i29 >> 2] = 0;
+ HEAP32[i29 + 4 >> 2] = 0;
+ HEAP32[i29 + 8 >> 2] = 0;
+ HEAP32[i29 + 12 >> 2] = 0;
+ HEAPF32[i29 + 16 >> 2] = 1.0;
+ HEAP32[i35 >> 2] = 0;
+ HEAP32[i25 >> 2] = 0;
+ i14 = i25 + 4 | 0;
+ HEAP32[i14 >> 2] = 0;
+ HEAP32[i25 + 8 >> 2] = 0;
+ HEAP32[i26 >> 2] = 0;
+ i15 = i26 + 4 | 0;
+ HEAP32[i15 >> 2] = 0;
+ HEAP32[i26 + 8 >> 2] = 0;
+ HEAP32[i23 >> 2] = 0;
+ HEAP32[i23 + 4 >> 2] = 0;
+ HEAP32[i23 + 8 >> 2] = 0;
+ HEAP32[i23 + 12 >> 2] = 0;
+ HEAPF32[i23 + 16 >> 2] = 1.0;
+ i13 = i23 + 20 | 0;
+ HEAP32[i23 + 48 >> 2] = 0;
+ HEAP32[i13 >> 2] = 0;
+ HEAP32[i13 + 4 >> 2] = 0;
+ HEAP32[i13 + 8 >> 2] = 0;
+ HEAP32[i13 + 12 >> 2] = 0;
+ HEAP32[i13 + 16 >> 2] = 0;
+ HEAP32[i13 + 20 >> 2] = 0;
+ i13 = i38 + 80 | 0;
+ i7 = 0;
+ while (1) {
+ if (i7 >>> 0 >= (__ZN6cashew5Value4sizeEv(i11) | 0) >>> 0) {
+ i1 = 6;
+ break;
+ }
+ i6 = __ZN6cashew3RefixEj(i24, i7) | 0;
+ HEAP32[i27 >> 2] = HEAP32[i6 >> 2];
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i27, 0) | 0, 38396) | 0)) {
+ i1 = 8;
+ break;
+ }
+ i6 = __ZN6cashew3RefixEj(i27, 1) | 0;
+ HEAP32[i27 >> 2] = HEAP32[i6 >> 2];
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i27, 0) | 0, 38400) | 0)) {
+ i1 = 11;
+ break;
+ }
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i27, 2) | 0, 0) | 0, 38404) | 0)) {
+ i1 = 11;
+ break;
+ }
+ i1 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i27, 2) | 0, 1) | 0;
+ i1 = __ZN6cashew5Value10getIStringEv(HEAP32[i1 >> 2] | 0) | 0;
+ i1 = HEAP32[i1 >> 2] | 0;
HEAP32[i33 >> 2] = i1;
- i1 = i34 + 32 | 0;
- i2 = 2;
- } else {
- i1 = i34 + 32 | 0;
- i2 = __ZN4wasm4Name7fromIntEj(HEAP32[i1 >> 2] | 0) | 0;
- HEAP32[i33 >> 2] = i2;
- i2 = 1;
+ i2 = __ZN6cashew3RefixEj(i27, 3) | 0;
+ HEAP32[i8 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i9 >> 2] = HEAP32[i13 >> 2];
+ HEAP32[i20 >> 2] = HEAP32[i8 >> 2];
+ HEAP32[i21 >> 2] = HEAP32[i9 >> 2];
+ i2 = __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i20, 0, 0, i21) | 0;
+ i3 = HEAP32[i28 >> 2] | 0;
+ i4 = __ZN4wasm13asmToWasmTypeE7AsmType(i2) | 0;
+ HEAP32[i10 >> 2] = i4;
+ i5 = i3 + 12 | 0;
+ i6 = HEAP32[i5 >> 2] | 0;
+ if (i6 >>> 0 < (HEAP32[i3 + 16 >> 2] | 0) >>> 0) {
+ HEAP32[i6 >> 2] = i1;
+ HEAP32[i6 + 4 >> 2] = i4;
+ HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 8;
+ } else __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRN6cashew7IStringENS1_8WasmTypeEEEEvDpOT_(i3 + 8 | 0, i33, i10);
+ __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE15__insert_uniqueERKS2_(i21, i29, i33);
+ HEAP32[i12 >> 2] = i1;
+ HEAP32[i21 >> 2] = HEAP32[i12 >> 2];
+ __ZN7AsmData8addParamEN6cashew7IStringE7AsmType(i23, i21, i2);
+ i7 = i7 + 1 | 0;
}
- HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 1;
- i32 = i33 + 36 | 0;
- HEAP32[i32 >> 2] = 0;
- i17 = i34 + 68 | 0;
- HEAP32[i17 >> 2] = 0;
- HEAP32[i34 + 72 >> 2] = 0;
- i30 = i34 + 88 | 0;
- HEAP8[i30 >> 0] = 0;
- HEAP32[i36 >> 2] = 0;
- i9 = i36 + 4 | 0;
- HEAP32[i9 >> 2] = 0;
- HEAP32[i36 + 8 >> 2] = 0;
- i21 = i33 + 4 | 0;
- i22 = i33 + 32 | 0;
- i19 = i34 + 8 | 0;
- i14 = i36 + 8 | 0;
- i16 = i34 + 56 | 0;
- i20 = i33 + 8 | 0;
- i11 = i33 + 12 | 0;
- i15 = (i20 | 0) == (i36 | 0);
- i12 = i33 + 16 | 0;
- i10 = i33 + 24 | 0;
- i13 = i33 + 28 | 0;
- i18 = i33 + 20 | 0;
- i1 = 0;
- while (1) {
- if (i2 >>> 0 >= (__ZN4wasm7Element4sizeEv(i28) | 0) >>> 0) break;
- i8 = __ZN4wasm7ElementixEj(i28, i2) | 0;
- i7 = __ZN4wasm7Element4listEv(i8) | 0;
- i7 = __ZN4wasm7Element3strEv(HEAP32[HEAP32[i7 >> 2] >> 2] | 0) | 0;
- L8 : do if ((i7 | 0) == (HEAP32[9182] | 0) | (i7 | 0) == (HEAP32[9189] | 0)) {
- i3 = 1;
+ if ((i1 | 0) == 6) {
+ i1 = __ZN6cashew5Value4sizeEv(i11) | 0;
+ while (1) {
+ if (i1 >>> 0 >= (__ZN6cashew5Value4sizeEv(HEAP32[i24 >> 2] | 0) | 0) >>> 0) break;
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i24, i1) | 0, 0) | 0, 38408) | 0)) break;
+ i8 = __ZN6cashew3RefixEj(i24, i1) | 0;
+ HEAP32[i27 >> 2] = HEAP32[i8 >> 2];
+ i8 = 0;
while (1) {
- if (i3 >>> 0 >= (__ZN4wasm7Element4sizeEv(i8) | 0) >>> 0) break L8;
- HEAP32[i25 >> 2] = 0;
- HEAP32[i29 >> 2] = 0;
- i6 = (__ZN4wasm7ElementixEj(i8, i3) | 0) + 20 | 0;
- if ((HEAP8[i6 >> 0] | 0) == 0 ? (i23 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i34, __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i8, i3) | 0) | 0, 1, 0) | 0, HEAP32[i29 >> 2] = i23, (i23 | 0) != 0) : 0) {
- i4 = __ZN4wasm4Name7fromIntEj(HEAP32[i17 >> 2] | 0) | 0;
- HEAP32[i25 >> 2] = i4;
- i6 = i23;
- } else {
- i4 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i8, i3) | 0) | 0;
- HEAP32[i25 >> 2] = i4;
- i3 = i3 + 1 | 0;
- i6 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i34, __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i8, i3) | 0) | 0, 0, 0) | 0;
- HEAP32[i29 >> 2] = i6;
- }
- i3 = i3 + 1 | 0;
- do if ((i7 | 0) == (HEAP32[9182] | 0)) {
- i5 = HEAP32[i11 >> 2] | 0;
- if (i5 >>> 0 < (HEAP32[i12 >> 2] | 0) >>> 0) {
- HEAP32[i5 >> 2] = i4;
- HEAP32[i5 + 4 >> 2] = i6;
- HEAP32[i11 >> 2] = (HEAP32[i11 >> 2] | 0) + 8;
- break;
- } else {
- __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRN6cashew7IStringERNS1_8WasmTypeEEEEvDpOT_(i20, i25, i29);
- break;
- }
- } else {
- i5 = HEAP32[i10 >> 2] | 0;
- if (i5 >>> 0 < (HEAP32[i13 >> 2] | 0) >>> 0) {
- HEAP32[i5 >> 2] = i4;
- HEAP32[i5 + 4 >> 2] = i6;
- HEAP32[i10 >> 2] = (HEAP32[i10 >> 2] | 0) + 8;
- break;
- } else {
- __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRN6cashew7IStringERNS1_8WasmTypeEEEEvDpOT_(i18, i25, i29);
- break;
- }
- } while (0);
- HEAP32[i17 >> 2] = (HEAP32[i17 >> 2] | 0) + 1;
- HEAP32[i27 >> 2] = i4;
- i5 = __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixEOS2_(i16, i27) | 0;
- HEAP32[i5 >> 2] = i6;
- }
- } else {
- if ((i7 | 0) == (HEAP32[9183] | 0)) {
- i8 = __ZN4wasm7Element4listEv(i8) | 0;
- i8 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i34, __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i8 >> 2] | 0) + 4 >> 2] | 0) | 0, 0, 0) | 0;
- HEAP32[i21 >> 2] = i8;
- break;
- }
- if ((i7 | 0) == (HEAP32[9190] | 0)) {
- i3 = __ZN4wasm7Element4listEv(i8) | 0;
- i3 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i3 >> 2] | 0) + 4 >> 2] | 0) | 0;
- HEAP32[i25 >> 2] = i3;
- HEAP32[i22 >> 2] = i3;
- i3 = HEAP32[i34 >> 2] | 0;
- if ((__ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_(i3 + 48 | 0, i25) | 0) == (i3 + 52 | 0)) {
- __ZNKSt3__18functionIFvvEEclEv(i19);
- i3 = HEAP32[i34 >> 2] | 0;
- }
- i6 = __ZNSt3__13mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i3 + 48 | 0, i25) | 0;
+ i12 = __ZN6cashew3RefixEj(i27, 1) | 0;
+ if (i8 >>> 0 >= (__ZN6cashew5Value4sizeEv(HEAP32[i12 >> 2] | 0) | 0) >>> 0) break;
+ i6 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i27, 1) | 0, i8) | 0;
+ HEAP32[i33 >> 2] = HEAP32[i6 >> 2];
+ i6 = __ZN6cashew3RefixEj(i33, 0) | 0;
+ i6 = __ZN6cashew5Value10getIStringEv(HEAP32[i6 >> 2] | 0) | 0;
i6 = HEAP32[i6 >> 2] | 0;
- HEAP32[i21 >> 2] = HEAP32[i6 + 4 >> 2];
- i8 = i6 + 8 | 0;
- i6 = i6 + 12 | 0;
- i7 = 0;
- while (1) {
- if (i7 >>> 0 >= (HEAP32[i6 >> 2] | 0) - (HEAP32[i8 >> 2] | 0) >> 2 >>> 0) break;
- i5 = __ZN4wasm4Name7fromIntEj(i7) | 0;
- HEAP32[i29 >> 2] = i5;
- i3 = HEAP32[(HEAP32[i8 >> 2] | 0) + (i7 << 2) >> 2] | 0;
- HEAP32[i24 >> 2] = i3;
- i4 = HEAP32[i9 >> 2] | 0;
- if (i4 >>> 0 < (HEAP32[i14 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i5;
- HEAP32[i4 + 4 >> 2] = i3;
- HEAP32[i9 >> 2] = (HEAP32[i9 >> 2] | 0) + 8;
- } else __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRN6cashew7IStringERNS1_8WasmTypeEEEEvDpOT_(i36, i29, i24);
- HEAP32[i26 >> 2] = i5;
- i5 = __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixEOS2_(i16, i26) | 0;
- HEAP32[i5 >> 2] = i3;
- i7 = i7 + 1 | 0;
- }
- break;
- }
- i6 = HEAP32[i9 >> 2] | 0;
- i7 = HEAP32[i36 >> 2] | 0;
- i3 = i7;
- i4 = i6;
- if ((i6 | 0) != (i7 | 0) ? !(i15 | (HEAP32[i11 >> 2] | 0) != (HEAP32[i20 >> 2] | 0)) : 0) __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE6assignIPS2_EENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIS2_NS_15iterator_traitsIS9_E9referenceEEE5valueEvE4typeES9_S9_(i20, i3, i4);
- i3 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i34, i8) | 0;
- HEAP32[i25 >> 2] = i3;
- i5 = i3;
- do if (HEAP32[i32 >> 2] | 0) {
- if (!i1) {
- i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i31 >> 2] | 0) | 0;
- i4 = i1 + 16 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i1 + 20 >> 2] | 0)) __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i1 + 12 | 0, i32); else {
- HEAP32[i3 >> 2] = HEAP32[i32 >> 2];
- HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4;
- }
- HEAP32[i32 >> 2] = i1;
- }
- i4 = i1 + 16 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i1 + 20 >> 2] | 0)) {
- __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i1 + 12 | 0, i25);
- break;
- } else {
- HEAP32[i3 >> 2] = i5;
- HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4;
- break;
- }
- } else HEAP32[i32 >> 2] = i3; while (0);
- } while (0);
- i2 = i2 + 1 | 0;
- }
- i1 = HEAP32[i32 >> 2] | 0;
- if (!i1) {
- i1 = __ZN10MixedArena5allocIN4wasm3NopEEEPT_v(HEAP32[i31 >> 2] | 0) | 0;
- HEAP32[i32 >> 2] = i1;
- }
- if (HEAP8[i30 >> 0] | 0) {
- i1 = __ZN4wasm10Expression8dyn_castINS_5BlockEEEPT_v(i1) | 0;
- if (!i1) {
- i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i31 >> 2] | 0) | 0;
- i3 = i1 + 16 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 20 >> 2] | 0)) __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i1 + 12 | 0, i32); else {
- HEAP32[i2 >> 2] = HEAP32[i32 >> 2];
- HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + 4;
- }
- HEAP32[i32 >> 2] = i1;
- }
- if (HEAP32[i1 + 8 >> 2] | 0) {
- i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i31 >> 2] | 0) | 0;
- i3 = i1 + 16 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 20 >> 2] | 0)) __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i1 + 12 | 0, i32); else {
- HEAP32[i2 >> 2] = HEAP32[i32 >> 2];
- HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + 4;
+ HEAP32[i34 >> 2] = i6;
+ i7 = __ZN6cashew3RefixEj(i33, 1) | 0;
+ HEAP32[i16 >> 2] = HEAP32[i7 >> 2];
+ HEAP32[i17 >> 2] = HEAP32[i13 >> 2];
+ HEAP32[i20 >> 2] = HEAP32[i16 >> 2];
+ HEAP32[i21 >> 2] = HEAP32[i17 >> 2];
+ i7 = __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i20, 0, 1, i21) | 0;
+ i2 = HEAP32[i28 >> 2] | 0;
+ i3 = __ZN4wasm13asmToWasmTypeE7AsmType(i7) | 0;
+ HEAP32[i18 >> 2] = i3;
+ i4 = i2 + 24 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ if (i5 >>> 0 < (HEAP32[i2 + 28 >> 2] | 0) >>> 0) {
+ HEAP32[i5 >> 2] = i6;
+ HEAP32[i5 + 4 >> 2] = i3;
+ HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 8;
+ } else __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRN6cashew7IStringENS1_8WasmTypeEEEEvDpOT_(i2 + 20 | 0, i34, i18);
+ __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE15__insert_uniqueERKS2_(i21, i29, i34);
+ HEAP32[i19 >> 2] = i6;
+ HEAP32[i21 >> 2] = HEAP32[i19 >> 2];
+ __ZN7AsmData6addVarEN6cashew7IStringE7AsmType(i23, i21, i7);
+ i8 = i8 + 1 | 0;
}
- HEAP32[i32 >> 2] = i1;
+ i1 = i1 + 1 | 0;
}
- HEAP32[i1 + 8 >> 2] = HEAP32[9202];
- }
- __ZN4wasm6Module11addFunctionEPNS_8FunctionE(HEAP32[i34 >> 2] | 0, i33);
- __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE5clearEv(i34 + 56 | 0);
- i3 = HEAP32[i34 + 76 >> 2] | 0;
- i2 = i34 + 80 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- while (1) {
- if ((i1 | 0) == (i3 | 0)) break;
- i34 = i1 + -4 | 0;
- HEAP32[i2 >> 2] = i34;
- i1 = i34;
- }
- HEAP32[i35 >> 2] = 0;
- __ZNSt3__113__vector_baseIN4wasm8NameTypeENS_9allocatorIS2_EEED2Ev(i36);
- STACKTOP = i37;
- return;
+ HEAP8[i20 >> 0] = 0;
+ HEAP32[i27 >> 2] = i20;
+ HEAP32[i27 + 4 >> 2] = i28;
+ HEAP32[i27 + 8 >> 2] = i29;
+ HEAP32[i27 + 12 >> 2] = i23;
+ HEAP8[i33 >> 0] = 0;
+ HEAP32[i34 + 16 >> 2] = 0;
+ HEAP32[i37 + 16 >> 2] = 0;
+ i20 = __Znwj(64) | 0;
+ HEAP32[i20 >> 2] = 3212;
+ HEAP32[i20 + 4 >> 2] = i38;
+ HEAP32[i20 + 8 >> 2] = i36;
+ HEAP32[i20 + 12 >> 2] = i29;
+ HEAP32[i20 + 16 >> 2] = i37;
+ HEAP32[i20 + 20 >> 2] = i23;
+ HEAP32[i20 + 24 >> 2] = i27;
+ HEAP32[i20 + 28 >> 2] = i33;
+ HEAP32[i20 + 32 >> 2] = i28;
+ HEAP32[i20 + 36 >> 2] = i35;
+ HEAP32[i20 + 40 >> 2] = i30;
+ HEAP32[i20 + 44 >> 2] = i25;
+ HEAP32[i20 + 48 >> 2] = i34;
+ HEAP32[i20 + 52 >> 2] = i26;
+ HEAP32[i20 + 56 >> 2] = i31;
+ HEAP32[i20 + 60 >> 2] = i32;
+ HEAP32[i36 + 16 >> 2] = i20;
+ i33 = i38;
+ i38 = i36;
+ HEAP32[i21 + 16 >> 2] = i21;
+ HEAP32[i21 >> 2] = 3256;
+ HEAP32[i21 + 4 >> 2] = i33;
+ HEAP32[i21 + 8 >> 2] = i38;
+ __ZNSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEjEE4swapERS7_(i21, i37);
+ __ZNSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEjEED2Ev(i21);
+ HEAP32[i21 + 16 >> 2] = i21;
+ HEAP32[i21 >> 2] = 3300;
+ HEAP32[i21 + 4 >> 2] = i33;
+ HEAP32[i21 + 8 >> 2] = i38;
+ __ZNSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEjEE4swapERS7_(i21, i34);
+ __ZNSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEjEED2Ev(i21);
+ HEAP32[i22 >> 2] = HEAP32[i24 >> 2];
+ HEAP32[i21 >> 2] = HEAP32[i22 >> 2];
+ i38 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEjEEclES5_j(i34, i21, i1) | 0;
+ HEAP32[(HEAP32[i28 >> 2] | 0) + 36 >> 2] = i38;
+ if ((HEAP32[i14 >> 2] | 0) == (HEAP32[i25 >> 2] | 0) ? (HEAP32[i15 >> 2] | 0) == (HEAP32[i26 >> 2] | 0) : 0) if (!(HEAP32[i35 >> 2] | 0)) {
+ i38 = HEAP32[i28 >> 2] | 0;
+ __ZNSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEED2Ev(i36);
+ __ZNSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEjEED2Ev(i37);
+ __ZNSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEjEED2Ev(i34);
+ __ZN7AsmDataD2Ev(i23);
+ __ZNSt3__113__vector_baseIN6cashew7IStringENS_9allocatorIS2_EEED2Ev(i26);
+ __ZNSt3__113__vector_baseIN6cashew7IStringENS_9allocatorIS2_EEED2Ev(i25);
+ __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev(i29);
+ STACKTOP = i39;
+ return i38 | 0;
+ } else ___assert_fail(13852, 13029, 1465, 13744);
+ ___assert_fail(13800, 13029, 1464, 13744);
+ } else if ((i1 | 0) == 8) ___assert_fail(13728, 13029, 742, 13744); else if ((i1 | 0) == 11) ___assert_fail(13760, 13029, 744, 13744);
+ return 0;
}
function _dispose_chunk(i2, i3) {
@@ -31052,13 +29839,13 @@ function _dispose_chunk(i2, i3) {
i14 = i2 + i3 | 0;
i1 = HEAP32[i2 + 4 >> 2] | 0;
do if (!(i1 & 1)) {
- i4 = HEAP32[i2 >> 2] | 0;
+ i5 = HEAP32[i2 >> 2] | 0;
if (!(i1 & 3)) return;
- i11 = i2 + (0 - i4) | 0;
- i10 = i4 + i3 | 0;
- i8 = HEAP32[9359] | 0;
+ i11 = i2 + (0 - i5) | 0;
+ i10 = i5 + i3 | 0;
+ i8 = HEAP32[9727] | 0;
if (i11 >>> 0 < i8 >>> 0) _abort();
- if ((i11 | 0) == (HEAP32[9360] | 0)) {
+ if ((i11 | 0) == (HEAP32[9728] | 0)) {
i2 = i14 + 4 | 0;
i1 = HEAP32[i2 >> 2] | 0;
if ((i1 & 3 | 0) != 3) {
@@ -31066,23 +29853,23 @@ function _dispose_chunk(i2, i3) {
i6 = i10;
break;
}
- HEAP32[9357] = i10;
+ HEAP32[9725] = i10;
HEAP32[i2 >> 2] = i1 & -2;
HEAP32[i11 + 4 >> 2] = i10 | 1;
HEAP32[i11 + i10 >> 2] = i10;
return;
}
- i5 = i4 >>> 3;
- if (i4 >>> 0 < 256) {
+ i4 = i5 >>> 3;
+ if (i5 >>> 0 < 256) {
i2 = HEAP32[i11 + 8 >> 2] | 0;
i3 = HEAP32[i11 + 12 >> 2] | 0;
- i1 = 37460 + (i5 << 1 << 2) | 0;
+ i1 = 38932 + (i4 << 1 << 2) | 0;
if ((i2 | 0) != (i1 | 0)) {
if (i2 >>> 0 < i8 >>> 0) _abort();
if ((HEAP32[i2 + 12 >> 2] | 0) != (i11 | 0)) _abort();
}
if ((i3 | 0) == (i2 | 0)) {
- HEAP32[9355] = HEAP32[9355] & ~(1 << i5);
+ HEAP32[9723] = HEAP32[9723] & ~(1 << i4);
i17 = i11;
i6 = i10;
break;
@@ -31101,29 +29888,29 @@ function _dispose_chunk(i2, i3) {
i5 = HEAP32[i11 + 24 >> 2] | 0;
i3 = HEAP32[i11 + 12 >> 2] | 0;
do if ((i3 | 0) == (i11 | 0)) {
- i3 = i11 + 16 | 0;
- i2 = i3 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i2 = i11 + 16 | 0;
+ i3 = i2 + 4 | 0;
+ i1 = HEAP32[i3 >> 2] | 0;
if (!i1) {
- i1 = HEAP32[i3 >> 2] | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
i9 = 0;
break;
- } else i2 = i3;
- }
+ }
+ } else i2 = i3;
while (1) {
- i4 = i1 + 20 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if (i3 | 0) {
- i1 = i3;
- i2 = i4;
+ i3 = i1 + 20 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if (i4 | 0) {
+ i1 = i4;
+ i2 = i3;
continue;
}
- i4 = i1 + 16 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if (!i3) break; else {
- i1 = i3;
- i2 = i4;
+ i3 = i1 + 16 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if (!i4) break; else {
+ i1 = i4;
+ i2 = i3;
}
}
if (i2 >>> 0 < i8 >>> 0) _abort(); else {
@@ -31146,17 +29933,17 @@ function _dispose_chunk(i2, i3) {
} while (0);
if (i5) {
i1 = HEAP32[i11 + 28 >> 2] | 0;
- i2 = 37724 + (i1 << 2) | 0;
+ i2 = 39196 + (i1 << 2) | 0;
if ((i11 | 0) == (HEAP32[i2 >> 2] | 0)) {
HEAP32[i2 >> 2] = i9;
if (!i9) {
- HEAP32[9356] = HEAP32[9356] & ~(1 << i1);
+ HEAP32[9724] = HEAP32[9724] & ~(1 << i1);
i17 = i11;
i6 = i10;
break;
}
} else {
- if (i5 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort();
+ if (i5 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort();
i1 = i5 + 16 | 0;
if ((HEAP32[i1 >> 2] | 0) == (i11 | 0)) HEAP32[i1 >> 2] = i9; else HEAP32[i5 + 20 >> 2] = i9;
if (!i9) {
@@ -31165,18 +29952,18 @@ function _dispose_chunk(i2, i3) {
break;
}
}
- i3 = HEAP32[9359] | 0;
+ i3 = HEAP32[9727] | 0;
if (i9 >>> 0 < i3 >>> 0) _abort();
HEAP32[i9 + 24 >> 2] = i5;
- i2 = i11 + 16 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- do if (i1 | 0) if (i1 >>> 0 < i3 >>> 0) _abort(); else {
- HEAP32[i9 + 16 >> 2] = i1;
- HEAP32[i1 + 24 >> 2] = i9;
+ i1 = i11 + 16 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ do if (i2 | 0) if (i2 >>> 0 < i3 >>> 0) _abort(); else {
+ HEAP32[i9 + 16 >> 2] = i2;
+ HEAP32[i2 + 24 >> 2] = i9;
break;
} while (0);
- i1 = HEAP32[i2 + 4 >> 2] | 0;
- if (i1) if (i1 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort(); else {
+ i1 = HEAP32[i1 + 4 >> 2] | 0;
+ if (i1) if (i1 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort(); else {
HEAP32[i9 + 20 >> 2] = i1;
HEAP32[i1 + 24 >> 2] = i9;
i17 = i11;
@@ -31194,25 +29981,25 @@ function _dispose_chunk(i2, i3) {
i17 = i2;
i6 = i3;
} while (0);
- i7 = HEAP32[9359] | 0;
+ i7 = HEAP32[9727] | 0;
if (i14 >>> 0 < i7 >>> 0) _abort();
i1 = i14 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
if (!(i2 & 2)) {
- if ((i14 | 0) == (HEAP32[9361] | 0)) {
- i16 = (HEAP32[9358] | 0) + i6 | 0;
- HEAP32[9358] = i16;
- HEAP32[9361] = i17;
+ if ((i14 | 0) == (HEAP32[9729] | 0)) {
+ i16 = (HEAP32[9726] | 0) + i6 | 0;
+ HEAP32[9726] = i16;
+ HEAP32[9729] = i17;
HEAP32[i17 + 4 >> 2] = i16 | 1;
- if ((i17 | 0) != (HEAP32[9360] | 0)) return;
- HEAP32[9360] = 0;
- HEAP32[9357] = 0;
+ if ((i17 | 0) != (HEAP32[9728] | 0)) return;
+ HEAP32[9728] = 0;
+ HEAP32[9725] = 0;
return;
}
- if ((i14 | 0) == (HEAP32[9360] | 0)) {
- i16 = (HEAP32[9357] | 0) + i6 | 0;
- HEAP32[9357] = i16;
- HEAP32[9360] = i17;
+ if ((i14 | 0) == (HEAP32[9728] | 0)) {
+ i16 = (HEAP32[9725] | 0) + i6 | 0;
+ HEAP32[9725] = i16;
+ HEAP32[9728] = i17;
HEAP32[i17 + 4 >> 2] = i16 | 1;
HEAP32[i17 + i16 >> 2] = i16;
return;
@@ -31223,29 +30010,29 @@ function _dispose_chunk(i2, i3) {
i5 = HEAP32[i14 + 24 >> 2] | 0;
i3 = HEAP32[i14 + 12 >> 2] | 0;
do if ((i3 | 0) == (i14 | 0)) {
- i3 = i14 + 16 | 0;
- i2 = i3 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i2 = i14 + 16 | 0;
+ i3 = i2 + 4 | 0;
+ i1 = HEAP32[i3 >> 2] | 0;
if (!i1) {
- i1 = HEAP32[i3 >> 2] | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
i13 = 0;
break;
- } else i2 = i3;
- }
+ }
+ } else i2 = i3;
while (1) {
- i4 = i1 + 20 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if (i3 | 0) {
- i1 = i3;
- i2 = i4;
+ i3 = i1 + 20 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if (i4 | 0) {
+ i1 = i4;
+ i2 = i3;
continue;
}
- i4 = i1 + 16 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if (!i3) break; else {
- i1 = i3;
- i2 = i4;
+ i3 = i1 + 16 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if (!i4) break; else {
+ i1 = i4;
+ i2 = i3;
}
}
if (i2 >>> 0 < i7 >>> 0) _abort(); else {
@@ -31268,31 +30055,31 @@ function _dispose_chunk(i2, i3) {
} while (0);
if (i5 | 0) {
i1 = HEAP32[i14 + 28 >> 2] | 0;
- i2 = 37724 + (i1 << 2) | 0;
+ i2 = 39196 + (i1 << 2) | 0;
if ((i14 | 0) == (HEAP32[i2 >> 2] | 0)) {
HEAP32[i2 >> 2] = i13;
if (!i13) {
- HEAP32[9356] = HEAP32[9356] & ~(1 << i1);
+ HEAP32[9724] = HEAP32[9724] & ~(1 << i1);
break;
}
} else {
- if (i5 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort();
+ if (i5 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort();
i1 = i5 + 16 | 0;
if ((HEAP32[i1 >> 2] | 0) == (i14 | 0)) HEAP32[i1 >> 2] = i13; else HEAP32[i5 + 20 >> 2] = i13;
if (!i13) break;
}
- i3 = HEAP32[9359] | 0;
+ i3 = HEAP32[9727] | 0;
if (i13 >>> 0 < i3 >>> 0) _abort();
HEAP32[i13 + 24 >> 2] = i5;
- i2 = i14 + 16 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- do if (i1 | 0) if (i1 >>> 0 < i3 >>> 0) _abort(); else {
- HEAP32[i13 + 16 >> 2] = i1;
- HEAP32[i1 + 24 >> 2] = i13;
+ i1 = i14 + 16 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ do if (i2 | 0) if (i2 >>> 0 < i3 >>> 0) _abort(); else {
+ HEAP32[i13 + 16 >> 2] = i2;
+ HEAP32[i2 + 24 >> 2] = i13;
break;
} while (0);
- i1 = HEAP32[i2 + 4 >> 2] | 0;
- if (i1 | 0) if (i1 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort(); else {
+ i1 = HEAP32[i1 + 4 >> 2] | 0;
+ if (i1 | 0) if (i1 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort(); else {
HEAP32[i13 + 20 >> 2] = i1;
HEAP32[i1 + 24 >> 2] = i13;
break;
@@ -31301,13 +30088,13 @@ function _dispose_chunk(i2, i3) {
} else {
i2 = HEAP32[i14 + 8 >> 2] | 0;
i3 = HEAP32[i14 + 12 >> 2] | 0;
- i1 = 37460 + (i4 << 1 << 2) | 0;
+ i1 = 38932 + (i4 << 1 << 2) | 0;
if ((i2 | 0) != (i1 | 0)) {
if (i2 >>> 0 < i7 >>> 0) _abort();
if ((HEAP32[i2 + 12 >> 2] | 0) != (i14 | 0)) _abort();
}
if ((i3 | 0) == (i2 | 0)) {
- HEAP32[9355] = HEAP32[9355] & ~(1 << i4);
+ HEAP32[9723] = HEAP32[9723] & ~(1 << i4);
break;
}
if ((i3 | 0) != (i1 | 0)) {
@@ -31320,8 +30107,8 @@ function _dispose_chunk(i2, i3) {
} while (0);
HEAP32[i17 + 4 >> 2] = i6 | 1;
HEAP32[i17 + i6 >> 2] = i6;
- if ((i17 | 0) == (HEAP32[9360] | 0)) {
- HEAP32[9357] = i6;
+ if ((i17 | 0) == (HEAP32[9728] | 0)) {
+ HEAP32[9725] = i6;
return;
}
} else {
@@ -31331,18 +30118,18 @@ function _dispose_chunk(i2, i3) {
}
i1 = i6 >>> 3;
if (i6 >>> 0 < 256) {
- i3 = 37460 + (i1 << 1 << 2) | 0;
- i2 = HEAP32[9355] | 0;
+ i3 = 38932 + (i1 << 1 << 2) | 0;
+ i2 = HEAP32[9723] | 0;
i1 = 1 << i1;
if (i2 & i1) {
i1 = i3 + 8 | 0;
i2 = HEAP32[i1 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort(); else {
+ if (i2 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort(); else {
i15 = i1;
i16 = i2;
}
} else {
- HEAP32[9355] = i2 | i1;
+ HEAP32[9723] = i2 | i1;
i15 = i3 + 8 | 0;
i16 = i3;
}
@@ -31353,72 +30140,72 @@ function _dispose_chunk(i2, i3) {
return;
}
i1 = i6 >>> 8;
- if (i1) if (i6 >>> 0 > 16777215) i2 = 31; else {
+ if (i1) if (i6 >>> 0 > 16777215) i3 = 31; else {
i15 = (i1 + 1048320 | 0) >>> 16 & 8;
i16 = i1 << i15;
i14 = (i16 + 520192 | 0) >>> 16 & 4;
i16 = i16 << i14;
- i2 = (i16 + 245760 | 0) >>> 16 & 2;
- i2 = 14 - (i14 | i15 | i2) + (i16 << i2 >>> 15) | 0;
- i2 = i6 >>> (i2 + 7 | 0) & 1 | i2 << 1;
- } else i2 = 0;
- i5 = 37724 + (i2 << 2) | 0;
- HEAP32[i17 + 28 >> 2] = i2;
+ i3 = (i16 + 245760 | 0) >>> 16 & 2;
+ i3 = 14 - (i14 | i15 | i3) + (i16 << i3 >>> 15) | 0;
+ i3 = i6 >>> (i3 + 7 | 0) & 1 | i3 << 1;
+ } else i3 = 0;
+ i4 = 39196 + (i3 << 2) | 0;
+ HEAP32[i17 + 28 >> 2] = i3;
HEAP32[i17 + 20 >> 2] = 0;
HEAP32[i17 + 16 >> 2] = 0;
- i1 = HEAP32[9356] | 0;
- i3 = 1 << i2;
- if (!(i1 & i3)) {
- HEAP32[9356] = i1 | i3;
- HEAP32[i5 >> 2] = i17;
- HEAP32[i17 + 24 >> 2] = i5;
+ i1 = HEAP32[9724] | 0;
+ i2 = 1 << i3;
+ if (!(i1 & i2)) {
+ HEAP32[9724] = i1 | i2;
+ HEAP32[i4 >> 2] = i17;
+ HEAP32[i17 + 24 >> 2] = i4;
HEAP32[i17 + 12 >> 2] = i17;
HEAP32[i17 + 8 >> 2] = i17;
return;
}
- i4 = i6 << ((i2 | 0) == 31 ? 0 : 25 - (i2 >>> 1) | 0);
- i3 = HEAP32[i5 >> 2] | 0;
+ i5 = i6 << ((i3 | 0) == 31 ? 0 : 25 - (i3 >>> 1) | 0);
+ i1 = HEAP32[i4 >> 2] | 0;
while (1) {
- if ((HEAP32[i3 + 4 >> 2] & -8 | 0) == (i6 | 0)) {
- i2 = 127;
+ if ((HEAP32[i1 + 4 >> 2] & -8 | 0) == (i6 | 0)) {
+ i3 = i1;
+ i4 = 127;
break;
}
- i1 = i3 + 16 + (i4 >>> 31 << 2) | 0;
- i2 = HEAP32[i1 >> 2] | 0;
- if (!i2) {
- i2 = 124;
+ i2 = i1 + 16 + (i5 >>> 31 << 2) | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if (!i3) {
+ i4 = 124;
break;
} else {
- i4 = i4 << 1;
- i3 = i2;
+ i5 = i5 << 1;
+ i1 = i3;
}
}
- if ((i2 | 0) == 124) {
- if (i1 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort();
- HEAP32[i1 >> 2] = i17;
- HEAP32[i17 + 24 >> 2] = i3;
+ if ((i4 | 0) == 124) {
+ if (i2 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort();
+ HEAP32[i2 >> 2] = i17;
+ HEAP32[i17 + 24 >> 2] = i1;
HEAP32[i17 + 12 >> 2] = i17;
HEAP32[i17 + 8 >> 2] = i17;
return;
- } else if ((i2 | 0) == 127) {
- i2 = i3 + 8 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- i16 = HEAP32[9359] | 0;
- if (!(i1 >>> 0 >= i16 >>> 0 & i3 >>> 0 >= i16 >>> 0)) _abort();
- HEAP32[i1 + 12 >> 2] = i17;
- HEAP32[i2 >> 2] = i17;
- HEAP32[i17 + 8 >> 2] = i1;
+ } else if ((i4 | 0) == 127) {
+ i1 = i3 + 8 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ i16 = HEAP32[9727] | 0;
+ if (!(i2 >>> 0 >= i16 >>> 0 & i3 >>> 0 >= i16 >>> 0)) _abort();
+ HEAP32[i2 + 12 >> 2] = i17;
+ HEAP32[i1 >> 2] = i17;
+ HEAP32[i17 + 8 >> 2] = i2;
HEAP32[i17 + 12 >> 2] = i3;
HEAP32[i17 + 24 >> 2] = 0;
return;
}
}
-
function __ZNSt3__112__next_primeEj(i5) {
i5 = i5 | 0;
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0;
L1 : do if (i5 >>> 0 < 212) {
- i1 = 7500;
+ i1 = 8068;
i2 = 48;
L2 : while (1) {
while (1) {
@@ -31438,7 +30225,7 @@ function __ZNSt3__112__next_primeEj(i5) {
i6 = (i5 >>> 0) / 210 | 0;
i7 = i6 * 210 | 0;
i5 = i5 - i7 | 0;
- i1 = 7692;
+ i1 = 8260;
i2 = 48;
L10 : while (1) {
while (1) {
@@ -31453,9 +30240,9 @@ function __ZNSt3__112__next_primeEj(i5) {
i1 = i1 + 4 | 0;
i2 = i2 + -1 - i3 | 0;
}
- i1 = i1 - 7692 >> 2;
+ i1 = i1 - 8260 >> 2;
i5 = i1;
- i1 = (HEAP32[7692 + (i1 << 2) >> 2] | 0) + i7 | 0;
+ i1 = (HEAP32[8260 + (i1 << 2) >> 2] | 0) + i7 | 0;
while (1) {
i4 = 5;
while (1) {
@@ -31464,7 +30251,7 @@ function __ZNSt3__112__next_primeEj(i5) {
i8 = 17;
break;
}
- i2 = HEAP32[7500 + (i4 << 2) >> 2] | 0;
+ i2 = HEAP32[8068 + (i4 << 2) >> 2] | 0;
i3 = (i1 >>> 0) / (i2 >>> 0) | 0;
if (i3 >>> 0 < i2 >>> 0) break L1;
if ((i1 | 0) == (Math_imul(i3, i2) | 0)) break; else i4 = i4 + 1 | 0;
@@ -31672,7 +30459,7 @@ function __ZNSt3__112__next_primeEj(i5) {
i7 = i4 ? 0 : i7;
i5 = i7;
i6 = i1;
- i1 = (HEAP32[7692 + (i7 << 2) >> 2] | 0) + (i1 * 210 | 0) | 0;
+ i1 = (HEAP32[8260 + (i7 << 2) >> 2] | 0) + (i1 * 210 | 0) | 0;
}
} while (0);
return i1 | 0;
@@ -31695,15 +30482,15 @@ function __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_typeINS0_2DbEEEPKcS4_S
L1 : do if ((i6 | 0) == (i2 | 0)) i1 = i6; else switch (HEAP8[i6 >> 0] | 0) {
case 84:
{
- i4 = i12 + 4 | 0;
- i5 = ((HEAP32[i4 >> 2] | 0) - (HEAP32[i12 >> 2] | 0) | 0) / 24 | 0;
+ i5 = i12 + 4 | 0;
+ i4 = ((HEAP32[i5 >> 2] | 0) - (HEAP32[i12 >> 2] | 0) | 0) / 24 | 0;
i1 = __ZN10__cxxabiv112_GLOBAL__N_120parse_template_paramINS0_2DbEEEPKcS4_S4_RT_(i6, i2, i12) | 0;
- i2 = HEAP32[i4 >> 2] | 0;
+ i2 = HEAP32[i5 >> 2] | 0;
i3 = (i2 - (HEAP32[i12 >> 2] | 0) | 0) / 24 | 0;
- if (!((i1 | 0) != (i6 | 0) & (i3 | 0) == (i5 + 1 | 0))) {
+ if (!((i1 | 0) != (i6 | 0) & (i3 | 0) == (i4 + 1 | 0))) {
i1 = i2;
while (1) {
- if ((i3 | 0) == (i5 | 0)) {
+ if ((i3 | 0) == (i4 | 0)) {
i1 = i6;
break L1;
}
@@ -31711,9 +30498,9 @@ function __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_typeINS0_2DbEEEPKcS4_S
while (1) {
if ((i1 | 0) == (i2 | 0)) break;
i12 = i1 + -24 | 0;
- HEAP32[i4 >> 2] = i12;
+ HEAP32[i5 >> 2] = i12;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i12);
- i1 = HEAP32[i4 >> 2] | 0;
+ i1 = HEAP32[i5 >> 2] | 0;
}
i1 = i2;
i3 = i3 + -1 | 0;
@@ -31785,7 +30572,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_typeINS0_2DbEEEPKcS4_S
i2 = i12 + 20 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i10 = HEAP32[i12 + 24 >> 2] | 0;
- i4 = i10;
+ i5 = i10;
if (i3 >>> 0 < i10 >>> 0) {
HEAP32[i3 + 12 >> 2] = HEAP32[i8 + 12 >> 2];
HEAP32[i3 >> 2] = HEAP32[i8 >> 2];
@@ -31800,15 +30587,15 @@ function __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_typeINS0_2DbEEEPKcS4_S
} else {
i2 = HEAP32[i6 >> 2] | 0;
i10 = i3 - i2 | 0;
- i5 = i10 >> 4;
- i3 = i5 + 1 | 0;
+ i4 = i10 >> 4;
+ i3 = i4 + 1 | 0;
if ((i10 | 0) < -16) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i6);
- i2 = i4 - i2 | 0;
+ i2 = i5 - i2 | 0;
if (i2 >> 4 >>> 0 < 1073741823) {
i2 = i2 >> 3;
i2 = i2 >>> 0 < i3 >>> 0 ? i3 : i2;
} else i2 = 2147483647;
- __ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i11, i2, i5, i12 + 28 | 0);
+ __ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i11, i2, i4, i12 + 28 | 0);
i12 = i11 + 8 | 0;
i10 = HEAP32[i12 >> 2] | 0;
HEAP32[i10 + 12 >> 2] = HEAP32[i8 + 12 >> 2];
@@ -31851,7 +30638,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_typeINS0_2DbEEEPKcS4_S
i1 = i6;
break L1;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 35388) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 36852) | 0;
i6 = i12 + 16 | 0;
i2 = (HEAP32[i3 >> 2] | 0) + -24 | 0;
HEAP32[i4 >> 2] = HEAP32[i12 + 12 >> 2];
@@ -31911,310 +30698,499 @@ function __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_typeINS0_2DbEEEPKcS4_S
return i1 | 0;
}
-function _strstr(i1, i16) {
+function _strstr(i1, i17) {
i1 = i1 | 0;
- i16 = i16 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i17 = 0, i18 = 0;
- i18 = STACKTOP;
+ i17 = i17 | 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i18 = 0, i19 = 0;
+ i19 = STACKTOP;
STACKTOP = STACKTOP + 1056 | 0;
- i15 = i18 + 1024 | 0;
- i17 = i18;
- i7 = HEAP8[i16 >> 0] | 0;
- do if (i7 << 24 >> 24) {
- i1 = _strchr(i1, i7 << 24 >> 24) | 0;
- if (i1) {
- i4 = HEAP8[i16 + 1 >> 0] | 0;
- if (i4 << 24 >> 24) {
- i5 = i1 + 1 | 0;
- i9 = HEAP8[i5 >> 0] | 0;
- if (i9 << 24 >> 24) {
- i6 = HEAP8[i16 + 2 >> 0] | 0;
- if (!(i6 << 24 >> 24)) {
- i6 = i4 & 255 | (i7 & 255) << 8;
- i2 = i9;
- i1 = HEAPU8[i1 >> 0] << 8 | i9 & 255;
+ i16 = i19 + 1024 | 0;
+ i18 = i19;
+ i6 = HEAP8[i17 >> 0] | 0;
+ do if (i6 << 24 >> 24) {
+ i15 = _strchr(i1, i6 << 24 >> 24) | 0;
+ if (i15) {
+ i5 = HEAP8[i17 + 1 >> 0] | 0;
+ if (i5 << 24 >> 24) {
+ i2 = i15 + 1 | 0;
+ i8 = HEAP8[i2 >> 0] | 0;
+ if (i8 << 24 >> 24) {
+ i4 = HEAP8[i17 + 2 >> 0] | 0;
+ if (!(i4 << 24 >> 24)) {
+ i5 = i5 & 255 | (i6 & 255) << 8;
+ i1 = i8;
+ i3 = HEAPU8[i15 >> 0] << 8 | i8 & 255;
while (1) {
- i4 = i1 & 65535;
- if ((i4 | 0) == (i6 | 0)) {
- i1 = i5;
- break;
- }
- i1 = i5 + 1 | 0;
- i3 = HEAP8[i1 >> 0] | 0;
- if (!(i3 << 24 >> 24)) {
- i2 = 0;
+ i3 = i3 & 65535;
+ if ((i3 | 0) == (i5 | 0)) break;
+ i2 = i2 + 1 | 0;
+ i4 = HEAP8[i2 >> 0] | 0;
+ if (!(i4 << 24 >> 24)) {
+ i1 = 0;
break;
} else {
- i2 = i3;
- i5 = i1;
- i1 = i3 & 255 | i4 << 8;
+ i1 = i4;
+ i3 = i4 & 255 | i3 << 8;
}
}
- i1 = i2 << 24 >> 24 ? i1 + -1 | 0 : 0;
+ i1 = i1 << 24 >> 24 ? i2 + -1 | 0 : 0;
break;
}
- i5 = i1 + 2 | 0;
- i2 = HEAP8[i5 >> 0] | 0;
- if (i2 << 24 >> 24) {
- i3 = HEAP8[i16 + 3 >> 0] | 0;
+ i2 = i15 + 2 | 0;
+ i1 = HEAP8[i2 >> 0] | 0;
+ if (i1 << 24 >> 24) {
+ i3 = HEAP8[i17 + 3 >> 0] | 0;
if (!(i3 << 24 >> 24)) {
- i4 = (i4 & 255) << 16 | (i7 & 255) << 24 | (i6 & 255) << 8;
- i3 = (i2 & 255) << 8 | (i9 & 255) << 16 | HEAPU8[i1 >> 0] << 24;
- if ((i3 | 0) == (i4 | 0)) i1 = i5; else {
- i1 = i5;
- do {
- i1 = i1 + 1 | 0;
- i2 = HEAP8[i1 >> 0] | 0;
- i3 = (i2 & 255 | i3) << 8;
- } while (!(i2 << 24 >> 24 == 0 | (i3 | 0) == (i4 | 0)));
- }
- i1 = i2 << 24 >> 24 ? i1 + -2 | 0 : 0;
+ i4 = (i5 & 255) << 16 | (i6 & 255) << 24 | (i4 & 255) << 8;
+ i3 = (i1 & 255) << 8 | (i8 & 255) << 16 | HEAPU8[i15 >> 0] << 24;
+ if ((i3 | 0) != (i4 | 0)) do {
+ i2 = i2 + 1 | 0;
+ i1 = HEAP8[i2 >> 0] | 0;
+ i3 = (i1 & 255 | i3) << 8;
+ } while (!(i1 << 24 >> 24 == 0 | (i3 | 0) == (i4 | 0)));
+ i1 = i1 << 24 >> 24 ? i2 + -2 | 0 : 0;
break;
}
- i8 = i1 + 3 | 0;
- i5 = HEAP8[i8 >> 0] | 0;
- if (i5 << 24 >> 24) {
- if (!(HEAP8[i16 + 4 >> 0] | 0)) {
- i4 = (i4 & 255) << 16 | (i7 & 255) << 24 | (i6 & 255) << 8 | i3 & 255;
- i3 = (i2 & 255) << 8 | (i9 & 255) << 16 | i5 & 255 | HEAPU8[i1 >> 0] << 24;
- if ((i3 | 0) == (i4 | 0)) {
- i2 = i5;
- i1 = i8;
- } else {
- i1 = i8;
+ i2 = i15 + 3 | 0;
+ i7 = HEAP8[i2 >> 0] | 0;
+ if (i7 << 24 >> 24) {
+ if (!(HEAP8[i17 + 4 >> 0] | 0)) {
+ i4 = (i5 & 255) << 16 | (i6 & 255) << 24 | (i4 & 255) << 8 | i3 & 255;
+ i1 = (i1 & 255) << 8 | (i8 & 255) << 16 | i7 & 255 | HEAPU8[i15 >> 0] << 24;
+ if ((i1 | 0) == (i4 | 0)) i1 = i7; else {
+ i3 = i1;
do {
- i1 = i1 + 1 | 0;
- i2 = HEAP8[i1 >> 0] | 0;
- i3 = i2 & 255 | i3 << 8;
- } while (!(i2 << 24 >> 24 == 0 | (i3 | 0) == (i4 | 0)));
+ i2 = i2 + 1 | 0;
+ i1 = HEAP8[i2 >> 0] | 0;
+ i3 = i1 & 255 | i3 << 8;
+ } while (!(i1 << 24 >> 24 == 0 | (i3 | 0) == (i4 | 0)));
}
- i1 = i2 << 24 >> 24 ? i1 + -3 | 0 : 0;
+ i1 = i1 << 24 >> 24 ? i2 + -3 | 0 : 0;
break;
};
- HEAP32[i15 >> 2] = 0;
- HEAP32[i15 + 4 >> 2] = 0;
- HEAP32[i15 + 8 >> 2] = 0;
- HEAP32[i15 + 12 >> 2] = 0;
- HEAP32[i15 + 16 >> 2] = 0;
- HEAP32[i15 + 20 >> 2] = 0;
- HEAP32[i15 + 24 >> 2] = 0;
- HEAP32[i15 + 28 >> 2] = 0;
- i2 = i7;
- i4 = 0;
+ HEAP32[i16 >> 2] = 0;
+ HEAP32[i16 + 4 >> 2] = 0;
+ HEAP32[i16 + 8 >> 2] = 0;
+ HEAP32[i16 + 12 >> 2] = 0;
+ HEAP32[i16 + 16 >> 2] = 0;
+ HEAP32[i16 + 20 >> 2] = 0;
+ HEAP32[i16 + 24 >> 2] = 0;
+ HEAP32[i16 + 28 >> 2] = 0;
+ i1 = i6;
+ i3 = 0;
while (1) {
- if (!(HEAP8[i1 + i4 >> 0] | 0)) {
+ if (!(HEAP8[i15 + i3 >> 0] | 0)) {
i1 = 0;
break;
}
- i3 = i15 + (((i2 & 255) >>> 5 & 255) << 2) | 0;
- HEAP32[i3 >> 2] = HEAP32[i3 >> 2] | 1 << (i2 & 31);
- i3 = i4 + 1 | 0;
- HEAP32[i17 + ((i2 & 255) << 2) >> 2] = i3;
- i2 = HEAP8[i16 + i3 >> 0] | 0;
- if (!(i2 << 24 >> 24)) {
- i10 = 23;
+ i2 = i16 + (((i1 & 255) >>> 5 & 255) << 2) | 0;
+ HEAP32[i2 >> 2] = HEAP32[i2 >> 2] | 1 << (i1 & 31);
+ i2 = i3 + 1 | 0;
+ HEAP32[i18 + ((i1 & 255) << 2) >> 2] = i2;
+ i1 = HEAP8[i17 + i2 >> 0] | 0;
+ if (!(i1 << 24 >> 24)) {
+ i9 = 23;
break;
- } else i4 = i3;
+ } else i3 = i2;
}
- L32 : do if ((i10 | 0) == 23) {
- L34 : do if (i3 >>> 0 > 1) {
- i5 = 1;
- i10 = -1;
- i2 = 0;
+ L32 : do if ((i9 | 0) == 23) {
+ L34 : do if (i2 >>> 0 > 1) {
+ i4 = 1;
+ i9 = -1;
+ i1 = 0;
L35 : while (1) {
- i9 = 1;
+ i8 = 1;
while (1) {
L39 : while (1) {
- i7 = 1;
+ i5 = 1;
while (1) {
- i6 = HEAP8[i16 + (i7 + i10) >> 0] | 0;
- i8 = HEAP8[i16 + i5 >> 0] | 0;
- if (i6 << 24 >> 24 != i8 << 24 >> 24) {
- i7 = i8;
- i8 = i5;
+ i6 = HEAP8[i17 + (i5 + i9) >> 0] | 0;
+ i7 = HEAP8[i17 + i4 >> 0] | 0;
+ if (i6 << 24 >> 24 != i7 << 24 >> 24) {
+ i8 = i4;
+ i5 = i6;
+ i4 = i7;
break L39;
}
- if ((i7 | 0) == (i9 | 0)) break;
- i7 = i7 + 1 | 0;
- i5 = i7 + i2 | 0;
- if (i5 >>> 0 >= i3 >>> 0) {
- i2 = i10;
- i13 = i9;
+ if ((i5 | 0) == (i8 | 0)) break;
+ i5 = i5 + 1 | 0;
+ i4 = i5 + i1 | 0;
+ if (i4 >>> 0 >= i2 >>> 0) {
+ i1 = i9;
+ i11 = i8;
break L35;
}
}
- i2 = i2 + i9 | 0;
- i5 = i2 + 1 | 0;
- if (i5 >>> 0 >= i3 >>> 0) {
- i2 = i10;
- i13 = i9;
+ i1 = i1 + i8 | 0;
+ i4 = i1 + 1 | 0;
+ if (i4 >>> 0 >= i2 >>> 0) {
+ i1 = i9;
+ i11 = i8;
break L35;
}
}
- i9 = i8 - i10 | 0;
- if ((i6 & 255) <= (i7 & 255)) break;
- i2 = i8 + 1 | 0;
- if (i2 >>> 0 < i3 >>> 0) {
- i5 = i2;
- i2 = i8;
+ i6 = i8 - i9 | 0;
+ if ((i5 & 255) <= (i4 & 255)) break;
+ i1 = i8 + 1 | 0;
+ if (i1 >>> 0 < i2 >>> 0) {
+ i4 = i1;
+ i1 = i8;
+ i8 = i6;
} else {
- i2 = i10;
- i13 = i9;
+ i1 = i9;
+ i11 = i6;
break L35;
}
}
- i5 = i2 + 2 | 0;
- if (i5 >>> 0 >= i3 >>> 0) {
- i13 = 1;
+ i4 = i1 + 2 | 0;
+ if (i4 >>> 0 >= i2 >>> 0) {
+ i11 = 1;
break;
} else {
- i10 = i2;
- i2 = i2 + 1 | 0;
+ i9 = i1;
+ i1 = i1 + 1 | 0;
}
}
- i6 = 1;
- i7 = -1;
- i5 = 0;
+ i5 = 1;
+ i6 = -1;
+ i4 = 0;
while (1) {
- i8 = i5;
- i5 = 1;
+ i7 = i4;
+ i4 = 1;
while (1) {
- i12 = i8;
+ i10 = i7;
L54 : while (1) {
- i9 = 1;
+ i7 = 1;
while (1) {
- i8 = HEAP8[i16 + (i9 + i7) >> 0] | 0;
- i10 = HEAP8[i16 + i6 >> 0] | 0;
- if (i8 << 24 >> 24 != i10 << 24 >> 24) {
- i11 = i8;
- i9 = i10;
- i8 = i6;
- i6 = i12;
+ i9 = HEAP8[i17 + (i7 + i6) >> 0] | 0;
+ i8 = HEAP8[i17 + i5 >> 0] | 0;
+ if (i9 << 24 >> 24 != i8 << 24 >> 24) {
+ i7 = i5;
+ i5 = i10;
break L54;
}
- if ((i9 | 0) == (i5 | 0)) break;
- i9 = i9 + 1 | 0;
- i6 = i9 + i12 | 0;
- if (i6 >>> 0 >= i3 >>> 0) {
- i6 = i13;
+ if ((i7 | 0) == (i4 | 0)) break;
+ i7 = i7 + 1 | 0;
+ i5 = i7 + i10 | 0;
+ if (i5 >>> 0 >= i2 >>> 0) {
+ i5 = i11;
break L34;
}
}
- i12 = i12 + i5 | 0;
- i6 = i12 + 1 | 0;
- if (i6 >>> 0 >= i3 >>> 0) {
- i6 = i13;
+ i10 = i10 + i4 | 0;
+ i5 = i10 + 1 | 0;
+ if (i5 >>> 0 >= i2 >>> 0) {
+ i5 = i11;
break L34;
}
}
- i5 = i8 - i7 | 0;
- if ((i11 & 255) >= (i9 & 255)) {
- i5 = i6;
+ i4 = i7 - i6 | 0;
+ if ((i9 & 255) >= (i8 & 255)) {
+ i4 = i5;
break;
}
- i6 = i8 + 1 | 0;
- if (i6 >>> 0 >= i3 >>> 0) {
- i6 = i13;
+ i5 = i7 + 1 | 0;
+ if (i5 >>> 0 >= i2 >>> 0) {
+ i5 = i11;
break L34;
}
}
- i6 = i5 + 2 | 0;
- if (i6 >>> 0 >= i3 >>> 0) {
- i7 = i5;
- i6 = i13;
- i5 = 1;
+ i5 = i4 + 2 | 0;
+ if (i5 >>> 0 >= i2 >>> 0) {
+ i6 = i4;
+ i5 = i11;
+ i4 = 1;
break;
} else {
- i7 = i5;
- i5 = i5 + 1 | 0;
+ i6 = i4;
+ i4 = i4 + 1 | 0;
}
}
} else {
- i2 = -1;
- i7 = -1;
- i6 = 1;
+ i1 = -1;
+ i6 = -1;
i5 = 1;
+ i4 = 1;
} while (0);
- i13 = (i7 + 1 | 0) >>> 0 > (i2 + 1 | 0) >>> 0;
- i5 = i13 ? i5 : i6;
- i13 = i13 ? i7 : i2;
+ i13 = (i6 + 1 | 0) >>> 0 > (i1 + 1 | 0) >>> 0;
+ i4 = i13 ? i4 : i5;
+ i13 = i13 ? i6 : i1;
i12 = i13 + 1 | 0;
- if (!(_memcmp(i16, i16 + i5 | 0, i12) | 0)) i14 = i3 - i5 | 0; else {
- i5 = i3 - i13 + -1 | 0;
+ if (!(_memcmp(i17, i17 + i4 | 0, i12) | 0)) i14 = i2 - i4 | 0; else {
+ i4 = i2 - i13 + -1 | 0;
i14 = 0;
- i5 = (i13 >>> 0 > i5 >>> 0 ? i13 : i5) + 1 | 0;
+ i4 = (i13 >>> 0 > i4 >>> 0 ? i13 : i4) + 1 | 0;
}
- i9 = i3 | 63;
- i11 = (i14 | 0) != 0;
- i10 = i3 - i5 | 0;
- i8 = i1;
- i7 = 0;
- i6 = i1;
+ i9 = i2 | 63;
+ i10 = (i14 | 0) != 0;
+ i11 = i2 - i4 | 0;
+ i1 = i15;
+ i8 = 0;
+ i7 = i15;
L69 : while (1) {
- i2 = i8;
- do if ((i6 - i2 | 0) >>> 0 < i3 >>> 0) {
- i1 = _memchr(i6, 0, i9) | 0;
- if (i1) if ((i1 - i2 | 0) >>> 0 < i3 >>> 0) {
+ i5 = i1;
+ do if ((i7 - i5 | 0) >>> 0 < i2 >>> 0) {
+ i6 = _memchr(i7, 0, i9) | 0;
+ if (i6) if ((i6 - i5 | 0) >>> 0 < i2 >>> 0) {
i1 = 0;
break L32;
- } else {
- i6 = i1;
- break;
- } else {
- i6 = i6 + i9 | 0;
+ } else break; else {
+ i6 = i7 + i9 | 0;
break;
}
- } while (0);
- i1 = HEAP8[i8 + i4 >> 0] | 0;
- if (!(1 << (i1 & 31) & HEAP32[i15 + (((i1 & 255) >>> 5 & 255) << 2) >> 2])) {
- i8 = i8 + i3 | 0;
- i7 = 0;
+ } else i6 = i7; while (0);
+ i5 = HEAP8[i1 + i3 >> 0] | 0;
+ if (!(1 << (i5 & 31) & HEAP32[i16 + (((i5 & 255) >>> 5 & 255) << 2) >> 2])) {
+ i1 = i1 + i2 | 0;
+ i8 = 0;
+ i7 = i6;
continue;
}
- i2 = HEAP32[i17 + ((i1 & 255) << 2) >> 2] | 0;
- i1 = i3 - i2 | 0;
- if ((i3 | 0) != (i2 | 0)) {
- i8 = i8 + (i11 & (i7 | 0) != 0 & i1 >>> 0 < i5 >>> 0 ? i10 : i1) | 0;
- i7 = 0;
+ i15 = HEAP32[i18 + ((i5 & 255) << 2) >> 2] | 0;
+ i5 = i2 - i15 | 0;
+ if ((i2 | 0) != (i15 | 0)) {
+ i1 = i1 + (i10 & (i8 | 0) != 0 & i5 >>> 0 < i4 >>> 0 ? i11 : i5) | 0;
+ i8 = 0;
+ i7 = i6;
continue;
}
- i1 = i12 >>> 0 > i7 >>> 0 ? i12 : i7;
- i2 = HEAP8[i16 + i1 >> 0] | 0;
- L83 : do if (!(i2 << 24 >> 24)) i1 = i12; else {
+ i5 = i12 >>> 0 > i8 >>> 0 ? i12 : i8;
+ i7 = HEAP8[i17 + i5 >> 0] | 0;
+ L83 : do if (!(i7 << 24 >> 24)) i5 = i12; else {
while (1) {
- if (i2 << 24 >> 24 != (HEAP8[i8 + i1 >> 0] | 0)) break;
- i1 = i1 + 1 | 0;
- i2 = HEAP8[i16 + i1 >> 0] | 0;
- if (!(i2 << 24 >> 24)) {
- i1 = i12;
+ if (i7 << 24 >> 24 != (HEAP8[i1 + i5 >> 0] | 0)) break;
+ i5 = i5 + 1 | 0;
+ i7 = HEAP8[i17 + i5 >> 0] | 0;
+ if (!(i7 << 24 >> 24)) {
+ i5 = i12;
break L83;
}
}
- i8 = i8 + (i1 - i13) | 0;
- i7 = 0;
+ i1 = i1 + (i5 - i13) | 0;
+ i8 = 0;
+ i7 = i6;
continue L69;
} while (0);
do {
- if (i1 >>> 0 <= i7 >>> 0) {
- i1 = i8;
- break L32;
- }
- i1 = i1 + -1 | 0;
- } while ((HEAP8[i16 + i1 >> 0] | 0) == (HEAP8[i8 + i1 >> 0] | 0));
- i8 = i8 + i5 | 0;
- i7 = i14;
+ if (i5 >>> 0 <= i8 >>> 0) break L32;
+ i5 = i5 + -1 | 0;
+ } while ((HEAP8[i17 + i5 >> 0] | 0) == (HEAP8[i1 + i5 >> 0] | 0));
+ i1 = i1 + i4 | 0;
+ i8 = i14;
+ i7 = i6;
}
} while (0);
} else i1 = 0;
} else i1 = 0;
} else i1 = 0;
- }
+ } else i1 = i15;
} else i1 = 0;
} while (0);
- STACKTOP = i18;
+ STACKTOP = i19;
return i1 | 0;
}
+function __ZN4wasm22SExpressionWasmBuilder13parseFunctionERNS_7ElementE(i33, i31) {
+ i33 = i33 | 0;
+ i31 = i31 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i32 = 0, i34 = 0, i35 = 0, i36 = 0;
+ i36 = STACKTOP;
+ STACKTOP = STACKTOP + 32 | 0;
+ i35 = i36 + 20 | 0;
+ i30 = i36 + 16 | 0;
+ i32 = i36 + 12 | 0;
+ i24 = i36 + 8 | 0;
+ i29 = i36;
+ i25 = i36 + 4 | 0;
+ i26 = i33 + 4 | 0;
+ i27 = __ZN10MixedArena5allocIN4wasm8FunctionEEEPT_v(HEAP32[i26 >> 2] | 0) | 0;
+ i34 = i33 + 56 | 0;
+ HEAP32[i34 >> 2] = i27;
+ i23 = __ZN4wasm7Element4listEv(i31) | 0;
+ if (!(HEAP8[HEAP32[(HEAP32[i23 >> 2] | 0) + 4 >> 2] >> 0] | 0)) {
+ i1 = __ZN4wasm7Element4listEv(i31) | 0;
+ i1 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] | 0) | 0;
+ HEAP32[i27 >> 2] = i1;
+ i1 = i33 + 32 | 0;
+ i2 = 2;
+ } else {
+ i1 = i33 + 32 | 0;
+ i2 = __ZN4wasm4Name7fromIntEj(HEAP32[i1 >> 2] | 0) | 0;
+ HEAP32[i27 >> 2] = i2;
+ i2 = 1;
+ }
+ HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 1;
+ i9 = i27 + 36 | 0;
+ HEAP32[i9 >> 2] = 0;
+ i10 = i33 + 72 | 0;
+ HEAP32[i10 >> 2] = 0;
+ HEAP32[i33 + 76 >> 2] = 0;
+ HEAP32[i35 >> 2] = 0;
+ i11 = i35 + 4 | 0;
+ HEAP32[i11 >> 2] = 0;
+ HEAP32[i35 + 8 >> 2] = 0;
+ i12 = i27 + 4 | 0;
+ i13 = i27 + 32 | 0;
+ i14 = i33 + 8 | 0;
+ i15 = i35 + 8 | 0;
+ i16 = i33 + 60 | 0;
+ i17 = i27 + 8 | 0;
+ i18 = i27 + 12 | 0;
+ i19 = (i17 | 0) == (i35 | 0);
+ i20 = i27 + 16 | 0;
+ i21 = i27 + 24 | 0;
+ i22 = i27 + 28 | 0;
+ i23 = i27 + 20 | 0;
+ i1 = 0;
+ i8 = i2;
+ while (1) {
+ if (i8 >>> 0 >= (__ZN4wasm7Element4sizeEv(i31) | 0) >>> 0) break;
+ i7 = __ZN4wasm7ElementixEj(i31, i8) | 0;
+ i5 = __ZN4wasm7Element4listEv(i7) | 0;
+ i5 = __ZN4wasm7Element3strEv(HEAP32[HEAP32[i5 >> 2] >> 2] | 0) | 0;
+ L8 : do if ((i5 | 0) == (HEAP32[9549] | 0) | (i5 | 0) == (HEAP32[9556] | 0)) {
+ i2 = 1;
+ while (1) {
+ if (i2 >>> 0 >= (__ZN4wasm7Element4sizeEv(i7) | 0) >>> 0) break L8;
+ HEAP32[i30 >> 2] = 0;
+ HEAP32[i32 >> 2] = 0;
+ i6 = (__ZN4wasm7ElementixEj(i7, i2) | 0) + 20 | 0;
+ if ((HEAP8[i6 >> 0] | 0) == 0 ? (i28 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i33, __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i7, i2) | 0) | 0, 1, 0) | 0, HEAP32[i32 >> 2] = i28, (i28 | 0) != 0) : 0) {
+ i3 = __ZN4wasm4Name7fromIntEj(HEAP32[i10 >> 2] | 0) | 0;
+ HEAP32[i30 >> 2] = i3;
+ i6 = i28;
+ } else {
+ i3 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i7, i2) | 0) | 0;
+ HEAP32[i30 >> 2] = i3;
+ i2 = i2 + 1 | 0;
+ i6 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i33, __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i7, i2) | 0) | 0, 0, 0) | 0;
+ HEAP32[i32 >> 2] = i6;
+ }
+ i2 = i2 + 1 | 0;
+ do if ((i5 | 0) == (HEAP32[9549] | 0)) {
+ i4 = HEAP32[i18 >> 2] | 0;
+ if (i4 >>> 0 < (HEAP32[i20 >> 2] | 0) >>> 0) {
+ HEAP32[i4 >> 2] = i3;
+ HEAP32[i4 + 4 >> 2] = i6;
+ HEAP32[i18 >> 2] = (HEAP32[i18 >> 2] | 0) + 8;
+ break;
+ } else {
+ __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRN6cashew7IStringERNS1_8WasmTypeEEEEvDpOT_(i17, i30, i32);
+ break;
+ }
+ } else {
+ i4 = HEAP32[i21 >> 2] | 0;
+ if (i4 >>> 0 < (HEAP32[i22 >> 2] | 0) >>> 0) {
+ HEAP32[i4 >> 2] = i3;
+ HEAP32[i4 + 4 >> 2] = i6;
+ HEAP32[i21 >> 2] = (HEAP32[i21 >> 2] | 0) + 8;
+ break;
+ } else {
+ __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRN6cashew7IStringERNS1_8WasmTypeEEEEvDpOT_(i23, i30, i32);
+ break;
+ }
+ } while (0);
+ HEAP32[i10 >> 2] = (HEAP32[i10 >> 2] | 0) + 1;
+ HEAP32[i24 >> 2] = i3;
+ i4 = __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixEOS2_(i16, i24) | 0;
+ HEAP32[i4 >> 2] = i6;
+ }
+ } else {
+ if ((i5 | 0) == (HEAP32[9550] | 0)) {
+ i7 = __ZN4wasm7Element4listEv(i7) | 0;
+ i7 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i33, __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i7 >> 2] | 0) + 4 >> 2] | 0) | 0, 0, 0) | 0;
+ HEAP32[i12 >> 2] = i7;
+ break;
+ }
+ if ((i5 | 0) == (HEAP32[9557] | 0)) {
+ i2 = __ZN4wasm7Element4listEv(i7) | 0;
+ i2 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i2 >> 2] | 0) + 4 >> 2] | 0) | 0;
+ HEAP32[i30 >> 2] = i2;
+ HEAP32[i13 >> 2] = i2;
+ i2 = HEAP32[i33 >> 2] | 0;
+ if ((__ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_(i2 + 48 | 0, i30) | 0) == (i2 + 52 | 0)) {
+ __ZNKSt3__18functionIFvvEEclEv(i14);
+ i2 = HEAP32[i33 >> 2] | 0;
+ }
+ i3 = __ZNSt3__13mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i2 + 48 | 0, i30) | 0;
+ i3 = HEAP32[i3 >> 2] | 0;
+ HEAP32[i12 >> 2] = HEAP32[i3 + 4 >> 2];
+ i2 = i3 + 8 | 0;
+ i3 = i3 + 12 | 0;
+ i7 = 0;
+ while (1) {
+ if (i7 >>> 0 >= (HEAP32[i3 >> 2] | 0) - (HEAP32[i2 >> 2] | 0) >> 2 >>> 0) break;
+ i6 = __ZN4wasm4Name7fromIntEj(i7) | 0;
+ HEAP32[i32 >> 2] = i6;
+ i4 = HEAP32[(HEAP32[i2 >> 2] | 0) + (i7 << 2) >> 2] | 0;
+ HEAP32[i29 >> 2] = i4;
+ i5 = HEAP32[i11 >> 2] | 0;
+ if (i5 >>> 0 < (HEAP32[i15 >> 2] | 0) >>> 0) {
+ HEAP32[i5 >> 2] = i6;
+ HEAP32[i5 + 4 >> 2] = i4;
+ HEAP32[i11 >> 2] = (HEAP32[i11 >> 2] | 0) + 8;
+ } else __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRN6cashew7IStringERNS1_8WasmTypeEEEEvDpOT_(i35, i32, i29);
+ HEAP32[i25 >> 2] = i6;
+ i6 = __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixEOS2_(i16, i25) | 0;
+ HEAP32[i6 >> 2] = i4;
+ i7 = i7 + 1 | 0;
+ }
+ break;
+ }
+ i5 = HEAP32[i11 >> 2] | 0;
+ i6 = HEAP32[i35 >> 2] | 0;
+ i2 = i6;
+ i3 = i5;
+ if ((i5 | 0) != (i6 | 0) ? !(i19 | (HEAP32[i18 >> 2] | 0) != (HEAP32[i17 >> 2] | 0)) : 0) __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE6assignIPS2_EENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIS2_NS_15iterator_traitsIS9_E9referenceEEE5valueEvE4typeES9_S9_(i17, i2, i3);
+ i2 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i33, i7) | 0;
+ HEAP32[i30 >> 2] = i2;
+ i4 = i2;
+ do if (HEAP32[i9 >> 2] | 0) {
+ if (!i1) {
+ i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i26 >> 2] | 0) | 0;
+ i2 = i1 + 16 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 20 >> 2] | 0)) __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i1 + 12 | 0, i9); else {
+ HEAP32[i3 >> 2] = HEAP32[i9 >> 2];
+ HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4;
+ }
+ HEAP32[i9 >> 2] = i1;
+ }
+ i2 = i1 + 16 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 20 >> 2] | 0)) {
+ __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i1 + 12 | 0, i30);
+ break;
+ } else {
+ HEAP32[i3 >> 2] = i4;
+ HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4;
+ break;
+ }
+ } else HEAP32[i9 >> 2] = i2; while (0);
+ } while (0);
+ i8 = i8 + 1 | 0;
+ }
+ if (!(HEAP32[i9 >> 2] | 0)) {
+ i32 = __ZN10MixedArena5allocIN4wasm3NopEEEPT_v(HEAP32[i26 >> 2] | 0) | 0;
+ HEAP32[i9 >> 2] = i32;
+ }
+ __ZN4wasm6Module11addFunctionEPNS_8FunctionE(HEAP32[i33 >> 2] | 0, i27);
+ __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE5clearEv(i33 + 60 | 0);
+ i3 = HEAP32[i33 + 80 >> 2] | 0;
+ i1 = i33 + 84 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ while (1) {
+ if ((i2 | 0) == (i3 | 0)) break;
+ i33 = i2 + -4 | 0;
+ HEAP32[i1 >> 2] = i33;
+ i2 = i33;
+ }
+ HEAP32[i34 >> 2] = 0;
+ __ZNSt3__113__vector_baseIN4wasm8NameTypeENS_9allocatorIS2_EEED2Ev(i35);
+ STACKTOP = i36;
+ return;
+}
+
function __ZNSt3__111__money_putIcE13__gather_infoEbbRKNS_6localeERNS_10money_base7patternERcS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESF_SF_Ri(i1, i12, i2, i13, i19, i21, i20, i22, i14, i23) {
i1 = i1 | 0;
i12 = i12 | 0;
@@ -32230,28 +31206,28 @@ function __ZNSt3__111__money_putIcE13__gather_infoEbbRKNS_6localeERNS_10money_ba
i24 = STACKTOP;
STACKTOP = STACKTOP + 112 | 0;
i4 = i24 + 108 | 0;
- i10 = i24 + 96 | 0;
- i7 = i24 + 92 | 0;
- i11 = i24 + 80 | 0;
- i15 = i24 + 68 | 0;
- i17 = i24 + 56 | 0;
- i5 = i24 + 52 | 0;
- i8 = i24 + 40 | 0;
- i6 = i24 + 36 | 0;
- i9 = i24 + 24 | 0;
- i16 = i24 + 12 | 0;
- i18 = i24;
+ i8 = i24 + 96 | 0;
+ i5 = i24 + 92 | 0;
+ i9 = i24 + 80 | 0;
+ i16 = i24 + 68 | 0;
+ i18 = i24 + 56 | 0;
+ i6 = i24 + 52 | 0;
+ i10 = i24 + 40 | 0;
+ i7 = i24 + 36 | 0;
+ i11 = i24 + 24 | 0;
+ i15 = i24 + 12 | 0;
+ i17 = i24;
if (i1) {
- i3 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 40684) | 0;
+ i3 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 42156) | 0;
i1 = HEAP32[i3 >> 2] | 0;
if (i12) {
FUNCTION_TABLE_vii[HEAP32[i1 + 44 >> 2] & 127](i4, i3);
- i18 = HEAP32[i4 >> 2] | 0;
- HEAP8[i13 >> 0] = i18;
- HEAP8[i13 + 1 >> 0] = i18 >> 8;
- HEAP8[i13 + 2 >> 0] = i18 >> 16;
- HEAP8[i13 + 3 >> 0] = i18 >> 24;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 32 >> 2] & 127](i10, i3);
+ i17 = HEAP32[i4 >> 2] | 0;
+ HEAP8[i13 >> 0] = i17;
+ HEAP8[i13 + 1 >> 0] = i17 >> 8;
+ HEAP8[i13 + 2 >> 0] = i17 >> 16;
+ HEAP8[i13 + 3 >> 0] = i17 >> 24;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 32 >> 2] & 127](i8, i3);
if (!(HEAP8[i14 >> 0] & 1)) {
HEAP8[i14 + 1 >> 0] = 0;
HEAP8[i14 >> 0] = 0;
@@ -32260,25 +31236,25 @@ function __ZNSt3__111__money_putIcE13__gather_infoEbbRKNS_6localeERNS_10money_ba
HEAP32[i14 + 4 >> 2] = 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i14, 0);
- HEAP32[i14 >> 2] = HEAP32[i10 >> 2];
- HEAP32[i14 + 4 >> 2] = HEAP32[i10 + 4 >> 2];
- HEAP32[i14 + 8 >> 2] = HEAP32[i10 + 8 >> 2];
+ HEAP32[i14 >> 2] = HEAP32[i8 >> 2];
+ HEAP32[i14 + 4 >> 2] = HEAP32[i8 + 4 >> 2];
+ HEAP32[i14 + 8 >> 2] = HEAP32[i8 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i10 + (i1 << 2) >> 2] = 0;
+ HEAP32[i8 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i8);
i2 = i3;
} else {
- FUNCTION_TABLE_vii[HEAP32[i1 + 40 >> 2] & 127](i7, i3);
- i18 = HEAP32[i7 >> 2] | 0;
- HEAP8[i13 >> 0] = i18;
- HEAP8[i13 + 1 >> 0] = i18 >> 8;
- HEAP8[i13 + 2 >> 0] = i18 >> 16;
- HEAP8[i13 + 3 >> 0] = i18 >> 24;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 127](i11, i3);
+ FUNCTION_TABLE_vii[HEAP32[i1 + 40 >> 2] & 127](i5, i3);
+ i17 = HEAP32[i5 >> 2] | 0;
+ HEAP8[i13 >> 0] = i17;
+ HEAP8[i13 + 1 >> 0] = i17 >> 8;
+ HEAP8[i13 + 2 >> 0] = i17 >> 16;
+ HEAP8[i13 + 3 >> 0] = i17 >> 24;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 127](i9, i3);
if (!(HEAP8[i14 >> 0] & 1)) {
HEAP8[i14 + 1 >> 0] = 0;
HEAP8[i14 >> 0] = 0;
@@ -32287,23 +31263,23 @@ function __ZNSt3__111__money_putIcE13__gather_infoEbbRKNS_6localeERNS_10money_ba
HEAP32[i14 + 4 >> 2] = 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i14, 0);
- HEAP32[i14 >> 2] = HEAP32[i11 >> 2];
- HEAP32[i14 + 4 >> 2] = HEAP32[i11 + 4 >> 2];
- HEAP32[i14 + 8 >> 2] = HEAP32[i11 + 8 >> 2];
+ HEAP32[i14 >> 2] = HEAP32[i9 >> 2];
+ HEAP32[i14 + 4 >> 2] = HEAP32[i9 + 4 >> 2];
+ HEAP32[i14 + 8 >> 2] = HEAP32[i9 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i11 + (i1 << 2) >> 2] = 0;
+ HEAP32[i9 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i11);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i9);
i2 = i3;
}
- i18 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 12 >> 2] & 127](i3) | 0;
- HEAP8[i19 >> 0] = i18;
+ i17 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 12 >> 2] & 127](i3) | 0;
+ HEAP8[i19 >> 0] = i17;
i19 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 16 >> 2] & 127](i3) | 0;
HEAP8[i21 >> 0] = i19;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i15, i3);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i16, i3);
if (!(HEAP8[i20 >> 0] & 1)) {
HEAP8[i20 + 1 >> 0] = 0;
HEAP8[i20 >> 0] = 0;
@@ -32312,17 +31288,17 @@ function __ZNSt3__111__money_putIcE13__gather_infoEbbRKNS_6localeERNS_10money_ba
HEAP32[i20 + 4 >> 2] = 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i20, 0);
- HEAP32[i20 >> 2] = HEAP32[i15 >> 2];
- HEAP32[i20 + 4 >> 2] = HEAP32[i15 + 4 >> 2];
- HEAP32[i20 + 8 >> 2] = HEAP32[i15 + 8 >> 2];
+ HEAP32[i20 >> 2] = HEAP32[i16 >> 2];
+ HEAP32[i20 + 4 >> 2] = HEAP32[i16 + 4 >> 2];
+ HEAP32[i20 + 8 >> 2] = HEAP32[i16 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i15 + (i1 << 2) >> 2] = 0;
+ HEAP32[i16 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i15);
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 127](i17, i3);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i16);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 127](i18, i3);
if (!(HEAP8[i22 >> 0] & 1)) {
HEAP8[i22 + 1 >> 0] = 0;
HEAP8[i22 >> 0] = 0;
@@ -32331,28 +31307,28 @@ function __ZNSt3__111__money_putIcE13__gather_infoEbbRKNS_6localeERNS_10money_ba
HEAP32[i22 + 4 >> 2] = 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i22, 0);
- HEAP32[i22 >> 2] = HEAP32[i17 >> 2];
- HEAP32[i22 + 4 >> 2] = HEAP32[i17 + 4 >> 2];
- HEAP32[i22 + 8 >> 2] = HEAP32[i17 + 8 >> 2];
+ HEAP32[i22 >> 2] = HEAP32[i18 >> 2];
+ HEAP32[i22 + 4 >> 2] = HEAP32[i18 + 4 >> 2];
+ HEAP32[i22 + 8 >> 2] = HEAP32[i18 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i17 + (i1 << 2) >> 2] = 0;
+ HEAP32[i18 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i17);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i18);
i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0;
} else {
- i3 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 40676) | 0;
+ i3 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 42148) | 0;
i1 = HEAP32[i3 >> 2] | 0;
if (i12) {
- FUNCTION_TABLE_vii[HEAP32[i1 + 44 >> 2] & 127](i5, i3);
- i17 = HEAP32[i5 >> 2] | 0;
- HEAP8[i13 >> 0] = i17;
- HEAP8[i13 + 1 >> 0] = i17 >> 8;
- HEAP8[i13 + 2 >> 0] = i17 >> 16;
- HEAP8[i13 + 3 >> 0] = i17 >> 24;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 32 >> 2] & 127](i8, i3);
+ FUNCTION_TABLE_vii[HEAP32[i1 + 44 >> 2] & 127](i6, i3);
+ i18 = HEAP32[i6 >> 2] | 0;
+ HEAP8[i13 >> 0] = i18;
+ HEAP8[i13 + 1 >> 0] = i18 >> 8;
+ HEAP8[i13 + 2 >> 0] = i18 >> 16;
+ HEAP8[i13 + 3 >> 0] = i18 >> 24;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 32 >> 2] & 127](i10, i3);
if (!(HEAP8[i14 >> 0] & 1)) {
HEAP8[i14 + 1 >> 0] = 0;
HEAP8[i14 >> 0] = 0;
@@ -32361,25 +31337,25 @@ function __ZNSt3__111__money_putIcE13__gather_infoEbbRKNS_6localeERNS_10money_ba
HEAP32[i14 + 4 >> 2] = 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i14, 0);
- HEAP32[i14 >> 2] = HEAP32[i8 >> 2];
- HEAP32[i14 + 4 >> 2] = HEAP32[i8 + 4 >> 2];
- HEAP32[i14 + 8 >> 2] = HEAP32[i8 + 8 >> 2];
+ HEAP32[i14 >> 2] = HEAP32[i10 >> 2];
+ HEAP32[i14 + 4 >> 2] = HEAP32[i10 + 4 >> 2];
+ HEAP32[i14 + 8 >> 2] = HEAP32[i10 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i8 + (i1 << 2) >> 2] = 0;
+ HEAP32[i10 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i8);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10);
i2 = i3;
} else {
- FUNCTION_TABLE_vii[HEAP32[i1 + 40 >> 2] & 127](i6, i3);
- i17 = HEAP32[i6 >> 2] | 0;
- HEAP8[i13 >> 0] = i17;
- HEAP8[i13 + 1 >> 0] = i17 >> 8;
- HEAP8[i13 + 2 >> 0] = i17 >> 16;
- HEAP8[i13 + 3 >> 0] = i17 >> 24;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 127](i9, i3);
+ FUNCTION_TABLE_vii[HEAP32[i1 + 40 >> 2] & 127](i7, i3);
+ i18 = HEAP32[i7 >> 2] | 0;
+ HEAP8[i13 >> 0] = i18;
+ HEAP8[i13 + 1 >> 0] = i18 >> 8;
+ HEAP8[i13 + 2 >> 0] = i18 >> 16;
+ HEAP8[i13 + 3 >> 0] = i18 >> 24;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 127](i11, i3);
if (!(HEAP8[i14 >> 0] & 1)) {
HEAP8[i14 + 1 >> 0] = 0;
HEAP8[i14 >> 0] = 0;
@@ -32388,23 +31364,23 @@ function __ZNSt3__111__money_putIcE13__gather_infoEbbRKNS_6localeERNS_10money_ba
HEAP32[i14 + 4 >> 2] = 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i14, 0);
- HEAP32[i14 >> 2] = HEAP32[i9 >> 2];
- HEAP32[i14 + 4 >> 2] = HEAP32[i9 + 4 >> 2];
- HEAP32[i14 + 8 >> 2] = HEAP32[i9 + 8 >> 2];
+ HEAP32[i14 >> 2] = HEAP32[i11 >> 2];
+ HEAP32[i14 + 4 >> 2] = HEAP32[i11 + 4 >> 2];
+ HEAP32[i14 + 8 >> 2] = HEAP32[i11 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i9 + (i1 << 2) >> 2] = 0;
+ HEAP32[i11 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i9);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i11);
i2 = i3;
}
- i17 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 12 >> 2] & 127](i3) | 0;
- HEAP8[i19 >> 0] = i17;
+ i18 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 12 >> 2] & 127](i3) | 0;
+ HEAP8[i19 >> 0] = i18;
i19 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 16 >> 2] & 127](i3) | 0;
HEAP8[i21 >> 0] = i19;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i16, i3);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i15, i3);
if (!(HEAP8[i20 >> 0] & 1)) {
HEAP8[i20 + 1 >> 0] = 0;
HEAP8[i20 >> 0] = 0;
@@ -32413,17 +31389,17 @@ function __ZNSt3__111__money_putIcE13__gather_infoEbbRKNS_6localeERNS_10money_ba
HEAP32[i20 + 4 >> 2] = 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i20, 0);
- HEAP32[i20 >> 2] = HEAP32[i16 >> 2];
- HEAP32[i20 + 4 >> 2] = HEAP32[i16 + 4 >> 2];
- HEAP32[i20 + 8 >> 2] = HEAP32[i16 + 8 >> 2];
+ HEAP32[i20 >> 2] = HEAP32[i15 >> 2];
+ HEAP32[i20 + 4 >> 2] = HEAP32[i15 + 4 >> 2];
+ HEAP32[i20 + 8 >> 2] = HEAP32[i15 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i16 + (i1 << 2) >> 2] = 0;
+ HEAP32[i15 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i16);
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 127](i18, i3);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i15);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 127](i17, i3);
if (!(HEAP8[i22 >> 0] & 1)) {
HEAP8[i22 + 1 >> 0] = 0;
HEAP8[i22 >> 0] = 0;
@@ -32432,16 +31408,16 @@ function __ZNSt3__111__money_putIcE13__gather_infoEbbRKNS_6localeERNS_10money_ba
HEAP32[i22 + 4 >> 2] = 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i22, 0);
- HEAP32[i22 >> 2] = HEAP32[i18 >> 2];
- HEAP32[i22 + 4 >> 2] = HEAP32[i18 + 4 >> 2];
- HEAP32[i22 + 8 >> 2] = HEAP32[i18 + 8 >> 2];
+ HEAP32[i22 >> 2] = HEAP32[i17 >> 2];
+ HEAP32[i22 + 4 >> 2] = HEAP32[i17 + 4 >> 2];
+ HEAP32[i22 + 8 >> 2] = HEAP32[i17 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i18 + (i1 << 2) >> 2] = 0;
+ HEAP32[i17 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i18);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i17);
i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0;
}
HEAP32[i23 >> 2] = i1;
@@ -32511,7 +31487,7 @@ function ___intscan(i13, i3, i6, i1, i2) {
HEAP32[i15 >> 2] = i3 + 1;
i4 = HEAPU8[i3 >> 0] | 0;
} else i4 = ___shgetc(i13) | 0;
- if ((HEAPU8[30016 + i4 >> 0] | 0) > 15) {
+ if ((HEAPU8[29006 + i4 >> 0] | 0) > 15) {
i1 = (HEAP32[i14 >> 2] | 0) == 0;
if (!i1) HEAP32[i15 >> 2] = (HEAP32[i15 >> 2] | 0) + -1;
if (!i6) {
@@ -32535,7 +31511,7 @@ function ___intscan(i13, i3, i6, i1, i2) {
}
} else {
i3 = i5 ? 10 : i3;
- if ((HEAPU8[30016 + i4 >> 0] | 0) >>> 0 < i3 >>> 0) i10 = 32; else {
+ if ((HEAPU8[29006 + i4 >> 0] | 0) >>> 0 < i3 >>> 0) i10 = 32; else {
if (HEAP32[i14 >> 2] | 0) HEAP32[i15 >> 2] = (HEAP32[i15 >> 2] | 0) + -1;
___shlim(i13, 0);
i2 = ___errno_location() | 0;
@@ -32562,37 +31538,39 @@ function ___intscan(i13, i3, i6, i1, i2) {
break;
} else i4 = i5;
}
- i6 = 0;
+ i5 = 0;
} else {
i3 = 0;
- i6 = 0;
+ i5 = 0;
}
- i5 = i4 + -48 | 0;
- if (i5 >>> 0 < 10) {
+ i6 = i4 + -48 | 0;
+ if (i6 >>> 0 < 10) {
while (1) {
- i7 = ___muldi3(i3 | 0, i6 | 0, 10, 0) | 0;
+ i7 = ___muldi3(i3 | 0, i5 | 0, 10, 0) | 0;
i8 = tempRet0;
- i9 = ((i5 | 0) < 0) << 31 >> 31;
+ i9 = ((i6 | 0) < 0) << 31 >> 31;
i11 = ~i9;
- if (i8 >>> 0 > i11 >>> 0 | (i8 | 0) == (i11 | 0) & i7 >>> 0 > ~i5 >>> 0) break;
- i7 = _i64Add(i7 | 0, i8 | 0, i5 | 0, i9 | 0) | 0;
- i6 = tempRet0;
- i3 = HEAP32[i15 >> 2] | 0;
- if (i3 >>> 0 < (HEAP32[i14 >> 2] | 0) >>> 0) {
- HEAP32[i15 >> 2] = i3 + 1;
- i4 = HEAPU8[i3 >> 0] | 0;
+ if (i8 >>> 0 > i11 >>> 0 | (i8 | 0) == (i11 | 0) & i7 >>> 0 > ~i6 >>> 0) {
+ i7 = i3;
+ break;
+ }
+ i3 = _i64Add(i7 | 0, i8 | 0, i6 | 0, i9 | 0) | 0;
+ i5 = tempRet0;
+ i4 = HEAP32[i15 >> 2] | 0;
+ if (i4 >>> 0 < (HEAP32[i14 >> 2] | 0) >>> 0) {
+ HEAP32[i15 >> 2] = i4 + 1;
+ i4 = HEAPU8[i4 >> 0] | 0;
} else i4 = ___shgetc(i13) | 0;
- i5 = i4 + -48 | 0;
- if (i5 >>> 0 < 10 & (i6 >>> 0 < 429496729 | (i6 | 0) == 429496729 & i7 >>> 0 < 2576980378)) i3 = i7; else {
- i3 = i7;
+ i6 = i4 + -48 | 0;
+ if (!(i6 >>> 0 < 10 & (i5 >>> 0 < 429496729 | (i5 | 0) == 429496729 & i3 >>> 0 < 2576980378))) {
+ i7 = i3;
break;
}
}
- if (i5 >>> 0 > 9) {
- i4 = i3;
+ if (i6 >>> 0 > 9) {
+ i4 = i7;
i3 = i12;
} else {
- i5 = i3;
i3 = 10;
i10 = 72;
}
@@ -32603,8 +31581,8 @@ function ___intscan(i13, i3, i6, i1, i2) {
} else i10 = 46;
L63 : do if ((i10 | 0) == 46) {
if (!(i3 + -1 & i3)) {
- i10 = HEAP8[30272 + ((i3 * 23 | 0) >>> 5 & 7) >> 0] | 0;
- i5 = HEAP8[30016 + i4 >> 0] | 0;
+ i10 = HEAP8[29262 + ((i3 * 23 | 0) >>> 5 & 7) >> 0] | 0;
+ i5 = HEAP8[29006 + i4 >> 0] | 0;
i6 = i5 & 255;
if (i6 >>> 0 < i3 >>> 0) {
i4 = 0;
@@ -32615,7 +31593,7 @@ function ___intscan(i13, i3, i6, i1, i2) {
HEAP32[i15 >> 2] = i4 + 1;
i4 = HEAPU8[i4 >> 0] | 0;
} else i4 = ___shgetc(i13) | 0;
- i5 = HEAP8[30016 + i4 >> 0] | 0;
+ i5 = HEAP8[29006 + i4 >> 0] | 0;
i6 = i5 & 255;
if (!(i7 >>> 0 < 134217728 & i6 >>> 0 < i3 >>> 0)) break; else i4 = i7;
}
@@ -32627,12 +31605,12 @@ function ___intscan(i13, i3, i6, i1, i2) {
i8 = _bitshift64Lshr(-1, -1, i10 | 0) | 0;
i9 = tempRet0;
if ((i5 & 255) >>> 0 >= i3 >>> 0 | (i6 >>> 0 > i9 >>> 0 | (i6 | 0) == (i9 | 0) & i7 >>> 0 > i8 >>> 0)) {
- i5 = i7;
+ i5 = i6;
i10 = 72;
break;
- }
+ } else i4 = i6;
while (1) {
- i7 = _bitshift64Shl(i7 | 0, i6 | 0, i10 | 0) | 0;
+ i7 = _bitshift64Shl(i7 | 0, i4 | 0, i10 | 0) | 0;
i6 = tempRet0;
i7 = i5 & 255 | i7;
i4 = HEAP32[i15 >> 2] | 0;
@@ -32640,92 +31618,90 @@ function ___intscan(i13, i3, i6, i1, i2) {
HEAP32[i15 >> 2] = i4 + 1;
i4 = HEAPU8[i4 >> 0] | 0;
} else i4 = ___shgetc(i13) | 0;
- i5 = HEAP8[30016 + i4 >> 0] | 0;
+ i5 = HEAP8[29006 + i4 >> 0] | 0;
if ((i5 & 255) >>> 0 >= i3 >>> 0 | (i6 >>> 0 > i9 >>> 0 | (i6 | 0) == (i9 | 0) & i7 >>> 0 > i8 >>> 0)) {
- i5 = i7;
+ i5 = i6;
i10 = 72;
break L63;
- }
+ } else i4 = i6;
}
}
- i6 = HEAP8[30016 + i4 >> 0] | 0;
- i5 = i6 & 255;
- if (i5 >>> 0 < i3 >>> 0) {
+ i5 = HEAP8[29006 + i4 >> 0] | 0;
+ i6 = i5 & 255;
+ if (i6 >>> 0 < i3 >>> 0) {
i4 = 0;
while (1) {
- i7 = i5 + (Math_imul(i4, i3) | 0) | 0;
+ i7 = i6 + (Math_imul(i4, i3) | 0) | 0;
i4 = HEAP32[i15 >> 2] | 0;
if (i4 >>> 0 < (HEAP32[i14 >> 2] | 0) >>> 0) {
HEAP32[i15 >> 2] = i4 + 1;
i4 = HEAPU8[i4 >> 0] | 0;
} else i4 = ___shgetc(i13) | 0;
- i6 = HEAP8[30016 + i4 >> 0] | 0;
- i5 = i6 & 255;
- if (!(i7 >>> 0 < 119304647 & i5 >>> 0 < i3 >>> 0)) {
- i5 = i7;
- break;
- } else i4 = i7;
+ i5 = HEAP8[29006 + i4 >> 0] | 0;
+ i6 = i5 & 255;
+ if (!(i7 >>> 0 < 119304647 & i6 >>> 0 < i3 >>> 0)) break; else i4 = i7;
}
- i7 = 0;
+ i6 = 0;
} else {
- i5 = 0;
i7 = 0;
+ i6 = 0;
}
- if ((i6 & 255) >>> 0 < i3 >>> 0) {
+ if ((i5 & 255) >>> 0 < i3 >>> 0) {
i10 = ___udivdi3(-1, -1, i3 | 0, 0) | 0;
i11 = tempRet0;
+ i9 = i6;
while (1) {
- if (i7 >>> 0 > i11 >>> 0 | (i7 | 0) == (i11 | 0) & i5 >>> 0 > i10 >>> 0) {
- i6 = i7;
+ if (i9 >>> 0 > i11 >>> 0 | (i9 | 0) == (i11 | 0) & i7 >>> 0 > i10 >>> 0) {
+ i5 = i9;
i10 = 72;
break L63;
}
- i9 = ___muldi3(i5 | 0, i7 | 0, i3 | 0, 0) | 0;
+ i6 = ___muldi3(i7 | 0, i9 | 0, i3 | 0, 0) | 0;
i8 = tempRet0;
- i6 = i6 & 255;
- if (i8 >>> 0 > 4294967295 | (i8 | 0) == -1 & i9 >>> 0 > ~i6 >>> 0) {
- i6 = i7;
+ i5 = i5 & 255;
+ if (i8 >>> 0 > 4294967295 | (i8 | 0) == -1 & i6 >>> 0 > ~i5 >>> 0) {
+ i5 = i9;
i10 = 72;
break L63;
}
- i5 = _i64Add(i6 | 0, 0, i9 | 0, i8 | 0) | 0;
- i7 = tempRet0;
+ i7 = _i64Add(i5 | 0, 0, i6 | 0, i8 | 0) | 0;
+ i6 = tempRet0;
i4 = HEAP32[i15 >> 2] | 0;
if (i4 >>> 0 < (HEAP32[i14 >> 2] | 0) >>> 0) {
HEAP32[i15 >> 2] = i4 + 1;
i4 = HEAPU8[i4 >> 0] | 0;
} else i4 = ___shgetc(i13) | 0;
- i6 = HEAP8[30016 + i4 >> 0] | 0;
- if ((i6 & 255) >>> 0 >= i3 >>> 0) {
- i6 = i7;
+ i5 = HEAP8[29006 + i4 >> 0] | 0;
+ if ((i5 & 255) >>> 0 >= i3 >>> 0) {
+ i5 = i6;
i10 = 72;
break;
- }
+ } else i9 = i6;
}
} else {
- i6 = i7;
+ i5 = i6;
i10 = 72;
}
} while (0);
- if ((i10 | 0) == 72) if ((HEAPU8[30016 + i4 >> 0] | 0) >>> 0 < i3 >>> 0) {
+ if ((i10 | 0) == 72) if ((HEAPU8[29006 + i4 >> 0] | 0) >>> 0 < i3 >>> 0) {
do {
i4 = HEAP32[i15 >> 2] | 0;
if (i4 >>> 0 < (HEAP32[i14 >> 2] | 0) >>> 0) {
HEAP32[i15 >> 2] = i4 + 1;
i4 = HEAPU8[i4 >> 0] | 0;
} else i4 = ___shgetc(i13) | 0;
- } while ((HEAPU8[30016 + i4 >> 0] | 0) >>> 0 < i3 >>> 0);
- i6 = ___errno_location() | 0;
- HEAP32[i6 >> 2] = 34;
- i6 = i2;
+ } while ((HEAPU8[29006 + i4 >> 0] | 0) >>> 0 < i3 >>> 0);
+ i5 = ___errno_location() | 0;
+ HEAP32[i5 >> 2] = 34;
+ i5 = i2;
i4 = i1;
i3 = (i1 & 1 | 0) == 0 & 0 == 0 ? i12 : 0;
} else {
- i4 = i5;
+ i4 = i7;
i3 = i12;
}
if (HEAP32[i14 >> 2] | 0) HEAP32[i15 >> 2] = (HEAP32[i15 >> 2] | 0) + -1;
- if (!(i6 >>> 0 < i2 >>> 0 | (i6 | 0) == (i2 | 0) & i4 >>> 0 < i1 >>> 0)) {
+ if (!(i5 >>> 0 < i2 >>> 0 | (i5 | 0) == (i2 | 0) & i4 >>> 0 < i1 >>> 0)) {
if (!((i1 & 1 | 0) != 0 | 0 != 0 | (i3 | 0) != 0)) {
i15 = ___errno_location() | 0;
HEAP32[i15 >> 2] = 34;
@@ -32733,14 +31709,14 @@ function ___intscan(i13, i3, i6, i1, i2) {
i2 = tempRet0;
break;
}
- if (i6 >>> 0 > i2 >>> 0 | (i6 | 0) == (i2 | 0) & i4 >>> 0 > i1 >>> 0) {
+ if (i5 >>> 0 > i2 >>> 0 | (i5 | 0) == (i2 | 0) & i4 >>> 0 > i1 >>> 0) {
i15 = ___errno_location() | 0;
HEAP32[i15 >> 2] = 34;
break;
}
}
i1 = ((i3 | 0) < 0) << 31 >> 31;
- i1 = _i64Subtract(i4 ^ i3 | 0, i6 ^ i1 | 0, i3 | 0, i1 | 0) | 0;
+ i1 = _i64Subtract(i4 ^ i3 | 0, i5 ^ i1 | 0, i3 | 0, i1 | 0) | 0;
i2 = tempRet0;
} while (0);
tempRet0 = i2;
@@ -32762,68 +31738,68 @@ function __ZNSt3__111__money_putIwE13__gather_infoEbbRKNS_6localeERNS_10money_ba
i23 = STACKTOP;
STACKTOP = STACKTOP + 112 | 0;
i3 = i23 + 108 | 0;
- i9 = i23 + 96 | 0;
- i6 = i23 + 92 | 0;
- i10 = i23 + 80 | 0;
- i14 = i23 + 68 | 0;
- i16 = i23 + 56 | 0;
- i4 = i23 + 52 | 0;
- i7 = i23 + 40 | 0;
- i5 = i23 + 36 | 0;
- i8 = i23 + 24 | 0;
- i15 = i23 + 12 | 0;
- i17 = i23;
+ i7 = i23 + 96 | 0;
+ i4 = i23 + 92 | 0;
+ i8 = i23 + 80 | 0;
+ i15 = i23 + 68 | 0;
+ i17 = i23 + 56 | 0;
+ i5 = i23 + 52 | 0;
+ i9 = i23 + 40 | 0;
+ i6 = i23 + 36 | 0;
+ i10 = i23 + 24 | 0;
+ i14 = i23 + 12 | 0;
+ i16 = i23;
if (i1) {
- i2 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 40700) | 0;
+ i2 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 42172) | 0;
i1 = HEAP32[i2 >> 2] | 0;
if (i11) {
FUNCTION_TABLE_vii[HEAP32[i1 + 44 >> 2] & 127](i3, i2);
- i17 = HEAP32[i3 >> 2] | 0;
- HEAP8[i12 >> 0] = i17;
- HEAP8[i12 + 1 >> 0] = i17 >> 8;
- HEAP8[i12 + 2 >> 0] = i17 >> 16;
- HEAP8[i12 + 3 >> 0] = i17 >> 24;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 32 >> 2] & 127](i9, i2);
+ i16 = HEAP32[i3 >> 2] | 0;
+ HEAP8[i12 >> 0] = i16;
+ HEAP8[i12 + 1 >> 0] = i16 >> 8;
+ HEAP8[i12 + 2 >> 0] = i16 >> 16;
+ HEAP8[i12 + 3 >> 0] = i16 >> 24;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 32 >> 2] & 127](i7, i2);
if (!(HEAP8[i13 >> 0] & 1)) HEAP8[i13 >> 0] = 0; else HEAP32[HEAP32[i13 + 8 >> 2] >> 2] = 0;
HEAP32[i13 + 4 >> 2] = 0;
__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i13, 0);
- HEAP32[i13 >> 2] = HEAP32[i9 >> 2];
- HEAP32[i13 + 4 >> 2] = HEAP32[i9 + 4 >> 2];
- HEAP32[i13 + 8 >> 2] = HEAP32[i9 + 8 >> 2];
+ HEAP32[i13 >> 2] = HEAP32[i7 >> 2];
+ HEAP32[i13 + 4 >> 2] = HEAP32[i7 + 4 >> 2];
+ HEAP32[i13 + 8 >> 2] = HEAP32[i7 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i9 + (i1 << 2) >> 2] = 0;
+ HEAP32[i7 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i9);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i7);
} else {
- FUNCTION_TABLE_vii[HEAP32[i1 + 40 >> 2] & 127](i6, i2);
- i17 = HEAP32[i6 >> 2] | 0;
- HEAP8[i12 >> 0] = i17;
- HEAP8[i12 + 1 >> 0] = i17 >> 8;
- HEAP8[i12 + 2 >> 0] = i17 >> 16;
- HEAP8[i12 + 3 >> 0] = i17 >> 24;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 127](i10, i2);
+ FUNCTION_TABLE_vii[HEAP32[i1 + 40 >> 2] & 127](i4, i2);
+ i16 = HEAP32[i4 >> 2] | 0;
+ HEAP8[i12 >> 0] = i16;
+ HEAP8[i12 + 1 >> 0] = i16 >> 8;
+ HEAP8[i12 + 2 >> 0] = i16 >> 16;
+ HEAP8[i12 + 3 >> 0] = i16 >> 24;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 127](i8, i2);
if (!(HEAP8[i13 >> 0] & 1)) HEAP8[i13 >> 0] = 0; else HEAP32[HEAP32[i13 + 8 >> 2] >> 2] = 0;
HEAP32[i13 + 4 >> 2] = 0;
__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i13, 0);
- HEAP32[i13 >> 2] = HEAP32[i10 >> 2];
- HEAP32[i13 + 4 >> 2] = HEAP32[i10 + 4 >> 2];
- HEAP32[i13 + 8 >> 2] = HEAP32[i10 + 8 >> 2];
+ HEAP32[i13 >> 2] = HEAP32[i8 >> 2];
+ HEAP32[i13 + 4 >> 2] = HEAP32[i8 + 4 >> 2];
+ HEAP32[i13 + 8 >> 2] = HEAP32[i8 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i10 + (i1 << 2) >> 2] = 0;
+ HEAP32[i8 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i10);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i8);
}
- i17 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 127](i2) | 0;
- HEAP32[i18 >> 2] = i17;
+ i16 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 127](i2) | 0;
+ HEAP32[i18 >> 2] = i16;
i18 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] & 127](i2) | 0;
HEAP32[i20 >> 2] = i18;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i14, i2);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i15, i2);
if (!(HEAP8[i19 >> 0] & 1)) {
HEAP8[i19 + 1 >> 0] = 0;
HEAP8[i19 >> 0] = 0;
@@ -32832,82 +31808,82 @@ function __ZNSt3__111__money_putIwE13__gather_infoEbbRKNS_6localeERNS_10money_ba
HEAP32[i19 + 4 >> 2] = 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i19, 0);
- HEAP32[i19 >> 2] = HEAP32[i14 >> 2];
- HEAP32[i19 + 4 >> 2] = HEAP32[i14 + 4 >> 2];
- HEAP32[i19 + 8 >> 2] = HEAP32[i14 + 8 >> 2];
+ HEAP32[i19 >> 2] = HEAP32[i15 >> 2];
+ HEAP32[i19 + 4 >> 2] = HEAP32[i15 + 4 >> 2];
+ HEAP32[i19 + 8 >> 2] = HEAP32[i15 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i14 + (i1 << 2) >> 2] = 0;
+ HEAP32[i15 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i14);
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 127](i16, i2);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i15);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 127](i17, i2);
if (!(HEAP8[i21 >> 0] & 1)) HEAP8[i21 >> 0] = 0; else HEAP32[HEAP32[i21 + 8 >> 2] >> 2] = 0;
HEAP32[i21 + 4 >> 2] = 0;
__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i21, 0);
- HEAP32[i21 >> 2] = HEAP32[i16 >> 2];
- HEAP32[i21 + 4 >> 2] = HEAP32[i16 + 4 >> 2];
- HEAP32[i21 + 8 >> 2] = HEAP32[i16 + 8 >> 2];
+ HEAP32[i21 >> 2] = HEAP32[i17 >> 2];
+ HEAP32[i21 + 4 >> 2] = HEAP32[i17 + 4 >> 2];
+ HEAP32[i21 + 8 >> 2] = HEAP32[i17 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i16 + (i1 << 2) >> 2] = 0;
+ HEAP32[i17 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i16);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i17);
i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0;
} else {
- i2 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 40692) | 0;
+ i2 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 42164) | 0;
i1 = HEAP32[i2 >> 2] | 0;
if (i11) {
- FUNCTION_TABLE_vii[HEAP32[i1 + 44 >> 2] & 127](i4, i2);
- i16 = HEAP32[i4 >> 2] | 0;
- HEAP8[i12 >> 0] = i16;
- HEAP8[i12 + 1 >> 0] = i16 >> 8;
- HEAP8[i12 + 2 >> 0] = i16 >> 16;
- HEAP8[i12 + 3 >> 0] = i16 >> 24;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 32 >> 2] & 127](i7, i2);
+ FUNCTION_TABLE_vii[HEAP32[i1 + 44 >> 2] & 127](i5, i2);
+ i17 = HEAP32[i5 >> 2] | 0;
+ HEAP8[i12 >> 0] = i17;
+ HEAP8[i12 + 1 >> 0] = i17 >> 8;
+ HEAP8[i12 + 2 >> 0] = i17 >> 16;
+ HEAP8[i12 + 3 >> 0] = i17 >> 24;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 32 >> 2] & 127](i9, i2);
if (!(HEAP8[i13 >> 0] & 1)) HEAP8[i13 >> 0] = 0; else HEAP32[HEAP32[i13 + 8 >> 2] >> 2] = 0;
HEAP32[i13 + 4 >> 2] = 0;
__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i13, 0);
- HEAP32[i13 >> 2] = HEAP32[i7 >> 2];
- HEAP32[i13 + 4 >> 2] = HEAP32[i7 + 4 >> 2];
- HEAP32[i13 + 8 >> 2] = HEAP32[i7 + 8 >> 2];
+ HEAP32[i13 >> 2] = HEAP32[i9 >> 2];
+ HEAP32[i13 + 4 >> 2] = HEAP32[i9 + 4 >> 2];
+ HEAP32[i13 + 8 >> 2] = HEAP32[i9 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i7 + (i1 << 2) >> 2] = 0;
+ HEAP32[i9 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i7);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i9);
} else {
- FUNCTION_TABLE_vii[HEAP32[i1 + 40 >> 2] & 127](i5, i2);
- i16 = HEAP32[i5 >> 2] | 0;
- HEAP8[i12 >> 0] = i16;
- HEAP8[i12 + 1 >> 0] = i16 >> 8;
- HEAP8[i12 + 2 >> 0] = i16 >> 16;
- HEAP8[i12 + 3 >> 0] = i16 >> 24;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 127](i8, i2);
+ FUNCTION_TABLE_vii[HEAP32[i1 + 40 >> 2] & 127](i6, i2);
+ i17 = HEAP32[i6 >> 2] | 0;
+ HEAP8[i12 >> 0] = i17;
+ HEAP8[i12 + 1 >> 0] = i17 >> 8;
+ HEAP8[i12 + 2 >> 0] = i17 >> 16;
+ HEAP8[i12 + 3 >> 0] = i17 >> 24;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 127](i10, i2);
if (!(HEAP8[i13 >> 0] & 1)) HEAP8[i13 >> 0] = 0; else HEAP32[HEAP32[i13 + 8 >> 2] >> 2] = 0;
HEAP32[i13 + 4 >> 2] = 0;
__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i13, 0);
- HEAP32[i13 >> 2] = HEAP32[i8 >> 2];
- HEAP32[i13 + 4 >> 2] = HEAP32[i8 + 4 >> 2];
- HEAP32[i13 + 8 >> 2] = HEAP32[i8 + 8 >> 2];
+ HEAP32[i13 >> 2] = HEAP32[i10 >> 2];
+ HEAP32[i13 + 4 >> 2] = HEAP32[i10 + 4 >> 2];
+ HEAP32[i13 + 8 >> 2] = HEAP32[i10 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i8 + (i1 << 2) >> 2] = 0;
+ HEAP32[i10 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i8);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i10);
}
- i16 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 127](i2) | 0;
- HEAP32[i18 >> 2] = i16;
+ i17 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 127](i2) | 0;
+ HEAP32[i18 >> 2] = i17;
i18 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] & 127](i2) | 0;
HEAP32[i20 >> 2] = i18;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i15, i2);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i14, i2);
if (!(HEAP8[i19 >> 0] & 1)) {
HEAP8[i19 + 1 >> 0] = 0;
HEAP8[i19 >> 0] = 0;
@@ -32916,30 +31892,30 @@ function __ZNSt3__111__money_putIwE13__gather_infoEbbRKNS_6localeERNS_10money_ba
HEAP32[i19 + 4 >> 2] = 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i19, 0);
- HEAP32[i19 >> 2] = HEAP32[i15 >> 2];
- HEAP32[i19 + 4 >> 2] = HEAP32[i15 + 4 >> 2];
- HEAP32[i19 + 8 >> 2] = HEAP32[i15 + 8 >> 2];
+ HEAP32[i19 >> 2] = HEAP32[i14 >> 2];
+ HEAP32[i19 + 4 >> 2] = HEAP32[i14 + 4 >> 2];
+ HEAP32[i19 + 8 >> 2] = HEAP32[i14 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i15 + (i1 << 2) >> 2] = 0;
+ HEAP32[i14 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i15);
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 127](i17, i2);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i14);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 127](i16, i2);
if (!(HEAP8[i21 >> 0] & 1)) HEAP8[i21 >> 0] = 0; else HEAP32[HEAP32[i21 + 8 >> 2] >> 2] = 0;
HEAP32[i21 + 4 >> 2] = 0;
__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i21, 0);
- HEAP32[i21 >> 2] = HEAP32[i17 >> 2];
- HEAP32[i21 + 4 >> 2] = HEAP32[i17 + 4 >> 2];
- HEAP32[i21 + 8 >> 2] = HEAP32[i17 + 8 >> 2];
+ HEAP32[i21 >> 2] = HEAP32[i16 >> 2];
+ HEAP32[i21 + 4 >> 2] = HEAP32[i16 + 4 >> 2];
+ HEAP32[i21 + 8 >> 2] = HEAP32[i16 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i17 + (i1 << 2) >> 2] = 0;
+ HEAP32[i16 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i17);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i16);
i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0;
}
HEAP32[i22 >> 2] = i1;
@@ -32952,7 +31928,7 @@ function __ZN6cashew4InitC2Ev(i1) {
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0;
i16 = STACKTOP;
STACKTOP = STACKTOP + 368 | 0;
- i2 = i16 + 336 | 0;
+ i1 = i16 + 336 | 0;
i3 = i16 + 308 | 0;
i4 = i16 + 280 | 0;
i5 = i16 + 252 | 0;
@@ -32966,134 +31942,134 @@ function __ZN6cashew4InitC2Ev(i1) {
i13 = i16 + 28 | 0;
i14 = i16;
i15 = i16 + 364 | 0;
- __ZN6cashew10IStringSetC2EPKc(i2, 35397);
- HEAP8[i2 + 20 >> 0] = 0;
- HEAP32[i2 + 24 >> 2] = 0;
- i1 = HEAP32[9317] | 0;
- if (i1 >>> 0 < (HEAP32[9318] | 0) >>> 0) {
- __ZN6cashew13OperatorClassC2EOS0_(i1, i2);
- HEAP32[9317] = (HEAP32[9317] | 0) + 28;
- } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(37264, i2);
- __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev(i2);
- __ZN6cashew10IStringSetC2EPKc(i3, 27087);
+ __ZN6cashew10IStringSetC2EPKc(i1, 36861);
+ HEAP8[i1 + 20 >> 0] = 0;
+ HEAP32[i1 + 24 >> 2] = 0;
+ i2 = HEAP32[9685] | 0;
+ if (i2 >>> 0 < (HEAP32[9686] | 0) >>> 0) {
+ __ZN6cashew13OperatorClassC2EOS0_(i2, i1);
+ HEAP32[9685] = (HEAP32[9685] | 0) + 28;
+ } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(38736, i1);
+ __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev(i1);
+ __ZN6cashew10IStringSetC2EPKc(i3, 28439);
HEAP8[i3 + 20 >> 0] = 1;
HEAP32[i3 + 24 >> 2] = 1;
- i1 = HEAP32[9317] | 0;
- if (i1 >>> 0 < (HEAP32[9318] | 0) >>> 0) {
+ i1 = HEAP32[9685] | 0;
+ if (i1 >>> 0 < (HEAP32[9686] | 0) >>> 0) {
__ZN6cashew13OperatorClassC2EOS0_(i1, i3);
- HEAP32[9317] = (HEAP32[9317] | 0) + 28;
- } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(37264, i3);
+ HEAP32[9685] = (HEAP32[9685] | 0) + 28;
+ } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(38736, i3);
__ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev(i3);
- __ZN6cashew10IStringSetC2EPKc(i4, 27095);
+ __ZN6cashew10IStringSetC2EPKc(i4, 28447);
HEAP8[i4 + 20 >> 0] = 0;
HEAP32[i4 + 24 >> 2] = 0;
- i1 = HEAP32[9317] | 0;
- if (i1 >>> 0 < (HEAP32[9318] | 0) >>> 0) {
+ i1 = HEAP32[9685] | 0;
+ if (i1 >>> 0 < (HEAP32[9686] | 0) >>> 0) {
__ZN6cashew13OperatorClassC2EOS0_(i1, i4);
- HEAP32[9317] = (HEAP32[9317] | 0) + 28;
- } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(37264, i4);
+ HEAP32[9685] = (HEAP32[9685] | 0) + 28;
+ } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(38736, i4);
__ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev(i4);
- __ZN6cashew10IStringSetC2EPKc(i5, 27101);
+ __ZN6cashew10IStringSetC2EPKc(i5, 28453);
HEAP8[i5 + 20 >> 0] = 0;
HEAP32[i5 + 24 >> 2] = 0;
- i1 = HEAP32[9317] | 0;
- if (i1 >>> 0 < (HEAP32[9318] | 0) >>> 0) {
+ i1 = HEAP32[9685] | 0;
+ if (i1 >>> 0 < (HEAP32[9686] | 0) >>> 0) {
__ZN6cashew13OperatorClassC2EOS0_(i1, i5);
- HEAP32[9317] = (HEAP32[9317] | 0) + 28;
- } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(37264, i5);
+ HEAP32[9685] = (HEAP32[9685] | 0) + 28;
+ } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(38736, i5);
__ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev(i5);
- __ZN6cashew10IStringSetC2EPKc(i6, 27105);
+ __ZN6cashew10IStringSetC2EPKc(i6, 28457);
HEAP8[i6 + 20 >> 0] = 0;
HEAP32[i6 + 24 >> 2] = 0;
- i1 = HEAP32[9317] | 0;
- if (i1 >>> 0 < (HEAP32[9318] | 0) >>> 0) {
+ i1 = HEAP32[9685] | 0;
+ if (i1 >>> 0 < (HEAP32[9686] | 0) >>> 0) {
__ZN6cashew13OperatorClassC2EOS0_(i1, i6);
- HEAP32[9317] = (HEAP32[9317] | 0) + 28;
- } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(37264, i6);
+ HEAP32[9685] = (HEAP32[9685] | 0) + 28;
+ } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(38736, i6);
__ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev(i6);
- __ZN6cashew10IStringSetC2EPKc(i7, 27115);
+ __ZN6cashew10IStringSetC2EPKc(i7, 28467);
HEAP8[i7 + 20 >> 0] = 0;
HEAP32[i7 + 24 >> 2] = 0;
- i1 = HEAP32[9317] | 0;
- if (i1 >>> 0 < (HEAP32[9318] | 0) >>> 0) {
+ i1 = HEAP32[9685] | 0;
+ if (i1 >>> 0 < (HEAP32[9686] | 0) >>> 0) {
__ZN6cashew13OperatorClassC2EOS0_(i1, i7);
- HEAP32[9317] = (HEAP32[9317] | 0) + 28;
- } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(37264, i7);
+ HEAP32[9685] = (HEAP32[9685] | 0) + 28;
+ } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(38736, i7);
__ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev(i7);
- __ZN6cashew10IStringSetC2EPKc(i8, 27125);
+ __ZN6cashew10IStringSetC2EPKc(i8, 28477);
HEAP8[i8 + 20 >> 0] = 0;
HEAP32[i8 + 24 >> 2] = 0;
- i1 = HEAP32[9317] | 0;
- if (i1 >>> 0 < (HEAP32[9318] | 0) >>> 0) {
+ i1 = HEAP32[9685] | 0;
+ if (i1 >>> 0 < (HEAP32[9686] | 0) >>> 0) {
__ZN6cashew13OperatorClassC2EOS0_(i1, i8);
- HEAP32[9317] = (HEAP32[9317] | 0) + 28;
- } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(37264, i8);
+ HEAP32[9685] = (HEAP32[9685] | 0) + 28;
+ } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(38736, i8);
__ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev(i8);
- __ZN6cashew10IStringSetC2EPKc(i9, 34411);
+ __ZN6cashew10IStringSetC2EPKc(i9, 35875);
HEAP8[i9 + 20 >> 0] = 0;
HEAP32[i9 + 24 >> 2] = 0;
- i1 = HEAP32[9317] | 0;
- if (i1 >>> 0 < (HEAP32[9318] | 0) >>> 0) {
+ i1 = HEAP32[9685] | 0;
+ if (i1 >>> 0 < (HEAP32[9686] | 0) >>> 0) {
__ZN6cashew13OperatorClassC2EOS0_(i1, i9);
- HEAP32[9317] = (HEAP32[9317] | 0) + 28;
- } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(37264, i9);
+ HEAP32[9685] = (HEAP32[9685] | 0) + 28;
+ } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(38736, i9);
__ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev(i9);
- __ZN6cashew10IStringSetC2EPKc(i10, 35404);
+ __ZN6cashew10IStringSetC2EPKc(i10, 36868);
HEAP8[i10 + 20 >> 0] = 0;
HEAP32[i10 + 24 >> 2] = 0;
- i1 = HEAP32[9317] | 0;
- if (i1 >>> 0 < (HEAP32[9318] | 0) >>> 0) {
+ i1 = HEAP32[9685] | 0;
+ if (i1 >>> 0 < (HEAP32[9686] | 0) >>> 0) {
__ZN6cashew13OperatorClassC2EOS0_(i1, i10);
- HEAP32[9317] = (HEAP32[9317] | 0) + 28;
- } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(37264, i10);
+ HEAP32[9685] = (HEAP32[9685] | 0) + 28;
+ } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(38736, i10);
__ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev(i10);
- __ZN6cashew10IStringSetC2EPKc(i11, 35468);
+ __ZN6cashew10IStringSetC2EPKc(i11, 36932);
HEAP8[i11 + 20 >> 0] = 0;
HEAP32[i11 + 24 >> 2] = 0;
- i1 = HEAP32[9317] | 0;
- if (i1 >>> 0 < (HEAP32[9318] | 0) >>> 0) {
+ i1 = HEAP32[9685] | 0;
+ if (i1 >>> 0 < (HEAP32[9686] | 0) >>> 0) {
__ZN6cashew13OperatorClassC2EOS0_(i1, i11);
- HEAP32[9317] = (HEAP32[9317] | 0) + 28;
- } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(37264, i11);
+ HEAP32[9685] = (HEAP32[9685] | 0) + 28;
+ } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(38736, i11);
__ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev(i11);
- __ZN6cashew10IStringSetC2EPKc(i12, 27131);
+ __ZN6cashew10IStringSetC2EPKc(i12, 28483);
HEAP8[i12 + 20 >> 0] = 1;
HEAP32[i12 + 24 >> 2] = 3;
- i1 = HEAP32[9317] | 0;
- if (i1 >>> 0 < (HEAP32[9318] | 0) >>> 0) {
+ i1 = HEAP32[9685] | 0;
+ if (i1 >>> 0 < (HEAP32[9686] | 0) >>> 0) {
__ZN6cashew13OperatorClassC2EOS0_(i1, i12);
- HEAP32[9317] = (HEAP32[9317] | 0) + 28;
- } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(37264, i12);
+ HEAP32[9685] = (HEAP32[9685] | 0) + 28;
+ } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(38736, i12);
__ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev(i12);
- __ZN6cashew10IStringSetC2EPKc(i13, 34416);
+ __ZN6cashew10IStringSetC2EPKc(i13, 35880);
HEAP8[i13 + 20 >> 0] = 1;
HEAP32[i13 + 24 >> 2] = 0;
- i1 = HEAP32[9317] | 0;
- if (i1 >>> 0 < (HEAP32[9318] | 0) >>> 0) {
+ i1 = HEAP32[9685] | 0;
+ if (i1 >>> 0 < (HEAP32[9686] | 0) >>> 0) {
__ZN6cashew13OperatorClassC2EOS0_(i1, i13);
- HEAP32[9317] = (HEAP32[9317] | 0) + 28;
- } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(37264, i13);
+ HEAP32[9685] = (HEAP32[9685] | 0) + 28;
+ } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(38736, i13);
__ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev(i13);
- __ZN6cashew10IStringSetC2EPKc(i14, 34443);
+ __ZN6cashew10IStringSetC2EPKc(i14, 35907);
HEAP8[i14 + 20 >> 0] = 1;
HEAP32[i14 + 24 >> 2] = 0;
- i1 = HEAP32[9317] | 0;
- if (i1 >>> 0 < (HEAP32[9318] | 0) >>> 0) {
+ i1 = HEAP32[9685] | 0;
+ if (i1 >>> 0 < (HEAP32[9686] | 0) >>> 0) {
__ZN6cashew13OperatorClassC2EOS0_(i1, i14);
- HEAP32[9317] = (HEAP32[9317] | 0) + 28;
- } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(37264, i14);
+ HEAP32[9685] = (HEAP32[9685] | 0) + 28;
+ } else __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(38736, i14);
__ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev(i14);
- __ZNSt3__16vectorINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEE6resizeEj(37276, 4);
+ __ZNSt3__16vectorINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEE6resizeEj(38748, 4);
i2 = 0;
while (1) {
- i1 = HEAP32[9316] | 0;
- if (i2 >>> 0 >= (((HEAP32[9317] | 0) - i1 | 0) / 28 | 0) >>> 0) break;
+ i1 = HEAP32[9684] | 0;
+ if (i2 >>> 0 >= (((HEAP32[9685] | 0) - i1 | 0) / 28 | 0) >>> 0) break;
i1 = i1 + (i2 * 28 | 0) + 8 | 0;
while (1) {
i1 = HEAP32[i1 >> 2] | 0;
if (!i1) break;
HEAP32[i15 >> 2] = HEAP32[i1 + 8 >> 2];
- i14 = __ZNSt3__113unordered_mapIN6cashew7IStringEiNS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorINS_4pairIKS2_iEEEEEixERS9_((HEAP32[9319] | 0) + ((HEAP32[(HEAP32[9316] | 0) + (i2 * 28 | 0) + 24 >> 2] | 0) * 20 | 0) | 0, i15) | 0;
+ i14 = __ZNSt3__113unordered_mapIN6cashew7IStringEiNS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorINS_4pairIKS2_iEEEEEixERS9_((HEAP32[9687] | 0) + ((HEAP32[(HEAP32[9684] | 0) + (i2 * 28 | 0) + 24 >> 2] | 0) * 20 | 0) | 0, i15) | 0;
HEAP32[i14 >> 2] = i2;
}
i2 = i2 + 1 | 0;
@@ -33102,81 +32078,81 @@ function __ZN6cashew4InitC2Ev(i1) {
return;
}
-function __ZNSt3__111__money_getIcE13__gather_infoEbRKNS_6localeERNS_10money_base7patternERcS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESF_SF_SF_Ri(i1, i2, i6, i16, i18, i17, i19, i11, i5, i20) {
+function __ZNSt3__111__money_getIcE13__gather_infoEbRKNS_6localeERNS_10money_base7patternERcS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESF_SF_SF_Ri(i1, i2, i8, i16, i18, i17, i19, i13, i7, i20) {
i1 = i1 | 0;
i2 = i2 | 0;
- i6 = i6 | 0;
+ i8 = i8 | 0;
i16 = i16 | 0;
i18 = i18 | 0;
i17 = i17 | 0;
i19 = i19 | 0;
- i11 = i11 | 0;
- i5 = i5 | 0;
+ i13 = i13 | 0;
+ i7 = i7 | 0;
i20 = i20 | 0;
- var i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i21 = 0;
+ var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i14 = 0, i15 = 0, i21 = 0;
i21 = STACKTOP;
STACKTOP = STACKTOP + 112 | 0;
i3 = i21 + 100 | 0;
- i7 = i21 + 88 | 0;
- i10 = i21 + 76 | 0;
- i13 = i21 + 64 | 0;
- i15 = i21 + 52 | 0;
+ i5 = i21 + 88 | 0;
+ i9 = i21 + 76 | 0;
+ i11 = i21 + 64 | 0;
+ i14 = i21 + 52 | 0;
i4 = i21 + 48 | 0;
- i8 = i21 + 36 | 0;
- i9 = i21 + 24 | 0;
+ i6 = i21 + 36 | 0;
+ i10 = i21 + 24 | 0;
i12 = i21 + 12 | 0;
- i14 = i21;
+ i15 = i21;
if (i1) {
- i2 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 40684) | 0;
+ i2 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 42156) | 0;
FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 44 >> 2] & 127](i3, i2);
- i14 = HEAP32[i3 >> 2] | 0;
- HEAP8[i6 >> 0] = i14;
- HEAP8[i6 + 1 >> 0] = i14 >> 8;
- HEAP8[i6 + 2 >> 0] = i14 >> 16;
- HEAP8[i6 + 3 >> 0] = i14 >> 24;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 32 >> 2] & 127](i7, i2);
- if (!(HEAP8[i5 >> 0] & 1)) {
- HEAP8[i5 + 1 >> 0] = 0;
- HEAP8[i5 >> 0] = 0;
+ i15 = HEAP32[i3 >> 2] | 0;
+ HEAP8[i8 >> 0] = i15;
+ HEAP8[i8 + 1 >> 0] = i15 >> 8;
+ HEAP8[i8 + 2 >> 0] = i15 >> 16;
+ HEAP8[i8 + 3 >> 0] = i15 >> 24;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 32 >> 2] & 127](i5, i2);
+ if (!(HEAP8[i7 >> 0] & 1)) {
+ HEAP8[i7 + 1 >> 0] = 0;
+ HEAP8[i7 >> 0] = 0;
} else {
- HEAP8[HEAP32[i5 + 8 >> 2] >> 0] = 0;
- HEAP32[i5 + 4 >> 2] = 0;
+ HEAP8[HEAP32[i7 + 8 >> 2] >> 0] = 0;
+ HEAP32[i7 + 4 >> 2] = 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i5, 0);
- HEAP32[i5 >> 2] = HEAP32[i7 >> 2];
- HEAP32[i5 + 4 >> 2] = HEAP32[i7 + 4 >> 2];
- HEAP32[i5 + 8 >> 2] = HEAP32[i7 + 8 >> 2];
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i7, 0);
+ HEAP32[i7 >> 2] = HEAP32[i5 >> 2];
+ HEAP32[i7 + 4 >> 2] = HEAP32[i5 + 4 >> 2];
+ HEAP32[i7 + 8 >> 2] = HEAP32[i5 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i7 + (i1 << 2) >> 2] = 0;
+ HEAP32[i5 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i7);
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 127](i10, i2);
- if (!(HEAP8[i11 >> 0] & 1)) {
- HEAP8[i11 + 1 >> 0] = 0;
- HEAP8[i11 >> 0] = 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 127](i9, i2);
+ if (!(HEAP8[i13 >> 0] & 1)) {
+ HEAP8[i13 + 1 >> 0] = 0;
+ HEAP8[i13 >> 0] = 0;
} else {
- HEAP8[HEAP32[i11 + 8 >> 2] >> 0] = 0;
- HEAP32[i11 + 4 >> 2] = 0;
+ HEAP8[HEAP32[i13 + 8 >> 2] >> 0] = 0;
+ HEAP32[i13 + 4 >> 2] = 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i11, 0);
- HEAP32[i11 >> 2] = HEAP32[i10 >> 2];
- HEAP32[i11 + 4 >> 2] = HEAP32[i10 + 4 >> 2];
- HEAP32[i11 + 8 >> 2] = HEAP32[i10 + 8 >> 2];
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i13, 0);
+ HEAP32[i13 >> 2] = HEAP32[i9 >> 2];
+ HEAP32[i13 + 4 >> 2] = HEAP32[i9 + 4 >> 2];
+ HEAP32[i13 + 8 >> 2] = HEAP32[i9 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i10 + (i1 << 2) >> 2] = 0;
+ HEAP32[i9 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10);
- i14 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 127](i2) | 0;
- HEAP8[i16 >> 0] = i14;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i9);
+ i15 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 127](i2) | 0;
+ HEAP8[i16 >> 0] = i15;
i16 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] & 127](i2) | 0;
HEAP8[i18 >> 0] = i16;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i13, i2);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i11, i2);
if (!(HEAP8[i17 >> 0] & 1)) {
HEAP8[i17 + 1 >> 0] = 0;
HEAP8[i17 >> 0] = 0;
@@ -33185,17 +32161,17 @@ function __ZNSt3__111__money_getIcE13__gather_infoEbRKNS_6localeERNS_10money_bas
HEAP32[i17 + 4 >> 2] = 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i17, 0);
- HEAP32[i17 >> 2] = HEAP32[i13 >> 2];
- HEAP32[i17 + 4 >> 2] = HEAP32[i13 + 4 >> 2];
- HEAP32[i17 + 8 >> 2] = HEAP32[i13 + 8 >> 2];
+ HEAP32[i17 >> 2] = HEAP32[i11 >> 2];
+ HEAP32[i17 + 4 >> 2] = HEAP32[i11 + 4 >> 2];
+ HEAP32[i17 + 8 >> 2] = HEAP32[i11 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i13 + (i1 << 2) >> 2] = 0;
+ HEAP32[i11 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i13);
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 127](i15, i2);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i11);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 127](i14, i2);
if (!(HEAP8[i19 >> 0] & 1)) {
HEAP8[i19 + 1 >> 0] = 0;
HEAP8[i19 >> 0] = 0;
@@ -33204,65 +32180,65 @@ function __ZNSt3__111__money_getIcE13__gather_infoEbRKNS_6localeERNS_10money_bas
HEAP32[i19 + 4 >> 2] = 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i19, 0);
- HEAP32[i19 >> 2] = HEAP32[i15 >> 2];
- HEAP32[i19 + 4 >> 2] = HEAP32[i15 + 4 >> 2];
- HEAP32[i19 + 8 >> 2] = HEAP32[i15 + 8 >> 2];
+ HEAP32[i19 >> 2] = HEAP32[i14 >> 2];
+ HEAP32[i19 + 4 >> 2] = HEAP32[i14 + 4 >> 2];
+ HEAP32[i19 + 8 >> 2] = HEAP32[i14 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i15 + (i1 << 2) >> 2] = 0;
+ HEAP32[i14 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i15);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i14);
i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0;
} else {
- i2 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 40676) | 0;
+ i2 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 42148) | 0;
FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 44 >> 2] & 127](i4, i2);
- i15 = HEAP32[i4 >> 2] | 0;
- HEAP8[i6 >> 0] = i15;
- HEAP8[i6 + 1 >> 0] = i15 >> 8;
- HEAP8[i6 + 2 >> 0] = i15 >> 16;
- HEAP8[i6 + 3 >> 0] = i15 >> 24;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 32 >> 2] & 127](i8, i2);
- if (!(HEAP8[i5 >> 0] & 1)) {
- HEAP8[i5 + 1 >> 0] = 0;
- HEAP8[i5 >> 0] = 0;
+ i14 = HEAP32[i4 >> 2] | 0;
+ HEAP8[i8 >> 0] = i14;
+ HEAP8[i8 + 1 >> 0] = i14 >> 8;
+ HEAP8[i8 + 2 >> 0] = i14 >> 16;
+ HEAP8[i8 + 3 >> 0] = i14 >> 24;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 32 >> 2] & 127](i6, i2);
+ if (!(HEAP8[i7 >> 0] & 1)) {
+ HEAP8[i7 + 1 >> 0] = 0;
+ HEAP8[i7 >> 0] = 0;
} else {
- HEAP8[HEAP32[i5 + 8 >> 2] >> 0] = 0;
- HEAP32[i5 + 4 >> 2] = 0;
+ HEAP8[HEAP32[i7 + 8 >> 2] >> 0] = 0;
+ HEAP32[i7 + 4 >> 2] = 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i5, 0);
- HEAP32[i5 >> 2] = HEAP32[i8 >> 2];
- HEAP32[i5 + 4 >> 2] = HEAP32[i8 + 4 >> 2];
- HEAP32[i5 + 8 >> 2] = HEAP32[i8 + 8 >> 2];
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i7, 0);
+ HEAP32[i7 >> 2] = HEAP32[i6 >> 2];
+ HEAP32[i7 + 4 >> 2] = HEAP32[i6 + 4 >> 2];
+ HEAP32[i7 + 8 >> 2] = HEAP32[i6 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i8 + (i1 << 2) >> 2] = 0;
+ HEAP32[i6 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i8);
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 127](i9, i2);
- if (!(HEAP8[i11 >> 0] & 1)) {
- HEAP8[i11 + 1 >> 0] = 0;
- HEAP8[i11 >> 0] = 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i6);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 127](i10, i2);
+ if (!(HEAP8[i13 >> 0] & 1)) {
+ HEAP8[i13 + 1 >> 0] = 0;
+ HEAP8[i13 >> 0] = 0;
} else {
- HEAP8[HEAP32[i11 + 8 >> 2] >> 0] = 0;
- HEAP32[i11 + 4 >> 2] = 0;
+ HEAP8[HEAP32[i13 + 8 >> 2] >> 0] = 0;
+ HEAP32[i13 + 4 >> 2] = 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i11, 0);
- HEAP32[i11 >> 2] = HEAP32[i9 >> 2];
- HEAP32[i11 + 4 >> 2] = HEAP32[i9 + 4 >> 2];
- HEAP32[i11 + 8 >> 2] = HEAP32[i9 + 8 >> 2];
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i13, 0);
+ HEAP32[i13 >> 2] = HEAP32[i10 >> 2];
+ HEAP32[i13 + 4 >> 2] = HEAP32[i10 + 4 >> 2];
+ HEAP32[i13 + 8 >> 2] = HEAP32[i10 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i9 + (i1 << 2) >> 2] = 0;
+ HEAP32[i10 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i9);
- i15 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 127](i2) | 0;
- HEAP8[i16 >> 0] = i15;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10);
+ i14 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 127](i2) | 0;
+ HEAP8[i16 >> 0] = i14;
i16 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] & 127](i2) | 0;
HEAP8[i18 >> 0] = i16;
FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i12, i2);
@@ -33284,7 +32260,7 @@ function __ZNSt3__111__money_getIcE13__gather_infoEbRKNS_6localeERNS_10money_bas
i1 = i1 + 1 | 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i12);
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 127](i14, i2);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 127](i15, i2);
if (!(HEAP8[i19 >> 0] & 1)) {
HEAP8[i19 + 1 >> 0] = 0;
HEAP8[i19 >> 0] = 0;
@@ -33293,16 +32269,16 @@ function __ZNSt3__111__money_getIcE13__gather_infoEbRKNS_6localeERNS_10money_bas
HEAP32[i19 + 4 >> 2] = 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i19, 0);
- HEAP32[i19 >> 2] = HEAP32[i14 >> 2];
- HEAP32[i19 + 4 >> 2] = HEAP32[i14 + 4 >> 2];
- HEAP32[i19 + 8 >> 2] = HEAP32[i14 + 8 >> 2];
+ HEAP32[i19 >> 2] = HEAP32[i15 >> 2];
+ HEAP32[i19 + 4 >> 2] = HEAP32[i15 + 4 >> 2];
+ HEAP32[i19 + 8 >> 2] = HEAP32[i15 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i14 + (i1 << 2) >> 2] = 0;
+ HEAP32[i15 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i14);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i15);
i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0;
}
HEAP32[i20 >> 2] = i1;
@@ -33310,71 +32286,71 @@ function __ZNSt3__111__money_getIcE13__gather_infoEbRKNS_6localeERNS_10money_bas
return;
}
-function __ZNSt3__111__money_getIwE13__gather_infoEbRKNS_6localeERNS_10money_base7patternERwS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS9_IwNSA_IwEENSC_IwEEEESJ_SJ_Ri(i1, i2, i6, i16, i18, i17, i19, i11, i5, i20) {
+function __ZNSt3__111__money_getIwE13__gather_infoEbRKNS_6localeERNS_10money_base7patternERwS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS9_IwNSA_IwEENSC_IwEEEESJ_SJ_Ri(i1, i2, i8, i16, i18, i17, i19, i13, i7, i20) {
i1 = i1 | 0;
i2 = i2 | 0;
- i6 = i6 | 0;
+ i8 = i8 | 0;
i16 = i16 | 0;
i18 = i18 | 0;
i17 = i17 | 0;
i19 = i19 | 0;
- i11 = i11 | 0;
- i5 = i5 | 0;
+ i13 = i13 | 0;
+ i7 = i7 | 0;
i20 = i20 | 0;
- var i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i21 = 0;
+ var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i14 = 0, i15 = 0, i21 = 0;
i21 = STACKTOP;
STACKTOP = STACKTOP + 112 | 0;
i3 = i21 + 100 | 0;
- i7 = i21 + 88 | 0;
- i10 = i21 + 76 | 0;
- i13 = i21 + 64 | 0;
- i15 = i21 + 52 | 0;
+ i5 = i21 + 88 | 0;
+ i9 = i21 + 76 | 0;
+ i11 = i21 + 64 | 0;
+ i14 = i21 + 52 | 0;
i4 = i21 + 48 | 0;
- i8 = i21 + 36 | 0;
- i9 = i21 + 24 | 0;
+ i6 = i21 + 36 | 0;
+ i10 = i21 + 24 | 0;
i12 = i21 + 12 | 0;
- i14 = i21;
+ i15 = i21;
if (i1) {
- i2 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 40700) | 0;
+ i2 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 42172) | 0;
FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 44 >> 2] & 127](i3, i2);
- i14 = HEAP32[i3 >> 2] | 0;
- HEAP8[i6 >> 0] = i14;
- HEAP8[i6 + 1 >> 0] = i14 >> 8;
- HEAP8[i6 + 2 >> 0] = i14 >> 16;
- HEAP8[i6 + 3 >> 0] = i14 >> 24;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 32 >> 2] & 127](i7, i2);
- if (!(HEAP8[i5 >> 0] & 1)) HEAP8[i5 >> 0] = 0; else HEAP32[HEAP32[i5 + 8 >> 2] >> 2] = 0;
- HEAP32[i5 + 4 >> 2] = 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i5, 0);
- HEAP32[i5 >> 2] = HEAP32[i7 >> 2];
- HEAP32[i5 + 4 >> 2] = HEAP32[i7 + 4 >> 2];
- HEAP32[i5 + 8 >> 2] = HEAP32[i7 + 8 >> 2];
+ i15 = HEAP32[i3 >> 2] | 0;
+ HEAP8[i8 >> 0] = i15;
+ HEAP8[i8 + 1 >> 0] = i15 >> 8;
+ HEAP8[i8 + 2 >> 0] = i15 >> 16;
+ HEAP8[i8 + 3 >> 0] = i15 >> 24;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 32 >> 2] & 127](i5, i2);
+ if (!(HEAP8[i7 >> 0] & 1)) HEAP8[i7 >> 0] = 0; else HEAP32[HEAP32[i7 + 8 >> 2] >> 2] = 0;
+ HEAP32[i7 + 4 >> 2] = 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i7, 0);
+ HEAP32[i7 >> 2] = HEAP32[i5 >> 2];
+ HEAP32[i7 + 4 >> 2] = HEAP32[i5 + 4 >> 2];
+ HEAP32[i7 + 8 >> 2] = HEAP32[i5 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i7 + (i1 << 2) >> 2] = 0;
+ HEAP32[i5 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i7);
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 127](i10, i2);
- if (!(HEAP8[i11 >> 0] & 1)) HEAP8[i11 >> 0] = 0; else HEAP32[HEAP32[i11 + 8 >> 2] >> 2] = 0;
- HEAP32[i11 + 4 >> 2] = 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i11, 0);
- HEAP32[i11 >> 2] = HEAP32[i10 >> 2];
- HEAP32[i11 + 4 >> 2] = HEAP32[i10 + 4 >> 2];
- HEAP32[i11 + 8 >> 2] = HEAP32[i10 + 8 >> 2];
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i5);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 127](i9, i2);
+ if (!(HEAP8[i13 >> 0] & 1)) HEAP8[i13 >> 0] = 0; else HEAP32[HEAP32[i13 + 8 >> 2] >> 2] = 0;
+ HEAP32[i13 + 4 >> 2] = 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i13, 0);
+ HEAP32[i13 >> 2] = HEAP32[i9 >> 2];
+ HEAP32[i13 + 4 >> 2] = HEAP32[i9 + 4 >> 2];
+ HEAP32[i13 + 8 >> 2] = HEAP32[i9 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i10 + (i1 << 2) >> 2] = 0;
+ HEAP32[i9 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i10);
- i14 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 127](i2) | 0;
- HEAP32[i16 >> 2] = i14;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i9);
+ i15 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 127](i2) | 0;
+ HEAP32[i16 >> 2] = i15;
i16 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] & 127](i2) | 0;
HEAP32[i18 >> 2] = i16;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i13, i2);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i11, i2);
if (!(HEAP8[i17 >> 0] & 1)) {
HEAP8[i17 + 1 >> 0] = 0;
HEAP8[i17 >> 0] = 0;
@@ -33383,69 +32359,69 @@ function __ZNSt3__111__money_getIwE13__gather_infoEbRKNS_6localeERNS_10money_bas
HEAP32[i17 + 4 >> 2] = 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i17, 0);
- HEAP32[i17 >> 2] = HEAP32[i13 >> 2];
- HEAP32[i17 + 4 >> 2] = HEAP32[i13 + 4 >> 2];
- HEAP32[i17 + 8 >> 2] = HEAP32[i13 + 8 >> 2];
+ HEAP32[i17 >> 2] = HEAP32[i11 >> 2];
+ HEAP32[i17 + 4 >> 2] = HEAP32[i11 + 4 >> 2];
+ HEAP32[i17 + 8 >> 2] = HEAP32[i11 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i13 + (i1 << 2) >> 2] = 0;
+ HEAP32[i11 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i13);
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 127](i15, i2);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i11);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 127](i14, i2);
if (!(HEAP8[i19 >> 0] & 1)) HEAP8[i19 >> 0] = 0; else HEAP32[HEAP32[i19 + 8 >> 2] >> 2] = 0;
HEAP32[i19 + 4 >> 2] = 0;
__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i19, 0);
- HEAP32[i19 >> 2] = HEAP32[i15 >> 2];
- HEAP32[i19 + 4 >> 2] = HEAP32[i15 + 4 >> 2];
- HEAP32[i19 + 8 >> 2] = HEAP32[i15 + 8 >> 2];
+ HEAP32[i19 >> 2] = HEAP32[i14 >> 2];
+ HEAP32[i19 + 4 >> 2] = HEAP32[i14 + 4 >> 2];
+ HEAP32[i19 + 8 >> 2] = HEAP32[i14 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i15 + (i1 << 2) >> 2] = 0;
+ HEAP32[i14 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i15);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i14);
i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0;
} else {
- i2 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 40692) | 0;
+ i2 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 42164) | 0;
FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 44 >> 2] & 127](i4, i2);
- i15 = HEAP32[i4 >> 2] | 0;
- HEAP8[i6 >> 0] = i15;
- HEAP8[i6 + 1 >> 0] = i15 >> 8;
- HEAP8[i6 + 2 >> 0] = i15 >> 16;
- HEAP8[i6 + 3 >> 0] = i15 >> 24;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 32 >> 2] & 127](i8, i2);
- if (!(HEAP8[i5 >> 0] & 1)) HEAP8[i5 >> 0] = 0; else HEAP32[HEAP32[i5 + 8 >> 2] >> 2] = 0;
- HEAP32[i5 + 4 >> 2] = 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i5, 0);
- HEAP32[i5 >> 2] = HEAP32[i8 >> 2];
- HEAP32[i5 + 4 >> 2] = HEAP32[i8 + 4 >> 2];
- HEAP32[i5 + 8 >> 2] = HEAP32[i8 + 8 >> 2];
+ i14 = HEAP32[i4 >> 2] | 0;
+ HEAP8[i8 >> 0] = i14;
+ HEAP8[i8 + 1 >> 0] = i14 >> 8;
+ HEAP8[i8 + 2 >> 0] = i14 >> 16;
+ HEAP8[i8 + 3 >> 0] = i14 >> 24;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 32 >> 2] & 127](i6, i2);
+ if (!(HEAP8[i7 >> 0] & 1)) HEAP8[i7 >> 0] = 0; else HEAP32[HEAP32[i7 + 8 >> 2] >> 2] = 0;
+ HEAP32[i7 + 4 >> 2] = 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i7, 0);
+ HEAP32[i7 >> 2] = HEAP32[i6 >> 2];
+ HEAP32[i7 + 4 >> 2] = HEAP32[i6 + 4 >> 2];
+ HEAP32[i7 + 8 >> 2] = HEAP32[i6 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i8 + (i1 << 2) >> 2] = 0;
+ HEAP32[i6 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i8);
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 127](i9, i2);
- if (!(HEAP8[i11 >> 0] & 1)) HEAP8[i11 >> 0] = 0; else HEAP32[HEAP32[i11 + 8 >> 2] >> 2] = 0;
- HEAP32[i11 + 4 >> 2] = 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i11, 0);
- HEAP32[i11 >> 2] = HEAP32[i9 >> 2];
- HEAP32[i11 + 4 >> 2] = HEAP32[i9 + 4 >> 2];
- HEAP32[i11 + 8 >> 2] = HEAP32[i9 + 8 >> 2];
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i6);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 127](i10, i2);
+ if (!(HEAP8[i13 >> 0] & 1)) HEAP8[i13 >> 0] = 0; else HEAP32[HEAP32[i13 + 8 >> 2] >> 2] = 0;
+ HEAP32[i13 + 4 >> 2] = 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i13, 0);
+ HEAP32[i13 >> 2] = HEAP32[i10 >> 2];
+ HEAP32[i13 + 4 >> 2] = HEAP32[i10 + 4 >> 2];
+ HEAP32[i13 + 8 >> 2] = HEAP32[i10 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i9 + (i1 << 2) >> 2] = 0;
+ HEAP32[i10 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i9);
- i15 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 127](i2) | 0;
- HEAP32[i16 >> 2] = i15;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i10);
+ i14 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 127](i2) | 0;
+ HEAP32[i16 >> 2] = i14;
i16 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] & 127](i2) | 0;
HEAP32[i18 >> 2] = i16;
FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i12, i2);
@@ -33467,20 +32443,20 @@ function __ZNSt3__111__money_getIwE13__gather_infoEbRKNS_6localeERNS_10money_bas
i1 = i1 + 1 | 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i12);
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 127](i14, i2);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 127](i15, i2);
if (!(HEAP8[i19 >> 0] & 1)) HEAP8[i19 >> 0] = 0; else HEAP32[HEAP32[i19 + 8 >> 2] >> 2] = 0;
HEAP32[i19 + 4 >> 2] = 0;
__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i19, 0);
- HEAP32[i19 >> 2] = HEAP32[i14 >> 2];
- HEAP32[i19 + 4 >> 2] = HEAP32[i14 + 4 >> 2];
- HEAP32[i19 + 8 >> 2] = HEAP32[i14 + 8 >> 2];
+ HEAP32[i19 >> 2] = HEAP32[i15 >> 2];
+ HEAP32[i19 + 4 >> 2] = HEAP32[i15 + 4 >> 2];
+ HEAP32[i19 + 8 >> 2] = HEAP32[i15 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i14 + (i1 << 2) >> 2] = 0;
+ HEAP32[i15 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i14);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i15);
i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0;
}
HEAP32[i20 >> 2] = i1;
@@ -33488,20 +32464,20 @@ function __ZNSt3__111__money_getIwE13__gather_infoEbRKNS_6localeERNS_10money_bas
return;
}
-function __ZN6cashew5Value9stringifyERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEb(i1, i8, i6) {
+function __ZN6cashew5Value9stringifyERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEb(i1, i8, i7) {
i1 = i1 | 0;
i8 = i8 | 0;
- i6 = i6 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i9 = 0;
+ i7 = i7 | 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i7 = i9;
+ i6 = i9;
L1 : do switch (HEAP32[i1 >> 2] | 0) {
case 0:
{
i1 = i1 + 8 | 0;
if (!(HEAP32[i1 >> 2] | 0)) {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 14794) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 15313) | 0;
break L1;
} else {
i8 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i8, 34) | 0;
@@ -33520,62 +32496,62 @@ function __ZN6cashew5Value9stringifyERNSt3__113basic_ostreamIcNS1_11char_traitsI
i1 = i1 + 8 | 0;
i5 = HEAP32[i1 >> 2] | 0;
if ((HEAP32[i5 + 4 >> 2] | 0) == (HEAP32[i5 >> 2] | 0)) {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 14803) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 15322) | 0;
break L1;
}
__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i8, 91) | 0;
- if (i6) {
+ if (i7) {
i5 = __ZNKSt3__18ios_base6getlocEv(i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
- HEAP32[i7 >> 2] = i5;
- i5 = __ZNKSt3__16locale9use_facetERNS0_2idE(i7, 38964) | 0;
+ HEAP32[i6 >> 2] = i5;
+ i5 = __ZNKSt3__16locale9use_facetERNS0_2idE(i6, 40436) | 0;
i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i5 >> 2] | 0) + 28 >> 2] & 31](i5, 10) | 0;
- __ZNSt3__16localeD2Ev(i7);
+ __ZNSt3__16localeD2Ev(i6);
__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE3putEc(i8, i5) | 0;
__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i8) | 0;
- HEAP32[9226] = (HEAP32[9226] | 0) + 1;
+ HEAP32[9594] = (HEAP32[9594] | 0) + 1;
}
i2 = 0;
while (1) {
i5 = HEAP32[i1 >> 2] | 0;
if (i2 >>> 0 >= (HEAP32[i5 + 4 >> 2] | 0) - (HEAP32[i5 >> 2] | 0) >> 2 >>> 0) break;
- do if (i2) if (i6) {
- i3 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 34443) | 0;
+ do if (i2) if (i7) {
+ i3 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 35907) | 0;
i5 = __ZNKSt3__18ios_base6getlocEv(i3 + (HEAP32[(HEAP32[i3 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
- HEAP32[i7 >> 2] = i5;
- i5 = __ZNKSt3__16locale9use_facetERNS0_2idE(i7, 38964) | 0;
+ HEAP32[i6 >> 2] = i5;
+ i5 = __ZNKSt3__16locale9use_facetERNS0_2idE(i6, 40436) | 0;
i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i5 >> 2] | 0) + 28 >> 2] & 31](i5, 10) | 0;
- __ZNSt3__16localeD2Ev(i7);
+ __ZNSt3__16localeD2Ev(i6);
__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE3putEc(i3, i5) | 0;
__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i3) | 0;
i3 = 0;
break;
} else {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 34990) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 36454) | 0;
i3 = 0;
break;
} else i3 = 0; while (0);
while (1) {
- if ((i3 | 0) >= (HEAP32[9226] | 0)) break;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 14806) | 0;
+ if ((i3 | 0) >= (HEAP32[9594] | 0)) break;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 15325) | 0;
i3 = i3 + 1 | 0;
}
- __ZN6cashew5Value9stringifyERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEb(HEAP32[(HEAP32[HEAP32[i1 >> 2] >> 2] | 0) + (i2 << 2) >> 2] | 0, i8, i6);
+ __ZN6cashew5Value9stringifyERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEb(HEAP32[(HEAP32[HEAP32[i1 >> 2] >> 2] | 0) + (i2 << 2) >> 2] | 0, i8, i7);
i2 = i2 + 1 | 0;
}
- if (i6) {
+ if (i7) {
i1 = __ZNKSt3__18ios_base6getlocEv(i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
- HEAP32[i7 >> 2] = i1;
- i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i7, 38964) | 0;
+ HEAP32[i6 >> 2] = i1;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i6, 40436) | 0;
i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 10) | 0;
- __ZNSt3__16localeD2Ev(i7);
+ __ZNSt3__16localeD2Ev(i6);
__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE3putEc(i8, i1) | 0;
__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i8) | 0;
- HEAP32[9226] = (HEAP32[9226] | 0) + -1;
+ HEAP32[9594] = (HEAP32[9594] | 0) + -1;
i1 = 0;
} else i1 = 0;
while (1) {
- if ((i1 | 0) >= (HEAP32[9226] | 0)) break;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 14806) | 0;
+ if ((i1 | 0) >= (HEAP32[9594] | 0)) break;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 15325) | 0;
i1 = i1 + 1 | 0;
}
__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i8, 93) | 0;
@@ -33583,26 +32559,26 @@ function __ZN6cashew5Value9stringifyERNSt3__113basic_ostreamIcNS1_11char_traitsI
}
case 3:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 14809) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 15328) | 0;
break;
}
case 4:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, HEAP8[i1 + 8 >> 0] | 0 ? 34366 : 34360) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, HEAP8[i1 + 8 >> 0] | 0 ? 35830 : 35824) | 0;
break;
}
case 5:
{
__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i8, 123) | 0;
- if (i6) {
+ if (i7) {
i5 = __ZNKSt3__18ios_base6getlocEv(i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
- HEAP32[i7 >> 2] = i5;
- i5 = __ZNKSt3__16locale9use_facetERNS0_2idE(i7, 38964) | 0;
+ HEAP32[i6 >> 2] = i5;
+ i5 = __ZNKSt3__16locale9use_facetERNS0_2idE(i6, 40436) | 0;
i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i5 >> 2] | 0) + 28 >> 2] & 31](i5, 10) | 0;
- __ZNSt3__16localeD2Ev(i7);
+ __ZNSt3__16localeD2Ev(i6);
__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE3putEc(i8, i5) | 0;
__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i8) | 0;
- HEAP32[9226] = (HEAP32[9226] | 0) + 1;
+ HEAP32[9594] = (HEAP32[9594] | 0) + 1;
i5 = i8;
} else i5 = i8;
i1 = (HEAP32[i1 + 8 >> 2] | 0) + 8 | 0;
@@ -33613,39 +32589,39 @@ function __ZN6cashew5Value9stringifyERNSt3__113basic_ostreamIcNS1_11char_traitsI
i4 = i1;
i3 = HEAP32[i4 + 8 >> 2] | 0;
i4 = HEAP32[i4 + 12 >> 2] | 0;
- if (!i2 ? (__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 34990) | 0, i6) : 0) {
+ if (!i2 ? (__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 36454) | 0, i7) : 0) {
i2 = __ZNKSt3__18ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
- HEAP32[i7 >> 2] = i2;
- i2 = __ZNKSt3__16locale9use_facetERNS0_2idE(i7, 38964) | 0;
+ HEAP32[i6 >> 2] = i2;
+ i2 = __ZNKSt3__16locale9use_facetERNS0_2idE(i6, 40436) | 0;
i2 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 31](i2, 10) | 0;
- __ZNSt3__16localeD2Ev(i7);
+ __ZNSt3__16localeD2Ev(i6);
__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE3putEc(i8, i2) | 0;
__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i8) | 0;
i2 = 0;
} else i2 = 0;
while (1) {
- if ((i2 | 0) >= (HEAP32[9226] | 0)) break;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 14806) | 0;
+ if ((i2 | 0) >= (HEAP32[9594] | 0)) break;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 15325) | 0;
i2 = i2 + 1 | 0;
}
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i8, 34) | 0, i3) | 0, 14814) | 0;
- __ZN6cashew5Value9stringifyERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEb(i4, i8, i6);
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i8, 34) | 0, i3) | 0, 15333) | 0;
+ __ZN6cashew5Value9stringifyERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEb(i4, i8, i7);
i2 = 0;
}
- if (i6) {
+ if (i7) {
i1 = __ZNKSt3__18ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
- HEAP32[i7 >> 2] = i1;
- i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i7, 38964) | 0;
+ HEAP32[i6 >> 2] = i1;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i6, 40436) | 0;
i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 10) | 0;
- __ZNSt3__16localeD2Ev(i7);
+ __ZNSt3__16localeD2Ev(i6);
__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE3putEc(i8, i1) | 0;
__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i8) | 0;
- HEAP32[9226] = (HEAP32[9226] | 0) + -1;
+ HEAP32[9594] = (HEAP32[9594] | 0) + -1;
i1 = 0;
} else i1 = 0;
while (1) {
- if ((i1 | 0) >= (HEAP32[9226] | 0)) break;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 14806) | 0;
+ if ((i1 | 0) >= (HEAP32[9594] | 0)) break;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 15325) | 0;
i1 = i1 + 1 | 0;
}
__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i8, 125) | 0;
@@ -33658,32 +32634,33 @@ function __ZN6cashew5Value9stringifyERNSt3__113basic_ostreamIcNS1_11char_traitsI
return;
}
-function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i17, i18, i19, i10, i20, i11, i1, i9) {
+function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i17, i18, i19, i15, i20, i16, i1, i14) {
i17 = i17 | 0;
i18 = i18 | 0;
i19 = i19 | 0;
- i10 = i10 | 0;
+ i15 = i15 | 0;
i20 = i20 | 0;
- i11 = i11 | 0;
+ i16 = i16 | 0;
i1 = i1 | 0;
- i9 = i9 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i21 = 0, i22 = 0;
+ i14 = i14 | 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i21 = 0, i22 = 0;
i22 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i15 = i22 + 16 | 0;
- i13 = i22 + 12 | 0;
- i16 = i22 + 8 | 0;
- i12 = i22 + 4 | 0;
- i14 = i22;
- i3 = __ZNKSt3__18ios_base6getlocEv(i10) | 0;
- HEAP32[i16 >> 2] = i3;
- i16 = __ZNKSt3__16locale9use_facetERNS0_2idE(i16, 38996) | 0;
- __ZNSt3__114__shared_count16__release_sharedEv(i3) | 0;
+ i10 = i22 + 16 | 0;
+ i9 = i22 + 12 | 0;
+ i13 = i22 + 8 | 0;
+ i11 = i22 + 4 | 0;
+ i12 = i22;
+ i2 = __ZNKSt3__18ios_base6getlocEv(i15) | 0;
+ HEAP32[i13 >> 2] = i2;
+ i13 = __ZNKSt3__16locale9use_facetERNS0_2idE(i13, 40468) | 0;
+ __ZNSt3__114__shared_count16__release_sharedEv(i2) | 0;
HEAP32[i20 >> 2] = 0;
- i3 = 0;
i2 = i1;
+ i1 = 0;
L1 : while (1) {
- i8 = (i2 | 0) != (i9 | 0);
+ i8 = (i2 | 0) != (i14 | 0);
+ i3 = i1;
while (1) {
i1 = HEAP32[i18 >> 2] | 0;
if (!(i8 & (i3 | 0) == 0)) break L1;
@@ -33726,22 +32703,22 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
break L1;
} else i5 = 0;
}
- if ((FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i16 >> 2] | 0) + 52 >> 2] & 31](i16, HEAP32[i2 >> 2] | 0, 0) | 0) << 24 >> 24 == 37) {
+ if ((FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i13 >> 2] | 0) + 52 >> 2] & 31](i13, HEAP32[i2 >> 2] | 0, 0) | 0) << 24 >> 24 == 37) {
i7 = i3;
i21 = 20;
break;
}
- if (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i16 >> 2] | 0) + 12 >> 2] & 31](i16, 8192, HEAP32[i2 >> 2] | 0) | 0) {
+ if (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i13 >> 2] | 0) + 12 >> 2] & 31](i13, 8192, HEAP32[i2 >> 2] | 0) | 0) {
i4 = i5;
i21 = 28;
break;
}
- i4 = i1 + 12 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- i5 = i1 + 16 | 0;
- if ((i3 | 0) == (HEAP32[i5 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i3 = HEAP32[i3 >> 2] | 0;
- i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i16 >> 2] | 0) + 28 >> 2] & 31](i16, i3) | 0;
- if ((i7 | 0) == (FUNCTION_TABLE_iii[HEAP32[(HEAP32[i16 >> 2] | 0) + 28 >> 2] & 31](i16, HEAP32[i2 >> 2] | 0) | 0)) {
+ i5 = i1 + 12 | 0;
+ i4 = HEAP32[i5 >> 2] | 0;
+ i3 = i1 + 16 | 0;
+ if ((i4 | 0) == (HEAP32[i3 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i4 = HEAP32[i4 >> 2] | 0;
+ i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i13 >> 2] | 0) + 28 >> 2] & 31](i13, i4) | 0;
+ if ((i7 | 0) == (FUNCTION_TABLE_iii[HEAP32[(HEAP32[i13 >> 2] | 0) + 28 >> 2] & 31](i13, HEAP32[i2 >> 2] | 0) | 0)) {
i21 = 57;
break;
}
@@ -33751,22 +32728,22 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
L33 : do if ((i21 | 0) == 20) {
i21 = 0;
i3 = i2 + 4 | 0;
- if ((i3 | 0) == (i9 | 0)) {
+ if ((i3 | 0) == (i14 | 0)) {
i21 = 21;
break L1;
}
- i6 = FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i16 >> 2] | 0) + 52 >> 2] & 31](i16, HEAP32[i3 >> 2] | 0, 0) | 0;
+ i6 = FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i13 >> 2] | 0) + 52 >> 2] & 31](i13, HEAP32[i3 >> 2] | 0, 0) | 0;
switch (i6 << 24 >> 24) {
case 48:
case 69:
{
i5 = i2 + 8 | 0;
- if ((i5 | 0) == (i9 | 0)) {
+ if ((i5 | 0) == (i14 | 0)) {
i21 = 26;
break L1;
}
i2 = i3;
- i3 = FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i16 >> 2] | 0) + 52 >> 2] & 31](i16, HEAP32[i5 >> 2] | 0, 0) | 0;
+ i3 = FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i13 >> 2] | 0) + 52 >> 2] & 31](i13, HEAP32[i5 >> 2] | 0, 0) | 0;
i1 = i6;
break;
}
@@ -33777,43 +32754,43 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
}
}
i8 = HEAP32[(HEAP32[i17 >> 2] | 0) + 36 >> 2] | 0;
- HEAP32[i12 >> 2] = i4;
- HEAP32[i14 >> 2] = i7;
- HEAP32[i13 >> 2] = HEAP32[i12 >> 2];
- HEAP32[i15 >> 2] = HEAP32[i14 >> 2];
- i1 = FUNCTION_TABLE_iiiiiiiii[i8 & 15](i17, i13, i15, i10, i20, i11, i3, i1) | 0;
+ HEAP32[i11 >> 2] = i4;
+ HEAP32[i12 >> 2] = i7;
+ HEAP32[i9 >> 2] = HEAP32[i11 >> 2];
+ HEAP32[i10 >> 2] = HEAP32[i12 >> 2];
+ i1 = FUNCTION_TABLE_iiiiiiiii[i8 & 15](i17, i9, i10, i15, i20, i16, i3, i1) | 0;
HEAP32[i18 >> 2] = i1;
i1 = i2 + 8 | 0;
} else if ((i21 | 0) == 28) {
i21 = 0;
do {
i2 = i2 + 4 | 0;
- if ((i2 | 0) == (i9 | 0)) {
- i2 = i9;
+ if ((i2 | 0) == (i14 | 0)) {
+ i2 = i14;
break;
}
- } while (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i16 >> 2] | 0) + 12 >> 2] & 31](i16, 8192, HEAP32[i2 >> 2] | 0) | 0);
+ } while (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i13 >> 2] | 0) + 12 >> 2] & 31](i13, 8192, HEAP32[i2 >> 2] | 0) | 0);
i3 = i4;
- i5 = i4;
+ i6 = i4;
while (1) {
if (i1) {
i4 = HEAP32[i1 + 12 >> 2] | 0;
if ((i4 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i4 = HEAP32[i4 >> 2] | 0;
if ((i4 | 0) == -1) {
HEAP32[i18 >> 2] = 0;
- i6 = 1;
i1 = 0;
- } else i6 = 0;
+ i5 = 1;
+ } else i5 = 0;
} else {
- i6 = 1;
i1 = 0;
+ i5 = 1;
}
- do if (i5) {
- i4 = HEAP32[i5 + 12 >> 2] | 0;
- if ((i4 | 0) == (HEAP32[i5 + 16 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 36 >> 2] & 127](i5) | 0; else i4 = HEAP32[i4 >> 2] | 0;
- if ((i4 | 0) != -1) if (i6 ^ (i3 | 0) == 0) {
+ do if (i6) {
+ i4 = HEAP32[i6 + 12 >> 2] | 0;
+ if ((i4 | 0) == (HEAP32[i6 + 16 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i4 = HEAP32[i4 >> 2] | 0;
+ if ((i4 | 0) != -1) if (i5 ^ (i3 | 0) == 0) {
i7 = i3;
- i5 = i3;
+ i6 = i3;
break;
} else {
i1 = i2;
@@ -33827,41 +32804,41 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
} else i21 = 44; while (0);
if ((i21 | 0) == 44) {
i21 = 0;
- if (i6) {
+ if (i5) {
i1 = i2;
break L33;
} else {
i7 = i3;
- i5 = 0;
+ i6 = 0;
}
}
- i6 = i1 + 12 | 0;
- i3 = HEAP32[i6 >> 2] | 0;
+ i5 = i1 + 12 | 0;
+ i3 = HEAP32[i5 >> 2] | 0;
i4 = i1 + 16 | 0;
if ((i3 | 0) == (HEAP32[i4 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i3 = HEAP32[i3 >> 2] | 0;
- if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i16 >> 2] | 0) + 12 >> 2] & 31](i16, 8192, i3) | 0)) {
+ if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i13 >> 2] | 0) + 12 >> 2] & 31](i13, 8192, i3) | 0)) {
i1 = i2;
break L33;
}
- i3 = HEAP32[i6 >> 2] | 0;
+ i3 = HEAP32[i5 >> 2] | 0;
if ((i3 | 0) == (HEAP32[i4 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
i3 = i7;
continue;
} else {
- HEAP32[i6 >> 2] = i3 + 4;
+ HEAP32[i5 >> 2] = i3 + 4;
i3 = i7;
continue;
}
}
} else if ((i21 | 0) == 57) {
i21 = 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i5 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else HEAP32[i4 >> 2] = i3 + 4;
+ i4 = HEAP32[i5 >> 2] | 0;
+ if ((i4 | 0) == (HEAP32[i3 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else HEAP32[i5 >> 2] = i4 + 4;
i1 = i2 + 4 | 0;
} while (0);
- i3 = HEAP32[i20 >> 2] | 0;
i2 = i1;
+ i1 = HEAP32[i20 >> 2] | 0;
}
if ((i21 | 0) == 18) HEAP32[i20 >> 2] = 4; else if ((i21 | 0) == 21) HEAP32[i20 >> 2] = 4; else if ((i21 | 0) == 26) HEAP32[i20 >> 2] = 4;
if (i1) {
@@ -33869,12 +32846,12 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAP32[i2 >> 2] | 0;
if ((i2 | 0) == -1) {
HEAP32[i18 >> 2] = 0;
- i4 = 1;
i1 = 0;
+ i4 = 1;
} else i4 = 0;
} else {
- i4 = 1;
i1 = 0;
+ i4 = 1;
}
i2 = HEAP32[i19 >> 2] | 0;
do if (i2) {
@@ -33895,147 +32872,138 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
return i1 | 0;
}
-function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i18, i19, i20, i10, i21, i12, i1, i9) {
+function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i18, i19, i20, i16, i21, i17, i1, i15) {
i18 = i18 | 0;
i19 = i19 | 0;
i20 = i20 | 0;
- i10 = i10 | 0;
+ i16 = i16 | 0;
i21 = i21 | 0;
- i12 = i12 | 0;
+ i17 = i17 | 0;
i1 = i1 | 0;
- i9 = i9 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i11 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i22 = 0, i23 = 0;
+ i15 = i15 | 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i22 = 0, i23 = 0;
i23 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i16 = i23 + 16 | 0;
- i14 = i23 + 12 | 0;
- i17 = i23 + 8 | 0;
- i13 = i23 + 4 | 0;
- i15 = i23;
- i11 = __ZNKSt3__18ios_base6getlocEv(i10) | 0;
- HEAP32[i17 >> 2] = i11;
- i17 = __ZNKSt3__16locale9use_facetERNS0_2idE(i17, 38964) | 0;
- __ZNSt3__114__shared_count16__release_sharedEv(i11) | 0;
+ i9 = i23 + 16 | 0;
+ i8 = i23 + 12 | 0;
+ i12 = i23 + 8 | 0;
+ i10 = i23 + 4 | 0;
+ i11 = i23;
+ i13 = __ZNKSt3__18ios_base6getlocEv(i16) | 0;
+ HEAP32[i12 >> 2] = i13;
+ i12 = __ZNKSt3__16locale9use_facetERNS0_2idE(i12, 40436) | 0;
+ __ZNSt3__114__shared_count16__release_sharedEv(i13) | 0;
HEAP32[i21 >> 2] = 0;
- i11 = i17 + 8 | 0;
- i2 = 0;
- i7 = i1;
+ i13 = i12 + 8 | 0;
+ i2 = i1;
+ i1 = 0;
L1 : while (1) {
- i6 = (i7 | 0) != (i9 | 0);
+ i7 = (i2 | 0) != (i15 | 0);
+ i3 = i1;
while (1) {
i1 = HEAP32[i19 >> 2] | 0;
- if (!(i6 & (i2 | 0) == 0)) break L1;
- i2 = i1;
+ if (!(i7 & (i3 | 0) == 0)) break L1;
+ i3 = i1;
if (i1) {
if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) {
HEAP32[i19 >> 2] = 0;
+ i3 = 0;
i1 = 0;
- i2 = 0;
}
} else i1 = 0;
- i5 = (i1 | 0) == 0;
- i4 = HEAP32[i20 >> 2] | 0;
- i3 = i4;
- do if (i4) {
- if ((HEAP32[i4 + 12 >> 2] | 0) == (HEAP32[i4 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0) == -1 : 0) {
+ i6 = (i1 | 0) == 0;
+ i5 = HEAP32[i20 >> 2] | 0;
+ i4 = i5;
+ do if (i5) {
+ if ((HEAP32[i5 + 12 >> 2] | 0) == (HEAP32[i5 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 36 >> 2] & 127](i5) | 0) == -1 : 0) {
HEAP32[i20 >> 2] = 0;
- i3 = 0;
+ i4 = 0;
i22 = 13;
break;
}
- if (!i5) {
+ if (!i6) {
i22 = 14;
break L1;
}
} else i22 = 13; while (0);
if ((i22 | 0) == 13) {
i22 = 0;
- if (i5) {
+ if (i6) {
i22 = 14;
break L1;
- } else i4 = 0;
+ } else i5 = 0;
}
- if ((FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i17 >> 2] | 0) + 36 >> 2] & 31](i17, HEAP8[i7 >> 0] | 0, 0) | 0) << 24 >> 24 == 37) {
- i6 = i3;
+ if ((FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i12 >> 2] | 0) + 36 >> 2] & 31](i12, HEAP8[i2 >> 0] | 0, 0) | 0) << 24 >> 24 == 37) {
+ i7 = i4;
i22 = 16;
break;
}
- i2 = HEAP8[i7 >> 0] | 0;
- if (i2 << 24 >> 24 > -1 ? (i8 = HEAP32[i11 >> 2] | 0, HEAP16[i8 + (i2 << 24 >> 24 << 1) >> 1] & 8192) : 0) {
- i5 = i4;
- i4 = i8;
+ i3 = HEAP8[i2 >> 0] | 0;
+ if (i3 << 24 >> 24 > -1 ? (i14 = HEAP32[i13 >> 2] | 0, HEAP16[i14 + (i3 << 24 >> 24 << 1) >> 1] & 8192) : 0) {
+ i4 = i14;
i22 = 25;
break;
}
- i3 = i1 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- i4 = i1 + 16 | 0;
- if ((i2 | 0) == (HEAP32[i4 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAPU8[i2 >> 0] | 0;
- i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i17 >> 2] | 0) + 12 >> 2] & 31](i17, i2 & 255) | 0;
- if (i5 << 24 >> 24 == (FUNCTION_TABLE_iii[HEAP32[(HEAP32[i17 >> 2] | 0) + 12 >> 2] & 31](i17, HEAP8[i7 >> 0] | 0) | 0) << 24 >> 24) {
+ i5 = i1 + 12 | 0;
+ i4 = HEAP32[i5 >> 2] | 0;
+ i3 = i1 + 16 | 0;
+ if ((i4 | 0) == (HEAP32[i3 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i4 = HEAPU8[i4 >> 0] | 0;
+ i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i12 >> 2] | 0) + 12 >> 2] & 31](i12, i4 & 255) | 0;
+ if (i6 << 24 >> 24 == (FUNCTION_TABLE_iii[HEAP32[(HEAP32[i12 >> 2] | 0) + 12 >> 2] & 31](i12, HEAP8[i2 >> 0] | 0) | 0) << 24 >> 24) {
i22 = 53;
break;
}
HEAP32[i21 >> 2] = 4;
- i2 = 4;
+ i3 = 4;
}
L29 : do if ((i22 | 0) == 16) {
i22 = 0;
- i4 = i7 + 1 | 0;
- if ((i4 | 0) == (i9 | 0)) {
+ i4 = i2 + 1 | 0;
+ if ((i4 | 0) == (i15 | 0)) {
i22 = 17;
break L1;
}
- i5 = FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i17 >> 2] | 0) + 36 >> 2] & 31](i17, HEAP8[i4 >> 0] | 0, 0) | 0;
- switch (i5 << 24 >> 24) {
+ i6 = FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i12 >> 2] | 0) + 36 >> 2] & 31](i12, HEAP8[i4 >> 0] | 0, 0) | 0;
+ switch (i6 << 24 >> 24) {
case 48:
case 69:
{
- i3 = i7 + 2 | 0;
- if ((i3 | 0) == (i9 | 0)) {
+ i5 = i2 + 2 | 0;
+ if ((i5 | 0) == (i15 | 0)) {
i22 = 22;
break L1;
}
- i3 = FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i17 >> 2] | 0) + 36 >> 2] & 31](i17, HEAP8[i3 >> 0] | 0, 0) | 0;
- i1 = i5;
+ i2 = i4;
+ i4 = FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i12 >> 2] | 0) + 36 >> 2] & 31](i12, HEAP8[i5 >> 0] | 0, 0) | 0;
+ i1 = i6;
break;
}
default:
{
- i4 = i7;
- i3 = i5;
+ i4 = i6;
i1 = 0;
}
}
- i7 = HEAP32[(HEAP32[i18 >> 2] | 0) + 36 >> 2] | 0;
- HEAP32[i13 >> 2] = i2;
- HEAP32[i15 >> 2] = i6;
- HEAP32[i14 >> 2] = HEAP32[i13 >> 2];
- HEAP32[i16 >> 2] = HEAP32[i15 >> 2];
- i1 = FUNCTION_TABLE_iiiiiiiii[i7 & 15](i18, i14, i16, i10, i21, i12, i3, i1) | 0;
+ i6 = HEAP32[(HEAP32[i18 >> 2] | 0) + 36 >> 2] | 0;
+ HEAP32[i10 >> 2] = i3;
+ HEAP32[i11 >> 2] = i7;
+ HEAP32[i8 >> 2] = HEAP32[i10 >> 2];
+ HEAP32[i9 >> 2] = HEAP32[i11 >> 2];
+ i1 = FUNCTION_TABLE_iiiiiiiii[i6 & 15](i18, i8, i9, i16, i21, i17, i4, i1) | 0;
HEAP32[i19 >> 2] = i1;
- i1 = i4 + 2 | 0;
+ i1 = i2 + 2 | 0;
} else if ((i22 | 0) == 25) {
i22 = 0;
- i2 = i7;
- while (1) {
+ do {
i2 = i2 + 1 | 0;
- if ((i2 | 0) == (i9 | 0)) {
- i7 = i9;
+ if ((i2 | 0) == (i15 | 0)) {
+ i2 = i15;
break;
}
i3 = HEAP8[i2 >> 0] | 0;
- if (i3 << 24 >> 24 <= -1) {
- i7 = i2;
- break;
- }
- if (!(HEAP16[i4 + (i3 << 24 >> 24 << 1) >> 1] & 8192)) {
- i7 = i2;
- break;
- }
- }
- i2 = i5;
- i4 = i5;
+ if (i3 << 24 >> 24 <= -1) break;
+ } while ((HEAP16[i4 + (i3 << 24 >> 24 << 1) >> 1] & 8192) != 0);
+ i3 = i5;
while (1) {
if (i1) {
if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) {
@@ -34043,70 +33011,70 @@ function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
i1 = 0;
}
} else i1 = 0;
- i3 = (i1 | 0) == 0;
- do if (i4) {
- if ((HEAP32[i4 + 12 >> 2] | 0) != (HEAP32[i4 + 16 >> 2] | 0)) if (i3) {
- i6 = i2;
+ i4 = (i1 | 0) == 0;
+ do if (i5) {
+ if ((HEAP32[i5 + 12 >> 2] | 0) != (HEAP32[i5 + 16 >> 2] | 0)) if (i4) {
+ i7 = i3;
break;
} else {
- i1 = i7;
+ i1 = i2;
break L29;
}
- if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0) != -1) if (i3 ^ (i2 | 0) == 0) {
- i6 = i2;
- i4 = i2;
+ if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 36 >> 2] & 127](i5) | 0) != -1) if (i4 ^ (i3 | 0) == 0) {
+ i7 = i3;
+ i5 = i3;
break;
} else {
- i1 = i7;
+ i1 = i2;
break L29;
} else {
HEAP32[i20 >> 2] = 0;
- i2 = 0;
+ i3 = 0;
i22 = 39;
break;
}
} else i22 = 39; while (0);
if ((i22 | 0) == 39) {
i22 = 0;
- if (i3) {
- i1 = i7;
+ if (i4) {
+ i1 = i2;
break L29;
} else {
- i6 = i2;
- i4 = 0;
+ i7 = i3;
+ i5 = 0;
}
}
- i5 = i1 + 12 | 0;
- i2 = HEAP32[i5 >> 2] | 0;
- i3 = i1 + 16 | 0;
- if ((i2 | 0) == (HEAP32[i3 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAPU8[i2 >> 0] | 0;
- if ((i2 & 255) << 24 >> 24 <= -1) {
- i1 = i7;
+ i4 = i1 + 12 | 0;
+ i3 = HEAP32[i4 >> 2] | 0;
+ i6 = i1 + 16 | 0;
+ if ((i3 | 0) == (HEAP32[i6 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i3 = HEAPU8[i3 >> 0] | 0;
+ if ((i3 & 255) << 24 >> 24 <= -1) {
+ i1 = i2;
break L29;
}
- if (!(HEAP16[(HEAP32[i11 >> 2] | 0) + (i2 << 24 >> 24 << 1) >> 1] & 8192)) {
- i1 = i7;
+ if (!(HEAP16[(HEAP32[i13 >> 2] | 0) + (i3 << 24 >> 24 << 1) >> 1] & 8192)) {
+ i1 = i2;
break L29;
}
- i2 = HEAP32[i5 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i3 >> 2] | 0)) {
+ i3 = HEAP32[i4 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i6 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
- i2 = i6;
+ i3 = i7;
continue;
} else {
- HEAP32[i5 >> 2] = i2 + 1;
- i2 = i6;
+ HEAP32[i4 >> 2] = i3 + 1;
+ i3 = i7;
continue;
}
}
} else if ((i22 | 0) == 53) {
i22 = 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i4 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else HEAP32[i3 >> 2] = i2 + 1;
- i1 = i7 + 1 | 0;
+ i4 = HEAP32[i5 >> 2] | 0;
+ if ((i4 | 0) == (HEAP32[i3 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else HEAP32[i5 >> 2] = i4 + 1;
+ i1 = i2 + 1 | 0;
} while (0);
- i2 = HEAP32[i21 >> 2] | 0;
- i7 = i1;
+ i2 = i1;
+ i1 = HEAP32[i21 >> 2] | 0;
}
if ((i22 | 0) == 14) HEAP32[i21 >> 2] = 4; else if ((i22 | 0) == 17) HEAP32[i21 >> 2] = 4; else if ((i22 | 0) == 22) HEAP32[i21 >> 2] = 4;
if (i1) {
@@ -34115,17 +33083,17 @@ function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
i1 = 0;
}
} else i1 = 0;
- i3 = (i1 | 0) == 0;
- i2 = HEAP32[i20 >> 2] | 0;
- do if (i2) {
- if ((HEAP32[i2 + 12 >> 2] | 0) == (HEAP32[i2 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) == -1 : 0) {
+ i2 = (i1 | 0) == 0;
+ i3 = HEAP32[i20 >> 2] | 0;
+ do if (i3) {
+ if ((HEAP32[i3 + 12 >> 2] | 0) == (HEAP32[i3 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) == -1 : 0) {
HEAP32[i20 >> 2] = 0;
i22 = 68;
break;
}
- if (!i3) i22 = 69;
+ if (!i2) i22 = 69;
} else i22 = 68; while (0);
- if ((i22 | 0) == 68 ? i3 : 0) i22 = 69;
+ if ((i22 | 0) == 68 ? i2 : 0) i22 = 69;
if ((i22 | 0) == 69) HEAP32[i21 >> 2] = HEAP32[i21 >> 2] | 2;
STACKTOP = i23;
return i1 | 0;
@@ -34140,12 +33108,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_120parse_function_paramINS0_2DbEEEPKcS4_S4
STACKTOP = STACKTOP + 128 | 0;
i13 = i15 + 104 | 0;
i3 = i15 + 72 | 0;
- i11 = i15 + 80 | 0;
- i10 = i15 + 60 | 0;
+ i10 = i15 + 80 | 0;
+ i11 = i15 + 60 | 0;
i12 = i15 + 48 | 0;
- i8 = i15 + 24 | 0;
- i6 = i15 + 12 | 0;
- i9 = i15;
+ i6 = i15 + 24 | 0;
+ i7 = i15 + 12 | 0;
+ i8 = i15;
L1 : do if ((i4 - i1 | 0) > 2 ? (HEAP8[i1 >> 0] | 0) == 102 : 0) {
switch (HEAP8[i1 + 1 >> 0] | 0) {
case 112:
@@ -34153,44 +33121,44 @@ function __ZN10__cxxabiv112_GLOBAL__N_120parse_function_paramINS0_2DbEEEPKcS4_S4
i2 = __ZN10__cxxabiv112_GLOBAL__N_119parse_cv_qualifiersEPKcS2_Rj(i1 + 2 | 0, i4, i3) | 0;
i5 = __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i2, i4) | 0;
if ((i5 | 0) != (i4 | 0) ? (HEAP8[i5 >> 0] | 0) == 95 : 0) {
- i4 = i5 - i2 | 0;
- if (i4 >>> 0 > 4294967279) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i12);
- if (i4 >>> 0 < 11) {
- HEAP8[i12 >> 0] = i4 << 1;
- i3 = i12 + 1 | 0;
+ i3 = i5 - i2 | 0;
+ if (i3 >>> 0 > 4294967279) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i12);
+ if (i3 >>> 0 < 11) {
+ HEAP8[i12 >> 0] = i3 << 1;
+ i4 = i12 + 1 | 0;
} else {
- i9 = i4 + 16 & -16;
- i3 = _malloc(i9) | 0;
- HEAP32[i12 + 8 >> 2] = i3;
+ i9 = i3 + 16 & -16;
+ i4 = _malloc(i9) | 0;
+ HEAP32[i12 + 8 >> 2] = i4;
HEAP32[i12 >> 2] = i9 | 1;
- HEAP32[i12 + 4 >> 2] = i4;
+ HEAP32[i12 + 4 >> 2] = i3;
}
i1 = i2;
- i2 = i3;
+ i2 = i4;
while (1) {
if ((i1 | 0) == (i5 | 0)) break;
HEAP8[i2 >> 0] = HEAP8[i1 >> 0] | 0;
i1 = i1 + 1 | 0;
i2 = i2 + 1 | 0;
}
- HEAP8[i3 + i4 >> 0] = 0;
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i12, 0, 34397) | 0;
- HEAP32[i10 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i10 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i10 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ HEAP8[i4 + i3 >> 0] = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i12, 0, 35861) | 0;
+ HEAP32[i11 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i11 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i11 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i11, i10);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i10, i11);
i1 = i14 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i9 = HEAP32[i14 + 8 >> 2] | 0;
i3 = i9;
if (i2 >>> 0 < i9 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i11);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i10);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i14 >> 2] | 0;
@@ -34206,13 +33174,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_120parse_function_paramINS0_2DbEEEPKcS4_S4
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i13, i1, i4, i14 + 12 | 0);
i9 = i13 + 8 | 0;
i8 = HEAP32[i9 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i8, i11);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i8, i10);
HEAP32[i9 >> 2] = i8 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i14, i13);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i13);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i11);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i10);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i10);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i11);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i12);
i1 = i5 + 1 | 0;
}
@@ -34224,45 +33192,45 @@ function __ZN10__cxxabiv112_GLOBAL__N_120parse_function_paramINS0_2DbEEEPKcS4_S4
break L1;
}
i2 = __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i1 + 2 | 0, i4) | 0;
- if ((((i2 | 0) != (i4 | 0) ? (HEAP8[i2 >> 0] | 0) == 112 : 0) ? (i5 = __ZN10__cxxabiv112_GLOBAL__N_119parse_cv_qualifiersEPKcS2_Rj(i2 + 1 | 0, i4, i3) | 0, i7 = __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i5, i4) | 0, (i7 | 0) != (i4 | 0)) : 0) ? (HEAP8[i7 >> 0] | 0) == 95 : 0) {
- i4 = i7 - i5 | 0;
- if (i4 >>> 0 > 4294967279) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i9);
- if (i4 >>> 0 < 11) {
- HEAP8[i9 >> 0] = i4 << 1;
- i3 = i9 + 1 | 0;
+ if ((((i2 | 0) != (i4 | 0) ? (HEAP8[i2 >> 0] | 0) == 112 : 0) ? (i5 = __ZN10__cxxabiv112_GLOBAL__N_119parse_cv_qualifiersEPKcS2_Rj(i2 + 1 | 0, i4, i3) | 0, i9 = __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i5, i4) | 0, (i9 | 0) != (i4 | 0)) : 0) ? (HEAP8[i9 >> 0] | 0) == 95 : 0) {
+ i3 = i9 - i5 | 0;
+ if (i3 >>> 0 > 4294967279) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i8);
+ if (i3 >>> 0 < 11) {
+ HEAP8[i8 >> 0] = i3 << 1;
+ i4 = i8 + 1 | 0;
} else {
- i12 = i4 + 16 & -16;
- i3 = _malloc(i12) | 0;
- HEAP32[i9 + 8 >> 2] = i3;
- HEAP32[i9 >> 2] = i12 | 1;
- HEAP32[i9 + 4 >> 2] = i4;
+ i12 = i3 + 16 & -16;
+ i4 = _malloc(i12) | 0;
+ HEAP32[i8 + 8 >> 2] = i4;
+ HEAP32[i8 >> 2] = i12 | 1;
+ HEAP32[i8 + 4 >> 2] = i3;
}
i1 = i5;
- i2 = i3;
+ i2 = i4;
while (1) {
- if ((i1 | 0) == (i7 | 0)) break;
+ if ((i1 | 0) == (i9 | 0)) break;
HEAP8[i2 >> 0] = HEAP8[i1 >> 0] | 0;
i1 = i1 + 1 | 0;
i2 = i2 + 1 | 0;
}
- HEAP8[i3 + i4 >> 0] = 0;
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i9, 0, 34397) | 0;
- HEAP32[i6 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i6 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i6 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ HEAP8[i4 + i3 >> 0] = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i8, 0, 35861) | 0;
+ HEAP32[i7 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i7 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i7 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i8, i6);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i6, i7);
i1 = i14 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i12 = HEAP32[i14 + 8 >> 2] | 0;
i3 = i12;
if (i2 >>> 0 < i12 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i8);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i6);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i14 >> 2] | 0;
@@ -34278,106 +33246,256 @@ function __ZN10__cxxabiv112_GLOBAL__N_120parse_function_paramINS0_2DbEEEPKcS4_S4
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i13, i1, i4, i14 + 12 | 0);
i12 = i13 + 8 | 0;
i11 = HEAP32[i12 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i11, i8);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i11, i6);
HEAP32[i12 >> 2] = i11 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i14, i13);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i13);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i6);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i9);
- i1 = i7 + 1 | 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i6);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i7);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i8);
+ i1 = i9 + 1 | 0;
}
} while (0);
STACKTOP = i15;
return i1 | 0;
}
-function __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i14, i11, i13, i16) {
- i14 = i14 | 0;
+function __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_6ModuleE(i13, i11) {
+ i13 = i13 | 0;
i11 = i11 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i14 = 0, i15 = 0;
+ i14 = STACKTOP;
+ STACKTOP = STACKTOP + 16 | 0;
+ i9 = i14 + 8 | 0;
+ i12 = i14 + 4 | 0;
+ i10 = i14;
+ __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i13, 12707, 1) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i13, 10) | 0;
+ HEAP32[i12 >> 2] = 1;
+ __Z8doIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEj(i13, 1) | 0;
+ i1 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i13, 12738, 0) | 0, 36911) | 0;
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj(i1, HEAP32[i11 + 108 >> 2] | 0) | 0;
+ i1 = i11 + 112 | 0;
+ if (HEAP32[i1 >> 2] | 0) {
+ i8 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i13, 36911) | 0;
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj(i8, HEAP32[i1 >> 2] | 0) | 0;
+ }
+ i1 = i11 + 116 | 0;
+ i2 = i11 + 120 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ i7 = HEAP32[i1 >> 2] | 0;
+ while (1) {
+ if ((i7 | 0) == (i3 | 0)) break;
+ i8 = HEAP32[i7 >> 2] | 0;
+ i4 = HEAP32[i7 + 4 >> 2] | 0;
+ i5 = HEAP32[i7 + 8 >> 2] | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i13, 18114) | 0, i8) | 0, 18129) | 0;
+ i8 = 0;
+ while (1) {
+ if ((i8 | 0) == (i5 | 0)) break;
+ i6 = HEAP8[i4 + i8 >> 0] | 0;
+ L10 : do switch (i6 & 255 | 0) {
+ case 10:
+ {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i13, 18132) | 0;
+ break;
+ }
+ case 13:
+ {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i13, 18135) | 0;
+ break;
+ }
+ case 9:
+ {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i13, 18139) | 0;
+ break;
+ }
+ case 12:
+ {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i13, 18142) | 0;
+ break;
+ }
+ case 8:
+ {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i13, 18146) | 0;
+ break;
+ }
+ case 92:
+ {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i13, 18150) | 0;
+ break;
+ }
+ case 34:
+ {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i13, 18153) | 0;
+ break;
+ }
+ case 39:
+ {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i13, 18156) | 0;
+ break;
+ }
+ default:
+ if ((i6 + -32 & 255) < 95) {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_h(i13, i6) | 0;
+ break L10;
+ } else {
+ i15 = i13 + (HEAP32[(HEAP32[i13 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0;
+ HEAP32[i15 >> 2] = HEAP32[i15 >> 2] & -75 | 8;
+ i6 = __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i13, 92) | 0, (i6 & 255) >>> 4 & 255) | 0, i6 & 15) | 0;
+ i6 = i6 + (HEAP32[(HEAP32[i6 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0;
+ HEAP32[i6 >> 2] = HEAP32[i6 >> 2] & -75 | 2;
+ break L10;
+ }
+ } while (0);
+ i8 = i8 + 1 | 0;
+ }
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i13, 18159) | 0;
+ i7 = i7 + 12 | 0;
+ }
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i13, (HEAP32[i2 >> 2] | 0) != (HEAP32[i1 >> 2] | 0) ? 18162 : 46453) | 0, 18166) | 0;
+ i1 = i11 + 128 | 0;
+ if (HEAP32[i1 >> 2] | 0) {
+ __Z8doIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEj(i13, 1) | 0;
+ i15 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i13, 12714, 0) | 0, 36911) | 0;
+ HEAP32[i10 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i9 >> 2] = HEAP32[i10 >> 2];
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i15, i9) | 0, 18166) | 0;
+ }
+ i1 = HEAP32[i11 + 4 >> 2] | 0;
+ i2 = HEAP32[i11 >> 2] | 0;
+ while (1) {
+ if ((i2 | 0) == (i1 | 0)) break;
+ __Z8doIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEj(i13, 1) | 0;
+ __ZN4wasm12FunctionType5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjb(HEAP32[i2 >> 2] | 0, i13, 1, 1) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i13, 10) | 0;
+ i2 = i2 + 4 | 0;
+ }
+ i1 = HEAP32[i11 + 16 >> 2] | 0;
+ i2 = HEAP32[i11 + 12 >> 2] | 0;
+ while (1) {
+ if ((i2 | 0) == (i1 | 0)) break;
+ __Z8doIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEj(i13, 1) | 0;
+ __ZN4wasm6Import5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(HEAP32[i2 >> 2] | 0, i13, 1) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i13, 10) | 0;
+ i2 = i2 + 4 | 0;
+ }
+ i1 = HEAP32[i11 + 28 >> 2] | 0;
+ i2 = HEAP32[i11 + 24 >> 2] | 0;
+ while (1) {
+ if ((i2 | 0) == (i1 | 0)) break;
+ __Z8doIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEj(i13, 1) | 0;
+ __ZN4wasm6Export5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(HEAP32[i2 >> 2] | 0, i13, 1) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i13, 10) | 0;
+ i2 = i2 + 4 | 0;
+ }
+ i1 = i11 + 96 | 0;
+ if ((HEAP32[i11 + 100 >> 2] | 0) != (HEAP32[i1 >> 2] | 0)) {
+ __Z8doIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEj(i13, 1) | 0;
+ __ZN4wasm5Table5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i1, i13, 1) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i13, 10) | 0;
+ }
+ i2 = HEAP32[i11 + 40 >> 2] | 0;
+ i1 = HEAP32[i11 + 36 >> 2] | 0;
+ while (1) {
+ if ((i1 | 0) == (i2 | 0)) break;
+ __Z8doIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEj(i13, 1) | 0;
+ __ZN4wasm8Function5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(HEAP32[i1 >> 2] | 0, i13, 1) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i13, 10) | 0;
+ i1 = i1 + 4 | 0;
+ }
+ __Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i13, i12) | 0;
+ i15 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i13, 10) | 0;
+ STACKTOP = i14;
+ return i15 | 0;
+}
+
+function __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i15, i13, i14, i17) {
+ i15 = i15 | 0;
i13 = i13 | 0;
- i16 = i16 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i15 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0;
+ i14 = i14 | 0;
+ i17 = i17 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i16 = 0, i18 = 0, i19 = 0, i20 = 0;
i19 = STACKTOP;
STACKTOP = STACKTOP + 64 | 0;
- i9 = i19 + 40 | 0;
- i7 = i19 + 36 | 0;
- i15 = i19 + 32 | 0;
- i1 = i19 + 28 | 0;
- i10 = i19 + 24 | 0;
- i2 = i19 + 20 | 0;
- i3 = i19 + 16 | 0;
- i4 = i19 + 12 | 0;
- i5 = i19 + 8 | 0;
- i6 = i19 + 4 | 0;
- i8 = i19;
- i20 = __ZN6cashew3RefixEj(i14, 0) | 0;
+ i2 = i19 + 40 | 0;
+ i1 = i19 + 36 | 0;
+ i3 = i19 + 32 | 0;
+ i4 = i19 + 28 | 0;
+ i5 = i19 + 24 | 0;
+ i7 = i19 + 20 | 0;
+ i8 = i19 + 16 | 0;
+ i9 = i19 + 12 | 0;
+ i10 = i19 + 8 | 0;
+ i11 = i19 + 4 | 0;
+ i12 = i19;
+ i20 = __ZN6cashew3RefixEj(i15, 0) | 0;
i20 = __ZN6cashew5Value10getCStringEv(HEAP32[i20 >> 2] | 0) | 0;
L1 : do switch (HEAP8[i20 >> 0] | 0) {
case 110:
{
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i14, 0) | 0, 36988) | 0) {
- i17 = __ZN6cashew3RefixEj(i14, 1) | 0;
- i17 = __ZN6cashew5Value9getNumberEv(HEAP32[i17 >> 2] | 0) | 0;
- i17 = (__ZN4wasm9isIntegerEd(+HEAPF64[i17 >> 3]) | 0) & 1 ^ 1;
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i15, 0) | 0, 38460) | 0) {
+ i16 = __ZN6cashew3RefixEj(i15, 1) | 0;
+ i16 = __ZN6cashew5Value9getNumberEv(HEAP32[i16 >> 2] | 0) | 0;
+ i16 = (__ZN4wasm9isIntegerEd(+HEAPF64[i16 >> 3]) | 0) & 1 ^ 1;
break L1;
}
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i14, 0) | 0, 36932) | 0) {
- if (i11 | 0 ? (i12 = __ZN6cashew3RefixEj(i14, 1) | 0, __ZN6cashew7IStringC2EPKcb(i15, __ZN6cashew5Value10getCStringEv(HEAP32[i12 >> 2] | 0) | 0, 1), i12 = __ZN7AsmData7getTypeERKN6cashew7IStringE(i11, i15) | 0, (i12 | 0) != 8) : 0) {
- i17 = i12;
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i15, 0) | 0, 38404) | 0) {
+ if (i13 | 0 ? (i6 = __ZN6cashew3RefixEj(i15, 1) | 0, __ZN6cashew7IStringC2EPKcb(i3, __ZN6cashew5Value10getCStringEv(HEAP32[i6 >> 2] | 0) | 0, 1), i6 = __ZN7AsmData7getTypeERKN6cashew7IStringE(i13, i3) | 0, (i6 | 0) != 8) : 0) {
+ i16 = i6;
break L1;
}
- if (!i13) {
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i14, 1) | 0, 37012) | 0) {
- i17 = 1;
+ if (!i14) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i15, 1) | 0, 38484) | 0) {
+ i16 = 1;
break L1;
}
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i14, 1) | 0, 37016) | 0) {
- i17 = 1;
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i15, 1) | 0, 38488) | 0) {
+ i16 = 1;
break L1;
}
- i17 = __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i14, 1) | 0, 37020) | 0;
- i17 = i17 ? 0 : 8;
+ i16 = __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i15, 1) | 0, 38492) | 0;
+ i16 = i16 ? 0 : 8;
break L1;
}
- i20 = (HEAP32[9335] | 0) == 0;
- i1 = __ZN6cashew3RefixEj(i14, 1) | 0;
+ i20 = (HEAP32[9703] | 0) == 0;
+ i1 = __ZN6cashew3RefixEj(i15, 1) | 0;
if (i20) {
- i17 = __ZN6cashew5Value10getIStringEv(HEAP32[i1 >> 2] | 0) | 0;
- HEAP32[9335] = HEAP32[i17 >> 2];
- i17 = 2;
+ i16 = __ZN6cashew5Value10getIStringEv(HEAP32[i1 >> 2] | 0) | 0;
+ HEAP32[9703] = HEAP32[i16 >> 2];
+ i16 = 2;
break L1;
}
- if (__ZN6cashew3RefeqERKNS_7IStringE(i1, 37340) | 0) i17 = 2; else ___assert_fail(27371, 27397, 73, 27443);
+ if (__ZN6cashew3RefeqERKNS_7IStringE(i1, 38812) | 0) i16 = 2; else ___assert_fail(28723, 28749, 73, 28795);
} else i18 = 40;
break;
}
case 117:
{
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i14, 0) | 0, 37024) | 0) {
- i20 = __ZN6cashew3RefixEj(i14, 1) | 0;
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i15, 0) | 0, 38496) | 0) {
+ i20 = __ZN6cashew3RefixEj(i15, 1) | 0;
i20 = __ZN6cashew5Value10getCStringEv(HEAP32[i20 >> 2] | 0) | 0;
switch (HEAP8[i20 >> 0] | 0) {
case 43:
{
- i17 = 1;
+ i16 = 1;
break L1;
}
case 45:
{
- i17 = __ZN6cashew3RefixEj(i14, 2) | 0;
- HEAP32[i1 >> 2] = HEAP32[i17 >> 2];
- HEAP32[i10 >> 2] = HEAP32[i16 >> 2];
- HEAP32[i7 >> 2] = HEAP32[i1 >> 2];
- HEAP32[i9 >> 2] = HEAP32[i10 >> 2];
- i17 = __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i7, i11, i13, i9) | 0;
+ i16 = __ZN6cashew3RefixEj(i15, 2) | 0;
+ HEAP32[i4 >> 2] = HEAP32[i16 >> 2];
+ HEAP32[i5 >> 2] = HEAP32[i17 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i5 >> 2];
+ i16 = __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i1, i13, i14, i2) | 0;
break L1;
}
case 126:
case 33:
{
- i17 = 0;
+ i16 = 0;
break L1;
}
default:
@@ -34391,59 +33509,59 @@ function __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i14, i11, i13, i16)
}
case 99:
{
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i14, 0) | 0, 36984) | 0)) {
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i14, 0) | 0, 36944) | 0)) {
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i15, 0) | 0, 38456) | 0)) {
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i15, 0) | 0, 38416) | 0)) {
i18 = 40;
break L1;
}
- i17 = __ZN6cashew3RefixEj(i14, 2) | 0;
- HEAP32[i2 >> 2] = HEAP32[i17 >> 2];
- HEAP32[i3 >> 2] = HEAP32[i16 >> 2];
- HEAP32[i7 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i9 >> 2] = HEAP32[i3 >> 2];
- i17 = __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i7, i11, i13, i9) | 0;
+ i16 = __ZN6cashew3RefixEj(i15, 2) | 0;
+ HEAP32[i7 >> 2] = HEAP32[i16 >> 2];
+ HEAP32[i8 >> 2] = HEAP32[i17 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i7 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i8 >> 2];
+ i16 = __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i1, i13, i14, i2) | 0;
break L1;
}
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i14, 1) | 0, 0) | 0, 36932) | 0) {
- i1 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i14, 1) | 0, 1) | 0;
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i15, 1) | 0, 0) | 0, 38404) | 0) {
+ i1 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i15, 1) | 0, 1) | 0;
i1 = __ZN6cashew5Value10getIStringEv(HEAP32[i1 >> 2] | 0) | 0;
i1 = HEAP32[i1 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[9258] | 0)) {
- i17 = 2;
+ if ((i1 | 0) == (HEAP32[9626] | 0)) {
+ i16 = 2;
break L1;
}
- if ((i1 | 0) == (HEAP32[i16 >> 2] | 0)) {
- i17 = 2;
+ if ((i1 | 0) == (HEAP32[i17 >> 2] | 0)) {
+ i16 = 2;
break L1;
}
- if ((i1 | 0) == (HEAP32[9259] | 0) | (i1 | 0) == (HEAP32[9339] | 0)) {
- i17 = 3;
+ if ((i1 | 0) == (HEAP32[9627] | 0) | (i1 | 0) == (HEAP32[9707] | 0)) {
+ i16 = 3;
break L1;
}
- if ((i1 | 0) == (HEAP32[9260] | 0) | (i1 | 0) == (HEAP32[9340] | 0)) {
- i17 = 4;
+ if ((i1 | 0) == (HEAP32[9628] | 0) | (i1 | 0) == (HEAP32[9708] | 0)) {
+ i16 = 4;
break L1;
}
- if ((i1 | 0) == (HEAP32[9261] | 0) | (i1 | 0) == (HEAP32[9336] | 0)) {
- i17 = 5;
+ if ((i1 | 0) == (HEAP32[9629] | 0) | (i1 | 0) == (HEAP32[9704] | 0)) {
+ i16 = 5;
break L1;
}
- if ((i1 | 0) == (HEAP32[9262] | 0) | (i1 | 0) == (HEAP32[9337] | 0)) {
- i17 = 6;
+ if ((i1 | 0) == (HEAP32[9630] | 0) | (i1 | 0) == (HEAP32[9705] | 0)) {
+ i16 = 6;
break L1;
}
- if ((i1 | 0) == (HEAP32[9263] | 0) | (i1 | 0) == (HEAP32[9338] | 0)) {
- i17 = 7;
+ if ((i1 | 0) == (HEAP32[9631] | 0) | (i1 | 0) == (HEAP32[9706] | 0)) {
+ i16 = 7;
break L1;
}
}
- i17 = 8;
+ i16 = 8;
break;
}
case 98:
{
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i14, 0) | 0, 36948) | 0) {
- i20 = __ZN6cashew3RefixEj(i14, 1) | 0;
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i15, 0) | 0, 38420) | 0) {
+ i20 = __ZN6cashew3RefixEj(i15, 1) | 0;
i20 = __ZN6cashew5Value10getCStringEv(HEAP32[i20 >> 2] | 0) | 0;
switch (HEAP8[i20 >> 0] | 0) {
case 33:
@@ -34454,7 +33572,7 @@ function __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i14, i11, i13, i16)
case 38:
case 124:
{
- i17 = 0;
+ i16 = 0;
break L1;
}
case 37:
@@ -34469,41 +33587,41 @@ function __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i14, i11, i13, i16)
break L1;
}
}
- i17 = __ZN6cashew3RefixEj(i14, 2) | 0;
- HEAP32[i4 >> 2] = HEAP32[i17 >> 2];
- HEAP32[i5 >> 2] = HEAP32[i16 >> 2];
- HEAP32[i7 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i9 >> 2] = HEAP32[i5 >> 2];
- i17 = __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i7, i11, i13, i9) | 0;
+ i16 = __ZN6cashew3RefixEj(i15, 2) | 0;
+ HEAP32[i9 >> 2] = HEAP32[i16 >> 2];
+ HEAP32[i10 >> 2] = HEAP32[i17 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i9 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i10 >> 2];
+ i16 = __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i1, i13, i14, i2) | 0;
} else i18 = 40;
break;
}
case 115:
{
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i14, 0) | 0, 36976) | 0) {
- i17 = __ZN6cashew3RefixEj(i14, 2) | 0;
- HEAP32[i6 >> 2] = HEAP32[i17 >> 2];
- HEAP32[i8 >> 2] = HEAP32[i16 >> 2];
- HEAP32[i7 >> 2] = HEAP32[i6 >> 2];
- HEAP32[i9 >> 2] = HEAP32[i8 >> 2];
- i17 = __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i7, i11, i13, i9) | 0;
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i15, 0) | 0, 38448) | 0) {
+ i16 = __ZN6cashew3RefixEj(i15, 2) | 0;
+ HEAP32[i11 >> 2] = HEAP32[i16 >> 2];
+ HEAP32[i12 >> 2] = HEAP32[i17 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i11 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i12 >> 2];
+ i16 = __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i1, i13, i14, i2) | 0;
break L1;
}
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i14, 0) | 0, 36980) | 0) if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i14, 1) | 0, 0) | 0, 36932) | 0) {
- i17 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i14, 1) | 0, 1) | 0;
- __Z9parseHeapPKc(i9, __ZN6cashew5Value10getCStringEv(HEAP32[i17 >> 2] | 0) | 0);
- i17 = HEAP32[i9 >> 2] | 0;
- i17 = (i17 & 255) << 24 >> 24 == 0 ? i17 >>> 16 & 255 : 8;
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i15, 0) | 0, 38452) | 0) if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i15, 1) | 0, 0) | 0, 38404) | 0) {
+ i16 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i15, 1) | 0, 1) | 0;
+ __Z9parseHeapPKc(i2, __ZN6cashew5Value10getCStringEv(HEAP32[i16 >> 2] | 0) | 0);
+ i16 = HEAP32[i2 >> 2] | 0;
+ i16 = (i16 & 255) << 24 >> 24 == 0 ? i16 >>> 16 & 255 : 8;
break L1;
- } else ___assert_fail(27454, 27397, 123, 27443); else i18 = 40;
+ } else ___assert_fail(28806, 28749, 123, 28795); else i18 = 40;
break;
}
default:
i18 = 40;
} while (0);
- if ((i18 | 0) == 40) i17 = 8;
+ if ((i18 | 0) == 40) i16 = 8;
STACKTOP = i19;
- return i17 | 0;
+ return i16 | 0;
}
function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i10, i9) {
@@ -34561,24 +33679,24 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i10, i9
i8 = 20;
break;
}
- i4 = HEAP32[863] | 0;
+ i2 = HEAP32[1005] | 0;
while (1) {
- i2 = HEAP8[i4 >> 0] | 0;
- if (!(i2 << 24 >> 24)) {
+ i4 = HEAP8[i2 >> 0] | 0;
+ if (!(i4 << 24 >> 24)) {
i8 = 56;
break;
}
- if (i2 << 24 >> 24 == i6 << 24 >> 24) break; else i4 = i4 + 1 | 0;
+ if (i4 << 24 >> 24 == i6 << 24 >> 24) break; else i2 = i2 + 1 | 0;
}
if ((i8 | 0) == 56) {
- i4 = HEAP32[864] | 0;
+ i2 = HEAP32[1006] | 0;
while (1) {
- i2 = HEAP8[i4 >> 0] | 0;
- if (!(i2 << 24 >> 24)) break;
- if (i2 << 24 >> 24 == i6 << 24 >> 24) {
+ i4 = HEAP8[i2 >> 0] | 0;
+ if (!(i4 << 24 >> 24)) break;
+ if (i4 << 24 >> 24 == i6 << 24 >> 24) {
i8 = 59;
break;
- } else i4 = i4 + 1 | 0;
+ } else i2 = i2 + 1 | 0;
}
if ((i8 | 0) == 59) {
HEAP32[i10 + 12 >> 2] = 6;
@@ -34607,7 +33725,7 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i10, i9
}
default:
{
- __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4dumpEPKcPc(22300, i9);
+ __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4dumpEPKcPc(22888, i9);
_abort();
}
}
@@ -34615,106 +33733,106 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i10, i9
do switch (i6 << 24 >> 24 | 0) {
case 33:
{
- i5 = (HEAP8[i9 + 1 >> 0] | 0) == 61 ? HEAP32[9276] | 0 : HEAP32[9269] | 0;
+ i5 = (HEAP8[i9 + 1 >> 0] | 0) == 61 ? HEAP32[9644] | 0 : HEAP32[9637] | 0;
HEAP32[i10 >> 2] = i5;
break;
}
case 37:
{
- i5 = HEAP32[9278] | 0;
+ i5 = HEAP32[9646] | 0;
HEAP32[i10 >> 2] = i5;
break;
}
case 38:
{
- i5 = HEAP32[9267] | 0;
+ i5 = HEAP32[9635] | 0;
HEAP32[i10 >> 2] = i5;
break;
}
case 42:
{
- i5 = HEAP32[9279] | 0;
+ i5 = HEAP32[9647] | 0;
HEAP32[i10 >> 2] = i5;
break;
}
case 43:
{
- i5 = HEAP32[9264] | 0;
+ i5 = HEAP32[9632] | 0;
HEAP32[i10 >> 2] = i5;
break;
}
case 44:
{
- i5 = HEAP32[9299] | 0;
+ i5 = HEAP32[9667] | 0;
HEAP32[i10 >> 2] = i5;
break;
}
case 45:
{
- i5 = HEAP32[9265] | 0;
+ i5 = HEAP32[9633] | 0;
HEAP32[i10 >> 2] = i5;
break;
}
case 46:
{
- i5 = HEAP32[9305] | 0;
+ i5 = HEAP32[9673] | 0;
HEAP32[i10 >> 2] = i5;
break;
}
case 47:
{
- i5 = HEAP32[9277] | 0;
+ i5 = HEAP32[9645] | 0;
HEAP32[i10 >> 2] = i5;
break;
}
case 58:
{
- i5 = HEAP32[9301] | 0;
+ i5 = HEAP32[9669] | 0;
HEAP32[i10 >> 2] = i5;
break;
}
case 60:
{
i5 = HEAP8[i9 + 1 >> 0] | 0;
- i5 = HEAP32[(i5 << 24 >> 24 == 60 ? 37124 : i5 << 24 >> 24 == 61 ? 37092 : 37084) >> 2] | 0;
+ i5 = HEAP32[(i5 << 24 >> 24 == 60 ? 38596 : i5 << 24 >> 24 == 61 ? 38564 : 38556) >> 2] | 0;
HEAP32[i10 >> 2] = i5;
break;
}
case 61:
{
- i5 = (HEAP8[i9 + 1 >> 0] | 0) == 61 ? HEAP32[9275] | 0 : HEAP32[9310] | 0;
+ i5 = (HEAP8[i9 + 1 >> 0] | 0) == 61 ? HEAP32[9643] | 0 : HEAP32[9678] | 0;
HEAP32[i10 >> 2] = i5;
break;
}
case 62:
{
i2 = HEAP8[i9 + 1 >> 0] | 0;
- if (i2 << 24 >> 24 == 62) i2 = (HEAP8[i9 + 2 >> 0] | 0) == 62 ? 37128 : 37120; else i2 = i2 << 24 >> 24 == 61 ? 37088 : 37096;
+ if (i2 << 24 >> 24 == 62) i2 = (HEAP8[i9 + 2 >> 0] | 0) == 62 ? 38600 : 38592; else i2 = i2 << 24 >> 24 == 61 ? 38560 : 38568;
i5 = HEAP32[i2 >> 2] | 0;
HEAP32[i10 >> 2] = i5;
break;
}
case 63:
{
- i5 = HEAP32[9300] | 0;
+ i5 = HEAP32[9668] | 0;
HEAP32[i10 >> 2] = i5;
break;
}
case 94:
{
- i5 = HEAP32[9268] | 0;
+ i5 = HEAP32[9636] | 0;
HEAP32[i10 >> 2] = i5;
break;
}
case 124:
{
- i5 = HEAP32[9266] | 0;
+ i5 = HEAP32[9634] | 0;
HEAP32[i10 >> 2] = i5;
break;
}
case 126:
{
- i5 = HEAP32[9270] | 0;
+ i5 = HEAP32[9638] | 0;
HEAP32[i10 >> 2] = i5;
break;
}
@@ -34722,16 +33840,16 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i10, i9
_abort();
} while (0);
i7 = _strlen(i5) | 0;
- i4 = i10 + 8 | 0;
- HEAP32[i4 >> 2] = i7;
+ i2 = i10 + 8 | 0;
+ HEAP32[i2 >> 2] = i7;
i7 = i9 + i7 | 0;
- i2 = HEAP8[i7 >> 0] | 0;
+ i4 = HEAP8[i7 >> 0] | 0;
HEAP8[i7 >> 0] = 0;
if (!(_strcmp(HEAP32[i10 >> 2] | 0, i9) | 0)) {
- HEAP8[i9 + (HEAP32[i4 >> 2] | 0) >> 0] = i2;
+ HEAP8[i9 + (HEAP32[i2 >> 2] | 0) >> 0] = i4;
HEAP32[i10 + 12 >> 2] = 1;
break L1;
- } else ___assert_fail(22272, 22233, 279, 22267);
+ } else ___assert_fail(22860, 22821, 279, 22855);
} while (0);
if ((i8 | 0) == 20) {
d3 = +_strtod(i9, i7);
@@ -34754,7 +33872,7 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i10, i9
i2 = i2 ? 4 : 5;
}
HEAP32[i10 + 12 >> 2] = i2;
- if (i1 >>> 0 > i9 >>> 0) i8 = 63; else ___assert_fail(22221, 22233, 253, 22267);
+ if (i1 >>> 0 > i9 >>> 0) i8 = 63; else ___assert_fail(22809, 22821, 253, 22855);
} else {
i1 = i9;
do {
@@ -34772,7 +33890,7 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i10, i9
HEAP8[i1 >> 0] = i2;
i2 = i10;
}
- i8 = (__ZNKSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE4findIS2_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS2_PvEEEERKT_(37244, i2) | 0) != 0;
+ i8 = (__ZNKSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE4findIS2_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS2_PvEEEERKT_(38716, i2) | 0) != 0;
HEAP32[i10 + 12 >> 2] = i8 ? 0 : 2;
i8 = 63;
} while (0);
@@ -34781,54 +33899,54 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i10, i9
return;
}
-function __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i4, i1, i8, i3) {
+function __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i4, i1, i14, i3) {
i4 = i4 | 0;
i1 = i1 | 0;
- i8 = i8 | 0;
+ i14 = i14 | 0;
i3 = i3 | 0;
- var i2 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0;
+ var i2 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0;
i17 = STACKTOP;
STACKTOP = STACKTOP + 96 | 0;
- i10 = i17 + 84 | 0;
- i9 = i17 + 72 | 0;
- i11 = i17 + 60 | 0;
- i12 = i17 + 48 | 0;
- i13 = i17 + 36 | 0;
- i14 = i17 + 24 | 0;
- i15 = i17 + 12 | 0;
- i16 = i17;
+ i16 = i17 + 84 | 0;
+ i15 = i17 + 72 | 0;
+ i8 = i17 + 60 | 0;
+ i9 = i17 + 48 | 0;
+ i10 = i17 + 36 | 0;
+ i11 = i17 + 24 | 0;
+ i12 = i17 + 12 | 0;
+ i13 = i17;
i2 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i4, i1, i3) | 0;
L1 : do if ((i2 | 0) != (i4 | 0)) {
i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i1, i3) | 0;
i5 = i3 + 4 | 0;
if ((i1 | 0) == (i2 | 0)) {
- i1 = HEAP32[i5 >> 2] | 0;
- i2 = i1 + -24 | 0;
+ i2 = HEAP32[i5 >> 2] | 0;
+ i1 = i2 + -24 | 0;
while (1) {
- if ((i1 | 0) == (i2 | 0)) {
+ if ((i2 | 0) == (i1 | 0)) {
i1 = i4;
break L1;
}
- i16 = i1 + -24 | 0;
+ i16 = i2 + -24 | 0;
HEAP32[i5 >> 2] = i16;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i16);
- i1 = HEAP32[i5 >> 2] | 0;
+ i2 = HEAP32[i5 >> 2] | 0;
}
}
i2 = HEAP32[i5 >> 2] | 0;
if (((i2 - (HEAP32[i3 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i10, i2 + -24 | 0);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i16, i2 + -24 | 0);
i2 = HEAP32[i5 >> 2] | 0;
- i4 = i2 + -24 | 0;
- i3 = i2;
+ i3 = i2 + -24 | 0;
+ i4 = i2;
while (1) {
- if ((i3 | 0) == (i4 | 0)) break;
- i7 = i3 + -24 | 0;
+ if ((i4 | 0) == (i3 | 0)) break;
+ i7 = i4 + -24 | 0;
HEAP32[i5 >> 2] = i7;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7);
- i3 = HEAP32[i5 >> 2] | 0;
+ i4 = HEAP32[i5 >> 2] | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i9, i2 + -48 | 0);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i15, i2 + -48 | 0);
i2 = HEAP32[i5 >> 2] | 0;
i7 = i2 + -24 | 0;
if (!(HEAP8[i7 >> 0] & 1)) {
@@ -34838,87 +33956,87 @@ function __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4
HEAP8[HEAP32[i2 + -16 >> 2] >> 0] = 0;
HEAP32[i2 + -20 >> 2] = 0;
}
- i18 = HEAP8[i8 >> 0] | 0;
+ i18 = HEAP8[i14 >> 0] | 0;
i3 = (i18 & 1) == 0;
- i5 = i8 + 4 | 0;
- i18 = i3 ? (i18 & 255) >>> 1 : HEAP32[i5 >> 2] | 0;
- i4 = i8 + 8 | 0;
- i6 = i8 + 1 | 0;
+ i4 = i14 + 4 | 0;
+ i18 = i3 ? (i18 & 255) >>> 1 : HEAP32[i4 >> 2] | 0;
+ i5 = i14 + 8 | 0;
+ i6 = i14 + 1 | 0;
i2 = i18 >>> 0 > 1;
- i3 = _memcmp(i3 ? i6 : HEAP32[i4 >> 2] | 0, 34403, i2 ? 1 : i18) | 0;
+ i3 = _memcmp(i3 ? i6 : HEAP32[i5 >> 2] | 0, 35867, i2 ? 1 : i18) | 0;
if (!(((i3 | 0) == 0 ? ((i18 | 0) == 0 ? -1 : i2 & 1) : i3) | 0)) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9push_backEc(i7, 40);
- __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i16, 34356, i9);
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i16, 34405) | 0;
- HEAP32[i15 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i15 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i15 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i13, 35820, i15);
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i13, 35869) | 0;
+ HEAP32[i12 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i12 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i12 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- i3 = HEAP8[i8 >> 0] | 0;
- i2 = (i3 & 1) == 0;
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i15, i2 ? i6 : HEAP32[i4 >> 2] | 0, i2 ? (i3 & 255) >>> 1 : HEAP32[i5 >> 2] | 0) | 0;
- HEAP32[i14 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i14 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i14 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i2 = HEAP8[i14 >> 0] | 0;
+ i3 = (i2 & 1) == 0;
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i12, i3 ? i6 : HEAP32[i5 >> 2] | 0, i3 ? (i2 & 255) >>> 1 : HEAP32[i4 >> 2] | 0) | 0;
+ HEAP32[i11 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i11 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i11 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i14, 34408) | 0;
- HEAP32[i13 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i13 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i13 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i11, 35872) | 0;
+ HEAP32[i10 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i10 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i10 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- i3 = HEAP8[i10 >> 0] | 0;
- i2 = (i3 & 1) == 0;
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i13, i2 ? i10 + 1 | 0 : HEAP32[i10 + 8 >> 2] | 0, i2 ? (i3 & 255) >>> 1 : HEAP32[i10 + 4 >> 2] | 0) | 0;
- HEAP32[i12 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i12 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i12 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i2 = HEAP8[i16 >> 0] | 0;
+ i3 = (i2 & 1) == 0;
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i10, i3 ? i16 + 1 | 0 : HEAP32[i16 + 8 >> 2] | 0, i3 ? (i2 & 255) >>> 1 : HEAP32[i16 + 4 >> 2] | 0) | 0;
+ HEAP32[i9 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i9 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i9 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i12, 34358) | 0;
- HEAP32[i11 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i11 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i11 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i9, 35822) | 0;
+ HEAP32[i8 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i8 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i8 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- i18 = HEAP8[i11 >> 0] | 0;
+ i18 = HEAP8[i8 >> 0] | 0;
i3 = (i18 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i7, i3 ? i11 + 1 | 0 : HEAP32[i11 + 8 >> 2] | 0, i3 ? (i18 & 255) >>> 1 : HEAP32[i11 + 4 >> 2] | 0) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i7, i3 ? i8 + 1 | 0 : HEAP32[i8 + 8 >> 2] | 0, i3 ? (i18 & 255) >>> 1 : HEAP32[i8 + 4 >> 2] | 0) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i8);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i9);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i10);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i11);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i12);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i13);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14);
+ i13 = HEAP8[i14 >> 0] | 0;
+ i18 = (i13 & 1) == 0;
+ i13 = i18 ? (i13 & 255) >>> 1 : HEAP32[i4 >> 2] | 0;
+ i14 = i13 >>> 0 > 1;
+ i18 = _memcmp(i18 ? i6 : HEAP32[i5 >> 2] | 0, 35867, i14 ? 1 : i13) | 0;
+ if (!(((i18 | 0) == 0 ? ((i13 | 0) == 0 ? -1 : i14 & 1) : i18) | 0)) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9push_backEc(i7, 41);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i15);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i16);
- i15 = HEAP8[i8 >> 0] | 0;
- i18 = (i15 & 1) == 0;
- i15 = i18 ? (i15 & 255) >>> 1 : HEAP32[i5 >> 2] | 0;
- i16 = i15 >>> 0 > 1;
- i18 = _memcmp(i18 ? i6 : HEAP32[i4 >> 2] | 0, 34403, i16 ? 1 : i15) | 0;
- if (!(((i18 | 0) == 0 ? ((i15 | 0) == 0 ? -1 : i16 & 1) : i18) | 0)) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9push_backEc(i7, 41);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i9);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i10);
} else i1 = i4;
} else i1 = i4; while (0);
STACKTOP = i17;
@@ -35019,8 +34137,8 @@ function __ZN4wasm10WasmWalkerIZNS_15Asm2WasmBuilder8optimizeEvE19BlockBreakOpti
i3 = i3 + 1 | 0;
}
}
+ case 20:
case 19:
- case 18:
case 13:
case 9:
break;
@@ -35060,6 +34178,11 @@ function __ZN4wasm10WasmWalkerIZNS_15Asm2WasmBuilder8optimizeEvE19BlockBreakOpti
}
case 17:
{
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i12 >> 2] | 0) + 8 >> 2] & 127](i12, i1 + 8 | 0);
+ break;
+ }
+ case 18:
+ {
i4 = i1 + 20 | 0;
i1 = i1 + 16 | 0;
i3 = 0;
@@ -35074,8 +34197,8 @@ function __ZN4wasm10WasmWalkerIZNS_15Asm2WasmBuilder8optimizeEvE19BlockBreakOpti
{}
} while (0);
i8 = HEAP32[i13 >> 2] | 0;
- if (!i8) ___assert_fail(26470, 26220, 1229, 26475);
- L43 : do switch (HEAP32[i8 >> 2] | 0) {
+ if (!i8) ___assert_fail(27822, 27572, 1310, 27827);
+ L44 : do switch (HEAP32[i8 >> 2] | 0) {
case 0:
{
_abort();
@@ -35083,16 +34206,16 @@ function __ZN4wasm10WasmWalkerIZNS_15Asm2WasmBuilder8optimizeEvE19BlockBreakOpti
}
case 1:
{
- i6 = i8 + 12 | 0;
+ i4 = i8 + 12 | 0;
i7 = i8 + 16 | 0;
i1 = HEAP32[i7 >> 2] | 0;
- i3 = HEAP32[i6 >> 2] | 0;
+ i3 = HEAP32[i4 >> 2] | 0;
i5 = i3 + ((i1 - i3 >> 2) + -1 << 2) | 0;
- i4 = HEAP32[i5 >> 2] | 0;
+ i6 = HEAP32[i5 >> 2] | 0;
i2 = i3;
- if ((!((i4 | 0) == 0 | (HEAP32[i4 >> 2] | 0) != 4) ? (i15 = HEAP32[i4 + 16 >> 2] | 0, i9 = i15, (i15 | 0) != 0) : 0) ? (HEAP32[i4 + 12 >> 2] | 0) == (HEAP32[i8 + 8 >> 2] | 0) : 0) {
+ if ((!((i6 | 0) == 0 | (HEAP32[i6 >> 2] | 0) != 4) ? (i15 = HEAP32[i6 + 16 >> 2] | 0, i9 = i15, (i15 | 0) != 0) : 0) ? (HEAP32[i6 + 12 >> 2] | 0) == (HEAP32[i8 + 8 >> 2] | 0) : 0) {
HEAP32[i5 >> 2] = i9;
- i2 = HEAP32[i6 >> 2] | 0;
+ i2 = HEAP32[i4 >> 2] | 0;
i3 = i2;
i1 = HEAP32[i7 >> 2] | 0;
}
@@ -35100,10 +34223,10 @@ function __ZN4wasm10WasmWalkerIZNS_15Asm2WasmBuilder8optimizeEvE19BlockBreakOpti
i1 = HEAP32[i8 + 8 >> 2] | 0;
if (!i1) {
HEAP32[i12 + 4 >> 2] = HEAP32[i2 >> 2];
- break L43;
+ break L44;
}
HEAP32[i10 + 4 >> 2] = 0;
- HEAP32[i10 >> 2] = 2492;
+ HEAP32[i10 >> 2] = 2692;
HEAP32[i10 + 8 >> 2] = i1;
i15 = i10 + 12 | 0;
HEAP32[i15 >> 2] = 0;
@@ -35113,6 +34236,7 @@ function __ZN4wasm10WasmWalkerIZNS_15Asm2WasmBuilder8optimizeEvE19BlockBreakOpti
}
break;
}
+ case 20:
case 19:
case 18:
case 17:
@@ -35135,157 +34259,17 @@ function __ZN4wasm10WasmWalkerIZNS_15Asm2WasmBuilder8optimizeEvE19BlockBreakOpti
default:
{}
} while (0);
- i2 = i12 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if (i1 | 0) {
- HEAP32[i13 >> 2] = i1;
- HEAP32[i2 >> 2] = 0;
+ i1 = i12 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ if (i2 | 0) {
+ HEAP32[i13 >> 2] = i2;
+ HEAP32[i1 >> 2] = 0;
}
}
STACKTOP = i14;
return;
}
-function __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_6ModuleE(i11, i9) {
- i11 = i11 | 0;
- i9 = i9 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0, i12 = 0, i13 = 0;
- i12 = STACKTOP;
- STACKTOP = STACKTOP + 16 | 0;
- i10 = i12;
- __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i11, 12139, 1) | 0;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i11, 10) | 0;
- HEAP32[i10 >> 2] = 1;
- __Z8doIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEj(i11, 1) | 0;
- i1 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i11, 12164, 0) | 0, 35447) | 0;
- __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj(i1, HEAP32[i9 + 108 >> 2] | 0) | 0;
- i1 = i9 + 112 | 0;
- if (HEAP32[i1 >> 2] | 0) {
- i8 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i11, 35447) | 0;
- __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj(i8, HEAP32[i1 >> 2] | 0) | 0;
- }
- i8 = i9 + 116 | 0;
- i4 = i9 + 120 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- i3 = HEAP32[i8 >> 2] | 0;
- while (1) {
- if ((i3 | 0) == (i2 | 0)) break;
- i5 = HEAP32[i3 >> 2] | 0;
- i6 = HEAP32[i3 + 4 >> 2] | 0;
- i7 = HEAP32[i3 + 8 >> 2] | 0;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i11, 17520) | 0, i5) | 0, 17535) | 0;
- i5 = 0;
- while (1) {
- if ((i5 | 0) == (i7 | 0)) break;
- i1 = HEAP8[i6 + i5 >> 0] | 0;
- L10 : do switch (i1 & 255 | 0) {
- case 10:
- {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i11, 17538) | 0;
- break;
- }
- case 13:
- {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i11, 17541) | 0;
- break;
- }
- case 9:
- {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i11, 17545) | 0;
- break;
- }
- case 12:
- {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i11, 17548) | 0;
- break;
- }
- case 8:
- {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i11, 17552) | 0;
- break;
- }
- case 92:
- {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i11, 17556) | 0;
- break;
- }
- case 34:
- {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i11, 17559) | 0;
- break;
- }
- case 39:
- {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i11, 17562) | 0;
- break;
- }
- default:
- if ((i1 + -32 & 255) < 95) {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_h(i11, i1) | 0;
- break L10;
- } else {
- i13 = i11 + (HEAP32[(HEAP32[i11 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0;
- HEAP32[i13 >> 2] = HEAP32[i13 >> 2] & -75 | 8;
- i1 = __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i11, 92) | 0, (i1 & 255) >>> 4 & 255) | 0, i1 & 15) | 0;
- i1 = i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0;
- HEAP32[i1 >> 2] = HEAP32[i1 >> 2] & -75 | 2;
- break L10;
- }
- } while (0);
- i5 = i5 + 1 | 0;
- }
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i11, 17565) | 0;
- i3 = i3 + 12 | 0;
- }
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i11, (HEAP32[i4 >> 2] | 0) != (HEAP32[i8 >> 2] | 0) ? 17568 : 44980) | 0, 17572) | 0;
- i1 = HEAP32[i9 + 4 >> 2] | 0;
- i2 = HEAP32[i9 >> 2] | 0;
- while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- __Z8doIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEj(i11, 1) | 0;
- __ZN4wasm12FunctionType5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjb(HEAP32[i2 >> 2] | 0, i11, 1, 1) | 0;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i11, 10) | 0;
- i2 = i2 + 4 | 0;
- }
- i1 = HEAP32[i9 + 16 >> 2] | 0;
- i2 = HEAP32[i9 + 12 >> 2] | 0;
- while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- __Z8doIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEj(i11, 1) | 0;
- __ZN4wasm6Import5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(HEAP32[i2 >> 2] | 0, i11, 1) | 0;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i11, 10) | 0;
- i2 = i2 + 4 | 0;
- }
- i1 = HEAP32[i9 + 28 >> 2] | 0;
- i2 = HEAP32[i9 + 24 >> 2] | 0;
- while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- __Z8doIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEj(i11, 1) | 0;
- __ZN4wasm6Export5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(HEAP32[i2 >> 2] | 0, i11, 1) | 0;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i11, 10) | 0;
- i2 = i2 + 4 | 0;
- }
- i1 = i9 + 96 | 0;
- if ((HEAP32[i9 + 100 >> 2] | 0) != (HEAP32[i1 >> 2] | 0)) {
- __Z8doIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEj(i11, 1) | 0;
- __ZN4wasm5Table5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i1, i11, 1) | 0;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i11, 10) | 0;
- }
- i2 = HEAP32[i9 + 40 >> 2] | 0;
- i1 = HEAP32[i9 + 36 >> 2] | 0;
- while (1) {
- if ((i1 | 0) == (i2 | 0)) break;
- __Z8doIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEj(i11, 1) | 0;
- __ZN4wasm8Function5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(HEAP32[i1 >> 2] | 0, i11, 1) | 0;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i11, 10) | 0;
- i1 = i1 + 4 | 0;
- }
- __Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i11, i10) | 0;
- i13 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i11, 10) | 0;
- STACKTOP = i12;
- return i13 | 0;
-}
-
function __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i1, i2, i13, i10) {
i1 = i1 | 0;
i2 = i2 | 0;
@@ -35295,32 +34279,32 @@ function __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S
i14 = STACKTOP;
STACKTOP = STACKTOP + 80 | 0;
i9 = i14 + 48 | 0;
- i7 = i14 + 24 | 0;
- i6 = i14 + 12 | 0;
+ i6 = i14 + 24 | 0;
+ i7 = i14 + 12 | 0;
i8 = i14;
i12 = __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i1, i2) | 0;
if (!((i12 | 0) == (i1 | 0) | (i12 | 0) == (i2 | 0)) ? (HEAP8[i12 >> 0] | 0) == 69 : 0) {
i5 = HEAP8[i13 >> 0] | 0;
i11 = i13 + 4 | 0;
do if (((i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i11 >> 2] | 0) >>> 0 > 3) {
- __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i8, 34356, i13);
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i8, 34358) | 0;
- HEAP32[i6 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i6 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i6 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i8, 35820, i13);
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i8, 35822) | 0;
+ HEAP32[i7 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i7 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i7 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i7, i6);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i6, i7);
i2 = i10 + 4 | 0;
i3 = HEAP32[i2 >> 2] | 0;
i5 = HEAP32[i10 + 8 >> 2] | 0;
i4 = i5;
if (i3 >>> 0 < i5 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i6);
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24;
} else {
i2 = HEAP32[i10 >> 2] | 0;
@@ -35336,19 +34320,19 @@ function __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i9, i2, i5, i10 + 12 | 0);
i15 = i9 + 8 | 0;
i5 = HEAP32[i15 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i5, i7);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i5, i6);
HEAP32[i15 >> 2] = i5 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i10, i9);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i9);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i6);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i6);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i7);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i8);
} else {
- i5 = i10 + 4 | 0;
- i3 = HEAP32[i5 >> 2] | 0;
+ i4 = i10 + 4 | 0;
+ i3 = HEAP32[i4 >> 2] | 0;
i15 = HEAP32[i10 + 8 >> 2] | 0;
- i4 = i15;
+ i5 = i15;
if (i3 >>> 0 < i15 >>> 0) {
HEAP32[i3 >> 2] = 0;
HEAP32[i3 + 4 >> 2] = 0;
@@ -35362,49 +34346,49 @@ function __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S
HEAP32[i3 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- i3 = i3 + 12 | 0;
- i2 = 0;
+ i2 = i3 + 12 | 0;
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 24;
+ HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 24;
break;
}
i2 = HEAP32[i10 >> 2] | 0;
i15 = i3 - i2 | 0;
- i5 = (i15 | 0) / 24 | 0;
- i3 = i5 + 1 | 0;
+ i4 = (i15 | 0) / 24 | 0;
+ i3 = i4 + 1 | 0;
if ((i15 | 0) < -24) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i10);
- i2 = (i4 - i2 | 0) / 24 | 0;
+ i2 = (i5 - i2 | 0) / 24 | 0;
if (i2 >>> 0 < 1073741823) {
i2 = i2 << 1;
i2 = i2 >>> 0 < i3 >>> 0 ? i3 : i2;
} else i2 = 2147483647;
- __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i9, i2, i5, i10 + 12 | 0);
- i5 = i9 + 8 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- HEAP32[i4 >> 2] = 0;
- HEAP32[i4 + 4 >> 2] = 0;
- HEAP32[i4 + 8 >> 2] = 0;
- HEAP32[i4 + 12 >> 2] = 0;
- HEAP32[i4 + 16 >> 2] = 0;
- HEAP32[i4 + 20 >> 2] = 0;
+ __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i9, i2, i4, i10 + 12 | 0);
+ i4 = i9 + 8 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ HEAP32[i5 >> 2] = 0;
+ HEAP32[i5 + 4 >> 2] = 0;
+ HEAP32[i5 + 8 >> 2] = 0;
+ HEAP32[i5 + 12 >> 2] = 0;
+ HEAP32[i5 + 16 >> 2] = 0;
+ HEAP32[i5 + 20 >> 2] = 0;
i2 = 0;
while (1) {
if ((i2 | 0) == 3) break;
- HEAP32[i4 + (i2 << 2) >> 2] = 0;
+ HEAP32[i5 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- i3 = i4 + 12 | 0;
- i2 = 0;
+ i2 = i5 + 12 | 0;
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- HEAP32[i5 >> 2] = i4 + 24;
+ HEAP32[i4 >> 2] = i5 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i10, i9);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i9);
} while (0);
@@ -35431,35 +34415,35 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE11parseSwitchERPcP
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i25 = 0, i26 = 0;
i26 = STACKTOP;
STACKTOP = STACKTOP + 96 | 0;
- i19 = i26 + 92 | 0;
- i17 = i26 + 88 | 0;
+ i10 = i26 + 92 | 0;
+ i9 = i26 + 88 | 0;
i23 = i26 + 84 | 0;
i20 = i26 + 32 | 0;
i21 = i26 + 16 | 0;
i22 = i26;
- i9 = i26 + 80 | 0;
- i10 = i26 + 76 | 0;
- i11 = i26 + 72 | 0;
- i12 = i26 + 68 | 0;
- i13 = i26 + 64 | 0;
- i14 = i26 + 60 | 0;
- i15 = i26 + 56 | 0;
- i16 = i26 + 52 | 0;
- i18 = i26 + 48 | 0;
+ i11 = i26 + 80 | 0;
+ i12 = i26 + 76 | 0;
+ i13 = i26 + 72 | 0;
+ i14 = i26 + 68 | 0;
+ i15 = i26 + 64 | 0;
+ i16 = i26 + 60 | 0;
+ i17 = i26 + 56 | 0;
+ i18 = i26 + 52 | 0;
+ i19 = i26 + 48 | 0;
i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseParennedERPc(i24, i27) | 0;
HEAP32[i23 >> 2] = i1;
- HEAP32[i19 >> 2] = HEAP32[i23 >> 2];
- i23 = __ZN6cashew12ValueBuilder10makeSwitchENS_3RefE(i19) | 0;
+ HEAP32[i10 >> 2] = HEAP32[i23 >> 2];
+ i23 = __ZN6cashew12ValueBuilder10makeSwitchENS_3RefE(i10) | 0;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i27);
i1 = HEAP32[i27 >> 2] | 0;
- if ((HEAP8[i1 >> 0] | 0) != 123) ___assert_fail(22463, 22233, 533, 22675);
+ if ((HEAP8[i1 >> 0] | 0) != 123) ___assert_fail(23051, 22821, 533, 23263);
HEAP32[i27 >> 2] = i1 + 1;
- i6 = i20 + 12 | 0;
- i3 = i20 + 8 | 0;
- i7 = i21 + 12 | 0;
- i4 = i21 + 8 | 0;
- i8 = i22 + 12 | 0;
- i5 = i22 + 8 | 0;
+ i3 = i20 + 12 | 0;
+ i4 = i20 + 8 | 0;
+ i5 = i21 + 12 | 0;
+ i6 = i21 + 8 | 0;
+ i7 = i22 + 12 | 0;
+ i8 = i22 + 8 | 0;
L4 : while (1) {
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i27);
i1 = HEAP32[i27 >> 2] | 0;
@@ -35468,17 +34452,17 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE11parseSwitchERPcP
break;
}
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i20, i1);
- do if (!(HEAP32[i6 >> 2] | 0)) {
+ do if (!(HEAP32[i3 >> 2] | 0)) {
i1 = HEAP32[i20 >> 2] | 0;
- if ((i1 | 0) != (HEAP32[9302] | 0)) {
- if ((i1 | 0) != (HEAP32[9303] | 0)) {
+ if ((i1 | 0) != (HEAP32[9670] | 0)) {
+ if ((i1 | 0) != (HEAP32[9671] | 0)) {
i25 = 23;
break;
}
- HEAP32[i27 >> 2] = (HEAP32[i27 >> 2] | 0) + (HEAP32[i3 >> 2] | 0);
- HEAP32[i13 >> 2] = i23;
- HEAP32[i19 >> 2] = HEAP32[i13 >> 2];
- __ZN6cashew12ValueBuilder21appendDefaultToSwitchENS_3RefE(i19);
+ HEAP32[i27 >> 2] = (HEAP32[i27 >> 2] | 0) + (HEAP32[i4 >> 2] | 0);
+ HEAP32[i15 >> 2] = i23;
+ HEAP32[i10 >> 2] = HEAP32[i15 >> 2];
+ __ZN6cashew12ValueBuilder21appendDefaultToSwitchENS_3RefE(i10);
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i27);
i1 = HEAP32[i27 >> 2] | 0;
if ((HEAP8[i1 >> 0] | 0) != 58) {
@@ -35488,42 +34472,42 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE11parseSwitchERPcP
HEAP32[i27 >> 2] = i1 + 1;
break;
}
- HEAP32[i27 >> 2] = (HEAP32[i27 >> 2] | 0) + (HEAP32[i3 >> 2] | 0);
+ HEAP32[i27 >> 2] = (HEAP32[i27 >> 2] | 0) + (HEAP32[i4 >> 2] | 0);
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i27);
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i21, HEAP32[i27 >> 2] | 0);
- i1 = HEAP32[i7 >> 2] | 0;
+ i1 = HEAP32[i5 >> 2] | 0;
if ((i1 | 1 | 0) == 5) {
i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseFragERNS3_4FragE(i24, i21) | 0;
- HEAP32[i27 >> 2] = (HEAP32[i27 >> 2] | 0) + (HEAP32[i4 >> 2] | 0);
+ HEAP32[i27 >> 2] = (HEAP32[i27 >> 2] | 0) + (HEAP32[i6 >> 2] | 0);
} else {
if ((i1 | 0) != 1) {
i25 = 10;
break L4;
}
- if ((HEAP32[i21 >> 2] | 0) != (HEAP32[9265] | 0)) {
+ if ((HEAP32[i21 >> 2] | 0) != (HEAP32[9633] | 0)) {
i25 = 12;
break L4;
}
- HEAP32[i27 >> 2] = (HEAP32[i27 >> 2] | 0) + (HEAP32[i4 >> 2] | 0);
+ HEAP32[i27 >> 2] = (HEAP32[i27 >> 2] | 0) + (HEAP32[i6 >> 2] | 0);
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i27);
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i22, HEAP32[i27 >> 2] | 0);
- if ((HEAP32[i8 >> 2] | 1 | 0) != 5) {
+ if ((HEAP32[i7 >> 2] | 1 | 0) != 5) {
i25 = 14;
break L4;
}
- HEAP32[i9 >> 2] = HEAP32[9265];
+ HEAP32[i11 >> 2] = HEAP32[9633];
i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseFragERNS3_4FragE(i24, i22) | 0;
- HEAP32[i10 >> 2] = i1;
- HEAP32[i17 >> 2] = HEAP32[i9 >> 2];
- HEAP32[i19 >> 2] = HEAP32[i10 >> 2];
- i1 = __ZN6cashew12ValueBuilder10makePrefixENS_7IStringENS_3RefE(i17, i19) | 0;
- HEAP32[i27 >> 2] = (HEAP32[i27 >> 2] | 0) + (HEAP32[i5 >> 2] | 0);
+ HEAP32[i12 >> 2] = i1;
+ HEAP32[i9 >> 2] = HEAP32[i11 >> 2];
+ HEAP32[i10 >> 2] = HEAP32[i12 >> 2];
+ i1 = __ZN6cashew12ValueBuilder10makePrefixENS_7IStringENS_3RefE(i9, i10) | 0;
+ HEAP32[i27 >> 2] = (HEAP32[i27 >> 2] | 0) + (HEAP32[i8 >> 2] | 0);
}
- HEAP32[i11 >> 2] = i23;
- HEAP32[i12 >> 2] = i1;
- HEAP32[i17 >> 2] = HEAP32[i11 >> 2];
- HEAP32[i19 >> 2] = HEAP32[i12 >> 2];
- __ZN6cashew12ValueBuilder18appendCaseToSwitchENS_3RefES1_(i17, i19);
+ HEAP32[i13 >> 2] = i23;
+ HEAP32[i14 >> 2] = i1;
+ HEAP32[i9 >> 2] = HEAP32[i13 >> 2];
+ HEAP32[i10 >> 2] = HEAP32[i14 >> 2];
+ __ZN6cashew12ValueBuilder18appendCaseToSwitchENS_3RefES1_(i9, i10);
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i27);
i1 = HEAP32[i27 >> 2] | 0;
if ((HEAP8[i1 >> 0] | 0) != 58) {
@@ -35537,194 +34521,191 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE11parseSwitchERPcP
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i27);
i1 = (HEAP8[HEAP32[i27 >> 2] >> 0] | 0) == 123;
if (i1) i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE19parseBracketedBlockERPc(i24, i27) | 0; else {
- HEAP32[i14 >> 2] = HEAP32[9302];
- HEAP32[i15 >> 2] = HEAP32[9303];
- HEAP32[i17 >> 2] = HEAP32[i14 >> 2];
- HEAP32[i19 >> 2] = HEAP32[i15 >> 2];
- i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10parseBlockERPcPKcNS_7IStringES8_(i24, i27, 22495, i17, i19) | 0;
+ HEAP32[i16 >> 2] = HEAP32[9670];
+ HEAP32[i17 >> 2] = HEAP32[9671];
+ HEAP32[i9 >> 2] = HEAP32[i16 >> 2];
+ HEAP32[i10 >> 2] = HEAP32[i17 >> 2];
+ i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10parseBlockERPcPKcNS_7IStringES8_(i24, i27, 23083, i9, i10) | 0;
}
- HEAP32[i16 >> 2] = i23;
- HEAP32[i18 >> 2] = i2;
- HEAP32[i17 >> 2] = HEAP32[i16 >> 2];
- HEAP32[i19 >> 2] = HEAP32[i18 >> 2];
- __ZN6cashew12ValueBuilder18appendCodeToSwitchENS_3RefES1_b(i17, i19, i1);
+ HEAP32[i18 >> 2] = i23;
+ HEAP32[i19 >> 2] = i2;
+ HEAP32[i9 >> 2] = HEAP32[i18 >> 2];
+ HEAP32[i10 >> 2] = HEAP32[i19 >> 2];
+ __ZN6cashew12ValueBuilder18appendCodeToSwitchENS_3RefES1_b(i9, i10, i1);
}
}
- if ((i25 | 0) == 10) ___assert_fail(22687, 22233, 550, 22675); else if ((i25 | 0) == 12) ___assert_fail(22710, 22233, 551, 22675); else if ((i25 | 0) == 14) ___assert_fail(22729, 22233, 555, 22675); else if ((i25 | 0) == 17) ___assert_fail(22747, 22233, 561, 22675); else if ((i25 | 0) == 21) ___assert_fail(22747, 22233, 568, 22675); else if ((i25 | 0) == 28) {
+ if ((i25 | 0) == 10) ___assert_fail(23275, 22821, 550, 23263); else if ((i25 | 0) == 12) ___assert_fail(23298, 22821, 551, 23263); else if ((i25 | 0) == 14) ___assert_fail(23317, 22821, 555, 23263); else if ((i25 | 0) == 17) ___assert_fail(23335, 22821, 561, 23263); else if ((i25 | 0) == 21) ___assert_fail(23335, 22821, 568, 23263); else if ((i25 | 0) == 28) {
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i27);
i1 = HEAP32[i27 >> 2] | 0;
if ((HEAP8[i1 >> 0] | 0) == 125) {
HEAP32[i27 >> 2] = i1 + 1;
STACKTOP = i26;
return i23 | 0;
- } else ___assert_fail(22498, 22233, 581, 22675);
+ } else ___assert_fail(23086, 22821, 581, 23263);
}
return 0;
}
-function __ZNSt3__111__money_putIwE8__formatEPwRS2_S3_jPKwS5_RKNS_5ctypeIwEEbRKNS_10money_base7patternEwwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNSE_IwNSF_IwEENSH_IwEEEESQ_i(i30, i32, i31, i29, i1, i13, i10, i17, i18, i14, i23, i16, i22, i21, i15) {
- i30 = i30 | 0;
- i32 = i32 | 0;
+function __ZNSt3__111__money_putIwE8__formatEPwRS2_S3_jPKwS5_RKNS_5ctypeIwEEbRKNS_10money_base7patternEwwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNSE_IwNSF_IwEENSH_IwEEEESQ_i(i31, i33, i32, i30, i1, i19, i18, i23, i24, i20, i27, i22, i26, i25, i21) {
i31 = i31 | 0;
- i29 = i29 | 0;
+ i33 = i33 | 0;
+ i32 = i32 | 0;
+ i30 = i30 | 0;
i1 = i1 | 0;
- i13 = i13 | 0;
- i10 = i10 | 0;
- i17 = i17 | 0;
+ i19 = i19 | 0;
i18 = i18 | 0;
- i14 = i14 | 0;
i23 = i23 | 0;
- i16 = i16 | 0;
+ i24 = i24 | 0;
+ i20 = i20 | 0;
+ i27 = i27 | 0;
i22 = i22 | 0;
+ i26 = i26 | 0;
+ i25 = i25 | 0;
i21 = i21 | 0;
- i15 = i15 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0, i12 = 0, i19 = 0, i20 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i33 = 0, i34 = 0;
- HEAP32[i31 >> 2] = i30;
- i28 = i21 + 4 | 0;
- i27 = i21 + 8 | 0;
- i20 = i22 + 4 | 0;
- i26 = (i29 & 512 | 0) == 0;
- i12 = i22 + 8 | 0;
- i25 = (i15 | 0) > 0;
- i19 = i16 + 4 | 0;
- i11 = i16 + 8 | 0;
- i24 = i16 + 1 | 0;
- i9 = 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i28 = 0, i29 = 0, i34 = 0;
+ HEAP32[i32 >> 2] = i31;
+ i28 = i25 + 4 | 0;
+ i29 = i25 + 8 | 0;
+ i11 = i26 + 4 | 0;
+ i12 = (i30 & 512 | 0) == 0;
+ i13 = i26 + 8 | 0;
+ i14 = (i21 | 0) > 0;
+ i15 = i22 + 4 | 0;
+ i16 = i22 + 8 | 0;
+ i17 = i22 + 1 | 0;
+ i10 = 0;
while (1) {
- if ((i9 | 0) == 4) break;
- L4 : do switch (HEAP8[i18 + i9 >> 0] | 0) {
+ if ((i10 | 0) == 4) break;
+ L4 : do switch (HEAP8[i24 + i10 >> 0] | 0) {
case 0:
{
- HEAP32[i32 >> 2] = HEAP32[i31 >> 2];
+ HEAP32[i33 >> 2] = HEAP32[i32 >> 2];
break;
}
case 1:
{
- HEAP32[i32 >> 2] = HEAP32[i31 >> 2];
- i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i10 >> 2] | 0) + 44 >> 2] & 31](i10, 32) | 0;
- i8 = HEAP32[i31 >> 2] | 0;
- HEAP32[i31 >> 2] = i8 + 4;
- HEAP32[i8 >> 2] = i7;
+ HEAP32[i33 >> 2] = HEAP32[i32 >> 2];
+ i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i18 >> 2] | 0) + 44 >> 2] & 31](i18, 32) | 0;
+ i9 = HEAP32[i32 >> 2] | 0;
+ HEAP32[i32 >> 2] = i9 + 4;
+ HEAP32[i9 >> 2] = i8;
break;
}
case 3:
{
- i8 = HEAP8[i21 >> 0] | 0;
- i2 = (i8 & 1) == 0;
- if ((i2 ? (i8 & 255) >>> 1 : HEAP32[i28 >> 2] | 0) | 0) {
- i7 = HEAP32[(i2 ? i28 : HEAP32[i27 >> 2] | 0) >> 2] | 0;
- i8 = HEAP32[i31 >> 2] | 0;
- HEAP32[i31 >> 2] = i8 + 4;
- HEAP32[i8 >> 2] = i7;
+ i9 = HEAP8[i25 >> 0] | 0;
+ i2 = (i9 & 1) == 0;
+ if ((i2 ? (i9 & 255) >>> 1 : HEAP32[i28 >> 2] | 0) | 0) {
+ i8 = HEAP32[(i2 ? i28 : HEAP32[i29 >> 2] | 0) >> 2] | 0;
+ i9 = HEAP32[i32 >> 2] | 0;
+ HEAP32[i32 >> 2] = i9 + 4;
+ HEAP32[i9 >> 2] = i8;
}
break;
}
case 2:
{
- i6 = HEAP8[i22 >> 0] | 0;
+ i6 = HEAP8[i26 >> 0] | 0;
i2 = (i6 & 1) == 0;
- i6 = i2 ? (i6 & 255) >>> 1 : HEAP32[i20 >> 2] | 0;
- if (!(i26 | (i6 | 0) == 0)) {
- i3 = i2 ? i20 : HEAP32[i12 >> 2] | 0;
- i5 = i3 + (i6 << 2) | 0;
- i2 = HEAP32[i31 >> 2] | 0;
- i4 = i2;
+ i6 = i2 ? (i6 & 255) >>> 1 : HEAP32[i11 >> 2] | 0;
+ if (!(i12 | (i6 | 0) == 0)) {
+ i5 = i2 ? i11 : HEAP32[i13 >> 2] | 0;
+ i3 = i5 + (i6 << 2) | 0;
+ i4 = HEAP32[i32 >> 2] | 0;
+ i2 = i4;
while (1) {
- if ((i3 | 0) == (i5 | 0)) break;
- HEAP32[i4 >> 2] = HEAP32[i3 >> 2];
- i3 = i3 + 4 | 0;
- i4 = i4 + 4 | 0;
+ if ((i5 | 0) == (i3 | 0)) break;
+ HEAP32[i2 >> 2] = HEAP32[i5 >> 2];
+ i2 = i2 + 4 | 0;
+ i5 = i5 + 4 | 0;
}
- HEAP32[i31 >> 2] = i2 + (i6 << 2);
+ HEAP32[i32 >> 2] = i4 + (i6 << 2);
}
break;
}
case 4:
{
- i3 = HEAP32[i31 >> 2] | 0;
- i1 = i17 ? i1 + 4 | 0 : i1;
+ i3 = HEAP32[i32 >> 2] | 0;
+ i1 = i23 ? i1 + 4 | 0 : i1;
i2 = i1;
while (1) {
- if (i2 >>> 0 >= i13 >>> 0) break;
- if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i10 >> 2] | 0) + 12 >> 2] & 31](i10, 2048, HEAP32[i2 >> 2] | 0) | 0)) break;
+ if (i2 >>> 0 >= i19 >>> 0) break;
+ if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i18 >> 2] | 0) + 12 >> 2] & 31](i18, 2048, HEAP32[i2 >> 2] | 0) | 0)) break;
i2 = i2 + 4 | 0;
}
- if (i25) {
- i5 = i15;
+ if (i14) {
+ i6 = i21;
while (1) {
- i4 = (i5 | 0) > 0;
+ i4 = (i6 | 0) > 0;
if (!(i2 >>> 0 > i1 >>> 0 & i4)) break;
- i8 = i2 + -4 | 0;
- i6 = HEAP32[i8 >> 2] | 0;
- i7 = HEAP32[i31 >> 2] | 0;
- HEAP32[i31 >> 2] = i7 + 4;
- HEAP32[i7 >> 2] = i6;
- i2 = i8;
- i5 = i5 + -1 | 0;
+ i9 = i2 + -4 | 0;
+ i7 = HEAP32[i9 >> 2] | 0;
+ i8 = HEAP32[i32 >> 2] | 0;
+ HEAP32[i32 >> 2] = i8 + 4;
+ HEAP32[i8 >> 2] = i7;
+ i2 = i9;
+ i6 = i6 + -1 | 0;
}
- if (i4) i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i10 >> 2] | 0) + 44 >> 2] & 31](i10, 48) | 0; else i7 = 0;
- i4 = HEAP32[i31 >> 2] | 0;
+ if (i4) i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i18 >> 2] | 0) + 44 >> 2] & 31](i18, 48) | 0; else i7 = 0;
+ i5 = HEAP32[i32 >> 2] | 0;
while (1) {
- i6 = i4 + 4 | 0;
- if ((i5 | 0) <= 0) {
- i5 = i6;
- break;
- }
- HEAP32[i4 >> 2] = i7;
- i5 = i5 + -1 | 0;
- i4 = i6;
+ i4 = i5 + 4 | 0;
+ if ((i6 | 0) <= 0) break;
+ HEAP32[i5 >> 2] = i7;
+ i5 = i4;
+ i6 = i6 + -1 | 0;
}
- HEAP32[i31 >> 2] = i5;
- HEAP32[i4 >> 2] = i14;
+ HEAP32[i32 >> 2] = i4;
+ HEAP32[i5 >> 2] = i20;
}
if ((i2 | 0) == (i1 | 0)) {
- i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i10 >> 2] | 0) + 44 >> 2] & 31](i10, 48) | 0;
- i8 = HEAP32[i31 >> 2] | 0;
- i2 = i8 + 4 | 0;
- HEAP32[i31 >> 2] = i2;
- HEAP32[i8 >> 2] = i7;
+ i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i18 >> 2] | 0) + 44 >> 2] & 31](i18, 48) | 0;
+ i9 = HEAP32[i32 >> 2] | 0;
+ i2 = i9 + 4 | 0;
+ HEAP32[i32 >> 2] = i2;
+ HEAP32[i9 >> 2] = i8;
} else {
- i7 = HEAP8[i16 >> 0] | 0;
- i4 = (i7 & 1) == 0;
- i8 = HEAP32[i19 >> 2] | 0;
- if (!((i4 ? (i7 & 255) >>> 1 : i8) | 0)) {
+ i8 = HEAP8[i22 >> 0] | 0;
+ i4 = (i8 & 1) == 0;
+ i9 = HEAP32[i15 >> 2] | 0;
+ if (!((i4 ? (i8 & 255) >>> 1 : i9) | 0)) {
i7 = -1;
- i5 = 0;
i6 = 0;
+ i8 = 0;
} else {
- i7 = HEAP8[(i4 ? i24 : HEAP32[i11 >> 2] | 0) >> 0] | 0;
- i5 = 0;
+ i7 = HEAP8[(i4 ? i17 : HEAP32[i16 >> 2] | 0) >> 0] | 0;
i6 = 0;
+ i8 = 0;
}
while (1) {
if ((i2 | 0) == (i1 | 0)) break;
- i4 = HEAP32[i31 >> 2] | 0;
- if ((i6 | 0) == (i7 | 0)) {
- i7 = i4 + 4 | 0;
- HEAP32[i31 >> 2] = i7;
- HEAP32[i4 >> 2] = i23;
- i5 = i5 + 1 | 0;
- i33 = HEAP8[i16 >> 0] | 0;
- i4 = (i33 & 1) == 0;
- if (i5 >>> 0 < (i4 ? (i33 & 255) >>> 1 : i8) >>> 0) {
- i6 = HEAP8[(i4 ? i24 : HEAP32[i11 >> 2] | 0) + i5 >> 0] | 0;
- i4 = i7;
- i7 = i6 << 24 >> 24 == 127 ? -1 : i6 << 24 >> 24;
- i6 = 0;
+ i4 = HEAP32[i32 >> 2] | 0;
+ if ((i8 | 0) == (i7 | 0)) {
+ i5 = i4 + 4 | 0;
+ HEAP32[i32 >> 2] = i5;
+ HEAP32[i4 >> 2] = i27;
+ i6 = i6 + 1 | 0;
+ i7 = HEAP8[i22 >> 0] | 0;
+ i4 = (i7 & 1) == 0;
+ if (i6 >>> 0 < (i4 ? (i7 & 255) >>> 1 : i9) >>> 0) {
+ i7 = HEAP8[(i4 ? i17 : HEAP32[i16 >> 2] | 0) + i6 >> 0] | 0;
+ i4 = i5;
+ i7 = i7 << 24 >> 24 == 127 ? -1 : i7 << 24 >> 24;
+ i5 = 0;
} else {
- i4 = i7;
- i7 = i6;
- i6 = 0;
+ i4 = i5;
+ i7 = i8;
+ i5 = 0;
}
- }
- i33 = i2 + -4 | 0;
- i34 = HEAP32[i33 >> 2] | 0;
- HEAP32[i31 >> 2] = i4 + 4;
+ } else i5 = i8;
+ i8 = i2 + -4 | 0;
+ i34 = HEAP32[i8 >> 2] | 0;
+ HEAP32[i32 >> 2] = i4 + 4;
HEAP32[i4 >> 2] = i34;
- i2 = i33;
- i6 = i6 + 1 | 0;
+ i2 = i8;
+ i8 = i5 + 1 | 0;
}
- i2 = HEAP32[i31 >> 2] | 0;
+ i2 = HEAP32[i32 >> 2] | 0;
}
if ((i3 | 0) != (i2 | 0)) while (1) {
i2 = i2 + -4 | 0;
@@ -35739,54 +34720,54 @@ function __ZNSt3__111__money_putIwE8__formatEPwRS2_S3_jPKwS5_RKNS_5ctypeIwEEbRKN
default:
{}
} while (0);
- i9 = i9 + 1 | 0;
+ i10 = i10 + 1 | 0;
}
- i1 = HEAP8[i21 >> 0] | 0;
- i2 = (i1 & 1) == 0;
- i1 = i2 ? (i1 & 255) >>> 1 : HEAP32[i28 >> 2] | 0;
- if (i1 >>> 0 > 1) {
- i5 = i2 ? i28 : HEAP32[i27 >> 2] | 0;
- i3 = i5 + 4 | 0;
- i5 = i5 + (i1 << 2) | 0;
- i1 = HEAP32[i31 >> 2] | 0;
- i2 = i5 - i3 | 0;
- i4 = i1;
+ i2 = HEAP8[i25 >> 0] | 0;
+ i1 = (i2 & 1) == 0;
+ i2 = i1 ? (i2 & 255) >>> 1 : HEAP32[i28 >> 2] | 0;
+ if (i2 >>> 0 > 1) {
+ i3 = i1 ? i28 : HEAP32[i29 >> 2] | 0;
+ i5 = i3 + 4 | 0;
+ i2 = i3 + (i2 << 2) | 0;
+ i3 = HEAP32[i32 >> 2] | 0;
+ i4 = i2 - i5 | 0;
+ i1 = i3;
while (1) {
- if ((i3 | 0) == (i5 | 0)) break;
- HEAP32[i4 >> 2] = HEAP32[i3 >> 2];
- i3 = i3 + 4 | 0;
- i4 = i4 + 4 | 0;
+ if ((i5 | 0) == (i2 | 0)) break;
+ HEAP32[i1 >> 2] = HEAP32[i5 >> 2];
+ i1 = i1 + 4 | 0;
+ i5 = i5 + 4 | 0;
}
- HEAP32[i31 >> 2] = i1 + (i2 >>> 2 << 2);
+ HEAP32[i32 >> 2] = i3 + (i4 >>> 2 << 2);
}
- switch (i29 & 176 | 0) {
+ switch (i30 & 176 | 0) {
case 32:
{
- HEAP32[i32 >> 2] = HEAP32[i31 >> 2];
+ HEAP32[i33 >> 2] = HEAP32[i32 >> 2];
break;
}
case 16:
break;
default:
- HEAP32[i32 >> 2] = i30;
+ HEAP32[i33 >> 2] = i31;
}
return;
}
-function __ZN10__cxxabiv112_GLOBAL__N_117parse_source_nameINS0_2DbEEEPKcS4_S4_RT_(i1, i5, i13) {
+function __ZN10__cxxabiv112_GLOBAL__N_117parse_source_nameINS0_2DbEEEPKcS4_S4_RT_(i1, i6, i13) {
i1 = i1 | 0;
- i5 = i5 | 0;
+ i6 = i6 | 0;
i13 = i13 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i14 = 0, i15 = 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i14 = 0, i15 = 0;
i15 = STACKTOP;
STACKTOP = STACKTOP + 112 | 0;
i12 = i15 + 88 | 0;
i14 = i15 + 64 | 0;
- i6 = i15 + 76 | 0;
+ i5 = i15 + 76 | 0;
i9 = i15 + 40 | 0;
- i8 = i15 + 16 | 0;
- i7 = i15;
- L1 : do if (((i1 | 0) != (i5 | 0) ? (i3 = (HEAP8[i1 >> 0] | 0) + -48 | 0, i3 >>> 0 < 10) : 0) ? (i2 = i1 + 1 | 0, (i2 | 0) != (i5 | 0)) : 0) {
+ i7 = i15 + 16 | 0;
+ i8 = i15;
+ L1 : do if (((i1 | 0) != (i6 | 0) ? (i3 = (HEAP8[i1 >> 0] | 0) + -48 | 0, i3 >>> 0 < 10) : 0) ? (i2 = i1 + 1 | 0, (i2 | 0) != (i6 | 0)) : 0) {
while (1) {
i4 = (HEAP8[i2 >> 0] | 0) + -48 | 0;
if (i4 >>> 0 >= 10) {
@@ -35795,28 +34776,28 @@ function __ZN10__cxxabiv112_GLOBAL__N_117parse_source_nameINS0_2DbEEEPKcS4_S4_RT
break;
}
i2 = i2 + 1 | 0;
- if ((i2 | 0) == (i5 | 0)) break L1;
+ if ((i2 | 0) == (i6 | 0)) break L1;
i3 = i4 + (i3 * 10 | 0) | 0;
}
- if ((i5 - i11 | 0) >>> 0 >= i10 >>> 0) {
+ if ((i6 - i11 | 0) >>> 0 >= i10 >>> 0) {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i14, i11, i10);
i3 = HEAP8[i14 >> 0] | 0;
- i5 = (i3 & 1) == 0;
- i3 = i5 ? (i3 & 255) >>> 1 : HEAP32[i14 + 4 >> 2] | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i6, i5 ? i14 + 1 | 0 : HEAP32[i14 + 8 >> 2] | 0, i3 >>> 0 < 10 ? i3 : 10);
- i3 = HEAP8[i6 >> 0] | 0;
- i5 = (i3 & 1) == 0;
- i3 = i5 ? (i3 & 255) >>> 1 : HEAP32[i6 + 4 >> 2] | 0;
+ i6 = (i3 & 1) == 0;
+ i3 = i6 ? (i3 & 255) >>> 1 : HEAP32[i14 + 4 >> 2] | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i5, i6 ? i14 + 1 | 0 : HEAP32[i14 + 8 >> 2] | 0, i3 >>> 0 < 10 ? i3 : 10);
+ i3 = HEAP8[i5 >> 0] | 0;
+ i6 = (i3 & 1) == 0;
+ i3 = i6 ? (i3 & 255) >>> 1 : HEAP32[i5 + 4 >> 2] | 0;
i4 = i3 >>> 0 > 10;
- i5 = _memcmp(i5 ? i6 + 1 | 0 : HEAP32[i6 + 8 >> 2] | 0, 34235, i4 ? 10 : i3) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i6);
- if (!(((i5 | 0) == 0 ? (i3 >>> 0 < 10 ? -1 : i4 & 1) : i5) | 0)) {
+ i6 = _memcmp(i6 ? i5 + 1 | 0 : HEAP32[i5 + 8 >> 2] | 0, 35699, i4 ? 10 : i3) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i5);
+ if (!(((i6 | 0) == 0 ? (i3 >>> 0 < 10 ? -1 : i4 & 1) : i6) | 0)) {
i1 = _malloc(32) | 0;
HEAP32[i9 + 8 >> 2] = i1;
HEAP32[i9 >> 2] = 33;
HEAP32[i9 + 4 >> 2] = 21;
i2 = i1;
- i3 = 34246;
+ i3 = 35710;
i4 = i2 + 21 | 0;
do {
HEAP8[i2 >> 0] = HEAP8[i3 >> 0] | 0;
@@ -35824,12 +34805,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_117parse_source_nameINS0_2DbEEEPKcS4_S4_RT
i3 = i3 + 1 | 0;
} while ((i2 | 0) < (i4 | 0));
HEAP8[i1 + 21 >> 0] = 0;
- i2 = i9 + 12 | 0;
- i1 = 0;
+ i1 = i9 + 12 | 0;
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
i1 = i13 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
@@ -35859,22 +34840,22 @@ function __ZN10__cxxabiv112_GLOBAL__N_117parse_source_nameINS0_2DbEEEPKcS4_S4_RT
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i9);
} else {
- HEAP32[i7 >> 2] = HEAP32[i14 >> 2];
- HEAP32[i7 + 4 >> 2] = HEAP32[i14 + 4 >> 2];
- HEAP32[i7 + 8 >> 2] = HEAP32[i14 + 8 >> 2];
+ HEAP32[i8 >> 2] = HEAP32[i14 >> 2];
+ HEAP32[i8 + 4 >> 2] = HEAP32[i14 + 4 >> 2];
+ HEAP32[i8 + 8 >> 2] = HEAP32[i14 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
HEAP32[i14 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i8, i7);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i7, i8);
i1 = i13 + 4 | 0;
i2 = HEAP32[i1 >> 2] | 0;
i9 = HEAP32[i13 + 8 >> 2] | 0;
i3 = i9;
if (i2 >>> 0 < i9 >>> 0) {
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i8);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i7);
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24;
} else {
i1 = HEAP32[i13 >> 2] | 0;
@@ -35890,13 +34871,13 @@ function __ZN10__cxxabiv112_GLOBAL__N_117parse_source_nameINS0_2DbEEEPKcS4_S4_RT
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i12, i1, i4, i13 + 12 | 0);
i9 = i12 + 8 | 0;
i6 = HEAP32[i9 >> 2] | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i6, i8);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i6, i7);
HEAP32[i9 >> 2] = i6 + 24;
__ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i13, i12);
__ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i12);
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i7);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i8);
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14);
i1 = i11 + i10 | 0;
@@ -35906,40 +34887,40 @@ function __ZN10__cxxabiv112_GLOBAL__N_117parse_source_nameINS0_2DbEEEPKcS4_S4_RT
return i1 | 0;
}
-function __ZNSt3__111__money_putIcE8__formatEPcRS2_S3_jPKcS5_RKNS_5ctypeIcEEbRKNS_10money_base7patternEccRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESL_SL_i(i31, i33, i32, i30, i1, i11, i8, i15, i16, i12, i22, i14, i20, i19, i13) {
+function __ZNSt3__111__money_putIcE8__formatEPcRS2_S3_jPKcS5_RKNS_5ctypeIcEEbRKNS_10money_base7patternEccRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESL_SL_i(i31, i33, i32, i30, i1, i18, i17, i22, i23, i19, i26, i21, i25, i24, i20) {
i31 = i31 | 0;
i33 = i33 | 0;
i32 = i32 | 0;
i30 = i30 | 0;
i1 = i1 | 0;
- i11 = i11 | 0;
- i8 = i8 | 0;
- i15 = i15 | 0;
- i16 = i16 | 0;
- i12 = i12 | 0;
+ i18 = i18 | 0;
+ i17 = i17 | 0;
i22 = i22 | 0;
- i14 = i14 | 0;
- i20 = i20 | 0;
+ i23 = i23 | 0;
i19 = i19 | 0;
- i13 = i13 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i10 = 0, i17 = 0, i18 = 0, i21 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i34 = 0, i35 = 0, i36 = 0;
+ i26 = i26 | 0;
+ i21 = i21 | 0;
+ i25 = i25 | 0;
+ i24 = i24 | 0;
+ i20 = i20 | 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i27 = 0, i28 = 0, i29 = 0, i34 = 0, i35 = 0, i36 = 0;
HEAP32[i32 >> 2] = i31;
- i27 = i19 + 4 | 0;
- i28 = i19 + 8 | 0;
- i29 = i19 + 1 | 0;
- i18 = i20 + 4 | 0;
- i26 = (i30 & 512 | 0) == 0;
- i10 = i20 + 8 | 0;
- i24 = i20 + 1 | 0;
- i21 = i8 + 8 | 0;
- i25 = (i13 | 0) > 0;
- i17 = i14 + 4 | 0;
- i9 = i14 + 8 | 0;
- i23 = i14 + 1 | 0;
+ i27 = i24 + 4 | 0;
+ i28 = i24 + 8 | 0;
+ i29 = i24 + 1 | 0;
+ i11 = i25 + 4 | 0;
+ i12 = (i30 & 512 | 0) == 0;
+ i13 = i25 + 8 | 0;
+ i14 = i25 + 1 | 0;
+ i15 = i17 + 8 | 0;
+ i16 = (i20 | 0) > 0;
+ i8 = i21 + 4 | 0;
+ i9 = i21 + 8 | 0;
+ i10 = i21 + 1 | 0;
i7 = 0;
while (1) {
if ((i7 | 0) == 4) break;
- L4 : do switch (HEAP8[i16 + i7 >> 0] | 0) {
+ L4 : do switch (HEAP8[i23 + i7 >> 0] | 0) {
case 0:
{
HEAP32[i33 >> 2] = HEAP32[i32 >> 2];
@@ -35948,7 +34929,7 @@ function __ZNSt3__111__money_putIcE8__formatEPcRS2_S3_jPKcS5_RKNS_5ctypeIcEEbRKN
case 1:
{
HEAP32[i33 >> 2] = HEAP32[i32 >> 2];
- i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i8 >> 2] | 0) + 28 >> 2] & 31](i8, 32) | 0;
+ i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i17 >> 2] | 0) + 28 >> 2] & 31](i17, 32) | 0;
i6 = HEAP32[i32 >> 2] | 0;
HEAP32[i32 >> 2] = i6 + 1;
HEAP8[i6 >> 0] = i5;
@@ -35956,7 +34937,7 @@ function __ZNSt3__111__money_putIcE8__formatEPcRS2_S3_jPKcS5_RKNS_5ctypeIcEEbRKN
}
case 3:
{
- i6 = HEAP8[i19 >> 0] | 0;
+ i6 = HEAP8[i24 >> 0] | 0;
i2 = (i6 & 1) == 0;
if ((i2 ? (i6 & 255) >>> 1 : HEAP32[i27 >> 2] | 0) | 0) {
i5 = HEAP8[(i2 ? i29 : HEAP32[i28 >> 2] | 0) >> 0] | 0;
@@ -35968,18 +34949,19 @@ function __ZNSt3__111__money_putIcE8__formatEPcRS2_S3_jPKcS5_RKNS_5ctypeIcEEbRKN
}
case 2:
{
- i2 = HEAP8[i20 >> 0] | 0;
- i3 = (i2 & 1) == 0;
- i2 = i3 ? (i2 & 255) >>> 1 : HEAP32[i18 >> 2] | 0;
- if (!(i26 | (i2 | 0) == 0)) {
- i4 = i3 ? i24 : HEAP32[i10 >> 2] | 0;
- i3 = i4 + i2 | 0;
+ i3 = HEAP8[i25 >> 0] | 0;
+ i2 = (i3 & 1) == 0;
+ i3 = i2 ? (i3 & 255) >>> 1 : HEAP32[i11 >> 2] | 0;
+ if (!(i12 | (i3 | 0) == 0)) {
+ i6 = i2 ? i14 : HEAP32[i13 >> 2] | 0;
+ i4 = i6 + i3 | 0;
i2 = HEAP32[i32 >> 2] | 0;
+ i3 = i6;
while (1) {
- if ((i4 | 0) == (i3 | 0)) break;
- HEAP8[i2 >> 0] = HEAP8[i4 >> 0] | 0;
+ if ((i3 | 0) == (i4 | 0)) break;
+ HEAP8[i2 >> 0] = HEAP8[i3 >> 0] | 0;
i2 = i2 + 1 | 0;
- i4 = i4 + 1 | 0;
+ i3 = i3 + 1 | 0;
}
HEAP32[i32 >> 2] = i2;
}
@@ -35987,72 +34969,72 @@ function __ZNSt3__111__money_putIcE8__formatEPcRS2_S3_jPKcS5_RKNS_5ctypeIcEEbRKN
}
case 4:
{
- i6 = HEAP32[i32 >> 2] | 0;
- i1 = i15 ? i1 + 1 | 0 : i1;
+ i3 = HEAP32[i32 >> 2] | 0;
+ i1 = i22 ? i1 + 1 | 0 : i1;
i2 = i1;
while (1) {
- if (i2 >>> 0 >= i11 >>> 0) break;
- i3 = HEAP8[i2 >> 0] | 0;
- if (i3 << 24 >> 24 <= -1) break;
- if (!(HEAP16[(HEAP32[i21 >> 2] | 0) + (i3 << 24 >> 24 << 1) >> 1] & 2048)) break;
+ if (i2 >>> 0 >= i18 >>> 0) break;
+ i4 = HEAP8[i2 >> 0] | 0;
+ if (i4 << 24 >> 24 <= -1) break;
+ if (!(HEAP16[(HEAP32[i15 >> 2] | 0) + (i4 << 24 >> 24 << 1) >> 1] & 2048)) break;
i2 = i2 + 1 | 0;
}
- if (i25) {
- i4 = i13;
+ if (i16) {
+ i5 = i20;
while (1) {
- i3 = (i4 | 0) > 0;
- if (!(i2 >>> 0 > i1 >>> 0 & i3)) break;
- i5 = i2 + -1 | 0;
- i34 = HEAP8[i5 >> 0] | 0;
- i3 = HEAP32[i32 >> 2] | 0;
- HEAP32[i32 >> 2] = i3 + 1;
- HEAP8[i3 >> 0] = i34;
- i2 = i5;
- i4 = i4 + -1 | 0;
+ i4 = (i5 | 0) > 0;
+ if (!(i2 >>> 0 > i1 >>> 0 & i4)) break;
+ i6 = i2 + -1 | 0;
+ i34 = HEAP8[i6 >> 0] | 0;
+ i4 = HEAP32[i32 >> 2] | 0;
+ HEAP32[i32 >> 2] = i4 + 1;
+ HEAP8[i4 >> 0] = i34;
+ i2 = i6;
+ i5 = i5 + -1 | 0;
}
- if (i3) i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i8 >> 2] | 0) + 28 >> 2] & 31](i8, 48) | 0; else i5 = 0;
+ if (i4) i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i17 >> 2] | 0) + 28 >> 2] & 31](i17, 48) | 0; else i6 = 0;
while (1) {
- i3 = HEAP32[i32 >> 2] | 0;
- HEAP32[i32 >> 2] = i3 + 1;
- if ((i4 | 0) <= 0) break;
- HEAP8[i3 >> 0] = i5;
- i4 = i4 + -1 | 0;
+ i4 = HEAP32[i32 >> 2] | 0;
+ HEAP32[i32 >> 2] = i4 + 1;
+ if ((i5 | 0) <= 0) break;
+ HEAP8[i4 >> 0] = i6;
+ i5 = i5 + -1 | 0;
}
- HEAP8[i3 >> 0] = i12;
+ HEAP8[i4 >> 0] = i19;
}
L35 : do if ((i2 | 0) == (i1 | 0)) {
- i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i8 >> 2] | 0) + 28 >> 2] & 31](i8, 48) | 0;
+ i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i17 >> 2] | 0) + 28 >> 2] & 31](i17, 48) | 0;
i34 = HEAP32[i32 >> 2] | 0;
HEAP32[i32 >> 2] = i34 + 1;
- HEAP8[i34 >> 0] = i5;
+ HEAP8[i34 >> 0] = i6;
} else {
- i34 = HEAP8[i14 >> 0] | 0;
- i3 = (i34 & 1) == 0;
- if (!((i3 ? (i34 & 255) >>> 1 : HEAP32[i17 >> 2] | 0) | 0)) {
- i3 = -1;
- i4 = 0;
+ i34 = HEAP8[i21 >> 0] | 0;
+ i4 = (i34 & 1) == 0;
+ if (!((i4 ? (i34 & 255) >>> 1 : HEAP32[i8 >> 2] | 0) | 0)) {
+ i4 = -1;
i5 = 0;
+ i6 = 0;
} else {
- i3 = HEAP8[(i3 ? i23 : HEAP32[i9 >> 2] | 0) >> 0] | 0;
- i4 = 0;
+ i4 = HEAP8[(i4 ? i10 : HEAP32[i9 >> 2] | 0) >> 0] | 0;
i5 = 0;
+ i6 = 0;
}
while (1) {
if ((i2 | 0) == (i1 | 0)) break L35;
- if ((i5 | 0) == (i3 | 0)) {
+ if ((i6 | 0) == (i4 | 0)) {
i34 = HEAP32[i32 >> 2] | 0;
HEAP32[i32 >> 2] = i34 + 1;
- HEAP8[i34 >> 0] = i22;
- i4 = i4 + 1 | 0;
- i34 = HEAP8[i14 >> 0] | 0;
- i3 = (i34 & 1) == 0;
- if (i4 >>> 0 < (i3 ? (i34 & 255) >>> 1 : HEAP32[i17 >> 2] | 0) >>> 0) {
- i3 = HEAP8[(i3 ? i23 : HEAP32[i9 >> 2] | 0) + i4 >> 0] | 0;
- i3 = i3 << 24 >> 24 == 127 ? -1 : i3 << 24 >> 24;
- i5 = 0;
+ HEAP8[i34 >> 0] = i26;
+ i5 = i5 + 1 | 0;
+ i34 = HEAP8[i21 >> 0] | 0;
+ i4 = (i34 & 1) == 0;
+ if (i5 >>> 0 < (i4 ? (i34 & 255) >>> 1 : HEAP32[i8 >> 2] | 0) >>> 0) {
+ i4 = HEAP8[(i4 ? i10 : HEAP32[i9 >> 2] | 0) + i5 >> 0] | 0;
+ i4 = i4 << 24 >> 24 == 127 ? -1 : i4 << 24 >> 24;
+ i6 = 0;
} else {
- i3 = i5;
- i5 = 0;
+ i4 = i6;
+ i6 = 0;
}
}
i34 = i2 + -1 | 0;
@@ -36061,20 +35043,17 @@ function __ZNSt3__111__money_putIcE8__formatEPcRS2_S3_jPKcS5_RKNS_5ctypeIcEEbRKN
HEAP32[i32 >> 2] = i35 + 1;
HEAP8[i35 >> 0] = i36;
i2 = i34;
- i5 = i5 + 1 | 0;
+ i6 = i6 + 1 | 0;
}
} while (0);
i2 = HEAP32[i32 >> 2] | 0;
- if ((i6 | 0) != (i2 | 0)) {
- i3 = i6;
- while (1) {
- i2 = i2 + -1 | 0;
- if (i3 >>> 0 >= i2 >>> 0) break L4;
- i36 = HEAP8[i3 >> 0] | 0;
- HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0;
- HEAP8[i2 >> 0] = i36;
- i3 = i3 + 1 | 0;
- }
+ if ((i3 | 0) != (i2 | 0)) while (1) {
+ i2 = i2 + -1 | 0;
+ if (i3 >>> 0 >= i2 >>> 0) break L4;
+ i36 = HEAP8[i3 >> 0] | 0;
+ HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0;
+ HEAP8[i2 >> 0] = i36;
+ i3 = i3 + 1 | 0;
}
break;
}
@@ -36083,7 +35062,7 @@ function __ZNSt3__111__money_putIcE8__formatEPcRS2_S3_jPKcS5_RKNS_5ctypeIcEEbRKN
} while (0);
i7 = i7 + 1 | 0;
}
- i1 = HEAP8[i19 >> 0] | 0;
+ i1 = HEAP8[i24 >> 0] | 0;
i2 = (i1 & 1) == 0;
i1 = i2 ? (i1 & 255) >>> 1 : HEAP32[i27 >> 2] | 0;
if (i1 >>> 0 > 1) {
@@ -36112,403 +35091,751 @@ function __ZNSt3__111__money_putIcE8__formatEPcRS2_S3_jPKcS5_RKNS_5ctypeIcEEbRKN
return;
}
-function __ZN4wasm6Binary7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i8, i5, i3) {
+function __ZNSt3__113__tree_removeIPNS_16__tree_node_baseIPvEEEEvT_S5_(i1, i11) {
+ i1 = i1 | 0;
+ i11 = i11 | 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0;
+ i2 = HEAP32[i11 >> 2] | 0;
+ do if (i2) if (HEAP32[i11 + 4 >> 2] | 0) {
+ i3 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i11) | 0;
+ i2 = HEAP32[i3 >> 2] | 0;
+ if (!i2) {
+ i4 = i3;
+ i6 = 6;
+ break;
+ } else {
+ i5 = i3;
+ i4 = i3;
+ i6 = 8;
+ break;
+ }
+ } else {
+ i5 = i11;
+ i4 = i11;
+ i6 = 8;
+ break;
+ } else {
+ i4 = i11;
+ i3 = i11;
+ i6 = 6;
+ } while (0);
+ if ((i6 | 0) == 6) {
+ i2 = HEAP32[i3 + 4 >> 2] | 0;
+ if (!i2) {
+ i9 = i3 + 8 | 0;
+ i10 = 0;
+ i2 = 0;
+ i8 = i4;
+ } else {
+ i5 = i3;
+ i6 = 8;
+ }
+ }
+ if ((i6 | 0) == 8) {
+ i9 = i5 + 8 | 0;
+ HEAP32[i2 + 8 >> 2] = HEAP32[i9 >> 2];
+ i10 = 1;
+ i3 = i5;
+ i8 = i4;
+ }
+ i4 = HEAP32[i9 >> 2] | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ if ((i5 | 0) == (i3 | 0)) {
+ HEAP32[i4 >> 2] = i2;
+ if ((i3 | 0) == (i1 | 0)) {
+ i1 = i2;
+ i5 = 0;
+ } else i5 = HEAP32[i4 + 4 >> 2] | 0;
+ } else HEAP32[i4 + 4 >> 2] = i2;
+ i6 = i3 + 12 | 0;
+ i7 = (HEAP8[i6 >> 0] | 0) != 0;
+ if ((i3 | 0) != (i11 | 0)) {
+ i12 = i11 + 8 | 0;
+ i4 = HEAP32[i12 >> 2] | 0;
+ HEAP32[i9 >> 2] = i4;
+ if ((HEAP32[HEAP32[i12 >> 2] >> 2] | 0) == (i11 | 0)) HEAP32[i4 >> 2] = i3; else HEAP32[i4 + 4 >> 2] = i3;
+ i4 = HEAP32[i11 >> 2] | 0;
+ HEAP32[i8 >> 2] = i4;
+ HEAP32[i4 + 8 >> 2] = i3;
+ i4 = HEAP32[i11 + 4 >> 2] | 0;
+ HEAP32[i3 + 4 >> 2] = i4;
+ if (i4 | 0) HEAP32[i4 + 8 >> 2] = i3;
+ HEAP8[i6 >> 0] = HEAP8[i11 + 12 >> 0] | 0;
+ i1 = (i1 | 0) == (i11 | 0) ? i3 : i1;
+ }
+ do if (i7 & (i1 | 0) != 0) {
+ if (i10) {
+ HEAP8[i2 + 12 >> 0] = 1;
+ break;
+ }
+ while (1) {
+ i2 = HEAP32[i5 + 8 >> 2] | 0;
+ i3 = i5 + 12 | 0;
+ i4 = (HEAP8[i3 >> 0] | 0) != 0;
+ if ((HEAP32[i2 >> 2] | 0) == (i5 | 0)) {
+ if (i4) {
+ i4 = i1;
+ i1 = i5;
+ } else {
+ HEAP8[i3 >> 0] = 1;
+ HEAP8[i2 + 12 >> 0] = 0;
+ __ZNSt3__119__tree_right_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i2);
+ i12 = HEAP32[i5 + 4 >> 2] | 0;
+ i4 = (i1 | 0) == (i12 | 0) ? i5 : i1;
+ i1 = HEAP32[i12 >> 2] | 0;
+ }
+ i2 = HEAP32[i1 >> 2] | 0;
+ i3 = (i2 | 0) == 0;
+ if (!i3 ? (HEAP8[i2 + 12 >> 0] | 0) == 0 : 0) {
+ i6 = 49;
+ break;
+ }
+ i12 = HEAP32[i1 + 4 >> 2] | 0;
+ if (i12 | 0 ? (HEAP8[i12 + 12 >> 0] | 0) == 0 : 0) {
+ i6 = 48;
+ break;
+ }
+ HEAP8[i1 + 12 >> 0] = 0;
+ i2 = HEAP32[i1 + 8 >> 2] | 0;
+ i1 = i2 + 12 | 0;
+ if ((i2 | 0) == (i4 | 0) | (HEAP8[i1 >> 0] | 0) == 0) {
+ i6 = 45;
+ break;
+ }
+ i12 = HEAP32[i2 + 8 >> 2] | 0;
+ i1 = i4;
+ i2 = (HEAP32[i12 >> 2] | 0) == (i2 | 0) ? i12 + 4 | 0 : i12;
+ } else {
+ if (!i4) {
+ HEAP8[i3 >> 0] = 1;
+ HEAP8[i2 + 12 >> 0] = 0;
+ __ZNSt3__118__tree_left_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i2);
+ i12 = HEAP32[i5 >> 2] | 0;
+ i1 = (i1 | 0) == (i12 | 0) ? i5 : i1;
+ i5 = HEAP32[i12 + 4 >> 2] | 0;
+ }
+ i3 = HEAP32[i5 >> 2] | 0;
+ if (i3 | 0 ? (HEAP8[i3 + 12 >> 0] | 0) == 0 : 0) {
+ i1 = i5;
+ i6 = 34;
+ break;
+ }
+ i2 = HEAP32[i5 + 4 >> 2] | 0;
+ if (i2 | 0 ? (HEAP8[i2 + 12 >> 0] | 0) == 0 : 0) {
+ i1 = i5;
+ i6 = 35;
+ break;
+ }
+ HEAP8[i5 + 12 >> 0] = 0;
+ i2 = HEAP32[i5 + 8 >> 2] | 0;
+ if ((i2 | 0) == (i1 | 0)) {
+ i6 = 32;
+ break;
+ }
+ if (!(HEAP8[i2 + 12 >> 0] | 0)) {
+ i1 = i2;
+ i6 = 32;
+ break;
+ }
+ i12 = HEAP32[i2 + 8 >> 2] | 0;
+ i2 = (HEAP32[i12 >> 2] | 0) == (i2 | 0) ? i12 + 4 | 0 : i12;
+ }
+ i5 = HEAP32[i2 >> 2] | 0;
+ }
+ if ((i6 | 0) == 32) {
+ HEAP8[i1 + 12 >> 0] = 1;
+ break;
+ } else if ((i6 | 0) == 34) {
+ i2 = HEAP32[i1 + 4 >> 2] | 0;
+ if (!i2) i6 = 36; else i6 = 35;
+ } else if ((i6 | 0) == 45) {
+ HEAP8[i1 >> 0] = 1;
+ break;
+ } else if ((i6 | 0) == 48) if (i3) i6 = 50; else i6 = 49;
+ if ((i6 | 0) == 35) if (!(HEAP8[i2 + 12 >> 0] | 0)) i6 = 37; else i6 = 36; else if ((i6 | 0) == 49) if (!(HEAP8[i2 + 12 >> 0] | 0)) i6 = 51; else i6 = 50;
+ if ((i6 | 0) == 36) {
+ HEAP8[i3 + 12 >> 0] = 1;
+ HEAP8[i1 + 12 >> 0] = 0;
+ __ZNSt3__119__tree_right_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i1);
+ i1 = HEAP32[i1 + 8 >> 2] | 0;
+ i2 = HEAP32[i1 + 4 >> 2] | 0;
+ i6 = 37;
+ } else if ((i6 | 0) == 50) {
+ HEAP8[(HEAP32[i1 + 4 >> 2] | 0) + 12 >> 0] = 1;
+ HEAP8[i1 + 12 >> 0] = 0;
+ __ZNSt3__118__tree_left_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i1);
+ i1 = HEAP32[i1 + 8 >> 2] | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ i6 = 51;
+ }
+ if ((i6 | 0) == 37) {
+ i12 = HEAP32[i1 + 8 >> 2] | 0;
+ i11 = i12 + 12 | 0;
+ HEAP8[i1 + 12 >> 0] = HEAP8[i11 >> 0] | 0;
+ HEAP8[i11 >> 0] = 1;
+ HEAP8[i2 + 12 >> 0] = 1;
+ __ZNSt3__118__tree_left_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i12);
+ break;
+ } else if ((i6 | 0) == 51) {
+ i12 = HEAP32[i1 + 8 >> 2] | 0;
+ i11 = i12 + 12 | 0;
+ HEAP8[i1 + 12 >> 0] = HEAP8[i11 >> 0] | 0;
+ HEAP8[i11 >> 0] = 1;
+ HEAP8[i2 + 12 >> 0] = 1;
+ __ZNSt3__119__tree_right_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i12);
+ break;
+ }
+ } while (0);
+ return;
+}
+
+function __ZNSt3__114__scan_keywordINS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEPKNS_12basic_stringIwS3_NS_9allocatorIwEEEENS_5ctypeIwEEEET0_RT_SE_SD_SD_RKT1_Rjb(i16, i17, i1, i19, i15, i18, i14) {
+ i16 = i16 | 0;
+ i17 = i17 | 0;
+ i1 = i1 | 0;
+ i19 = i19 | 0;
+ i15 = i15 | 0;
+ i18 = i18 | 0;
+ i14 = i14 | 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i20 = 0, i21 = 0, i22 = 0;
+ i22 = STACKTOP;
+ STACKTOP = STACKTOP + 112 | 0;
+ i3 = i22;
+ i4 = (i19 - i1 | 0) / 12 | 0;
+ if (i4 >>> 0 > 100) {
+ i3 = _malloc(i4) | 0;
+ if (!i3) __ZSt17__throw_bad_allocv(); else {
+ i20 = i3;
+ i2 = i3;
+ }
+ } else {
+ i20 = 0;
+ i2 = i3;
+ }
+ i7 = i1;
+ i3 = 0;
+ i6 = i2;
+ while (1) {
+ if ((i7 | 0) == (i19 | 0)) break;
+ i5 = HEAP8[i7 >> 0] | 0;
+ if (!(i5 & 1)) i5 = (i5 & 255) >>> 1; else i5 = HEAP32[i7 + 4 >> 2] | 0;
+ if (!i5) {
+ HEAP8[i6 >> 0] = 2;
+ i3 = i3 + 1 | 0;
+ i4 = i4 + -1 | 0;
+ } else HEAP8[i6 >> 0] = 1;
+ i7 = i7 + 12 | 0;
+ i6 = i6 + 1 | 0;
+ }
+ i13 = 0;
+ i10 = i3;
+ i8 = i4;
+ L17 : while (1) {
+ i3 = HEAP32[i16 >> 2] | 0;
+ do if (i3) {
+ i4 = HEAP32[i3 + 12 >> 2] | 0;
+ if ((i4 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i3 = HEAP32[i4 >> 2] | 0;
+ if ((i3 | 0) == -1) {
+ HEAP32[i16 >> 2] = 0;
+ i6 = 1;
+ break;
+ } else {
+ i6 = (HEAP32[i16 >> 2] | 0) == 0;
+ break;
+ }
+ } else i6 = 1; while (0);
+ i5 = HEAP32[i17 >> 2] | 0;
+ if (i5) {
+ i3 = HEAP32[i5 + 12 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i5 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 36 >> 2] & 127](i5) | 0; else i3 = HEAP32[i3 >> 2] | 0;
+ if ((i3 | 0) == -1) {
+ HEAP32[i17 >> 2] = 0;
+ i5 = 0;
+ i3 = 1;
+ } else i3 = 0;
+ } else {
+ i5 = 0;
+ i3 = 1;
+ }
+ i4 = HEAP32[i16 >> 2] | 0;
+ if (!((i8 | 0) != 0 & (i6 ^ i3))) break;
+ i3 = HEAP32[i4 + 12 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i4 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0; else i3 = HEAP32[i3 >> 2] | 0;
+ if (!i14) i3 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i15 >> 2] | 0) + 28 >> 2] & 31](i15, i3) | 0;
+ i12 = i13 + 1 | 0;
+ i7 = 0;
+ i9 = i1;
+ i11 = i8;
+ i8 = i2;
+ while (1) {
+ if ((i9 | 0) == (i19 | 0)) break;
+ do if ((HEAP8[i8 >> 0] | 0) == 1) {
+ if (!(HEAP8[i9 >> 0] & 1)) i4 = i9 + 4 | 0; else i4 = HEAP32[i9 + 8 >> 2] | 0;
+ i4 = HEAP32[i4 + (i13 << 2) >> 2] | 0;
+ if (!i14) i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i15 >> 2] | 0) + 28 >> 2] & 31](i15, i4) | 0;
+ if ((i3 | 0) != (i4 | 0)) {
+ HEAP8[i8 >> 0] = 0;
+ i4 = i7;
+ i5 = i10;
+ i6 = i11 + -1 | 0;
+ break;
+ }
+ i4 = HEAP8[i9 >> 0] | 0;
+ if (!(i4 & 1)) i4 = (i4 & 255) >>> 1; else i4 = HEAP32[i9 + 4 >> 2] | 0;
+ if ((i4 | 0) == (i12 | 0)) {
+ HEAP8[i8 >> 0] = 2;
+ i4 = 1;
+ i5 = i10 + 1 | 0;
+ i6 = i11 + -1 | 0;
+ } else {
+ i4 = 1;
+ i5 = i10;
+ i6 = i11;
+ }
+ } else {
+ i4 = i7;
+ i5 = i10;
+ i6 = i11;
+ } while (0);
+ i7 = i4;
+ i9 = i9 + 12 | 0;
+ i10 = i5;
+ i11 = i6;
+ i8 = i8 + 1 | 0;
+ }
+ if (!i7) {
+ i13 = i12;
+ i8 = i11;
+ continue;
+ }
+ i3 = HEAP32[i16 >> 2] | 0;
+ i4 = i3 + 12 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ if ((i5 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 40 >> 2] & 127](i3) | 0; else HEAP32[i4 >> 2] = i5 + 4;
+ if ((i10 + i11 | 0) >>> 0 > 1) {
+ i6 = i1;
+ i3 = i10;
+ i5 = i2;
+ } else {
+ i13 = i12;
+ i8 = i11;
+ continue;
+ }
+ while (1) {
+ if ((i6 | 0) == (i19 | 0)) {
+ i13 = i12;
+ i10 = i3;
+ i8 = i11;
+ continue L17;
+ }
+ if ((HEAP8[i5 >> 0] | 0) == 2) {
+ i4 = HEAP8[i6 >> 0] | 0;
+ if (!(i4 & 1)) i4 = (i4 & 255) >>> 1; else i4 = HEAP32[i6 + 4 >> 2] | 0;
+ if ((i4 | 0) != (i12 | 0)) {
+ HEAP8[i5 >> 0] = 0;
+ i3 = i3 + -1 | 0;
+ }
+ }
+ i6 = i6 + 12 | 0;
+ i5 = i5 + 1 | 0;
+ }
+ }
+ do if (i4) {
+ i3 = HEAP32[i4 + 12 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i4 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0; else i3 = HEAP32[i3 >> 2] | 0;
+ if ((i3 | 0) == -1) {
+ HEAP32[i16 >> 2] = 0;
+ i4 = 1;
+ break;
+ } else {
+ i4 = (HEAP32[i16 >> 2] | 0) == 0;
+ break;
+ }
+ } else i4 = 1; while (0);
+ do if (i5) {
+ i3 = HEAP32[i5 + 12 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i5 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 36 >> 2] & 127](i5) | 0; else i3 = HEAP32[i3 >> 2] | 0;
+ if ((i3 | 0) != -1) if (i4) break; else {
+ i21 = 77;
+ break;
+ } else {
+ HEAP32[i17 >> 2] = 0;
+ i21 = 41;
+ break;
+ }
+ } else i21 = 41; while (0);
+ if ((i21 | 0) == 41) if (i4) i21 = 77;
+ if ((i21 | 0) == 77) HEAP32[i18 >> 2] = HEAP32[i18 >> 2] | 2;
+ while (1) {
+ if ((i1 | 0) == (i19 | 0)) {
+ i21 = 81;
+ break;
+ }
+ if ((HEAP8[i2 >> 0] | 0) == 2) break;
+ i1 = i1 + 12 | 0;
+ i2 = i2 + 1 | 0;
+ }
+ if ((i21 | 0) == 81) {
+ HEAP32[i18 >> 2] = HEAP32[i18 >> 2] | 4;
+ i1 = i19;
+ }
+ _free(i20);
+ STACKTOP = i22;
+ return i1 | 0;
+}
+
+function __ZN4wasm6Binary7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i8, i7, i6) {
i8 = i8 | 0;
- i5 = i5 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i6 = 0, i7 = 0, i9 = 0;
+ i7 = i7 | 0;
+ i6 = i6 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i9 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i9;
- HEAP32[i4 >> 2] = i3;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i5, 40) | 0;
- i1 = __Z12prepareColorRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEE(i5) | 0;
- i6 = i8 + 8 | 0;
- if ((HEAP32[i6 >> 2] | 0) > 16) i2 = (HEAP32[i8 + 12 >> 2] | 0) + 4 | 0; else i2 = i8 + 4 | 0;
+ i3 = i9;
+ HEAP32[i3 >> 2] = i6;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i7, 40) | 0;
+ i4 = __Z12prepareColorRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEE(i7) | 0;
+ i5 = i8 + 8 | 0;
+ if ((HEAP32[i5 >> 2] | 0) > 16) i2 = (HEAP32[i8 + 12 >> 2] | 0) + 4 | 0; else i2 = i8 + 4 | 0;
switch (HEAP32[i2 >> 2] | 0) {
case 0:
{
- i7 = 16812;
+ i1 = 17406;
break;
}
case 1:
{
- i7 = 16817;
+ i1 = 17411;
break;
}
case 2:
{
- i7 = 16821;
+ i1 = 17415;
break;
}
case 3:
{
- i7 = 16825;
+ i1 = 17419;
break;
}
case 4:
{
- i7 = 16829;
+ i1 = 17423;
break;
}
default:
{}
}
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i1, i7) | 0, 46) | 0;
- do switch (HEAP32[i6 >> 2] | 0) {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, i1) | 0, 46) | 0;
+ do switch (HEAP32[i5 >> 2] | 0) {
case 0:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 23636) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 24224) | 0;
break;
}
case 1:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 26663) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 28015) | 0;
break;
}
case 2:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17053) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17647) | 0;
break;
}
case 3:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17057) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17651) | 0;
break;
}
case 4:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17063) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17657) | 0;
break;
}
case 5:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17069) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17663) | 0;
break;
}
case 6:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17075) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17669) | 0;
break;
}
case 7:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17081) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17675) | 0;
break;
}
case 8:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17085) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17679) | 0;
break;
}
case 9:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17088) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17682) | 0;
break;
}
case 10:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17092) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17686) | 0;
break;
}
case 11:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17096) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17690) | 0;
break;
}
case 12:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17102) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17696) | 0;
break;
}
case 13:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17108) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17702) | 0;
break;
}
case 14:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17112) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17706) | 0;
break;
}
case 15:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17121) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17715) | 0;
break;
}
case 16:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17125) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17719) | 0;
break;
}
case 17:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17129) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17723) | 0;
break;
}
case 18:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17132) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17726) | 0;
break;
}
case 19:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17135) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17729) | 0;
break;
}
case 20:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17140) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17734) | 0;
break;
}
case 21:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17145) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17739) | 0;
break;
}
case 22:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17150) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17744) | 0;
break;
}
case 23:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17155) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17749) | 0;
break;
}
case 24:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17160) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17754) | 0;
break;
}
case 25:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17165) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17759) | 0;
break;
}
case 26:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17170) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17764) | 0;
break;
}
case 27:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17175) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17769) | 0;
break;
}
case 28:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17178) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17772) | 0;
break;
}
case 29:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17181) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17775) | 0;
break;
}
case 30:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17184) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, 17778) | 0;
break;
}
default:
_abort();
} while (0);
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i5, 10) | 0;
- i7 = i3 + 1 | 0;
- HEAP32[i4 >> 2] = i7;
- __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i5, i7, HEAP32[i8 + 12 >> 2] | 0) | 0;
- __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i5, i7, HEAP32[i8 + 16 >> 2] | 0) | 0;
- i8 = __Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i5, i4) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i7, 10) | 0;
+ i6 = i6 + 1 | 0;
+ HEAP32[i3 >> 2] = i6;
+ __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i7, i6, HEAP32[i8 + 12 >> 2] | 0) | 0;
+ __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i7, i6, HEAP32[i8 + 16 >> 2] | 0) | 0;
+ i8 = __Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i7, i3) | 0;
STACKTOP = i9;
return i8 | 0;
}
-function __ZNSt3__113__tree_removeIPNS_16__tree_node_baseIPvEEEEvT_S5_(i3, i11) {
- i3 = i3 | 0;
+function __ZN10__cxxabiv112_GLOBAL__N_18demangleINS0_2DbEEEvPKcS4_RT_Ri(i1, i10, i9, i11) {
+ i1 = i1 | 0;
+ i10 = i10 | 0;
+ i9 = i9 | 0;
i11 = i11 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0;
- i1 = HEAP32[i11 >> 2] | 0;
- do if (i1) if (HEAP32[i11 + 4 >> 2] | 0) {
- i2 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i11) | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if (!i1) {
- i4 = i2;
- i5 = 6;
- break;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i12 = 0;
+ i12 = STACKTOP;
+ STACKTOP = STACKTOP + 48 | 0;
+ i6 = i12 + 24 | 0;
+ i7 = i12 + 12 | 0;
+ i8 = i12;
+ L1 : do if (i1 >>> 0 < i10 >>> 0) {
+ L3 : do if ((HEAP8[i1 >> 0] | 0) != 95) {
+ if ((__ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i1, i10, i9) | 0) != (i10 | 0)) {
+ HEAP32[i11 >> 2] = -2;
+ break L1;
+ }
} else {
- i4 = i2;
- i5 = 8;
- break;
- }
- } else {
- i4 = i11;
- i2 = i11;
- i5 = 8;
- break;
- } else {
- i4 = i11;
- i2 = i11;
- i5 = 6;
- } while (0);
- if ((i5 | 0) == 6) {
- i1 = HEAP32[i2 + 4 >> 2] | 0;
- if (!i1) {
- i7 = i2 + 8 | 0;
- i10 = 0;
- i8 = i2;
- i9 = 0;
- } else i5 = 8;
- }
- if ((i5 | 0) == 8) {
- i7 = i2 + 8 | 0;
- HEAP32[i1 + 8 >> 2] = HEAP32[i7 >> 2];
- i10 = 1;
- i8 = i2;
- i9 = i1;
- }
- i2 = HEAP32[i7 >> 2] | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if ((i1 | 0) == (i8 | 0)) {
- HEAP32[i2 >> 2] = i9;
- if ((i8 | 0) == (i3 | 0)) {
- i3 = i9;
- i1 = 0;
- } else i1 = HEAP32[i2 + 4 >> 2] | 0;
- } else HEAP32[i2 + 4 >> 2] = i9;
- i5 = i8 + 12 | 0;
- i6 = (HEAP8[i5 >> 0] | 0) != 0;
- if ((i8 | 0) != (i11 | 0)) {
- i12 = i11 + 8 | 0;
- i2 = HEAP32[i12 >> 2] | 0;
- HEAP32[i7 >> 2] = i2;
- if ((HEAP32[HEAP32[i12 >> 2] >> 2] | 0) == (i11 | 0)) HEAP32[i2 >> 2] = i8; else HEAP32[i2 + 4 >> 2] = i8;
- i2 = HEAP32[i11 >> 2] | 0;
- HEAP32[i4 >> 2] = i2;
- HEAP32[i2 + 8 >> 2] = i8;
- i2 = HEAP32[i11 + 4 >> 2] | 0;
- HEAP32[i8 + 4 >> 2] = i2;
- if (i2 | 0) HEAP32[i2 + 8 >> 2] = i8;
- HEAP8[i5 >> 0] = HEAP8[i11 + 12 >> 0] | 0;
- i3 = (i3 | 0) == (i11 | 0) ? i8 : i3;
- }
- do if (i6 & (i3 | 0) != 0) {
- if (i10) {
- HEAP8[i9 + 12 >> 0] = 1;
- break;
- }
- while (1) {
- i2 = HEAP32[i1 + 8 >> 2] | 0;
- i4 = i1 + 12 | 0;
- i5 = (HEAP8[i4 >> 0] | 0) != 0;
- if ((HEAP32[i2 >> 2] | 0) == (i1 | 0)) {
- if (!i5) {
- HEAP8[i4 >> 0] = 1;
- HEAP8[i2 + 12 >> 0] = 0;
- __ZNSt3__119__tree_right_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i2);
- i12 = HEAP32[i1 + 4 >> 2] | 0;
- i3 = (i3 | 0) == (i12 | 0) ? i1 : i3;
- i1 = HEAP32[i12 >> 2] | 0;
- }
- i2 = HEAP32[i1 >> 2] | 0;
- i4 = (i2 | 0) == 0;
- if (!i4 ? (HEAP8[i2 + 12 >> 0] | 0) == 0 : 0) {
- i5 = 49;
- break;
- }
- i12 = HEAP32[i1 + 4 >> 2] | 0;
- if (i12 | 0 ? (HEAP8[i12 + 12 >> 0] | 0) == 0 : 0) {
- i5 = 48;
- break;
- }
- HEAP8[i1 + 12 >> 0] = 0;
- i2 = HEAP32[i1 + 8 >> 2] | 0;
- i1 = i2 + 12 | 0;
- if ((i2 | 0) == (i3 | 0) | (HEAP8[i1 >> 0] | 0) == 0) {
- i5 = 45;
- break;
- }
- i1 = HEAP32[i2 + 8 >> 2] | 0;
- i1 = (HEAP32[i1 >> 2] | 0) == (i2 | 0) ? i1 + 4 | 0 : i1;
- } else {
- if (!i5) {
- HEAP8[i4 >> 0] = 1;
- HEAP8[i2 + 12 >> 0] = 0;
- __ZNSt3__118__tree_left_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i2);
- i12 = HEAP32[i1 >> 2] | 0;
- i3 = (i3 | 0) == (i12 | 0) ? i1 : i3;
- i1 = HEAP32[i12 + 4 >> 2] | 0;
- }
- i4 = HEAP32[i1 >> 2] | 0;
- if (i4 | 0 ? (HEAP8[i4 + 12 >> 0] | 0) == 0 : 0) {
- i5 = 34;
- break;
- }
- i2 = HEAP32[i1 + 4 >> 2] | 0;
- if (i2 | 0 ? (HEAP8[i2 + 12 >> 0] | 0) == 0 : 0) {
- i5 = 35;
- break;
- }
- HEAP8[i1 + 12 >> 0] = 0;
- i1 = HEAP32[i1 + 8 >> 2] | 0;
- if ((i1 | 0) == (i3 | 0)) {
- i1 = i3;
- i5 = 32;
- break;
+ i3 = i10;
+ if ((i3 - i1 | 0) <= 3) {
+ HEAP32[i11 >> 2] = -2;
+ break L1;
+ }
+ switch (HEAP8[i1 + 1 >> 0] | 0) {
+ case 90:
+ {
+ i5 = i1 + 2 | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_114parse_encodingINS0_2DbEEEPKcS4_S4_RT_(i5, i10, i9) | 0;
+ if (!((i1 | 0) == (i5 | 0) | (i1 | 0) == (i10 | 0)) ? (HEAP8[i1 >> 0] | 0) == 46 : 0) {
+ i2 = HEAP32[i9 + 4 >> 2] | 0;
+ if ((HEAP32[i9 >> 2] | 0) != (i2 | 0)) {
+ i5 = i2 + -24 | 0;
+ i3 = i3 - i1 | 0;
+ if (i3 >>> 0 > 4294967279) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i8);
+ if (i3 >>> 0 < 11) {
+ HEAP8[i8 >> 0] = i3 << 1;
+ i4 = i8 + 1 | 0;
+ } else {
+ i2 = i3 + 16 & -16;
+ i4 = _malloc(i2) | 0;
+ HEAP32[i8 + 8 >> 2] = i4;
+ HEAP32[i8 >> 2] = i2 | 1;
+ HEAP32[i8 + 4 >> 2] = i3;
+ }
+ i2 = i4;
+ while (1) {
+ if ((i1 | 0) == (i10 | 0)) break;
+ HEAP8[i2 >> 0] = HEAP8[i1 >> 0] | 0;
+ i1 = i1 + 1 | 0;
+ i2 = i2 + 1 | 0;
+ }
+ HEAP8[i4 + i3 >> 0] = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i8, 0, 35872) | 0;
+ HEAP32[i7 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i7 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i7 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
+ while (1) {
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
+ }
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i7, 35822) | 0;
+ HEAP32[i6 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i6 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i6 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
+ while (1) {
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
+ }
+ i1 = HEAP8[i6 >> 0] | 0;
+ i4 = (i1 & 1) == 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i5, i4 ? i6 + 1 | 0 : HEAP32[i6 + 8 >> 2] | 0, i4 ? (i1 & 255) >>> 1 : HEAP32[i6 + 4 >> 2] | 0) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i6);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i7);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i8);
+ i1 = i10;
+ }
+ }
+ if ((i1 | 0) == (i10 | 0)) break L3;
+ HEAP32[i11 >> 2] = -2;
+ break L1;
}
- if (!(HEAP8[i1 + 12 >> 0] | 0)) {
- i5 = 32;
+ case 95:
+ {
+ if ((HEAP8[i1 + 2 >> 0] | 0) == 95 ? (HEAP8[i1 + 3 >> 0] | 0) == 90 : 0) {
+ i8 = i1 + 4 | 0;
+ i1 = __ZN10__cxxabiv112_GLOBAL__N_114parse_encodingINS0_2DbEEEPKcS4_S4_RT_(i8, i10, i9) | 0;
+ if ((i1 | 0) == (i8 | 0) | (i1 | 0) == (i10 | 0)) {
+ HEAP32[i11 >> 2] = -2;
+ break L1;
+ }
+ L43 : do if ((i3 - i1 | 0) > 12) {
+ i3 = 0;
+ i2 = i1;
+ while (1) {
+ if ((i3 | 0) >= 13) break;
+ if ((HEAP8[i2 >> 0] | 0) != (HEAP8[37349 + i3 >> 0] | 0)) break L43;
+ i3 = i3 + 1 | 0;
+ i2 = i2 + 1 | 0;
+ }
+ L49 : do if ((i2 | 0) == (i10 | 0)) i2 = i10; else {
+ if ((HEAP8[i2 >> 0] | 0) == 95) {
+ i3 = i2 + 1 | 0;
+ if ((i3 | 0) == (i10 | 0)) break L43;
+ if (((HEAP8[i3 >> 0] | 0) + -48 | 0) >>> 0 >= 10) break L43;
+ i2 = i2 + 2 | 0;
+ }
+ while (1) {
+ if ((i2 | 0) == (i10 | 0)) {
+ i2 = i10;
+ break L49;
+ }
+ if (((HEAP8[i2 >> 0] | 0) + -48 | 0) >>> 0 >= 10) break L49;
+ i2 = i2 + 1 | 0;
+ }
+ } while (0);
+ i3 = HEAP32[i9 + 4 >> 2] | 0;
+ if ((HEAP32[i9 >> 2] | 0) != (i3 | 0)) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i3 + -24 | 0, 0, 37363) | 0;
+ i1 = i2;
+ }
+ } while (0);
+ if ((i1 | 0) == (i10 | 0)) break L3;
+ HEAP32[i11 >> 2] = -2;
+ break L1;
+ }
break;
}
- i12 = HEAP32[i1 + 8 >> 2] | 0;
- i1 = (HEAP32[i12 >> 2] | 0) == (i1 | 0) ? i12 + 4 | 0 : i12;
+ default:
+ {}
}
- i1 = HEAP32[i1 >> 2] | 0;
- }
- if ((i5 | 0) == 32) {
- HEAP8[i1 + 12 >> 0] = 1;
- break;
- } else if ((i5 | 0) == 34) {
- i2 = HEAP32[i1 + 4 >> 2] | 0;
- if (!i2) i5 = 36; else i5 = 35;
- } else if ((i5 | 0) == 45) {
- HEAP8[i1 >> 0] = 1;
- break;
- } else if ((i5 | 0) == 48) if (i4) i5 = 50; else i5 = 49;
- if ((i5 | 0) == 35) if (!(HEAP8[i2 + 12 >> 0] | 0)) i5 = 37; else i5 = 36; else if ((i5 | 0) == 49) if (!(HEAP8[i2 + 12 >> 0] | 0)) i5 = 51; else i5 = 50;
- if ((i5 | 0) == 36) {
- HEAP8[i4 + 12 >> 0] = 1;
- HEAP8[i1 + 12 >> 0] = 0;
- __ZNSt3__119__tree_right_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i1);
- i1 = HEAP32[i1 + 8 >> 2] | 0;
- i2 = HEAP32[i1 + 4 >> 2] | 0;
- i5 = 37;
- } else if ((i5 | 0) == 50) {
- HEAP8[(HEAP32[i1 + 4 >> 2] | 0) + 12 >> 0] = 1;
- HEAP8[i1 + 12 >> 0] = 0;
- __ZNSt3__118__tree_left_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i1);
- i1 = HEAP32[i1 + 8 >> 2] | 0;
- i2 = HEAP32[i1 >> 2] | 0;
- i5 = 51;
- }
- if ((i5 | 0) == 37) {
- i12 = HEAP32[i1 + 8 >> 2] | 0;
- i11 = i12 + 12 | 0;
- HEAP8[i1 + 12 >> 0] = HEAP8[i11 >> 0] | 0;
- HEAP8[i11 >> 0] = 1;
- HEAP8[i2 + 12 >> 0] = 1;
- __ZNSt3__118__tree_left_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i12);
- break;
- } else if ((i5 | 0) == 51) {
- i12 = HEAP32[i1 + 8 >> 2] | 0;
- i11 = i12 + 12 | 0;
- HEAP8[i1 + 12 >> 0] = HEAP8[i11 >> 0] | 0;
- HEAP8[i11 >> 0] = 1;
- HEAP8[i2 + 12 >> 0] = 1;
- __ZNSt3__119__tree_right_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i12);
- break;
- }
- } while (0);
+ HEAP32[i11 >> 2] = -2;
+ break L1;
+ } while (0);
+ if ((HEAP32[i11 >> 2] | 0) == 0 ? (HEAP32[i9 >> 2] | 0) == (HEAP32[i9 + 4 >> 2] | 0) : 0) HEAP32[i11 >> 2] = -2;
+ } else HEAP32[i11 >> 2] = -2; while (0);
+ STACKTOP = i12;
return;
}
@@ -36526,28 +35853,28 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE1
i3 = i20 + 196 | 0;
i19 = i20 + 184 | 0;
i18 = i20 + 172 | 0;
- i14 = i20 + 168 | 0;
- i15 = i20 + 8 | 0;
+ i15 = i20 + 168 | 0;
+ i16 = i20 + 8 | 0;
i13 = i20 + 4 | 0;
i12 = i20;
switch (HEAP32[i2 + 4 >> 2] & 74 | 0) {
case 64:
{
- i16 = 8;
+ i14 = 8;
break;
}
case 8:
{
- i16 = 16;
+ i14 = 16;
break;
}
case 0:
{
- i16 = 0;
+ i14 = 0;
break;
}
default:
- i16 = 10;
+ i14 = 10;
}
__ZNSt3__19__num_getIwE17__stage2_int_prepERNS_8ios_baseEPwRw(i19, i2, i11, i3);
i1 = 0;
@@ -36559,12 +35886,12 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE1
if (!(HEAP8[i18 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i1, 0);
i8 = i18 + 8 | 0;
- i10 = i18 + 1 | 0;
- i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i2;
- HEAP32[i13 >> 2] = i15;
+ i9 = i18 + 1 | 0;
+ i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i2;
+ HEAP32[i13 >> 2] = i16;
HEAP32[i12 >> 2] = 0;
- i9 = i18 + 4 | 0;
+ i10 = i18 + 4 | 0;
i7 = HEAP32[i3 >> 2] | 0;
i3 = HEAP32[i21 >> 2] | 0;
L13 : while (1) {
@@ -36601,44 +35928,44 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE1
} else i6 = 0;
}
i4 = HEAP8[i18 >> 0] | 0;
- i4 = (i4 & 1) == 0 ? (i4 & 255) >>> 1 : HEAP32[i9 >> 2] | 0;
- if ((HEAP32[i14 >> 2] | 0) == (i2 + i4 | 0)) {
+ i4 = (i4 & 1) == 0 ? (i4 & 255) >>> 1 : HEAP32[i10 >> 2] | 0;
+ if ((HEAP32[i15 >> 2] | 0) == (i2 + i4 | 0)) {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i4 << 1, 0);
if (!(HEAP8[i18 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i1, 0);
- i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i2 + i4;
+ i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i2 + i4;
}
- i5 = i3 + 12 | 0;
- i1 = HEAP32[i5 >> 2] | 0;
- i4 = i3 + 16 | 0;
- if ((i1 | 0) == (HEAP32[i4 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
- if (__ZNSt3__19__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i1, i16, i2, i14, i12, i7, i19, i15, i13, i11) | 0) {
+ i4 = i3 + 12 | 0;
+ i1 = HEAP32[i4 >> 2] | 0;
+ i5 = i3 + 16 | 0;
+ if ((i1 | 0) == (HEAP32[i5 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
+ if (__ZNSt3__19__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i1, i14, i2, i15, i12, i7, i19, i16, i13, i11) | 0) {
i4 = i6;
break;
}
- i1 = HEAP32[i5 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i4 >> 2] | 0)) {
+ i1 = HEAP32[i4 >> 2] | 0;
+ if ((i1 | 0) == (HEAP32[i5 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 40 >> 2] & 127](i3) | 0;
continue;
} else {
- HEAP32[i5 >> 2] = i1 + 4;
+ HEAP32[i4 >> 2] = i1 + 4;
continue;
}
}
i11 = HEAP8[i19 >> 0] | 0;
i1 = HEAP32[i13 >> 2] | 0;
- if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i1 - i15 | 0) < 160 : 0) {
+ if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i1 - i16 | 0) < 160 : 0) {
i11 = HEAP32[i12 >> 2] | 0;
i12 = i1 + 4 | 0;
HEAP32[i13 >> 2] = i12;
HEAP32[i1 >> 2] = i11;
i1 = i12;
}
- i16 = __ZNSt3__127__num_get_unsigned_integralIyEET_PKcS3_Rji(i2, HEAP32[i14 >> 2] | 0, i23, i16) | 0;
- HEAP32[i17 >> 2] = i16;
+ i15 = __ZNSt3__127__num_get_unsigned_integralIyEET_PKcS3_Rji(i2, HEAP32[i15 >> 2] | 0, i23, i14) | 0;
+ HEAP32[i17 >> 2] = i15;
HEAP32[i17 + 4 >> 2] = tempRet0;
- __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i15, i1, i23);
+ __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i16, i1, i23);
if (i3) {
i1 = HEAP32[i3 + 12 >> 2] | 0;
if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
@@ -36668,149 +35995,6 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE1
return i24 | 0;
}
-function __ZN10__cxxabiv112_GLOBAL__N_18demangleINS0_2DbEEEvPKcS4_RT_Ri(i1, i10, i9, i11) {
- i1 = i1 | 0;
- i10 = i10 | 0;
- i9 = i9 | 0;
- i11 = i11 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i12 = 0;
- i12 = STACKTOP;
- STACKTOP = STACKTOP + 48 | 0;
- i6 = i12 + 24 | 0;
- i7 = i12 + 12 | 0;
- i8 = i12;
- L1 : do if (i1 >>> 0 < i10 >>> 0) {
- L3 : do if ((HEAP8[i1 >> 0] | 0) != 95) {
- if ((__ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i1, i10, i9) | 0) != (i10 | 0)) {
- HEAP32[i11 >> 2] = -2;
- break L1;
- }
- } else {
- i3 = i10;
- if ((i3 - i1 | 0) <= 3) {
- HEAP32[i11 >> 2] = -2;
- break L1;
- }
- switch (HEAP8[i1 + 1 >> 0] | 0) {
- case 90:
- {
- i5 = i1 + 2 | 0;
- i1 = __ZN10__cxxabiv112_GLOBAL__N_114parse_encodingINS0_2DbEEEPKcS4_S4_RT_(i5, i10, i9) | 0;
- if (!((i1 | 0) == (i5 | 0) | (i1 | 0) == (i10 | 0)) ? (HEAP8[i1 >> 0] | 0) == 46 : 0) {
- i2 = HEAP32[i9 + 4 >> 2] | 0;
- if ((HEAP32[i9 >> 2] | 0) != (i2 | 0)) {
- i5 = i2 + -24 | 0;
- i4 = i3 - i1 | 0;
- if (i4 >>> 0 > 4294967279) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i8);
- if (i4 >>> 0 < 11) {
- HEAP8[i8 >> 0] = i4 << 1;
- i3 = i8 + 1 | 0;
- } else {
- i2 = i4 + 16 & -16;
- i3 = _malloc(i2) | 0;
- HEAP32[i8 + 8 >> 2] = i3;
- HEAP32[i8 >> 2] = i2 | 1;
- HEAP32[i8 + 4 >> 2] = i4;
- }
- i2 = i3;
- while (1) {
- if ((i1 | 0) == (i10 | 0)) break;
- HEAP8[i2 >> 0] = HEAP8[i1 >> 0] | 0;
- i1 = i1 + 1 | 0;
- i2 = i2 + 1 | 0;
- }
- HEAP8[i3 + i4 >> 0] = 0;
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i8, 0, 34408) | 0;
- HEAP32[i7 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i7 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i7 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
- while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
- }
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i7, 34358) | 0;
- HEAP32[i6 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i6 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i6 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
- while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
- }
- i1 = HEAP8[i6 >> 0] | 0;
- i4 = (i1 & 1) == 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i5, i4 ? i6 + 1 | 0 : HEAP32[i6 + 8 >> 2] | 0, i4 ? (i1 & 255) >>> 1 : HEAP32[i6 + 4 >> 2] | 0) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i6);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i7);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i8);
- i1 = i10;
- }
- }
- if ((i1 | 0) == (i10 | 0)) break L3;
- HEAP32[i11 >> 2] = -2;
- break L1;
- }
- case 95:
- {
- if ((HEAP8[i1 + 2 >> 0] | 0) == 95 ? (HEAP8[i1 + 3 >> 0] | 0) == 90 : 0) {
- i8 = i1 + 4 | 0;
- i1 = __ZN10__cxxabiv112_GLOBAL__N_114parse_encodingINS0_2DbEEEPKcS4_S4_RT_(i8, i10, i9) | 0;
- if ((i1 | 0) == (i8 | 0) | (i1 | 0) == (i10 | 0)) {
- HEAP32[i11 >> 2] = -2;
- break L1;
- }
- L43 : do if ((i3 - i1 | 0) > 12) {
- i3 = 0;
- i2 = i1;
- while (1) {
- if ((i3 | 0) >= 13) break;
- if ((HEAP8[i2 >> 0] | 0) != (HEAP8[35885 + i3 >> 0] | 0)) break L43;
- i3 = i3 + 1 | 0;
- i2 = i2 + 1 | 0;
- }
- L49 : do if ((i2 | 0) == (i10 | 0)) i2 = i10; else {
- if ((HEAP8[i2 >> 0] | 0) == 95) {
- i3 = i2 + 1 | 0;
- if ((i3 | 0) == (i10 | 0)) break L43;
- if (((HEAP8[i3 >> 0] | 0) + -48 | 0) >>> 0 >= 10) break L43;
- i2 = i2 + 2 | 0;
- }
- while (1) {
- if ((i2 | 0) == (i10 | 0)) {
- i2 = i10;
- break L49;
- }
- if (((HEAP8[i2 >> 0] | 0) + -48 | 0) >>> 0 >= 10) break L49;
- i2 = i2 + 1 | 0;
- }
- } while (0);
- i3 = HEAP32[i9 + 4 >> 2] | 0;
- if ((HEAP32[i9 >> 2] | 0) != (i3 | 0)) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i3 + -24 | 0, 0, 35899) | 0;
- i1 = i2;
- }
- } while (0);
- if ((i1 | 0) == (i10 | 0)) break L3;
- HEAP32[i11 >> 2] = -2;
- break L1;
- }
- break;
- }
- default:
- {}
- }
- HEAP32[i11 >> 2] = -2;
- break L1;
- } while (0);
- if ((HEAP32[i11 >> 2] | 0) == 0 ? (HEAP32[i9 >> 2] | 0) == (HEAP32[i9 + 4 >> 2] | 0) : 0) HEAP32[i11 >> 2] = -2;
- } else HEAP32[i11 >> 2] = -2; while (0);
- STACKTOP = i12;
- return;
-}
-
function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE15__do_get_signedIxEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i21, i22, i2, i23, i17) {
i1 = i1 | 0;
i21 = i21 | 0;
@@ -36825,28 +36009,28 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE1
i3 = i20 + 196 | 0;
i19 = i20 + 184 | 0;
i18 = i20 + 172 | 0;
- i14 = i20 + 168 | 0;
- i15 = i20 + 8 | 0;
+ i15 = i20 + 168 | 0;
+ i16 = i20 + 8 | 0;
i13 = i20 + 4 | 0;
i12 = i20;
switch (HEAP32[i2 + 4 >> 2] & 74 | 0) {
case 64:
{
- i16 = 8;
+ i14 = 8;
break;
}
case 8:
{
- i16 = 16;
+ i14 = 16;
break;
}
case 0:
{
- i16 = 0;
+ i14 = 0;
break;
}
default:
- i16 = 10;
+ i14 = 10;
}
__ZNSt3__19__num_getIwE17__stage2_int_prepERNS_8ios_baseEPwRw(i19, i2, i11, i3);
i1 = 0;
@@ -36858,12 +36042,12 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE1
if (!(HEAP8[i18 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i1, 0);
i8 = i18 + 8 | 0;
- i10 = i18 + 1 | 0;
- i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i2;
- HEAP32[i13 >> 2] = i15;
+ i9 = i18 + 1 | 0;
+ i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i2;
+ HEAP32[i13 >> 2] = i16;
HEAP32[i12 >> 2] = 0;
- i9 = i18 + 4 | 0;
+ i10 = i18 + 4 | 0;
i7 = HEAP32[i3 >> 2] | 0;
i3 = HEAP32[i21 >> 2] | 0;
L13 : while (1) {
@@ -36900,44 +36084,44 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE1
} else i6 = 0;
}
i4 = HEAP8[i18 >> 0] | 0;
- i4 = (i4 & 1) == 0 ? (i4 & 255) >>> 1 : HEAP32[i9 >> 2] | 0;
- if ((HEAP32[i14 >> 2] | 0) == (i2 + i4 | 0)) {
+ i4 = (i4 & 1) == 0 ? (i4 & 255) >>> 1 : HEAP32[i10 >> 2] | 0;
+ if ((HEAP32[i15 >> 2] | 0) == (i2 + i4 | 0)) {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i4 << 1, 0);
if (!(HEAP8[i18 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i1, 0);
- i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i2 + i4;
+ i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i2 + i4;
}
- i5 = i3 + 12 | 0;
- i1 = HEAP32[i5 >> 2] | 0;
- i4 = i3 + 16 | 0;
- if ((i1 | 0) == (HEAP32[i4 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
- if (__ZNSt3__19__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i1, i16, i2, i14, i12, i7, i19, i15, i13, i11) | 0) {
+ i4 = i3 + 12 | 0;
+ i1 = HEAP32[i4 >> 2] | 0;
+ i5 = i3 + 16 | 0;
+ if ((i1 | 0) == (HEAP32[i5 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
+ if (__ZNSt3__19__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i1, i14, i2, i15, i12, i7, i19, i16, i13, i11) | 0) {
i4 = i6;
break;
}
- i1 = HEAP32[i5 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i4 >> 2] | 0)) {
+ i1 = HEAP32[i4 >> 2] | 0;
+ if ((i1 | 0) == (HEAP32[i5 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 40 >> 2] & 127](i3) | 0;
continue;
} else {
- HEAP32[i5 >> 2] = i1 + 4;
+ HEAP32[i4 >> 2] = i1 + 4;
continue;
}
}
i11 = HEAP8[i19 >> 0] | 0;
i1 = HEAP32[i13 >> 2] | 0;
- if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i1 - i15 | 0) < 160 : 0) {
+ if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i1 - i16 | 0) < 160 : 0) {
i11 = HEAP32[i12 >> 2] | 0;
i12 = i1 + 4 | 0;
HEAP32[i13 >> 2] = i12;
HEAP32[i1 >> 2] = i11;
i1 = i12;
}
- i16 = __ZNSt3__125__num_get_signed_integralIxEET_PKcS3_Rji(i2, HEAP32[i14 >> 2] | 0, i23, i16) | 0;
- HEAP32[i17 >> 2] = i16;
+ i15 = __ZNSt3__125__num_get_signed_integralIxEET_PKcS3_Rji(i2, HEAP32[i15 >> 2] | 0, i23, i14) | 0;
+ HEAP32[i17 >> 2] = i15;
HEAP32[i17 + 4 >> 2] = tempRet0;
- __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i15, i1, i23);
+ __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i16, i1, i23);
if (i3) {
i1 = HEAP32[i3 + 12 >> 2] | 0;
if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
@@ -36967,192 +36151,202 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE1
return i24 | 0;
}
-function __ZNSt3__114__scan_keywordINS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEPKNS_12basic_stringIwS3_NS_9allocatorIwEEEENS_5ctypeIwEEEET0_RT_SE_SD_SD_RKT1_Rjb(i15, i16, i1, i18, i14, i17, i13) {
- i15 = i15 | 0;
- i16 = i16 | 0;
- i1 = i1 | 0;
- i18 = i18 | 0;
- i14 = i14 | 0;
- i17 = i17 | 0;
- i13 = i13 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i19 = 0, i20 = 0, i21 = 0;
- i21 = STACKTOP;
- STACKTOP = STACKTOP + 112 | 0;
- i3 = i21;
- i4 = (i18 - i1 | 0) / 12 | 0;
- if (i4 >>> 0 > 100) {
- i3 = _malloc(i4) | 0;
- if (!i3) __ZSt17__throw_bad_allocv(); else {
- i19 = i3;
- i2 = i3;
- }
- } else {
- i19 = 0;
- i2 = i3;
- }
- i7 = i1;
- i3 = 0;
- i6 = i2;
- while (1) {
- if ((i7 | 0) == (i18 | 0)) break;
- i5 = HEAP8[i7 >> 0] | 0;
- if (!(i5 & 1)) i5 = (i5 & 255) >>> 1; else i5 = HEAP32[i7 + 4 >> 2] | 0;
- if (!i5) {
- HEAP8[i6 >> 0] = 2;
- i3 = i3 + 1 | 0;
- i4 = i4 + -1 | 0;
- } else HEAP8[i6 >> 0] = 1;
- i7 = i7 + 12 | 0;
- i6 = i6 + 1 | 0;
- }
- i12 = 0;
- i8 = i4;
- L17 : while (1) {
- i4 = HEAP32[i15 >> 2] | 0;
- do if (i4) {
- i5 = HEAP32[i4 + 12 >> 2] | 0;
- if ((i5 | 0) == (HEAP32[i4 + 16 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0; else i4 = HEAP32[i5 >> 2] | 0;
- if ((i4 | 0) == -1) {
- HEAP32[i15 >> 2] = 0;
- i7 = 1;
+function __ZN4wasm10WasmWalkerIZZNS_15Asm2WasmBuilder8optimizeEvEN19BlockBreakOptimizer10visitBlockEPNS_5BlockEE11BreakSeekervE4walkERPNS_10ExpressionE(i5, i6) {
+ i5 = i5 | 0;
+ i6 = i6 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0;
+ i1 = HEAP32[i6 >> 2] | 0;
+ if (i1 | 0) {
+ L3 : do switch (HEAP32[i1 >> 2] | 0) {
+ case 0:
+ {
+ _abort();
break;
- } else {
- i7 = (HEAP32[i15 >> 2] | 0) == 0;
+ }
+ case 1:
+ {
+ i4 = i1 + 12 | 0;
+ i1 = i1 + 16 | 0;
+ i3 = 0;
+ while (1) {
+ i2 = HEAP32[i4 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i1 >> 2] | 0) - i2 >> 2 >>> 0) break L3;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i2 + (i3 << 2) | 0);
+ i3 = i3 + 1 | 0;
+ }
+ }
+ case 2:
+ {
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 8 | 0);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 12 | 0);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 16 | 0);
break;
}
- } else i7 = 1; while (0);
- i5 = HEAP32[i16 >> 2] | 0;
- if (i5) {
- i4 = HEAP32[i5 + 12 >> 2] | 0;
- if ((i4 | 0) == (HEAP32[i5 + 16 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 36 >> 2] & 127](i5) | 0; else i4 = HEAP32[i4 >> 2] | 0;
- if ((i4 | 0) == -1) {
- HEAP32[i16 >> 2] = 0;
- i5 = 0;
- i6 = 1;
- } else i6 = 0;
- } else {
- i5 = 0;
- i6 = 1;
- }
- i4 = HEAP32[i15 >> 2] | 0;
- if (!((i8 | 0) != 0 & (i7 ^ i6))) break;
- i5 = HEAP32[i4 + 12 >> 2] | 0;
- if ((i5 | 0) == (HEAP32[i4 + 16 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0; else i4 = HEAP32[i5 >> 2] | 0;
- if (!i13) i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i14 >> 2] | 0) + 28 >> 2] & 31](i14, i4) | 0;
- i11 = i12 + 1 | 0;
- i7 = 0;
- i9 = i1;
- i10 = i8;
- i8 = i2;
- while (1) {
- if ((i9 | 0) == (i18 | 0)) break;
- do if ((HEAP8[i8 >> 0] | 0) == 1) {
- if (!(HEAP8[i9 >> 0] & 1)) i5 = i9 + 4 | 0; else i5 = HEAP32[i9 + 8 >> 2] | 0;
- i5 = HEAP32[i5 + (i12 << 2) >> 2] | 0;
- if (!i13) i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i14 >> 2] | 0) + 28 >> 2] & 31](i14, i5) | 0;
- if ((i4 | 0) != (i5 | 0)) {
- HEAP8[i8 >> 0] = 0;
- i5 = i7;
- i6 = i10 + -1 | 0;
- break;
+ case 3:
+ {
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 16 | 0);
+ break;
+ }
+ case 4:
+ {
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 8 | 0);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 16 | 0);
+ break;
+ }
+ case 5:
+ {
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 12 | 0);
+ i2 = HEAP32[i1 + 36 >> 2] | 0;
+ i1 = HEAP32[i1 + 32 >> 2] | 0;
+ while (1) {
+ if ((i1 | 0) == (i2 | 0)) break L3;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 4 | 0);
+ i1 = i1 + 8 | 0;
}
- i5 = HEAP8[i9 >> 0] | 0;
- if (!(i5 & 1)) i5 = (i5 & 255) >>> 1; else i5 = HEAP32[i9 + 4 >> 2] | 0;
- if ((i5 | 0) == (i11 | 0)) {
- HEAP8[i8 >> 0] = 2;
- i5 = 1;
+ }
+ case 6:
+ {
+ i4 = i1 + 12 | 0;
+ i1 = i1 + 8 | 0;
+ i3 = 0;
+ while (1) {
+ i2 = HEAP32[i1 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break L3;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i2 + (i3 << 2) | 0);
i3 = i3 + 1 | 0;
- i6 = i10 + -1 | 0;
- } else {
- i5 = 1;
- i6 = i10;
}
- } else {
- i5 = i7;
- i6 = i10;
- } while (0);
- i7 = i5;
- i9 = i9 + 12 | 0;
- i10 = i6;
- i8 = i8 + 1 | 0;
- }
- if (!i7) {
- i12 = i11;
- i8 = i10;
- continue;
- }
- i4 = HEAP32[i15 >> 2] | 0;
- i6 = i4 + 12 | 0;
- i5 = HEAP32[i6 >> 2] | 0;
- if ((i5 | 0) == (HEAP32[i4 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 40 >> 2] & 127](i4) | 0; else HEAP32[i6 >> 2] = i5 + 4;
- if ((i3 + i10 | 0) >>> 0 > 1) {
- i6 = i1;
- i5 = i2;
- } else {
- i12 = i11;
- i8 = i10;
- continue;
- }
- while (1) {
- if ((i6 | 0) == (i18 | 0)) {
- i12 = i11;
- i8 = i10;
- continue L17;
}
- if ((HEAP8[i5 >> 0] | 0) == 2) {
- i4 = HEAP8[i6 >> 0] | 0;
- if (!(i4 & 1)) i4 = (i4 & 255) >>> 1; else i4 = HEAP32[i6 + 4 >> 2] | 0;
- if ((i4 | 0) != (i11 | 0)) {
- HEAP8[i5 >> 0] = 0;
- i3 = i3 + -1 | 0;
+ case 7:
+ {
+ i4 = i1 + 12 | 0;
+ i1 = i1 + 8 | 0;
+ i3 = 0;
+ while (1) {
+ i2 = HEAP32[i1 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break L3;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i2 + (i3 << 2) | 0);
+ i3 = i3 + 1 | 0;
}
}
- i6 = i6 + 12 | 0;
- i5 = i5 + 1 | 0;
- }
- }
- do if (i4) {
- i3 = HEAP32[i4 + 12 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i4 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0; else i3 = HEAP32[i3 >> 2] | 0;
- if ((i3 | 0) == -1) {
- HEAP32[i15 >> 2] = 0;
- i4 = 1;
- break;
- } else {
- i4 = (HEAP32[i15 >> 2] | 0) == 0;
- break;
- }
- } else i4 = 1; while (0);
- do if (i5) {
- i3 = HEAP32[i5 + 12 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i5 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 36 >> 2] & 127](i5) | 0; else i3 = HEAP32[i3 >> 2] | 0;
- if ((i3 | 0) != -1) if (i4) break; else {
- i20 = 77;
+ case 8:
+ {
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 24 | 0);
+ i4 = i1 + 12 | 0;
+ i1 = i1 + 8 | 0;
+ i3 = 0;
+ while (1) {
+ i2 = HEAP32[i1 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break L3;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i2 + (i3 << 2) | 0);
+ i3 = i3 + 1 | 0;
+ }
+ }
+ case 20:
+ case 19:
+ case 13:
+ case 9:
break;
- } else {
- HEAP32[i16 >> 2] = 0;
- i20 = 41;
+ case 10:
+ {
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 12 | 0);
+ break;
+ }
+ case 11:
+ {
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 24 | 0);
+ break;
+ }
+ case 12:
+ {
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 20 | 0);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 24 | 0);
+ break;
+ }
+ case 14:
+ {
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 12 | 0);
+ break;
+ }
+ case 15:
+ {
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 12 | 0);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 16 | 0);
+ break;
+ }
+ case 16:
+ {
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 8 | 0);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 12 | 0);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 16 | 0);
+ break;
+ }
+ case 17:
+ {
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 8 | 0);
+ break;
+ }
+ case 18:
+ {
+ i4 = i1 + 20 | 0;
+ i1 = i1 + 16 | 0;
+ i3 = 0;
+ while (1) {
+ i2 = HEAP32[i1 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break L3;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i2 + (i3 << 2) | 0);
+ i3 = i3 + 1 | 0;
+ }
+ }
+ default:
+ {}
+ } while (0);
+ i1 = HEAP32[i6 >> 2] | 0;
+ if (!i1) ___assert_fail(27822, 27572, 1310, 27827);
+ switch (HEAP32[i1 >> 2] | 0) {
+ case 0:
+ {
+ _abort();
+ break;
+ }
+ case 20:
+ case 19:
+ case 18:
+ case 17:
+ case 16:
+ case 15:
+ case 14:
+ case 13:
+ case 12:
+ case 11:
+ case 10:
+ case 9:
+ case 8:
+ case 7:
+ case 6:
+ case 5:
+ case 3:
+ case 2:
+ case 1:
break;
+ case 4:
+ {
+ if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i5 + 8 >> 2] | 0)) {
+ i4 = i5 + 12 | 0;
+ HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 1;
+ }
+ break;
+ }
+ default:
+ {}
}
- } else i20 = 41; while (0);
- if ((i20 | 0) == 41) if (i4) i20 = 77;
- if ((i20 | 0) == 77) HEAP32[i17 >> 2] = HEAP32[i17 >> 2] | 2;
- while (1) {
- if ((i1 | 0) == (i18 | 0)) {
- i20 = 81;
- break;
+ i1 = i5 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ if (i2 | 0) {
+ HEAP32[i6 >> 2] = i2;
+ HEAP32[i1 >> 2] = 0;
}
- if ((HEAP8[i2 >> 0] | 0) == 2) break;
- i1 = i1 + 12 | 0;
- i2 = i2 + 1 | 0;
- }
- if ((i20 | 0) == 81) {
- HEAP32[i17 >> 2] = HEAP32[i17 >> 2] | 4;
- i1 = i18;
}
- _free(i19);
- STACKTOP = i21;
- return i1 | 0;
+ return;
}
function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__do_get_unsignedItEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i21, i22, i2, i23, i17) {
@@ -37169,28 +36363,28 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE1
i3 = i20 + 196 | 0;
i19 = i20 + 184 | 0;
i18 = i20 + 172 | 0;
- i14 = i20 + 168 | 0;
- i15 = i20 + 8 | 0;
+ i15 = i20 + 168 | 0;
+ i16 = i20 + 8 | 0;
i13 = i20 + 4 | 0;
i12 = i20;
switch (HEAP32[i2 + 4 >> 2] & 74 | 0) {
case 64:
{
- i16 = 8;
+ i14 = 8;
break;
}
case 8:
{
- i16 = 16;
+ i14 = 16;
break;
}
case 0:
{
- i16 = 0;
+ i14 = 0;
break;
}
default:
- i16 = 10;
+ i14 = 10;
}
__ZNSt3__19__num_getIwE17__stage2_int_prepERNS_8ios_baseEPwRw(i19, i2, i11, i3);
i1 = 0;
@@ -37202,12 +36396,12 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE1
if (!(HEAP8[i18 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i1, 0);
i8 = i18 + 8 | 0;
- i10 = i18 + 1 | 0;
- i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i2;
- HEAP32[i13 >> 2] = i15;
+ i9 = i18 + 1 | 0;
+ i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i2;
+ HEAP32[i13 >> 2] = i16;
HEAP32[i12 >> 2] = 0;
- i9 = i18 + 4 | 0;
+ i10 = i18 + 4 | 0;
i7 = HEAP32[i3 >> 2] | 0;
i3 = HEAP32[i21 >> 2] | 0;
L13 : while (1) {
@@ -37244,43 +36438,43 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE1
} else i6 = 0;
}
i4 = HEAP8[i18 >> 0] | 0;
- i4 = (i4 & 1) == 0 ? (i4 & 255) >>> 1 : HEAP32[i9 >> 2] | 0;
- if ((HEAP32[i14 >> 2] | 0) == (i2 + i4 | 0)) {
+ i4 = (i4 & 1) == 0 ? (i4 & 255) >>> 1 : HEAP32[i10 >> 2] | 0;
+ if ((HEAP32[i15 >> 2] | 0) == (i2 + i4 | 0)) {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i4 << 1, 0);
if (!(HEAP8[i18 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i1, 0);
- i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i2 + i4;
+ i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i2 + i4;
}
- i5 = i3 + 12 | 0;
- i1 = HEAP32[i5 >> 2] | 0;
- i4 = i3 + 16 | 0;
- if ((i1 | 0) == (HEAP32[i4 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
- if (__ZNSt3__19__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i1, i16, i2, i14, i12, i7, i19, i15, i13, i11) | 0) {
+ i4 = i3 + 12 | 0;
+ i1 = HEAP32[i4 >> 2] | 0;
+ i5 = i3 + 16 | 0;
+ if ((i1 | 0) == (HEAP32[i5 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
+ if (__ZNSt3__19__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i1, i14, i2, i15, i12, i7, i19, i16, i13, i11) | 0) {
i4 = i6;
break;
}
- i1 = HEAP32[i5 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i4 >> 2] | 0)) {
+ i1 = HEAP32[i4 >> 2] | 0;
+ if ((i1 | 0) == (HEAP32[i5 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 40 >> 2] & 127](i3) | 0;
continue;
} else {
- HEAP32[i5 >> 2] = i1 + 4;
+ HEAP32[i4 >> 2] = i1 + 4;
continue;
}
}
i11 = HEAP8[i19 >> 0] | 0;
i1 = HEAP32[i13 >> 2] | 0;
- if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i1 - i15 | 0) < 160 : 0) {
+ if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i1 - i16 | 0) < 160 : 0) {
i11 = HEAP32[i12 >> 2] | 0;
i12 = i1 + 4 | 0;
HEAP32[i13 >> 2] = i12;
HEAP32[i1 >> 2] = i11;
i1 = i12;
}
- i16 = __ZNSt3__127__num_get_unsigned_integralItEET_PKcS3_Rji(i2, HEAP32[i14 >> 2] | 0, i23, i16) | 0;
- HEAP16[i17 >> 1] = i16;
- __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i15, i1, i23);
+ i15 = __ZNSt3__127__num_get_unsigned_integralItEET_PKcS3_Rji(i2, HEAP32[i15 >> 2] | 0, i23, i14) | 0;
+ HEAP16[i17 >> 1] = i15;
+ __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i16, i1, i23);
if (i3) {
i1 = HEAP32[i3 + 12 >> 2] | 0;
if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
@@ -37324,28 +36518,28 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE1
i3 = i20 + 196 | 0;
i19 = i20 + 184 | 0;
i18 = i20 + 172 | 0;
- i14 = i20 + 168 | 0;
- i15 = i20 + 8 | 0;
+ i15 = i20 + 168 | 0;
+ i16 = i20 + 8 | 0;
i13 = i20 + 4 | 0;
i12 = i20;
switch (HEAP32[i2 + 4 >> 2] & 74 | 0) {
case 64:
{
- i16 = 8;
+ i14 = 8;
break;
}
case 8:
{
- i16 = 16;
+ i14 = 16;
break;
}
case 0:
{
- i16 = 0;
+ i14 = 0;
break;
}
default:
- i16 = 10;
+ i14 = 10;
}
__ZNSt3__19__num_getIwE17__stage2_int_prepERNS_8ios_baseEPwRw(i19, i2, i11, i3);
i1 = 0;
@@ -37357,12 +36551,12 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE1
if (!(HEAP8[i18 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i1, 0);
i8 = i18 + 8 | 0;
- i10 = i18 + 1 | 0;
- i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i2;
- HEAP32[i13 >> 2] = i15;
+ i9 = i18 + 1 | 0;
+ i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i2;
+ HEAP32[i13 >> 2] = i16;
HEAP32[i12 >> 2] = 0;
- i9 = i18 + 4 | 0;
+ i10 = i18 + 4 | 0;
i7 = HEAP32[i3 >> 2] | 0;
i3 = HEAP32[i21 >> 2] | 0;
L13 : while (1) {
@@ -37399,43 +36593,43 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE1
} else i6 = 0;
}
i4 = HEAP8[i18 >> 0] | 0;
- i4 = (i4 & 1) == 0 ? (i4 & 255) >>> 1 : HEAP32[i9 >> 2] | 0;
- if ((HEAP32[i14 >> 2] | 0) == (i2 + i4 | 0)) {
+ i4 = (i4 & 1) == 0 ? (i4 & 255) >>> 1 : HEAP32[i10 >> 2] | 0;
+ if ((HEAP32[i15 >> 2] | 0) == (i2 + i4 | 0)) {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i4 << 1, 0);
if (!(HEAP8[i18 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i1, 0);
- i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i2 + i4;
+ i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i2 + i4;
}
- i5 = i3 + 12 | 0;
- i1 = HEAP32[i5 >> 2] | 0;
- i4 = i3 + 16 | 0;
- if ((i1 | 0) == (HEAP32[i4 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
- if (__ZNSt3__19__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i1, i16, i2, i14, i12, i7, i19, i15, i13, i11) | 0) {
+ i4 = i3 + 12 | 0;
+ i1 = HEAP32[i4 >> 2] | 0;
+ i5 = i3 + 16 | 0;
+ if ((i1 | 0) == (HEAP32[i5 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
+ if (__ZNSt3__19__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i1, i14, i2, i15, i12, i7, i19, i16, i13, i11) | 0) {
i4 = i6;
break;
}
- i1 = HEAP32[i5 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i4 >> 2] | 0)) {
+ i1 = HEAP32[i4 >> 2] | 0;
+ if ((i1 | 0) == (HEAP32[i5 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 40 >> 2] & 127](i3) | 0;
continue;
} else {
- HEAP32[i5 >> 2] = i1 + 4;
+ HEAP32[i4 >> 2] = i1 + 4;
continue;
}
}
i11 = HEAP8[i19 >> 0] | 0;
i1 = HEAP32[i13 >> 2] | 0;
- if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i1 - i15 | 0) < 160 : 0) {
+ if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i1 - i16 | 0) < 160 : 0) {
i11 = HEAP32[i12 >> 2] | 0;
i12 = i1 + 4 | 0;
HEAP32[i13 >> 2] = i12;
HEAP32[i1 >> 2] = i11;
i1 = i12;
}
- i16 = __ZNSt3__127__num_get_unsigned_integralImEET_PKcS3_Rji(i2, HEAP32[i14 >> 2] | 0, i23, i16) | 0;
- HEAP32[i17 >> 2] = i16;
- __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i15, i1, i23);
+ i15 = __ZNSt3__127__num_get_unsigned_integralImEET_PKcS3_Rji(i2, HEAP32[i15 >> 2] | 0, i23, i14) | 0;
+ HEAP32[i17 >> 2] = i15;
+ __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i16, i1, i23);
if (i3) {
i1 = HEAP32[i3 + 12 >> 2] | 0;
if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
@@ -37479,28 +36673,28 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE1
i3 = i20 + 196 | 0;
i19 = i20 + 184 | 0;
i18 = i20 + 172 | 0;
- i14 = i20 + 168 | 0;
- i15 = i20 + 8 | 0;
+ i15 = i20 + 168 | 0;
+ i16 = i20 + 8 | 0;
i13 = i20 + 4 | 0;
i12 = i20;
switch (HEAP32[i2 + 4 >> 2] & 74 | 0) {
case 64:
{
- i16 = 8;
+ i14 = 8;
break;
}
case 8:
{
- i16 = 16;
+ i14 = 16;
break;
}
case 0:
{
- i16 = 0;
+ i14 = 0;
break;
}
default:
- i16 = 10;
+ i14 = 10;
}
__ZNSt3__19__num_getIwE17__stage2_int_prepERNS_8ios_baseEPwRw(i19, i2, i11, i3);
i1 = 0;
@@ -37512,12 +36706,12 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE1
if (!(HEAP8[i18 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i1, 0);
i8 = i18 + 8 | 0;
- i10 = i18 + 1 | 0;
- i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i2;
- HEAP32[i13 >> 2] = i15;
+ i9 = i18 + 1 | 0;
+ i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i2;
+ HEAP32[i13 >> 2] = i16;
HEAP32[i12 >> 2] = 0;
- i9 = i18 + 4 | 0;
+ i10 = i18 + 4 | 0;
i7 = HEAP32[i3 >> 2] | 0;
i3 = HEAP32[i21 >> 2] | 0;
L13 : while (1) {
@@ -37554,43 +36748,43 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE1
} else i6 = 0;
}
i4 = HEAP8[i18 >> 0] | 0;
- i4 = (i4 & 1) == 0 ? (i4 & 255) >>> 1 : HEAP32[i9 >> 2] | 0;
- if ((HEAP32[i14 >> 2] | 0) == (i2 + i4 | 0)) {
+ i4 = (i4 & 1) == 0 ? (i4 & 255) >>> 1 : HEAP32[i10 >> 2] | 0;
+ if ((HEAP32[i15 >> 2] | 0) == (i2 + i4 | 0)) {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i4 << 1, 0);
if (!(HEAP8[i18 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i1, 0);
- i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i2 + i4;
+ i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i2 + i4;
}
- i5 = i3 + 12 | 0;
- i1 = HEAP32[i5 >> 2] | 0;
- i4 = i3 + 16 | 0;
- if ((i1 | 0) == (HEAP32[i4 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
- if (__ZNSt3__19__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i1, i16, i2, i14, i12, i7, i19, i15, i13, i11) | 0) {
+ i4 = i3 + 12 | 0;
+ i1 = HEAP32[i4 >> 2] | 0;
+ i5 = i3 + 16 | 0;
+ if ((i1 | 0) == (HEAP32[i5 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
+ if (__ZNSt3__19__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i1, i14, i2, i15, i12, i7, i19, i16, i13, i11) | 0) {
i4 = i6;
break;
}
- i1 = HEAP32[i5 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i4 >> 2] | 0)) {
+ i1 = HEAP32[i4 >> 2] | 0;
+ if ((i1 | 0) == (HEAP32[i5 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 40 >> 2] & 127](i3) | 0;
continue;
} else {
- HEAP32[i5 >> 2] = i1 + 4;
+ HEAP32[i4 >> 2] = i1 + 4;
continue;
}
}
i11 = HEAP8[i19 >> 0] | 0;
i1 = HEAP32[i13 >> 2] | 0;
- if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i1 - i15 | 0) < 160 : 0) {
+ if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i1 - i16 | 0) < 160 : 0) {
i11 = HEAP32[i12 >> 2] | 0;
i12 = i1 + 4 | 0;
HEAP32[i13 >> 2] = i12;
HEAP32[i1 >> 2] = i11;
i1 = i12;
}
- i16 = __ZNSt3__127__num_get_unsigned_integralIjEET_PKcS3_Rji(i2, HEAP32[i14 >> 2] | 0, i23, i16) | 0;
- HEAP32[i17 >> 2] = i16;
- __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i15, i1, i23);
+ i15 = __ZNSt3__127__num_get_unsigned_integralIjEET_PKcS3_Rji(i2, HEAP32[i15 >> 2] | 0, i23, i14) | 0;
+ HEAP32[i17 >> 2] = i15;
+ __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i16, i1, i23);
if (i3) {
i1 = HEAP32[i3 + 12 >> 2] | 0;
if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
@@ -37634,28 +36828,28 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE1
i3 = i20 + 196 | 0;
i19 = i20 + 184 | 0;
i18 = i20 + 172 | 0;
- i14 = i20 + 168 | 0;
- i15 = i20 + 8 | 0;
+ i15 = i20 + 168 | 0;
+ i16 = i20 + 8 | 0;
i13 = i20 + 4 | 0;
i12 = i20;
switch (HEAP32[i2 + 4 >> 2] & 74 | 0) {
case 64:
{
- i16 = 8;
+ i14 = 8;
break;
}
case 8:
{
- i16 = 16;
+ i14 = 16;
break;
}
case 0:
{
- i16 = 0;
+ i14 = 0;
break;
}
default:
- i16 = 10;
+ i14 = 10;
}
__ZNSt3__19__num_getIwE17__stage2_int_prepERNS_8ios_baseEPwRw(i19, i2, i11, i3);
i1 = 0;
@@ -37667,12 +36861,12 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE1
if (!(HEAP8[i18 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i1, 0);
i8 = i18 + 8 | 0;
- i10 = i18 + 1 | 0;
- i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i2;
- HEAP32[i13 >> 2] = i15;
+ i9 = i18 + 1 | 0;
+ i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i2;
+ HEAP32[i13 >> 2] = i16;
HEAP32[i12 >> 2] = 0;
- i9 = i18 + 4 | 0;
+ i10 = i18 + 4 | 0;
i7 = HEAP32[i3 >> 2] | 0;
i3 = HEAP32[i21 >> 2] | 0;
L13 : while (1) {
@@ -37709,43 +36903,43 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE1
} else i6 = 0;
}
i4 = HEAP8[i18 >> 0] | 0;
- i4 = (i4 & 1) == 0 ? (i4 & 255) >>> 1 : HEAP32[i9 >> 2] | 0;
- if ((HEAP32[i14 >> 2] | 0) == (i2 + i4 | 0)) {
+ i4 = (i4 & 1) == 0 ? (i4 & 255) >>> 1 : HEAP32[i10 >> 2] | 0;
+ if ((HEAP32[i15 >> 2] | 0) == (i2 + i4 | 0)) {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i4 << 1, 0);
if (!(HEAP8[i18 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i1, 0);
- i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i2 + i4;
+ i2 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i2 + i4;
}
- i5 = i3 + 12 | 0;
- i1 = HEAP32[i5 >> 2] | 0;
- i4 = i3 + 16 | 0;
- if ((i1 | 0) == (HEAP32[i4 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
- if (__ZNSt3__19__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i1, i16, i2, i14, i12, i7, i19, i15, i13, i11) | 0) {
+ i4 = i3 + 12 | 0;
+ i1 = HEAP32[i4 >> 2] | 0;
+ i5 = i3 + 16 | 0;
+ if ((i1 | 0) == (HEAP32[i5 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
+ if (__ZNSt3__19__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i1, i14, i2, i15, i12, i7, i19, i16, i13, i11) | 0) {
i4 = i6;
break;
}
- i1 = HEAP32[i5 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i4 >> 2] | 0)) {
+ i1 = HEAP32[i4 >> 2] | 0;
+ if ((i1 | 0) == (HEAP32[i5 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 40 >> 2] & 127](i3) | 0;
continue;
} else {
- HEAP32[i5 >> 2] = i1 + 4;
+ HEAP32[i4 >> 2] = i1 + 4;
continue;
}
}
i11 = HEAP8[i19 >> 0] | 0;
i1 = HEAP32[i13 >> 2] | 0;
- if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i1 - i15 | 0) < 160 : 0) {
+ if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i1 - i16 | 0) < 160 : 0) {
i11 = HEAP32[i12 >> 2] | 0;
i12 = i1 + 4 | 0;
HEAP32[i13 >> 2] = i12;
HEAP32[i1 >> 2] = i11;
i1 = i12;
}
- i16 = __ZNSt3__125__num_get_signed_integralIlEET_PKcS3_Rji(i2, HEAP32[i14 >> 2] | 0, i23, i16) | 0;
- HEAP32[i17 >> 2] = i16;
- __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i15, i1, i23);
+ i15 = __ZNSt3__125__num_get_signed_integralIlEET_PKcS3_Rji(i2, HEAP32[i15 >> 2] | 0, i23, i14) | 0;
+ HEAP32[i17 >> 2] = i15;
+ __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i16, i1, i23);
if (i3) {
i1 = HEAP32[i3 + 12 >> 2] | 0;
if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
@@ -37779,12 +36973,12 @@ function _try_realloc_chunk(i14, i13) {
i14 = i14 | 0;
i13 = i13 | 0;
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0;
- i12 = i14 + 4 | 0;
- i11 = HEAP32[i12 >> 2] | 0;
- i1 = i11 & -8;
+ i11 = i14 + 4 | 0;
+ i12 = HEAP32[i11 >> 2] | 0;
+ i1 = i12 & -8;
i8 = i14 + i1 | 0;
- i6 = HEAP32[9359] | 0;
- i2 = i11 & 3;
+ i6 = HEAP32[9727] | 0;
+ i2 = i12 & 3;
if (!((i2 | 0) != 1 & i14 >>> 0 >= i6 >>> 0 & i14 >>> 0 < i8 >>> 0)) _abort();
i3 = HEAP32[i8 + 4 >> 2] | 0;
if (!(i3 & 1)) _abort();
@@ -37793,7 +36987,7 @@ function _try_realloc_chunk(i14, i13) {
i14 = 0;
return i14 | 0;
}
- if (i1 >>> 0 >= (i13 + 4 | 0) >>> 0 ? (i1 - i13 | 0) >>> 0 <= HEAP32[9475] << 1 >>> 0 : 0) return i14 | 0;
+ if (i1 >>> 0 >= (i13 + 4 | 0) >>> 0 ? (i1 - i13 | 0) >>> 0 <= HEAP32[9843] << 1 >>> 0 : 0) return i14 | 0;
i14 = 0;
return i14 | 0;
}
@@ -37801,29 +36995,29 @@ function _try_realloc_chunk(i14, i13) {
i1 = i1 - i13 | 0;
if (i1 >>> 0 <= 15) return i14 | 0;
i10 = i14 + i13 | 0;
- HEAP32[i12 >> 2] = i11 & 1 | i13 | 2;
+ HEAP32[i11 >> 2] = i12 & 1 | i13 | 2;
HEAP32[i10 + 4 >> 2] = i1 | 3;
i13 = i10 + i1 + 4 | 0;
HEAP32[i13 >> 2] = HEAP32[i13 >> 2] | 1;
_dispose_chunk(i10, i1);
return i14 | 0;
}
- if ((i8 | 0) == (HEAP32[9361] | 0)) {
- i1 = (HEAP32[9358] | 0) + i1 | 0;
+ if ((i8 | 0) == (HEAP32[9729] | 0)) {
+ i1 = (HEAP32[9726] | 0) + i1 | 0;
if (i1 >>> 0 <= i13 >>> 0) {
i14 = 0;
return i14 | 0;
}
i10 = i1 - i13 | 0;
i9 = i14 + i13 | 0;
- HEAP32[i12 >> 2] = i11 & 1 | i13 | 2;
+ HEAP32[i11 >> 2] = i12 & 1 | i13 | 2;
HEAP32[i9 + 4 >> 2] = i10 | 1;
- HEAP32[9361] = i9;
- HEAP32[9358] = i10;
+ HEAP32[9729] = i9;
+ HEAP32[9726] = i10;
return i14 | 0;
}
- if ((i8 | 0) == (HEAP32[9360] | 0)) {
- i2 = (HEAP32[9357] | 0) + i1 | 0;
+ if ((i8 | 0) == (HEAP32[9728] | 0)) {
+ i2 = (HEAP32[9725] | 0) + i1 | 0;
if (i2 >>> 0 < i13 >>> 0) {
i14 = 0;
return i14 | 0;
@@ -37832,20 +37026,20 @@ function _try_realloc_chunk(i14, i13) {
if (i1 >>> 0 > 15) {
i2 = i14 + i13 | 0;
i10 = i2 + i1 | 0;
- HEAP32[i12 >> 2] = i11 & 1 | i13 | 2;
+ HEAP32[i11 >> 2] = i12 & 1 | i13 | 2;
HEAP32[i2 + 4 >> 2] = i1 | 1;
HEAP32[i10 >> 2] = i1;
i13 = i10 + 4 | 0;
HEAP32[i13 >> 2] = HEAP32[i13 >> 2] & -2;
} else {
- HEAP32[i12 >> 2] = i11 & 1 | i2 | 2;
+ HEAP32[i11 >> 2] = i12 & 1 | i2 | 2;
i2 = i14 + i2 + 4 | 0;
HEAP32[i2 >> 2] = HEAP32[i2 >> 2] | 1;
i2 = 0;
i1 = 0;
}
- HEAP32[9357] = i1;
- HEAP32[9360] = i2;
+ HEAP32[9725] = i1;
+ HEAP32[9728] = i2;
return i14 | 0;
}
if (i3 & 2 | 0) {
@@ -37863,29 +37057,29 @@ function _try_realloc_chunk(i14, i13) {
i5 = HEAP32[i8 + 24 >> 2] | 0;
i3 = HEAP32[i8 + 12 >> 2] | 0;
do if ((i3 | 0) == (i8 | 0)) {
- i3 = i8 + 16 | 0;
- i2 = i3 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i2 = i8 + 16 | 0;
+ i3 = i2 + 4 | 0;
+ i1 = HEAP32[i3 >> 2] | 0;
if (!i1) {
- i1 = HEAP32[i3 >> 2] | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
i7 = 0;
break;
- } else i2 = i3;
- }
+ }
+ } else i2 = i3;
while (1) {
- i4 = i1 + 20 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if (i3 | 0) {
- i1 = i3;
- i2 = i4;
+ i3 = i1 + 20 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if (i4 | 0) {
+ i1 = i4;
+ i2 = i3;
continue;
}
- i4 = i1 + 16 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if (!i3) break; else {
- i1 = i3;
- i2 = i4;
+ i3 = i1 + 16 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if (!i4) break; else {
+ i1 = i4;
+ i2 = i3;
}
}
if (i2 >>> 0 < i6 >>> 0) _abort(); else {
@@ -37908,31 +37102,31 @@ function _try_realloc_chunk(i14, i13) {
} while (0);
if (i5 | 0) {
i1 = HEAP32[i8 + 28 >> 2] | 0;
- i2 = 37724 + (i1 << 2) | 0;
+ i2 = 39196 + (i1 << 2) | 0;
if ((i8 | 0) == (HEAP32[i2 >> 2] | 0)) {
HEAP32[i2 >> 2] = i7;
if (!i7) {
- HEAP32[9356] = HEAP32[9356] & ~(1 << i1);
+ HEAP32[9724] = HEAP32[9724] & ~(1 << i1);
break;
}
} else {
- if (i5 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort();
+ if (i5 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort();
i1 = i5 + 16 | 0;
if ((HEAP32[i1 >> 2] | 0) == (i8 | 0)) HEAP32[i1 >> 2] = i7; else HEAP32[i5 + 20 >> 2] = i7;
if (!i7) break;
}
- i3 = HEAP32[9359] | 0;
+ i3 = HEAP32[9727] | 0;
if (i7 >>> 0 < i3 >>> 0) _abort();
HEAP32[i7 + 24 >> 2] = i5;
- i2 = i8 + 16 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- do if (i1 | 0) if (i1 >>> 0 < i3 >>> 0) _abort(); else {
- HEAP32[i7 + 16 >> 2] = i1;
- HEAP32[i1 + 24 >> 2] = i7;
+ i1 = i8 + 16 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ do if (i2 | 0) if (i2 >>> 0 < i3 >>> 0) _abort(); else {
+ HEAP32[i7 + 16 >> 2] = i2;
+ HEAP32[i2 + 24 >> 2] = i7;
break;
} while (0);
- i1 = HEAP32[i2 + 4 >> 2] | 0;
- if (i1 | 0) if (i1 >>> 0 < (HEAP32[9359] | 0) >>> 0) _abort(); else {
+ i1 = HEAP32[i1 + 4 >> 2] | 0;
+ if (i1 | 0) if (i1 >>> 0 < (HEAP32[9727] | 0) >>> 0) _abort(); else {
HEAP32[i7 + 20 >> 2] = i1;
HEAP32[i1 + 24 >> 2] = i7;
break;
@@ -37941,13 +37135,13 @@ function _try_realloc_chunk(i14, i13) {
} else {
i2 = HEAP32[i8 + 8 >> 2] | 0;
i3 = HEAP32[i8 + 12 >> 2] | 0;
- i1 = 37460 + (i4 << 1 << 2) | 0;
+ i1 = 38932 + (i4 << 1 << 2) | 0;
if ((i2 | 0) != (i1 | 0)) {
if (i2 >>> 0 < i6 >>> 0) _abort();
if ((HEAP32[i2 + 12 >> 2] | 0) != (i8 | 0)) _abort();
}
if ((i3 | 0) == (i2 | 0)) {
- HEAP32[9355] = HEAP32[9355] & ~(1 << i4);
+ HEAP32[9723] = HEAP32[9723] & ~(1 << i4);
break;
}
if ((i3 | 0) != (i1 | 0)) {
@@ -37959,13 +37153,13 @@ function _try_realloc_chunk(i14, i13) {
HEAP32[i5 >> 2] = i2;
} while (0);
if (i10 >>> 0 < 16) {
- HEAP32[i12 >> 2] = i9 | i11 & 1 | 2;
+ HEAP32[i11 >> 2] = i9 | i12 & 1 | 2;
i13 = i14 + i9 + 4 | 0;
HEAP32[i13 >> 2] = HEAP32[i13 >> 2] | 1;
return i14 | 0;
} else {
i9 = i14 + i13 | 0;
- HEAP32[i12 >> 2] = i11 & 1 | i13 | 2;
+ HEAP32[i11 >> 2] = i12 & 1 | i13 | 2;
HEAP32[i9 + 4 >> 2] = i10 | 3;
i13 = i9 + i10 + 4 | 0;
HEAP32[i13 >> 2] = HEAP32[i13 >> 2] | 1;
@@ -38006,14 +37200,14 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE2
if (!(HEAP8[i20 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i20 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0);
i9 = i20 + 8 | 0;
- i11 = i20 + 1 | 0;
- i2 = (HEAP8[i20 >> 0] & 1) == 0 ? i11 : HEAP32[i9 >> 2] | 0;
+ i10 = i20 + 1 | 0;
+ i2 = (HEAP8[i20 >> 0] & 1) == 0 ? i10 : HEAP32[i9 >> 2] | 0;
HEAP32[i17 >> 2] = i2;
HEAP32[i15 >> 2] = i18;
HEAP32[i14 >> 2] = 0;
HEAP8[i16 >> 0] = 1;
HEAP8[i13 >> 0] = 69;
- i10 = i20 + 4 | 0;
+ i11 = i20 + 4 | 0;
i8 = HEAP32[i3 >> 2] | 0;
i7 = HEAP32[i4 >> 2] | 0;
i3 = HEAP32[i23 >> 2] | 0;
@@ -38048,25 +37242,25 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE2
} else i4 = 0;
}
i5 = HEAP8[i20 >> 0] | 0;
- i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i10 >> 2] | 0;
+ i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i11 >> 2] | 0;
if ((HEAP32[i17 >> 2] | 0) == (i2 + i5 | 0)) {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i5 << 1, 0);
if (!(HEAP8[i20 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i20 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0);
- i2 = (HEAP8[i20 >> 0] & 1) == 0 ? i11 : HEAP32[i9 >> 2] | 0;
+ i2 = (HEAP8[i20 >> 0] & 1) == 0 ? i10 : HEAP32[i9 >> 2] | 0;
HEAP32[i17 >> 2] = i2 + i5;
}
- i6 = i3 + 12 | 0;
- i1 = HEAP32[i6 >> 2] | 0;
- i5 = i3 + 16 | 0;
- if ((i1 | 0) == (HEAP32[i5 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
+ i5 = i3 + 12 | 0;
+ i1 = HEAP32[i5 >> 2] | 0;
+ i6 = i3 + 16 | 0;
+ if ((i1 | 0) == (HEAP32[i6 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
if (__ZNSt3__19__num_getIwE19__stage2_float_loopEwRbRcPcRS4_wwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSE_RjPw(i1, i16, i13, i2, i17, i8, i7, i21, i18, i15, i14, i12) | 0) break;
- i1 = HEAP32[i6 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i5 >> 2] | 0)) {
+ i1 = HEAP32[i5 >> 2] | 0;
+ if ((i1 | 0) == (HEAP32[i6 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 40 >> 2] & 127](i3) | 0;
continue;
} else {
- HEAP32[i6 >> 2] = i1 + 4;
+ HEAP32[i5 >> 2] = i1 + 4;
continue;
}
}
@@ -38142,14 +37336,14 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE2
if (!(HEAP8[i20 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i20 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0);
i9 = i20 + 8 | 0;
- i11 = i20 + 1 | 0;
- i2 = (HEAP8[i20 >> 0] & 1) == 0 ? i11 : HEAP32[i9 >> 2] | 0;
+ i10 = i20 + 1 | 0;
+ i2 = (HEAP8[i20 >> 0] & 1) == 0 ? i10 : HEAP32[i9 >> 2] | 0;
HEAP32[i17 >> 2] = i2;
HEAP32[i15 >> 2] = i18;
HEAP32[i14 >> 2] = 0;
HEAP8[i16 >> 0] = 1;
HEAP8[i13 >> 0] = 69;
- i10 = i20 + 4 | 0;
+ i11 = i20 + 4 | 0;
i8 = HEAP32[i3 >> 2] | 0;
i7 = HEAP32[i4 >> 2] | 0;
i3 = HEAP32[i23 >> 2] | 0;
@@ -38184,25 +37378,25 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE2
} else i4 = 0;
}
i5 = HEAP8[i20 >> 0] | 0;
- i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i10 >> 2] | 0;
+ i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i11 >> 2] | 0;
if ((HEAP32[i17 >> 2] | 0) == (i2 + i5 | 0)) {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i5 << 1, 0);
if (!(HEAP8[i20 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i20 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0);
- i2 = (HEAP8[i20 >> 0] & 1) == 0 ? i11 : HEAP32[i9 >> 2] | 0;
+ i2 = (HEAP8[i20 >> 0] & 1) == 0 ? i10 : HEAP32[i9 >> 2] | 0;
HEAP32[i17 >> 2] = i2 + i5;
}
- i6 = i3 + 12 | 0;
- i1 = HEAP32[i6 >> 2] | 0;
- i5 = i3 + 16 | 0;
- if ((i1 | 0) == (HEAP32[i5 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
+ i5 = i3 + 12 | 0;
+ i1 = HEAP32[i5 >> 2] | 0;
+ i6 = i3 + 16 | 0;
+ if ((i1 | 0) == (HEAP32[i6 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
if (__ZNSt3__19__num_getIwE19__stage2_float_loopEwRbRcPcRS4_wwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSE_RjPw(i1, i16, i13, i2, i17, i8, i7, i21, i18, i15, i14, i12) | 0) break;
- i1 = HEAP32[i6 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i5 >> 2] | 0)) {
+ i1 = HEAP32[i5 >> 2] | 0;
+ if ((i1 | 0) == (HEAP32[i6 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 40 >> 2] & 127](i3) | 0;
continue;
} else {
- HEAP32[i6 >> 2] = i1 + 4;
+ HEAP32[i5 >> 2] = i1 + 4;
continue;
}
}
@@ -38278,14 +37472,14 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE2
if (!(HEAP8[i20 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i20 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0);
i9 = i20 + 8 | 0;
- i11 = i20 + 1 | 0;
- i2 = (HEAP8[i20 >> 0] & 1) == 0 ? i11 : HEAP32[i9 >> 2] | 0;
+ i10 = i20 + 1 | 0;
+ i2 = (HEAP8[i20 >> 0] & 1) == 0 ? i10 : HEAP32[i9 >> 2] | 0;
HEAP32[i17 >> 2] = i2;
HEAP32[i15 >> 2] = i18;
HEAP32[i14 >> 2] = 0;
HEAP8[i16 >> 0] = 1;
HEAP8[i13 >> 0] = 69;
- i10 = i20 + 4 | 0;
+ i11 = i20 + 4 | 0;
i8 = HEAP32[i3 >> 2] | 0;
i7 = HEAP32[i4 >> 2] | 0;
i3 = HEAP32[i23 >> 2] | 0;
@@ -38320,25 +37514,25 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE2
} else i4 = 0;
}
i5 = HEAP8[i20 >> 0] | 0;
- i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i10 >> 2] | 0;
+ i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i11 >> 2] | 0;
if ((HEAP32[i17 >> 2] | 0) == (i2 + i5 | 0)) {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i5 << 1, 0);
if (!(HEAP8[i20 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i20 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0);
- i2 = (HEAP8[i20 >> 0] & 1) == 0 ? i11 : HEAP32[i9 >> 2] | 0;
+ i2 = (HEAP8[i20 >> 0] & 1) == 0 ? i10 : HEAP32[i9 >> 2] | 0;
HEAP32[i17 >> 2] = i2 + i5;
}
- i6 = i3 + 12 | 0;
- i1 = HEAP32[i6 >> 2] | 0;
- i5 = i3 + 16 | 0;
- if ((i1 | 0) == (HEAP32[i5 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
+ i5 = i3 + 12 | 0;
+ i1 = HEAP32[i5 >> 2] | 0;
+ i6 = i3 + 16 | 0;
+ if ((i1 | 0) == (HEAP32[i6 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
if (__ZNSt3__19__num_getIwE19__stage2_float_loopEwRbRcPcRS4_wwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSE_RjPw(i1, i16, i13, i2, i17, i8, i7, i21, i18, i15, i14, i12) | 0) break;
- i1 = HEAP32[i6 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i5 >> 2] | 0)) {
+ i1 = HEAP32[i5 >> 2] | 0;
+ if ((i1 | 0) == (HEAP32[i6 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 40 >> 2] & 127](i3) | 0;
continue;
} else {
- HEAP32[i6 >> 2] = i1 + 4;
+ HEAP32[i5 >> 2] = i1 + 4;
continue;
}
}
@@ -38392,89 +37586,89 @@ function _call_from_js(i2) {
i1 = i21 + 100 | 0;
i3 = i21 + 104 | 0;
i4 = i21 + 84 | 0;
- i14 = i21 + 88 | 0;
- i15 = i21 + 32 | 0;
- i16 = i21 + 16 | 0;
- i17 = i21;
+ i17 = i21 + 88 | 0;
+ i13 = i21 + 32 | 0;
+ i14 = i21 + 16 | 0;
+ i15 = i21;
i18 = i21 + 48 | 0;
- i13 = i21 + 80 | 0;
- if (HEAP8[40892] | 0) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38004, 14148) | 0, i2) | 0, 10) | 0;
+ i16 = i21 + 80 | 0;
+ if (HEAP8[42364] | 0) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39476, 14667) | 0, i2) | 0, 10) | 0;
__ZN6cashew7IStringC2EPKcb(i1, i2, 1);
- i11 = (HEAP32[HEAP32[9223] >> 2] | 0) + 72 | 0;
+ i11 = (HEAP32[HEAP32[9591] >> 2] | 0) + 72 | 0;
i12 = HEAP32[i1 >> 2] | 0;
HEAP32[i3 >> 2] = i12;
i11 = __ZNSt3__13mapIN4wasm4NameEPNS1_6ExportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixEOS2_(i11, i3) | 0;
- i1 = (HEAP32[HEAP32[9223] >> 2] | 0) + 84 | 0;
+ i1 = (HEAP32[HEAP32[9591] >> 2] | 0) + 84 | 0;
HEAP32[i4 >> 2] = HEAP32[(HEAP32[i11 >> 2] | 0) + 4 >> 2];
i1 = __ZNSt3__13mapIN4wasm4NameEPNS1_8FunctionENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixEOS2_(i1, i4) | 0;
i1 = HEAP32[i1 >> 2] | 0;
- if (!i1) ___assert_fail(26908, 14162, 292, 14178);
+ if (!i1) ___assert_fail(28260, 14681, 292, 14697);
i10 = _emscripten_asm_const_i(8) | 0;
i11 = i1 + 8 | 0;
- i9 = (HEAP32[i1 + 12 >> 2] | 0) - (HEAP32[i11 >> 2] | 0) >> 3;
- HEAP32[i14 >> 2] = 0;
- i6 = i14 + 4 | 0;
- HEAP32[i6 >> 2] = 0;
- HEAP32[i14 + 8 >> 2] = 0;
- i3 = i15 + 8 | 0;
+ i2 = (HEAP32[i1 + 12 >> 2] | 0) - (HEAP32[i11 >> 2] | 0) >> 3;
+ HEAP32[i17 >> 2] = 0;
+ i3 = i17 + 4 | 0;
+ HEAP32[i3 >> 2] = 0;
+ HEAP32[i17 + 8 >> 2] = 0;
+ i4 = i13 + 8 | 0;
+ i6 = i17 + 8 | 0;
i7 = i14 + 8 | 0;
- i4 = i16 + 8 | 0;
- i2 = i17 + 8 | 0;
- i8 = 0;
+ i8 = i15 + 8 | 0;
+ i9 = 0;
L7 : while (1) {
- if (i8 >>> 0 >= i9 >>> 0) break;
- L10 : do switch (HEAP32[(HEAP32[i11 >> 2] | 0) + (i8 << 3) + 4 >> 2] | 0) {
+ if (i9 >>> 0 >= i2 >>> 0) break;
+ L10 : do switch (HEAP32[(HEAP32[i11 >> 2] | 0) + (i9 << 3) + 4 >> 2] | 0) {
case 1:
{
- if (i8 >>> 0 < i10 >>> 0) i1 = _emscripten_asm_const_ii(9, i8 | 0) | 0; else i1 = 0;
- HEAP32[i15 >> 2] = 1;
- HEAP32[i3 >> 2] = i1;
- i1 = HEAP32[i6 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
- HEAP32[i1 >> 2] = HEAP32[i15 >> 2];
- HEAP32[i1 + 4 >> 2] = HEAP32[i15 + 4 >> 2];
- HEAP32[i1 + 8 >> 2] = HEAP32[i15 + 8 >> 2];
- HEAP32[i1 + 12 >> 2] = HEAP32[i15 + 12 >> 2];
- HEAP32[i6 >> 2] = i1 + 16;
+ if (i9 >>> 0 < i10 >>> 0) i1 = _emscripten_asm_const_ii(9, i9 | 0) | 0; else i1 = 0;
+ HEAP32[i13 >> 2] = 1;
+ HEAP32[i4 >> 2] = i1;
+ i1 = HEAP32[i3 >> 2] | 0;
+ if (i1 >>> 0 < (HEAP32[i6 >> 2] | 0) >>> 0) {
+ HEAP32[i1 >> 2] = HEAP32[i13 >> 2];
+ HEAP32[i1 + 4 >> 2] = HEAP32[i13 + 4 >> 2];
+ HEAP32[i1 + 8 >> 2] = HEAP32[i13 + 8 >> 2];
+ HEAP32[i1 + 12 >> 2] = HEAP32[i13 + 12 >> 2];
+ HEAP32[i3 >> 2] = i1 + 16;
break L10;
} else {
- __ZNSt3__16vectorIN4wasm7LiteralENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i14, i15);
+ __ZNSt3__16vectorIN4wasm7LiteralENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i17, i13);
break L10;
}
}
case 3:
{
- if (i8 >>> 0 < i10 >>> 0) d5 = +_emscripten_asm_const_di(9, i8 | 0); else d5 = 0.0;
- HEAP32[i16 >> 2] = 3;
- HEAPF32[i4 >> 2] = d5;
- i1 = HEAP32[i6 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
- HEAP32[i1 >> 2] = HEAP32[i16 >> 2];
- HEAP32[i1 + 4 >> 2] = HEAP32[i16 + 4 >> 2];
- HEAP32[i1 + 8 >> 2] = HEAP32[i16 + 8 >> 2];
- HEAP32[i1 + 12 >> 2] = HEAP32[i16 + 12 >> 2];
- HEAP32[i6 >> 2] = i1 + 16;
+ if (i9 >>> 0 < i10 >>> 0) d5 = +_emscripten_asm_const_di(9, i9 | 0); else d5 = 0.0;
+ HEAP32[i14 >> 2] = 3;
+ HEAPF32[i7 >> 2] = d5;
+ i1 = HEAP32[i3 >> 2] | 0;
+ if (i1 >>> 0 < (HEAP32[i6 >> 2] | 0) >>> 0) {
+ HEAP32[i1 >> 2] = HEAP32[i14 >> 2];
+ HEAP32[i1 + 4 >> 2] = HEAP32[i14 + 4 >> 2];
+ HEAP32[i1 + 8 >> 2] = HEAP32[i14 + 8 >> 2];
+ HEAP32[i1 + 12 >> 2] = HEAP32[i14 + 12 >> 2];
+ HEAP32[i3 >> 2] = i1 + 16;
break L10;
} else {
- __ZNSt3__16vectorIN4wasm7LiteralENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i14, i16);
+ __ZNSt3__16vectorIN4wasm7LiteralENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i17, i14);
break L10;
}
}
case 4:
{
- if (i8 >>> 0 < i10 >>> 0) d5 = +_emscripten_asm_const_di(9, i8 | 0); else d5 = 0.0;
- HEAP32[i17 >> 2] = 4;
- HEAPF64[i2 >> 3] = d5;
- i1 = HEAP32[i6 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
- HEAP32[i1 >> 2] = HEAP32[i17 >> 2];
- HEAP32[i1 + 4 >> 2] = HEAP32[i17 + 4 >> 2];
- HEAP32[i1 + 8 >> 2] = HEAP32[i17 + 8 >> 2];
- HEAP32[i1 + 12 >> 2] = HEAP32[i17 + 12 >> 2];
- HEAP32[i6 >> 2] = i1 + 16;
+ if (i9 >>> 0 < i10 >>> 0) d5 = +_emscripten_asm_const_di(9, i9 | 0); else d5 = 0.0;
+ HEAP32[i15 >> 2] = 4;
+ HEAPF64[i8 >> 3] = d5;
+ i1 = HEAP32[i3 >> 2] | 0;
+ if (i1 >>> 0 < (HEAP32[i6 >> 2] | 0) >>> 0) {
+ HEAP32[i1 >> 2] = HEAP32[i15 >> 2];
+ HEAP32[i1 + 4 >> 2] = HEAP32[i15 + 4 >> 2];
+ HEAP32[i1 + 8 >> 2] = HEAP32[i15 + 8 >> 2];
+ HEAP32[i1 + 12 >> 2] = HEAP32[i15 + 12 >> 2];
+ HEAP32[i3 >> 2] = i1 + 16;
break L10;
} else {
- __ZNSt3__16vectorIN4wasm7LiteralENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i14, i17);
+ __ZNSt3__16vectorIN4wasm7LiteralENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i17, i15);
break L10;
}
}
@@ -38484,15 +37678,15 @@ function _call_from_js(i2) {
break L7;
}
} while (0);
- i8 = i8 + 1 | 0;
+ i9 = i9 + 1 | 0;
}
if ((i20 | 0) == 24) _abort();
- i20 = HEAP32[9223] | 0;
- HEAP32[i13 >> 2] = i12;
- HEAP32[i19 >> 2] = HEAP32[i13 >> 2];
- __ZN4wasm14ModuleInstance10callExportEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEE(i18, i20, i19, i14);
- if (HEAP8[40892] | 0) {
- i20 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38004, 14272) | 0;
+ i20 = HEAP32[9591] | 0;
+ HEAP32[i16 >> 2] = i12;
+ HEAP32[i19 >> 2] = HEAP32[i16 >> 2];
+ __ZN4wasm14ModuleInstance10callExportEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEE(i18, i20, i19, i17);
+ if (HEAP8[42364] | 0) {
+ i20 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39476, 14791) | 0;
HEAP32[i19 >> 2] = HEAP32[i18 >> 2];
HEAP32[i19 + 4 >> 2] = HEAP32[i18 + 4 >> 2];
HEAP32[i19 + 8 >> 2] = HEAP32[i18 + 8 >> 2];
@@ -38507,59 +37701,503 @@ function _call_from_js(i2) {
}
case 1:
{
- _emscripten_asm_const_ii(11, HEAP32[i18 + 8 >> 2] | 0) | 0;
+ _emscripten_asm_const_ii(11, __ZN4wasm7Literal6geti32Ev(i18) | 0) | 0;
break;
}
case 3:
{
- _emscripten_asm_const_id(11, +(+HEAPF32[i18 + 8 >> 2])) | 0;
+ _emscripten_asm_const_id(11, +(+__ZN4wasm7Literal6getf32Ev(i18))) | 0;
break;
}
case 4:
{
- _emscripten_asm_const_id(11, +(+HEAPF64[i18 + 8 >> 3])) | 0;
+ _emscripten_asm_const_id(11, +(+__ZN4wasm7Literal6getf64Ev(i18))) | 0;
break;
}
default:
_abort();
}
- __ZNSt3__113__vector_baseIN4wasm7LiteralENS_9allocatorIS2_EEED2Ev(i14);
+ __ZNSt3__113__vector_baseIN4wasm7LiteralENS_9allocatorIS2_EEED2Ev(i17);
STACKTOP = i21;
return;
}
-function __ZNSt3__19__num_putIwE23__widen_and_group_floatEPcS2_S2_PwRS3_S4_RKNS_6localeE(i13, i15, i14, i16, i18, i17, i1) {
- i13 = i13 | 0;
+function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRPv(i1, i20, i21, i3, i22, i16) {
+ i1 = i1 | 0;
+ i20 = i20 | 0;
+ i21 = i21 | 0;
+ i3 = i3 | 0;
+ i22 = i22 | 0;
+ i16 = i16 | 0;
+ var i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i17 = 0, i18 = 0, i19 = 0, i23 = 0;
+ i19 = STACKTOP;
+ STACKTOP = STACKTOP + 320 | 0;
+ i15 = i19;
+ i10 = i19 + 208 | 0;
+ i18 = i19 + 196 | 0;
+ i1 = i19 + 180 | 0;
+ i17 = i19 + 184 | 0;
+ i14 = i19 + 176 | 0;
+ i12 = i19 + 16 | 0;
+ i13 = i19 + 8 | 0;
+ i11 = i19 + 4 | 0;
+ i2 = 0;
+ while (1) {
+ if ((i2 | 0) == 3) break;
+ HEAP32[i18 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
+ }
+ i9 = __ZNKSt3__18ios_base6getlocEv(i3) | 0;
+ HEAP32[i1 >> 2] = i9;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 40468) | 0;
+ FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 48 >> 2] & 7](i1, 32623, 32649, i10) | 0;
+ __ZNSt3__114__shared_count16__release_sharedEv(i9) | 0;
+ i1 = 0;
+ while (1) {
+ if ((i1 | 0) == 3) break;
+ HEAP32[i17 + (i1 << 2) >> 2] = 0;
+ i1 = i1 + 1 | 0;
+ }
+ if (!(HEAP8[i17 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i17 >> 2] & -2) + -1 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i17, i1, 0);
+ i8 = i17 + 8 | 0;
+ i9 = i17 + 1 | 0;
+ i1 = (HEAP8[i17 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i14 >> 2] = i1;
+ HEAP32[i13 >> 2] = i12;
+ HEAP32[i11 >> 2] = 0;
+ i7 = i17 + 4 | 0;
+ i3 = HEAP32[i20 >> 2] | 0;
+ L12 : while (1) {
+ if (i3) {
+ i2 = HEAP32[i3 + 12 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0;
+ if ((i2 | 0) == -1) {
+ HEAP32[i20 >> 2] = 0;
+ i2 = 0;
+ i5 = 1;
+ } else {
+ i2 = i3;
+ i5 = 0;
+ }
+ } else {
+ i2 = 0;
+ i5 = 1;
+ }
+ i3 = HEAP32[i21 >> 2] | 0;
+ do if (i3) {
+ i4 = HEAP32[i3 + 12 >> 2] | 0;
+ if ((i4 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i4 = HEAP32[i4 >> 2] | 0;
+ if ((i4 | 0) != -1) if (i5) break; else break L12; else {
+ HEAP32[i21 >> 2] = 0;
+ i23 = 22;
+ break;
+ }
+ } else i23 = 22; while (0);
+ if ((i23 | 0) == 22) {
+ i23 = 0;
+ if (i5) {
+ i3 = 0;
+ break;
+ } else i3 = 0;
+ }
+ i4 = HEAP8[i17 >> 0] | 0;
+ i4 = (i4 & 1) == 0 ? (i4 & 255) >>> 1 : HEAP32[i7 >> 2] | 0;
+ if ((HEAP32[i14 >> 2] | 0) == (i1 + i4 | 0)) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i17, i4 << 1, 0);
+ if (!(HEAP8[i17 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i17 >> 2] & -2) + -1 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i17, i1, 0);
+ i1 = (HEAP8[i17 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i14 >> 2] = i1 + i4;
+ }
+ i5 = i2 + 12 | 0;
+ i4 = HEAP32[i5 >> 2] | 0;
+ i6 = i2 + 16 | 0;
+ if ((i4 | 0) == (HEAP32[i6 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i4 = HEAP32[i4 >> 2] | 0;
+ if (__ZNSt3__19__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i4, 16, i1, i14, i11, 0, i18, i12, i13, i10) | 0) break;
+ i3 = HEAP32[i5 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i6 >> 2] | 0)) {
+ FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0;
+ i3 = i2;
+ continue;
+ } else {
+ HEAP32[i5 >> 2] = i3 + 4;
+ i3 = i2;
+ continue;
+ }
+ }
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i17, (HEAP32[i14 >> 2] | 0) - i1 | 0, 0);
+ i13 = (HEAP8[i17 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ i14 = __ZNSt3__16__clocEv() | 0;
+ HEAP32[i15 >> 2] = i16;
+ if ((__ZNSt3__110__sscanf_lEPKcP15__locale_structS1_z(i13, i14, 32658, i15) | 0) != 1) HEAP32[i22 >> 2] = 4;
+ if (i2) {
+ i1 = HEAP32[i2 + 12 >> 2] | 0;
+ if ((i1 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i1 = HEAP32[i1 >> 2] | 0;
+ if ((i1 | 0) == -1) {
+ HEAP32[i20 >> 2] = 0;
+ i2 = 1;
+ } else i2 = 0;
+ } else i2 = 1;
+ do if (i3) {
+ i1 = HEAP32[i3 + 12 >> 2] | 0;
+ if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
+ if ((i1 | 0) != -1) if (i2) break; else {
+ i23 = 51;
+ break;
+ } else {
+ HEAP32[i21 >> 2] = 0;
+ i23 = 49;
+ break;
+ }
+ } else i23 = 49; while (0);
+ if ((i23 | 0) == 49 ? i2 : 0) i23 = 51;
+ if ((i23 | 0) == 51) HEAP32[i22 >> 2] = HEAP32[i22 >> 2] | 2;
+ i23 = HEAP32[i20 >> 2] | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i17);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i18);
+ STACKTOP = i19;
+ return i23 | 0;
+}
+
+function __ZN4wasm8Function5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i10, i12, i7) {
+ i10 = i10 | 0;
+ i12 = i12 | 0;
+ i7 = i7 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0, i9 = 0, i11 = 0, i13 = 0, i14 = 0;
+ i14 = STACKTOP;
+ STACKTOP = STACKTOP + 32 | 0;
+ i8 = i14 + 20 | 0;
+ i11 = i14 + 16 | 0;
+ i4 = i14 + 12 | 0;
+ i1 = i14 + 8 | 0;
+ i5 = i14 + 4 | 0;
+ i9 = i14;
+ HEAP32[i11 >> 2] = i7;
+ i2 = __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i12, 18209, 1) | 0;
+ HEAP32[i4 >> 2] = HEAP32[i10 >> 2];
+ HEAP32[i8 >> 2] = HEAP32[i4 >> 2];
+ __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i2, i8) | 0;
+ i2 = i10 + 32 | 0;
+ if (HEAP32[i2 >> 2] | 0) {
+ i4 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i12, 18215) | 0;
+ HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i8 >> 2] = HEAP32[i1 >> 2];
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i4, i8) | 0, 41) | 0;
+ }
+ i3 = HEAP32[i10 + 12 >> 2] | 0;
+ i1 = HEAP32[i10 + 8 >> 2] | 0;
+ i4 = i3;
+ L4 : do if ((i3 | 0) != (i1 | 0)) L6 : while (1) {
+ if ((i1 | 0) == (i4 | 0)) break L4;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i12, 32) | 0;
+ i3 = __Z17printMinorOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKc(i12, 18223) | 0;
+ HEAP32[i5 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i8 >> 2] = HEAP32[i5 >> 2];
+ i3 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i3, i8) | 0, 32) | 0;
+ switch (HEAP32[i1 + 4 >> 2] | 0) {
+ case 0:
+ {
+ i2 = 17406;
+ break;
+ }
+ case 1:
+ {
+ i2 = 17411;
+ break;
+ }
+ case 2:
+ {
+ i2 = 17415;
+ break;
+ }
+ case 3:
+ {
+ i2 = 17419;
+ break;
+ }
+ case 4:
+ {
+ i2 = 17423;
+ break;
+ }
+ default:
+ break L6;
+ }
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i3, i2) | 0, 35822) | 0;
+ i1 = i1 + 8 | 0;
+ } while (0);
+ i1 = i10 + 4 | 0;
+ if (HEAP32[i1 >> 2] | 0) {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i12, 32) | 0;
+ i2 = __Z17printMinorOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKc(i12, 18176) | 0;
+ switch (HEAP32[i1 >> 2] | 0) {
+ case 0:
+ {
+ i6 = 17406;
+ break;
+ }
+ case 1:
+ {
+ i6 = 17411;
+ break;
+ }
+ case 2:
+ {
+ i6 = 17415;
+ break;
+ }
+ case 3:
+ {
+ i6 = 17419;
+ break;
+ }
+ case 4:
+ {
+ i6 = 17423;
+ break;
+ }
+ default:
+ {}
+ }
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i2, i6) | 0, 35822) | 0;
+ }
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i12, 10) | 0;
+ i5 = i7 + 1 | 0;
+ HEAP32[i11 >> 2] = i5;
+ i2 = HEAP32[i10 + 24 >> 2] | 0;
+ i4 = HEAP32[i10 + 20 >> 2] | 0;
+ L27 : while (1) {
+ if ((i4 | 0) == (i2 | 0)) break;
+ __Z8doIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEj(i12, i5) | 0;
+ i3 = __Z17printMinorOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKc(i12, 18230) | 0;
+ HEAP32[i9 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i8 >> 2] = HEAP32[i9 >> 2];
+ i3 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i3, i8) | 0, 32) | 0;
+ switch (HEAP32[i4 + 4 >> 2] | 0) {
+ case 0:
+ {
+ i1 = 17406;
+ break;
+ }
+ case 1:
+ {
+ i1 = 17411;
+ break;
+ }
+ case 2:
+ {
+ i1 = 17415;
+ break;
+ }
+ case 3:
+ {
+ i1 = 17419;
+ break;
+ }
+ case 4:
+ {
+ i1 = 17423;
+ break;
+ }
+ default:
+ {
+ i13 = 29;
+ break L27;
+ }
+ }
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i3, i1) | 0, 18166) | 0;
+ i4 = i4 + 8 | 0;
+ }
+ i1 = i10 + 36 | 0;
+ L39 : do if (__ZN4wasm10Expression2isINS_5BlockEEEbv(HEAP32[i1 >> 2] | 0) | 0 ? (i10 = (__ZN4wasm10Expression4castINS_5BlockEEEPT_v(HEAP32[i1 >> 2] | 0) | 0) + 8 | 0, (HEAP32[i10 >> 2] | 0) == 0) : 0) {
+ i2 = __ZN4wasm10Expression4castINS_5BlockEEEPT_v(HEAP32[i1 >> 2] | 0) | 0;
+ i1 = HEAP32[i2 + 16 >> 2] | 0;
+ i2 = HEAP32[i2 + 12 >> 2] | 0;
+ while (1) {
+ if ((i2 | 0) == (i1 | 0)) break L39;
+ __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i12, i5, HEAP32[i2 >> 2] | 0) | 0;
+ i2 = i2 + 4 | 0;
+ }
+ } else i13 = 35; while (0);
+ if ((i13 | 0) == 35) __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i12, i5, HEAP32[i1 >> 2] | 0) | 0;
+ i13 = __Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i12, i11) | 0;
+ STACKTOP = i14;
+ return i13 | 0;
+}
+
+function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN13FunctionScopeC2EPNS_8FunctionES9_(i11, i10, i15) {
+ i11 = i11 | 0;
+ i10 = i10 | 0;
i15 = i15 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i12 = 0, i13 = 0, i14 = 0, i16 = 0;
+ i12 = STACKTOP;
+ STACKTOP = STACKTOP + 16 | 0;
+ i14 = i12 + 8 | 0;
+ i2 = i12 + 4 | 0;
+ i6 = i12;
+ HEAP32[i11 + 4 >> 2] = 0;
+ HEAP32[i11 + 8 >> 2] = 0;
+ HEAP32[i11 >> 2] = i11 + 4;
+ HEAP32[i11 + 12 >> 2] = i10;
+ i9 = i10 + 8 | 0;
+ i4 = i10 + 12 | 0;
+ i5 = i15 + 4 | 0;
+ i1 = HEAP32[i5 >> 2] | 0;
+ i3 = HEAP32[i15 >> 2] | 0;
+ if (((HEAP32[i4 >> 2] | 0) - (HEAP32[i9 >> 2] | 0) >> 3 | 0) != (i1 - i3 >> 4 | 0)) {
+ i16 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 19859) | 0;
+ HEAP32[i2 >> 2] = HEAP32[i10 >> 2];
+ HEAP32[i14 >> 2] = HEAP32[i2 >> 2];
+ i2 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i16, i14) | 0, 19870) | 0;
+ i4 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj(i2, (HEAP32[i4 >> 2] | 0) - (HEAP32[i9 >> 2] | 0) >> 3) | 0, 19881) | 0;
+ i4 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj(i4, (HEAP32[i5 >> 2] | 0) - (HEAP32[i15 >> 2] | 0) >> 4) | 0, 19899) | 0;
+ i2 = __ZNKSt3__18ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
+ HEAP32[i14 >> 2] = i2;
+ i2 = __ZNKSt3__16locale9use_facetERNS0_2idE(i14, 40436) | 0;
+ i2 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 31](i2, 10) | 0;
+ __ZNSt3__16localeD2Ev(i14);
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE3putEc(i4, i2) | 0;
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i4) | 0;
+ _abort();
+ }
+ i2 = 0;
+ while (1) {
+ if (i2 >>> 0 >= i1 - i3 >> 4 >>> 0) {
+ i7 = 5;
+ break;
+ }
+ i1 = HEAP32[i9 >> 2] | 0;
+ if ((HEAP32[i1 + (i2 << 3) + 4 >> 2] | 0) != (HEAP32[i3 + (i2 << 4) >> 2] | 0)) break;
+ i3 = __ZNSt3__13mapIN6cashew7IStringEN4wasm7LiteralENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i11, i1 + (i2 << 3) | 0) | 0;
+ i1 = (HEAP32[i15 >> 2] | 0) + (i2 << 4) | 0;
+ HEAP32[i3 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i3 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i3 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ HEAP32[i3 + 12 >> 2] = HEAP32[i1 + 12 >> 2];
+ i3 = HEAP32[i15 >> 2] | 0;
+ i1 = HEAP32[i5 >> 2] | 0;
+ i2 = i2 + 1 | 0;
+ }
+ if ((i7 | 0) == 5) {
+ i2 = HEAP32[i10 + 24 >> 2] | 0;
+ i1 = HEAP32[i10 + 20 >> 2] | 0;
+ while (1) {
+ if ((i1 | 0) == (i2 | 0)) break;
+ i15 = HEAP32[i1 + 4 >> 2] | 0;
+ i16 = __ZNSt3__13mapIN6cashew7IStringEN4wasm7LiteralENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i11, i1) | 0;
+ HEAP32[i16 >> 2] = i15;
+ i1 = i1 + 8 | 0;
+ }
+ STACKTOP = i12;
+ return;
+ }
+ i1 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 19859) | 0;
+ HEAP32[i6 >> 2] = HEAP32[i10 >> 2];
+ HEAP32[i14 >> 2] = HEAP32[i6 >> 2];
+ i1 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i1, i14) | 0, 19911) | 0;
+ switch (HEAP32[(HEAP32[i9 >> 2] | 0) + (i2 << 3) + 4 >> 2] | 0) {
+ case 0:
+ {
+ i8 = 17406;
+ break;
+ }
+ case 1:
+ {
+ i8 = 17411;
+ break;
+ }
+ case 2:
+ {
+ i8 = 17415;
+ break;
+ }
+ case 3:
+ {
+ i8 = 17419;
+ break;
+ }
+ case 4:
+ {
+ i8 = 17423;
+ break;
+ }
+ default:
+ {}
+ }
+ i1 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i1, i8) | 0, 19927) | 0, i2) | 0, 19943) | 0;
+ switch (HEAP32[(HEAP32[i15 >> 2] | 0) + (i2 << 4) >> 2] | 0) {
+ case 0:
+ {
+ i13 = 17406;
+ break;
+ }
+ case 1:
+ {
+ i13 = 17411;
+ break;
+ }
+ case 2:
+ {
+ i13 = 17415;
+ break;
+ }
+ case 3:
+ {
+ i13 = 17419;
+ break;
+ }
+ case 4:
+ {
+ i13 = 17423;
+ break;
+ }
+ default:
+ {}
+ }
+ i16 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i1, i13) | 0, 36861) | 0;
+ i15 = __ZNKSt3__18ios_base6getlocEv(i16 + (HEAP32[(HEAP32[i16 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
+ HEAP32[i14 >> 2] = i15;
+ i15 = __ZNKSt3__16locale9use_facetERNS0_2idE(i14, 40436) | 0;
+ i15 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i15 >> 2] | 0) + 28 >> 2] & 31](i15, 10) | 0;
+ __ZNSt3__16localeD2Ev(i14);
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE3putEc(i16, i15) | 0;
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i16) | 0;
+ _abort();
+}
+
+function __ZNSt3__19__num_putIwE23__widen_and_group_floatEPcS2_S2_PwRS3_S4_RKNS_6localeE(i14, i16, i15, i17, i19, i18, i1) {
i14 = i14 | 0;
i16 = i16 | 0;
- i18 = i18 | 0;
+ i15 = i15 | 0;
i17 = i17 | 0;
+ i19 = i19 | 0;
+ i18 = i18 | 0;
i1 = i1 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0;
i21 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i12 = i21;
- i19 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 38996) | 0;
- i10 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 39004) | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i10 >> 2] | 0) + 20 >> 2] & 127](i12, i10);
- HEAP32[i17 >> 2] = i16;
- i1 = HEAP8[i13 >> 0] | 0;
+ i13 = i21;
+ i12 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 40468) | 0;
+ i10 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 40476) | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i10 >> 2] | 0) + 20 >> 2] & 127](i13, i10);
+ HEAP32[i18 >> 2] = i17;
+ i1 = HEAP8[i14 >> 0] | 0;
switch (i1 << 24 >> 24) {
case 43:
case 45:
{
- i11 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i19 >> 2] | 0) + 44 >> 2] & 31](i19, i1) | 0;
- i2 = HEAP32[i17 >> 2] | 0;
- HEAP32[i17 >> 2] = i2 + 4;
+ i11 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i12 >> 2] | 0) + 44 >> 2] & 31](i12, i1) | 0;
+ i2 = HEAP32[i18 >> 2] | 0;
+ HEAP32[i18 >> 2] = i2 + 4;
HEAP32[i2 >> 2] = i11;
- i2 = i13 + 1 | 0;
+ i2 = i14 + 1 | 0;
break;
}
default:
- i2 = i13;
+ i2 = i14;
}
- i11 = i14;
+ i11 = i15;
L4 : do if ((i11 - i2 | 0) > 1 ? (HEAP8[i2 >> 0] | 0) == 48 : 0) {
i1 = i2 + 1 | 0;
switch (HEAP8[i1 >> 0] | 0) {
@@ -38573,18 +38211,18 @@ function __ZNSt3__19__num_putIwE23__widen_and_group_floatEPcS2_S2_PwRS3_S4_RKNS_
break L4;
}
}
- i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i19 >> 2] | 0) + 44 >> 2] & 31](i19, 48) | 0;
- i9 = HEAP32[i17 >> 2] | 0;
- HEAP32[i17 >> 2] = i9 + 4;
+ i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i12 >> 2] | 0) + 44 >> 2] & 31](i12, 48) | 0;
+ i9 = HEAP32[i18 >> 2] | 0;
+ HEAP32[i18 >> 2] = i9 + 4;
HEAP32[i9 >> 2] = i8;
i2 = i2 + 2 | 0;
- i9 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i19 >> 2] | 0) + 44 >> 2] & 31](i19, HEAP8[i1 >> 0] | 0) | 0;
- i1 = HEAP32[i17 >> 2] | 0;
- HEAP32[i17 >> 2] = i1 + 4;
+ i9 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i12 >> 2] | 0) + 44 >> 2] & 31](i12, HEAP8[i1 >> 0] | 0) | 0;
+ i1 = HEAP32[i18 >> 2] | 0;
+ HEAP32[i18 >> 2] = i1 + 4;
HEAP32[i1 >> 2] = i9;
i1 = i2;
while (1) {
- if (i1 >>> 0 >= i14 >>> 0) break L4;
+ if (i1 >>> 0 >= i15 >>> 0) break L4;
i9 = HEAP8[i1 >> 0] | 0;
if (!(_isxdigit_l(i9, __ZNSt3__16__clocEv() | 0) | 0)) break L4;
i1 = i1 + 1 | 0;
@@ -38595,18 +38233,18 @@ function __ZNSt3__19__num_putIwE23__widen_and_group_floatEPcS2_S2_PwRS3_S4_RKNS_
} while (0);
L12 : do if ((i20 | 0) == 10) while (1) {
i20 = 0;
- if (i1 >>> 0 >= i14 >>> 0) break L12;
+ if (i1 >>> 0 >= i15 >>> 0) break L12;
i9 = HEAP8[i1 >> 0] | 0;
if (!(_isdigit_l(i9, __ZNSt3__16__clocEv() | 0) | 0)) break L12;
i1 = i1 + 1 | 0;
i20 = 10;
} while (0);
- i8 = HEAP8[i12 >> 0] | 0;
- i9 = i12 + 4 | 0;
+ i8 = HEAP8[i13 >> 0] | 0;
+ i9 = i13 + 4 | 0;
L18 : do if (((i8 & 1) == 0 ? (i8 & 255) >>> 1 : HEAP32[i9 >> 2] | 0) | 0) {
L21 : do if ((i2 | 0) != (i1 | 0)) {
- i4 = i2;
i3 = i1;
+ i4 = i2;
while (1) {
i3 = i3 + -1 | 0;
if (i4 >>> 0 >= i3 >>> 0) break L21;
@@ -38616,279 +38254,84 @@ function __ZNSt3__19__num_putIwE23__widen_and_group_floatEPcS2_S2_PwRS3_S4_RKNS_
i4 = i4 + 1 | 0;
}
} while (0);
- i8 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i10 >> 2] | 0) + 16 >> 2] & 127](i10) | 0;
- i5 = i12 + 8 | 0;
- i7 = i12 + 1 | 0;
+ i5 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i10 >> 2] | 0) + 16 >> 2] & 127](i10) | 0;
+ i6 = i13 + 8 | 0;
+ i7 = i13 + 1 | 0;
i3 = 0;
i4 = 0;
- i6 = i2;
+ i8 = i2;
while (1) {
- if (i6 >>> 0 >= i1 >>> 0) break;
- i22 = HEAP8[((HEAP8[i12 >> 0] & 1) == 0 ? i7 : HEAP32[i5 >> 2] | 0) + i4 >> 0] | 0;
+ if (i8 >>> 0 >= i1 >>> 0) break;
+ i22 = HEAP8[((HEAP8[i13 >> 0] & 1) == 0 ? i7 : HEAP32[i6 >> 2] | 0) + i4 >> 0] | 0;
if (i22 << 24 >> 24 > 0 & (i3 | 0) == (i22 << 24 >> 24 | 0)) {
- i22 = HEAP32[i17 >> 2] | 0;
- HEAP32[i17 >> 2] = i22 + 4;
- HEAP32[i22 >> 2] = i8;
- i22 = HEAP8[i12 >> 0] | 0;
+ i22 = HEAP32[i18 >> 2] | 0;
+ HEAP32[i18 >> 2] = i22 + 4;
+ HEAP32[i22 >> 2] = i5;
+ i22 = HEAP8[i13 >> 0] | 0;
i3 = 0;
i4 = (i4 >>> 0 < (((i22 & 1) == 0 ? (i22 & 255) >>> 1 : HEAP32[i9 >> 2] | 0) + -1 | 0) >>> 0 & 1) + i4 | 0;
}
- i23 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i19 >> 2] | 0) + 44 >> 2] & 31](i19, HEAP8[i6 >> 0] | 0) | 0;
- i22 = HEAP32[i17 >> 2] | 0;
- HEAP32[i17 >> 2] = i22 + 4;
+ i23 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i12 >> 2] | 0) + 44 >> 2] & 31](i12, HEAP8[i8 >> 0] | 0) | 0;
+ i22 = HEAP32[i18 >> 2] | 0;
+ HEAP32[i18 >> 2] = i22 + 4;
HEAP32[i22 >> 2] = i23;
i3 = i3 + 1 | 0;
- i6 = i6 + 1 | 0;
+ i8 = i8 + 1 | 0;
}
- i3 = i16 + (i2 - i13 << 2) | 0;
- i2 = HEAP32[i17 >> 2] | 0;
- if ((i3 | 0) == (i2 | 0)) {
- i4 = i19;
- i2 = i3;
- } else {
- i4 = i3;
- i3 = i2;
+ i2 = i17 + (i2 - i14 << 2) | 0;
+ i4 = HEAP32[i18 >> 2] | 0;
+ if ((i2 | 0) == (i4 | 0)) i3 = i12; else {
+ i3 = i4;
while (1) {
i3 = i3 + -4 | 0;
- if (i4 >>> 0 >= i3 >>> 0) {
- i4 = i19;
+ if (i2 >>> 0 >= i3 >>> 0) {
+ i3 = i12;
+ i2 = i4;
break L18;
}
- i23 = HEAP32[i4 >> 2] | 0;
- HEAP32[i4 >> 2] = HEAP32[i3 >> 2];
+ i23 = HEAP32[i2 >> 2] | 0;
+ HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
HEAP32[i3 >> 2] = i23;
- i4 = i4 + 4 | 0;
+ i2 = i2 + 4 | 0;
}
}
} else {
- FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i19 >> 2] | 0) + 48 >> 2] & 7](i19, i2, i1, HEAP32[i17 >> 2] | 0) | 0;
- i2 = (HEAP32[i17 >> 2] | 0) + (i1 - i2 << 2) | 0;
- HEAP32[i17 >> 2] = i2;
- i4 = i19;
+ FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i12 >> 2] | 0) + 48 >> 2] & 7](i12, i2, i1, HEAP32[i18 >> 2] | 0) | 0;
+ i2 = (HEAP32[i18 >> 2] | 0) + (i1 - i2 << 2) | 0;
+ HEAP32[i18 >> 2] = i2;
+ i3 = i12;
} while (0);
while (1) {
- if (i1 >>> 0 >= i14 >>> 0) break;
+ if (i1 >>> 0 >= i15 >>> 0) break;
i2 = HEAP8[i1 >> 0] | 0;
if (i2 << 24 >> 24 == 46) {
i20 = 29;
break;
}
- i22 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 44 >> 2] & 31](i19, i2) | 0;
- i23 = HEAP32[i17 >> 2] | 0;
+ i22 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 44 >> 2] & 31](i12, i2) | 0;
+ i23 = HEAP32[i18 >> 2] | 0;
i2 = i23 + 4 | 0;
- HEAP32[i17 >> 2] = i2;
+ HEAP32[i18 >> 2] = i2;
HEAP32[i23 >> 2] = i22;
i1 = i1 + 1 | 0;
}
if ((i20 | 0) == 29) {
i22 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i10 >> 2] | 0) + 12 >> 2] & 127](i10) | 0;
- i23 = HEAP32[i17 >> 2] | 0;
+ i23 = HEAP32[i18 >> 2] | 0;
i2 = i23 + 4 | 0;
- HEAP32[i17 >> 2] = i2;
+ HEAP32[i18 >> 2] = i2;
HEAP32[i23 >> 2] = i22;
i1 = i1 + 1 | 0;
}
- FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i19 >> 2] | 0) + 48 >> 2] & 7](i19, i1, i14, i2) | 0;
- i23 = (HEAP32[i17 >> 2] | 0) + (i11 - i1 << 2) | 0;
- HEAP32[i17 >> 2] = i23;
- HEAP32[i18 >> 2] = (i15 | 0) == (i14 | 0) ? i23 : i16 + (i15 - i13 << 2) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i12);
+ FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i12 >> 2] | 0) + 48 >> 2] & 7](i12, i1, i15, i2) | 0;
+ i23 = (HEAP32[i18 >> 2] | 0) + (i11 - i1 << 2) | 0;
+ HEAP32[i18 >> 2] = i23;
+ HEAP32[i19 >> 2] = (i16 | 0) == (i15 | 0) ? i23 : i17 + (i16 - i14 << 2) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i13);
STACKTOP = i21;
return;
}
-function __ZN4wasm10WasmWalkerIZZNS_15Asm2WasmBuilder8optimizeEvEN19BlockBreakOptimizer10visitBlockEPNS_5BlockEE11BreakSeekervE4walkERPNS_10ExpressionE(i5, i6) {
- i5 = i5 | 0;
- i6 = i6 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0;
- i1 = HEAP32[i6 >> 2] | 0;
- if (i1 | 0) {
- L3 : do switch (HEAP32[i1 >> 2] | 0) {
- case 0:
- {
- _abort();
- break;
- }
- case 1:
- {
- i4 = i1 + 12 | 0;
- i1 = i1 + 16 | 0;
- i3 = 0;
- while (1) {
- i2 = HEAP32[i4 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i1 >> 2] | 0) - i2 >> 2 >>> 0) break L3;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i2 + (i3 << 2) | 0);
- i3 = i3 + 1 | 0;
- }
- }
- case 2:
- {
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 8 | 0);
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 12 | 0);
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 16 | 0);
- break;
- }
- case 3:
- {
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 16 | 0);
- break;
- }
- case 4:
- {
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 8 | 0);
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 16 | 0);
- break;
- }
- case 5:
- {
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 12 | 0);
- i2 = HEAP32[i1 + 36 >> 2] | 0;
- i1 = HEAP32[i1 + 32 >> 2] | 0;
- while (1) {
- if ((i1 | 0) == (i2 | 0)) break L3;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 4 | 0);
- i1 = i1 + 8 | 0;
- }
- }
- case 6:
- {
- i4 = i1 + 12 | 0;
- i1 = i1 + 8 | 0;
- i3 = 0;
- while (1) {
- i2 = HEAP32[i1 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break L3;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i2 + (i3 << 2) | 0);
- i3 = i3 + 1 | 0;
- }
- }
- case 7:
- {
- i4 = i1 + 12 | 0;
- i1 = i1 + 8 | 0;
- i3 = 0;
- while (1) {
- i2 = HEAP32[i1 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break L3;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i2 + (i3 << 2) | 0);
- i3 = i3 + 1 | 0;
- }
- }
- case 8:
- {
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 24 | 0);
- i4 = i1 + 12 | 0;
- i1 = i1 + 8 | 0;
- i3 = 0;
- while (1) {
- i2 = HEAP32[i1 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break L3;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i2 + (i3 << 2) | 0);
- i3 = i3 + 1 | 0;
- }
- }
- case 19:
- case 18:
- case 13:
- case 9:
- break;
- case 10:
- {
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 12 | 0);
- break;
- }
- case 11:
- {
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 24 | 0);
- break;
- }
- case 12:
- {
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 20 | 0);
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 24 | 0);
- break;
- }
- case 14:
- {
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 12 | 0);
- break;
- }
- case 15:
- {
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 12 | 0);
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 16 | 0);
- break;
- }
- case 16:
- {
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 8 | 0);
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 12 | 0);
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i1 + 16 | 0);
- break;
- }
- case 17:
- {
- i4 = i1 + 20 | 0;
- i1 = i1 + 16 | 0;
- i3 = 0;
- while (1) {
- i2 = HEAP32[i1 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break L3;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i2 + (i3 << 2) | 0);
- i3 = i3 + 1 | 0;
- }
- }
- default:
- {}
- } while (0);
- i1 = HEAP32[i6 >> 2] | 0;
- if (!i1) ___assert_fail(26470, 26220, 1229, 26475);
- switch (HEAP32[i1 >> 2] | 0) {
- case 0:
- {
- _abort();
- break;
- }
- case 19:
- case 18:
- case 17:
- case 16:
- case 15:
- case 14:
- case 13:
- case 12:
- case 11:
- case 10:
- case 9:
- case 8:
- case 7:
- case 6:
- case 5:
- case 3:
- case 2:
- case 1:
- break;
- case 4:
- {
- if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i5 + 8 >> 2] | 0)) {
- i4 = i5 + 12 | 0;
- HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 1;
- }
- break;
- }
- default:
- {}
- }
- i2 = i5 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if (i1 | 0) {
- HEAP32[i6 >> 2] = i1;
- HEAP32[i2 >> 2] = 0;
- }
- }
- return;
-}
-
function __ZNSt3__114__scan_keywordINS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEPKNS_12basic_stringIcS3_NS_9allocatorIcEEEENS_5ctypeIcEEEET0_RT_SE_SD_SD_RKT1_Rjb(i16, i17, i1, i19, i15, i18, i14) {
i16 = i16 | 0;
i17 = i17 | 0;
@@ -38943,16 +38386,16 @@ function __ZNSt3__114__scan_keywordINS_19istreambuf_iteratorIcNS_11char_traitsIc
}
} else i3 = 0; while (0);
i6 = (i3 | 0) == 0;
- i5 = HEAP32[i17 >> 2] | 0;
- if (i5) {
- if ((HEAP32[i5 + 12 >> 2] | 0) == (HEAP32[i5 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 36 >> 2] & 127](i5) | 0) == -1 : 0) {
+ i4 = HEAP32[i17 >> 2] | 0;
+ if (i4) {
+ if ((HEAP32[i4 + 12 >> 2] | 0) == (HEAP32[i4 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0) == -1 : 0) {
HEAP32[i17 >> 2] = 0;
- i5 = 0;
+ i4 = 0;
}
- } else i5 = 0;
- i4 = (i5 | 0) == 0;
+ } else i4 = 0;
+ i5 = (i4 | 0) == 0;
i3 = HEAP32[i16 >> 2] | 0;
- if (!((i8 | 0) != 0 & (i6 ^ i4))) break;
+ if (!((i8 | 0) != 0 & (i6 ^ i5))) break;
i4 = HEAP32[i3 + 12 >> 2] | 0;
if ((i4 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i3 = HEAPU8[i4 >> 0] | 0;
i3 = i3 & 255;
@@ -39004,9 +38447,9 @@ function __ZNSt3__114__scan_keywordINS_19istreambuf_iteratorIcNS_11char_traitsIc
continue;
}
i3 = HEAP32[i16 >> 2] | 0;
- i5 = i3 + 12 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- if ((i4 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 40 >> 2] & 127](i3) | 0; else HEAP32[i5 >> 2] = i4 + 1;
+ i4 = i3 + 12 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ if ((i5 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 40 >> 2] & 127](i3) | 0; else HEAP32[i4 >> 2] = i5 + 1;
if ((i10 + i11 | 0) >>> 0 > 1) {
i6 = i1;
i3 = i10;
@@ -39046,8 +38489,8 @@ function __ZNSt3__114__scan_keywordINS_19istreambuf_iteratorIcNS_11char_traitsIc
}
} else i3 = 0; while (0);
i3 = (i3 | 0) == 0;
- do if (!i4) {
- if ((HEAP32[i5 + 12 >> 2] | 0) == (HEAP32[i5 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 36 >> 2] & 127](i5) | 0) == -1 : 0) {
+ do if (!i5) {
+ if ((HEAP32[i4 + 12 >> 2] | 0) == (HEAP32[i4 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0) == -1 : 0) {
HEAP32[i17 >> 2] = 0;
i21 = 34;
break;
@@ -39074,139 +38517,6 @@ function __ZNSt3__114__scan_keywordINS_19istreambuf_iteratorIcNS_11char_traitsIc
return i1 | 0;
}
-function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRPv(i1, i20, i21, i3, i22, i16) {
- i1 = i1 | 0;
- i20 = i20 | 0;
- i21 = i21 | 0;
- i3 = i3 | 0;
- i22 = i22 | 0;
- i16 = i16 | 0;
- var i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i17 = 0, i18 = 0, i19 = 0, i23 = 0;
- i19 = STACKTOP;
- STACKTOP = STACKTOP + 320 | 0;
- i15 = i19;
- i10 = i19 + 208 | 0;
- i18 = i19 + 196 | 0;
- i2 = i19 + 180 | 0;
- i17 = i19 + 184 | 0;
- i14 = i19 + 176 | 0;
- i12 = i19 + 16 | 0;
- i13 = i19 + 8 | 0;
- i11 = i19 + 4 | 0;
- i1 = 0;
- while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i18 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
- }
- i1 = __ZNKSt3__18ios_base6getlocEv(i3) | 0;
- HEAP32[i2 >> 2] = i1;
- i9 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 38996) | 0;
- FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i9 >> 2] | 0) + 48 >> 2] & 7](i9, 31159, 31185, i10) | 0;
- __ZNSt3__114__shared_count16__release_sharedEv(i1) | 0;
- i1 = 0;
- while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i17 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
- }
- if (!(HEAP8[i17 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i17 >> 2] & -2) + -1 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i17, i1, 0);
- i8 = i17 + 8 | 0;
- i9 = i17 + 1 | 0;
- i1 = (HEAP8[i17 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i1;
- HEAP32[i13 >> 2] = i12;
- HEAP32[i11 >> 2] = 0;
- i7 = i17 + 4 | 0;
- i2 = HEAP32[i20 >> 2] | 0;
- L12 : while (1) {
- if (i2) {
- i3 = HEAP32[i2 + 12 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i3 = HEAP32[i3 >> 2] | 0;
- if ((i3 | 0) == -1) {
- HEAP32[i20 >> 2] = 0;
- i2 = 0;
- i5 = 1;
- } else i5 = 0;
- } else {
- i2 = 0;
- i5 = 1;
- }
- i3 = HEAP32[i21 >> 2] | 0;
- do if (i3) {
- i4 = HEAP32[i3 + 12 >> 2] | 0;
- if ((i4 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i4 = HEAP32[i4 >> 2] | 0;
- if ((i4 | 0) != -1) if (i5) break; else break L12; else {
- HEAP32[i21 >> 2] = 0;
- i23 = 22;
- break;
- }
- } else i23 = 22; while (0);
- if ((i23 | 0) == 22) {
- i23 = 0;
- if (i5) {
- i3 = 0;
- break;
- } else i3 = 0;
- }
- i4 = HEAP8[i17 >> 0] | 0;
- i4 = (i4 & 1) == 0 ? (i4 & 255) >>> 1 : HEAP32[i7 >> 2] | 0;
- if ((HEAP32[i14 >> 2] | 0) == (i1 + i4 | 0)) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i17, i4 << 1, 0);
- if (!(HEAP8[i17 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i17 >> 2] & -2) + -1 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i17, i1, 0);
- i1 = (HEAP8[i17 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i1 + i4;
- }
- i6 = i2 + 12 | 0;
- i4 = HEAP32[i6 >> 2] | 0;
- i5 = i2 + 16 | 0;
- if ((i4 | 0) == (HEAP32[i5 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i4 = HEAP32[i4 >> 2] | 0;
- if (__ZNSt3__19__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i4, 16, i1, i14, i11, 0, i18, i12, i13, i10) | 0) break;
- i3 = HEAP32[i6 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i5 >> 2] | 0)) {
- FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0;
- continue;
- } else {
- HEAP32[i6 >> 2] = i3 + 4;
- continue;
- }
- }
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i17, (HEAP32[i14 >> 2] | 0) - i1 | 0, 0);
- i13 = (HEAP8[i17 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
- i14 = __ZNSt3__16__clocEv() | 0;
- HEAP32[i15 >> 2] = i16;
- if ((__ZNSt3__110__sscanf_lEPKcP15__locale_structS1_z(i13, i14, 31194, i15) | 0) != 1) HEAP32[i22 >> 2] = 4;
- if (i2) {
- i1 = HEAP32[i2 + 12 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i1 = HEAP32[i1 >> 2] | 0;
- if ((i1 | 0) == -1) {
- HEAP32[i20 >> 2] = 0;
- i2 = 1;
- } else i2 = 0;
- } else i2 = 1;
- do if (i3) {
- i1 = HEAP32[i3 + 12 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
- if ((i1 | 0) != -1) if (i2) break; else {
- i23 = 51;
- break;
- } else {
- HEAP32[i21 >> 2] = 0;
- i23 = 49;
- break;
- }
- } else i23 = 49; while (0);
- if ((i23 | 0) == 49 ? i2 : 0) i23 = 51;
- if ((i23 | 0) == 51) HEAP32[i22 >> 2] = HEAP32[i22 >> 2] | 2;
- i23 = HEAP32[i20 >> 2] | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i17);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i18);
- STACKTOP = i19;
- return i23 | 0;
-}
-
function __ZNSt3__120__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i12, i13, i14, i10, i6) {
i12 = i12 | 0;
i13 = i13 | 0;
@@ -39232,7 +38542,6 @@ function __ZNSt3__120__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_t
i1 = HEAP32[i2 + 12 >> 2] | 0;
if ((i1 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i1 = HEAP32[i1 >> 2] | 0;
if ((i1 | 0) != -1) if (i3) {
- i5 = i2;
i11 = 17;
break;
} else {
@@ -39245,7 +38554,7 @@ function __ZNSt3__120__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_t
}
} else i11 = 14; while (0);
if ((i11 | 0) == 14) if (i3) i11 = 16; else {
- i5 = 0;
+ i2 = 0;
i11 = 17;
}
L22 : do if ((i11 | 0) == 16) {
@@ -39253,31 +38562,31 @@ function __ZNSt3__120__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_t
i1 = 0;
} else if ((i11 | 0) == 17) {
i1 = HEAP32[i12 >> 2] | 0;
- i2 = HEAP32[i1 + 12 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0;
+ i3 = HEAP32[i1 + 12 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i3 >> 2] | 0;
if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i10 >> 2] | 0) + 12 >> 2] & 31](i10, 2048, i1) | 0)) {
HEAP32[i14 >> 2] = HEAP32[i14 >> 2] | 4;
i1 = 0;
break;
}
i1 = (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i10 >> 2] | 0) + 52 >> 2] & 31](i10, i1, 0) | 0) << 24 >> 24;
- i2 = HEAP32[i12 >> 2] | 0;
- i4 = i2 + 12 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) {
- FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0;
- i8 = i5;
- i4 = i5;
- i7 = i6;
+ i3 = HEAP32[i12 >> 2] | 0;
+ i4 = i3 + 12 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ if ((i5 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) {
+ FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 40 >> 2] & 127](i3) | 0;
+ i8 = i6;
+ i7 = i2;
+ i4 = i2;
} else {
- HEAP32[i4 >> 2] = i3 + 4;
- i8 = i5;
- i4 = i5;
- i7 = i6;
+ HEAP32[i4 >> 2] = i5 + 4;
+ i8 = i6;
+ i7 = i2;
+ i4 = i2;
}
while (1) {
i1 = i1 + -48 | 0;
- i9 = i7 + -1 | 0;
+ i9 = i8 + -1 | 0;
i2 = HEAP32[i12 >> 2] | 0;
do if (i2) {
i3 = HEAP32[i2 + 12 >> 2] | 0;
@@ -39297,40 +38606,40 @@ function __ZNSt3__120__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_t
if ((i2 | 0) == -1) {
HEAP32[i13 >> 2] = 0;
i4 = 0;
- i2 = 1;
i6 = 0;
+ i2 = 1;
break;
} else {
- i4 = i8;
- i2 = (i8 | 0) == 0;
- i6 = i8;
+ i4 = i7;
+ i6 = i7;
+ i2 = (i7 | 0) == 0;
break;
}
} else {
- i4 = i8;
- i2 = 1;
+ i4 = i7;
i6 = 0;
+ i2 = 1;
} while (0);
i3 = HEAP32[i12 >> 2] | 0;
- if (!((i7 | 0) > 1 & (i5 ^ i2))) break;
+ if (!((i8 | 0) > 1 & (i5 ^ i2))) break;
i2 = HEAP32[i3 + 12 >> 2] | 0;
if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0;
if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i10 >> 2] | 0) + 12 >> 2] & 31](i10, 2048, i2) | 0)) break L22;
i1 = ((FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i10 >> 2] | 0) + 52 >> 2] & 31](i10, i2, 0) | 0) << 24 >> 24) + (i1 * 10 | 0) | 0;
i2 = HEAP32[i12 >> 2] | 0;
- i5 = i2 + 12 | 0;
- i3 = HEAP32[i5 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) {
+ i3 = i2 + 12 | 0;
+ i5 = HEAP32[i3 >> 2] | 0;
+ if ((i5 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0;
- i8 = i4;
+ i8 = i9;
+ i7 = i4;
i4 = i6;
- i7 = i9;
continue;
} else {
- HEAP32[i5 >> 2] = i3 + 4;
- i8 = i4;
+ HEAP32[i3 >> 2] = i5 + 4;
+ i8 = i9;
+ i7 = i4;
i4 = i6;
- i7 = i9;
continue;
}
}
@@ -39361,38 +38670,38 @@ function __ZNSt3__120__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_t
return i1 | 0;
}
-function __ZNSt3__19__num_putIcE23__widen_and_group_floatEPcS2_S2_S2_RS2_S3_RKNS_6localeE(i13, i15, i14, i16, i18, i17, i1) {
- i13 = i13 | 0;
- i15 = i15 | 0;
+function __ZNSt3__19__num_putIcE23__widen_and_group_floatEPcS2_S2_S2_RS2_S3_RKNS_6localeE(i14, i16, i15, i17, i19, i18, i1) {
i14 = i14 | 0;
i16 = i16 | 0;
- i18 = i18 | 0;
+ i15 = i15 | 0;
i17 = i17 | 0;
+ i19 = i19 | 0;
+ i18 = i18 | 0;
i1 = i1 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0;
i21 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i12 = i21;
- i19 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 38964) | 0;
- i10 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 38976) | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i10 >> 2] | 0) + 20 >> 2] & 127](i12, i10);
- HEAP32[i17 >> 2] = i16;
- i1 = HEAP8[i13 >> 0] | 0;
+ i13 = i21;
+ i12 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 40436) | 0;
+ i10 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 40448) | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i10 >> 2] | 0) + 20 >> 2] & 127](i13, i10);
+ HEAP32[i18 >> 2] = i17;
+ i1 = HEAP8[i14 >> 0] | 0;
switch (i1 << 24 >> 24) {
case 43:
case 45:
{
- i11 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i19 >> 2] | 0) + 28 >> 2] & 31](i19, i1) | 0;
- i2 = HEAP32[i17 >> 2] | 0;
- HEAP32[i17 >> 2] = i2 + 1;
+ i11 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i12 >> 2] | 0) + 28 >> 2] & 31](i12, i1) | 0;
+ i2 = HEAP32[i18 >> 2] | 0;
+ HEAP32[i18 >> 2] = i2 + 1;
HEAP8[i2 >> 0] = i11;
- i2 = i13 + 1 | 0;
+ i2 = i14 + 1 | 0;
break;
}
default:
- i2 = i13;
+ i2 = i14;
}
- i11 = i14;
+ i11 = i15;
L4 : do if ((i11 - i2 | 0) > 1 ? (HEAP8[i2 >> 0] | 0) == 48 : 0) {
i1 = i2 + 1 | 0;
switch (HEAP8[i1 >> 0] | 0) {
@@ -39406,18 +38715,18 @@ function __ZNSt3__19__num_putIcE23__widen_and_group_floatEPcS2_S2_S2_RS2_S3_RKNS
break L4;
}
}
- i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i19 >> 2] | 0) + 28 >> 2] & 31](i19, 48) | 0;
- i9 = HEAP32[i17 >> 2] | 0;
- HEAP32[i17 >> 2] = i9 + 1;
+ i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i12 >> 2] | 0) + 28 >> 2] & 31](i12, 48) | 0;
+ i9 = HEAP32[i18 >> 2] | 0;
+ HEAP32[i18 >> 2] = i9 + 1;
HEAP8[i9 >> 0] = i8;
i2 = i2 + 2 | 0;
- i9 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i19 >> 2] | 0) + 28 >> 2] & 31](i19, HEAP8[i1 >> 0] | 0) | 0;
- i1 = HEAP32[i17 >> 2] | 0;
- HEAP32[i17 >> 2] = i1 + 1;
+ i9 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i12 >> 2] | 0) + 28 >> 2] & 31](i12, HEAP8[i1 >> 0] | 0) | 0;
+ i1 = HEAP32[i18 >> 2] | 0;
+ HEAP32[i18 >> 2] = i1 + 1;
HEAP8[i1 >> 0] = i9;
i1 = i2;
while (1) {
- if (i1 >>> 0 >= i14 >>> 0) break L4;
+ if (i1 >>> 0 >= i15 >>> 0) break L4;
i9 = HEAP8[i1 >> 0] | 0;
if (!(_isxdigit_l(i9, __ZNSt3__16__clocEv() | 0) | 0)) break L4;
i1 = i1 + 1 | 0;
@@ -39428,18 +38737,18 @@ function __ZNSt3__19__num_putIcE23__widen_and_group_floatEPcS2_S2_S2_RS2_S3_RKNS
} while (0);
L12 : do if ((i20 | 0) == 10) while (1) {
i20 = 0;
- if (i1 >>> 0 >= i14 >>> 0) break L12;
+ if (i1 >>> 0 >= i15 >>> 0) break L12;
i9 = HEAP8[i1 >> 0] | 0;
if (!(_isdigit_l(i9, __ZNSt3__16__clocEv() | 0) | 0)) break L12;
i1 = i1 + 1 | 0;
i20 = 10;
} while (0);
- i8 = HEAP8[i12 >> 0] | 0;
- i9 = i12 + 4 | 0;
+ i8 = HEAP8[i13 >> 0] | 0;
+ i9 = i13 + 4 | 0;
L18 : do if (((i8 & 1) == 0 ? (i8 & 255) >>> 1 : HEAP32[i9 >> 2] | 0) | 0) {
L21 : do if ((i2 | 0) != (i1 | 0)) {
- i4 = i2;
i3 = i1;
+ i4 = i2;
while (1) {
i3 = i3 + -1 | 0;
if (i4 >>> 0 >= i3 >>> 0) break L21;
@@ -39449,36 +38758,36 @@ function __ZNSt3__19__num_putIcE23__widen_and_group_floatEPcS2_S2_S2_RS2_S3_RKNS
i4 = i4 + 1 | 0;
}
} while (0);
- i8 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i10 >> 2] | 0) + 16 >> 2] & 127](i10) | 0;
- i5 = i12 + 8 | 0;
- i7 = i12 + 1 | 0;
+ i5 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i10 >> 2] | 0) + 16 >> 2] & 127](i10) | 0;
+ i6 = i13 + 8 | 0;
+ i7 = i13 + 1 | 0;
i3 = 0;
i4 = 0;
- i6 = i2;
+ i8 = i2;
while (1) {
- if (i6 >>> 0 >= i1 >>> 0) break;
- i22 = HEAP8[((HEAP8[i12 >> 0] & 1) == 0 ? i7 : HEAP32[i5 >> 2] | 0) + i4 >> 0] | 0;
+ if (i8 >>> 0 >= i1 >>> 0) break;
+ i22 = HEAP8[((HEAP8[i13 >> 0] & 1) == 0 ? i7 : HEAP32[i6 >> 2] | 0) + i4 >> 0] | 0;
if (i22 << 24 >> 24 > 0 & (i3 | 0) == (i22 << 24 >> 24 | 0)) {
- i22 = HEAP32[i17 >> 2] | 0;
- HEAP32[i17 >> 2] = i22 + 1;
- HEAP8[i22 >> 0] = i8;
- i22 = HEAP8[i12 >> 0] | 0;
+ i22 = HEAP32[i18 >> 2] | 0;
+ HEAP32[i18 >> 2] = i22 + 1;
+ HEAP8[i22 >> 0] = i5;
+ i22 = HEAP8[i13 >> 0] | 0;
i3 = 0;
i4 = (i4 >>> 0 < (((i22 & 1) == 0 ? (i22 & 255) >>> 1 : HEAP32[i9 >> 2] | 0) + -1 | 0) >>> 0 & 1) + i4 | 0;
}
- i23 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i19 >> 2] | 0) + 28 >> 2] & 31](i19, HEAP8[i6 >> 0] | 0) | 0;
- i22 = HEAP32[i17 >> 2] | 0;
- HEAP32[i17 >> 2] = i22 + 1;
+ i23 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i12 >> 2] | 0) + 28 >> 2] & 31](i12, HEAP8[i8 >> 0] | 0) | 0;
+ i22 = HEAP32[i18 >> 2] | 0;
+ HEAP32[i18 >> 2] = i22 + 1;
HEAP8[i22 >> 0] = i23;
i3 = i3 + 1 | 0;
- i6 = i6 + 1 | 0;
+ i8 = i8 + 1 | 0;
}
- i3 = i16 + (i2 - i13) | 0;
- i2 = HEAP32[i17 >> 2] | 0;
- if ((i3 | 0) == (i2 | 0)) i3 = i19; else while (1) {
+ i3 = i17 + (i2 - i14) | 0;
+ i2 = HEAP32[i18 >> 2] | 0;
+ if ((i3 | 0) == (i2 | 0)) i3 = i12; else while (1) {
i2 = i2 + -1 | 0;
if (i3 >>> 0 >= i2 >>> 0) {
- i3 = i19;
+ i3 = i12;
break L18;
}
i23 = HEAP8[i3 >> 0] | 0;
@@ -39487,35 +38796,35 @@ function __ZNSt3__19__num_putIcE23__widen_and_group_floatEPcS2_S2_S2_RS2_S3_RKNS
i3 = i3 + 1 | 0;
}
} else {
- FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i19 >> 2] | 0) + 32 >> 2] & 7](i19, i2, i1, HEAP32[i17 >> 2] | 0) | 0;
- HEAP32[i17 >> 2] = (HEAP32[i17 >> 2] | 0) + (i1 - i2);
- i3 = i19;
+ FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i12 >> 2] | 0) + 32 >> 2] & 7](i12, i2, i1, HEAP32[i18 >> 2] | 0) | 0;
+ HEAP32[i18 >> 2] = (HEAP32[i18 >> 2] | 0) + (i1 - i2);
+ i3 = i12;
} while (0);
while (1) {
- if (i1 >>> 0 >= i14 >>> 0) break;
+ if (i1 >>> 0 >= i15 >>> 0) break;
i2 = HEAP8[i1 >> 0] | 0;
if (i2 << 24 >> 24 == 46) {
i20 = 29;
break;
}
- i22 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 31](i19, i2) | 0;
- i23 = HEAP32[i17 >> 2] | 0;
- HEAP32[i17 >> 2] = i23 + 1;
+ i22 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 31](i12, i2) | 0;
+ i23 = HEAP32[i18 >> 2] | 0;
+ HEAP32[i18 >> 2] = i23 + 1;
HEAP8[i23 >> 0] = i22;
i1 = i1 + 1 | 0;
}
if ((i20 | 0) == 29) {
i22 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i10 >> 2] | 0) + 12 >> 2] & 127](i10) | 0;
- i23 = HEAP32[i17 >> 2] | 0;
- HEAP32[i17 >> 2] = i23 + 1;
+ i23 = HEAP32[i18 >> 2] | 0;
+ HEAP32[i18 >> 2] = i23 + 1;
HEAP8[i23 >> 0] = i22;
i1 = i1 + 1 | 0;
}
- FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i19 >> 2] | 0) + 32 >> 2] & 7](i19, i1, i14, HEAP32[i17 >> 2] | 0) | 0;
- i23 = (HEAP32[i17 >> 2] | 0) + (i11 - i1) | 0;
- HEAP32[i17 >> 2] = i23;
- HEAP32[i18 >> 2] = (i15 | 0) == (i14 | 0) ? i23 : i16 + (i15 - i13) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i12);
+ FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i12 >> 2] | 0) + 32 >> 2] & 7](i12, i1, i15, HEAP32[i18 >> 2] | 0) | 0;
+ i23 = (HEAP32[i18 >> 2] | 0) + (i11 - i1) | 0;
+ HEAP32[i18 >> 2] = i23;
+ HEAP32[i19 >> 2] = (i16 | 0) == (i15 | 0) ? i23 : i17 + (i16 - i14) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i13);
STACKTOP = i21;
return;
}
@@ -39534,28 +38843,28 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE1
i3 = i20 + 196 | 0;
i19 = i20 + 184 | 0;
i18 = i20 + 172 | 0;
- i14 = i20 + 168 | 0;
- i15 = i20 + 8 | 0;
+ i15 = i20 + 168 | 0;
+ i16 = i20 + 8 | 0;
i13 = i20 + 4 | 0;
i12 = i20;
switch (HEAP32[i2 + 4 >> 2] & 74 | 0) {
case 64:
{
- i16 = 8;
+ i14 = 8;
break;
}
case 8:
{
- i16 = 16;
+ i14 = 16;
break;
}
case 0:
{
- i16 = 0;
+ i14 = 0;
break;
}
default:
- i16 = 10;
+ i14 = 10;
}
__ZNSt3__19__num_getIcE17__stage2_int_prepERNS_8ios_baseEPcRc(i19, i2, i11, i3);
i1 = 0;
@@ -39567,12 +38876,12 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE1
if (!(HEAP8[i18 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i1, 0);
i8 = i18 + 8 | 0;
- i10 = i18 + 1 | 0;
- i6 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i6;
- HEAP32[i13 >> 2] = i15;
+ i9 = i18 + 1 | 0;
+ i6 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i6;
+ HEAP32[i13 >> 2] = i16;
HEAP32[i12 >> 2] = 0;
- i9 = i18 + 4 | 0;
+ i10 = i18 + 4 | 0;
i7 = HEAP8[i3 >> 0] | 0;
i1 = HEAP32[i21 >> 2] | 0;
i3 = i6;
@@ -39601,41 +38910,41 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE1
} else i4 = 0;
}
i5 = HEAP8[i18 >> 0] | 0;
- i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i9 >> 2] | 0;
- if ((HEAP32[i14 >> 2] | 0) == (i3 + i5 | 0)) {
+ i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i10 >> 2] | 0;
+ if ((HEAP32[i15 >> 2] | 0) == (i3 + i5 | 0)) {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i5 << 1, 0);
if (!(HEAP8[i18 >> 0] & 1)) i2 = 10; else i2 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i2, 0);
- i3 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i3 + i5;
+ i3 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i3 + i5;
}
- i6 = i1 + 12 | 0;
- i2 = HEAP32[i6 >> 2] | 0;
- i5 = i1 + 16 | 0;
- if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAPU8[i2 >> 0] | 0;
- if (__ZNSt3__19__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i2 & 255, i16, i3, i14, i12, i7, i19, i15, i13, i11) | 0) break;
- i2 = HEAP32[i6 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) {
+ i5 = i1 + 12 | 0;
+ i2 = HEAP32[i5 >> 2] | 0;
+ i6 = i1 + 16 | 0;
+ if ((i2 | 0) == (HEAP32[i6 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAPU8[i2 >> 0] | 0;
+ if (__ZNSt3__19__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i2 & 255, i14, i3, i15, i12, i7, i19, i16, i13, i11) | 0) break;
+ i2 = HEAP32[i5 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i6 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
continue;
} else {
- HEAP32[i6 >> 2] = i2 + 1;
+ HEAP32[i5 >> 2] = i2 + 1;
continue;
}
}
i11 = HEAP8[i19 >> 0] | 0;
i2 = HEAP32[i13 >> 2] | 0;
- if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i2 - i15 | 0) < 160 : 0) {
+ if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i2 - i16 | 0) < 160 : 0) {
i11 = HEAP32[i12 >> 2] | 0;
i12 = i2 + 4 | 0;
HEAP32[i13 >> 2] = i12;
HEAP32[i2 >> 2] = i11;
i2 = i12;
}
- i16 = __ZNSt3__127__num_get_unsigned_integralIyEET_PKcS3_Rji(i3, HEAP32[i14 >> 2] | 0, i23, i16) | 0;
- HEAP32[i17 >> 2] = i16;
+ i15 = __ZNSt3__127__num_get_unsigned_integralIyEET_PKcS3_Rji(i3, HEAP32[i15 >> 2] | 0, i23, i14) | 0;
+ HEAP32[i17 >> 2] = i15;
HEAP32[i17 + 4 >> 2] = tempRet0;
- __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i15, i2, i23);
+ __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i16, i2, i23);
if (i1) {
if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) {
HEAP32[i21 >> 2] = 0;
@@ -39674,28 +38983,28 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE1
i3 = i20 + 196 | 0;
i19 = i20 + 184 | 0;
i18 = i20 + 172 | 0;
- i14 = i20 + 168 | 0;
- i15 = i20 + 8 | 0;
+ i15 = i20 + 168 | 0;
+ i16 = i20 + 8 | 0;
i13 = i20 + 4 | 0;
i12 = i20;
switch (HEAP32[i2 + 4 >> 2] & 74 | 0) {
case 64:
{
- i16 = 8;
+ i14 = 8;
break;
}
case 8:
{
- i16 = 16;
+ i14 = 16;
break;
}
case 0:
{
- i16 = 0;
+ i14 = 0;
break;
}
default:
- i16 = 10;
+ i14 = 10;
}
__ZNSt3__19__num_getIcE17__stage2_int_prepERNS_8ios_baseEPcRc(i19, i2, i11, i3);
i1 = 0;
@@ -39707,12 +39016,12 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE1
if (!(HEAP8[i18 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i1, 0);
i8 = i18 + 8 | 0;
- i10 = i18 + 1 | 0;
- i6 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i6;
- HEAP32[i13 >> 2] = i15;
+ i9 = i18 + 1 | 0;
+ i6 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i6;
+ HEAP32[i13 >> 2] = i16;
HEAP32[i12 >> 2] = 0;
- i9 = i18 + 4 | 0;
+ i10 = i18 + 4 | 0;
i7 = HEAP8[i3 >> 0] | 0;
i1 = HEAP32[i21 >> 2] | 0;
i3 = i6;
@@ -39741,41 +39050,41 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE1
} else i4 = 0;
}
i5 = HEAP8[i18 >> 0] | 0;
- i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i9 >> 2] | 0;
- if ((HEAP32[i14 >> 2] | 0) == (i3 + i5 | 0)) {
+ i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i10 >> 2] | 0;
+ if ((HEAP32[i15 >> 2] | 0) == (i3 + i5 | 0)) {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i5 << 1, 0);
if (!(HEAP8[i18 >> 0] & 1)) i2 = 10; else i2 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i2, 0);
- i3 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i3 + i5;
+ i3 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i3 + i5;
}
- i6 = i1 + 12 | 0;
- i2 = HEAP32[i6 >> 2] | 0;
- i5 = i1 + 16 | 0;
- if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAPU8[i2 >> 0] | 0;
- if (__ZNSt3__19__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i2 & 255, i16, i3, i14, i12, i7, i19, i15, i13, i11) | 0) break;
- i2 = HEAP32[i6 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) {
+ i5 = i1 + 12 | 0;
+ i2 = HEAP32[i5 >> 2] | 0;
+ i6 = i1 + 16 | 0;
+ if ((i2 | 0) == (HEAP32[i6 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAPU8[i2 >> 0] | 0;
+ if (__ZNSt3__19__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i2 & 255, i14, i3, i15, i12, i7, i19, i16, i13, i11) | 0) break;
+ i2 = HEAP32[i5 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i6 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
continue;
} else {
- HEAP32[i6 >> 2] = i2 + 1;
+ HEAP32[i5 >> 2] = i2 + 1;
continue;
}
}
i11 = HEAP8[i19 >> 0] | 0;
i2 = HEAP32[i13 >> 2] | 0;
- if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i2 - i15 | 0) < 160 : 0) {
+ if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i2 - i16 | 0) < 160 : 0) {
i11 = HEAP32[i12 >> 2] | 0;
i12 = i2 + 4 | 0;
HEAP32[i13 >> 2] = i12;
HEAP32[i2 >> 2] = i11;
i2 = i12;
}
- i16 = __ZNSt3__125__num_get_signed_integralIxEET_PKcS3_Rji(i3, HEAP32[i14 >> 2] | 0, i23, i16) | 0;
- HEAP32[i17 >> 2] = i16;
+ i15 = __ZNSt3__125__num_get_signed_integralIxEET_PKcS3_Rji(i3, HEAP32[i15 >> 2] | 0, i23, i14) | 0;
+ HEAP32[i17 >> 2] = i15;
HEAP32[i17 + 4 >> 2] = tempRet0;
- __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i15, i2, i23);
+ __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i16, i2, i23);
if (i1) {
if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) {
HEAP32[i21 >> 2] = 0;
@@ -39831,14 +39140,14 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE2
if (!(HEAP8[i20 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i20 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0);
i9 = i20 + 8 | 0;
- i11 = i20 + 1 | 0;
- i6 = (HEAP8[i20 >> 0] & 1) == 0 ? i11 : HEAP32[i9 >> 2] | 0;
+ i10 = i20 + 1 | 0;
+ i6 = (HEAP8[i20 >> 0] & 1) == 0 ? i10 : HEAP32[i9 >> 2] | 0;
HEAP32[i17 >> 2] = i6;
HEAP32[i15 >> 2] = i18;
HEAP32[i14 >> 2] = 0;
HEAP8[i16 >> 0] = 1;
HEAP8[i13 >> 0] = 69;
- i10 = i20 + 4 | 0;
+ i11 = i20 + 4 | 0;
i8 = HEAP8[i3 >> 0] | 0;
i7 = HEAP8[i4 >> 0] | 0;
i1 = HEAP32[i23 >> 2] | 0;
@@ -39868,25 +39177,25 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE2
} else i4 = 0;
}
i5 = HEAP8[i20 >> 0] | 0;
- i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i10 >> 2] | 0;
+ i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i11 >> 2] | 0;
if ((HEAP32[i17 >> 2] | 0) == (i3 + i5 | 0)) {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i5 << 1, 0);
if (!(HEAP8[i20 >> 0] & 1)) i2 = 10; else i2 = (HEAP32[i20 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i2, 0);
- i3 = (HEAP8[i20 >> 0] & 1) == 0 ? i11 : HEAP32[i9 >> 2] | 0;
+ i3 = (HEAP8[i20 >> 0] & 1) == 0 ? i10 : HEAP32[i9 >> 2] | 0;
HEAP32[i17 >> 2] = i3 + i5;
}
- i6 = i1 + 12 | 0;
- i2 = HEAP32[i6 >> 2] | 0;
- i5 = i1 + 16 | 0;
- if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAPU8[i2 >> 0] | 0;
+ i5 = i1 + 12 | 0;
+ i2 = HEAP32[i5 >> 2] | 0;
+ i6 = i1 + 16 | 0;
+ if ((i2 | 0) == (HEAP32[i6 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAPU8[i2 >> 0] | 0;
if (__ZNSt3__19__num_getIcE19__stage2_float_loopEcRbRcPcRS4_ccRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSE_RjS4_(i2 & 255, i16, i13, i3, i17, i8, i7, i21, i18, i15, i14, i12) | 0) break;
- i2 = HEAP32[i6 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) {
+ i2 = HEAP32[i5 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i6 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
continue;
} else {
- HEAP32[i6 >> 2] = i2 + 1;
+ HEAP32[i5 >> 2] = i2 + 1;
continue;
}
}
@@ -39957,14 +39266,14 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE2
if (!(HEAP8[i20 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i20 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0);
i9 = i20 + 8 | 0;
- i11 = i20 + 1 | 0;
- i6 = (HEAP8[i20 >> 0] & 1) == 0 ? i11 : HEAP32[i9 >> 2] | 0;
+ i10 = i20 + 1 | 0;
+ i6 = (HEAP8[i20 >> 0] & 1) == 0 ? i10 : HEAP32[i9 >> 2] | 0;
HEAP32[i17 >> 2] = i6;
HEAP32[i15 >> 2] = i18;
HEAP32[i14 >> 2] = 0;
HEAP8[i16 >> 0] = 1;
HEAP8[i13 >> 0] = 69;
- i10 = i20 + 4 | 0;
+ i11 = i20 + 4 | 0;
i8 = HEAP8[i3 >> 0] | 0;
i7 = HEAP8[i4 >> 0] | 0;
i1 = HEAP32[i23 >> 2] | 0;
@@ -39994,25 +39303,25 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE2
} else i4 = 0;
}
i5 = HEAP8[i20 >> 0] | 0;
- i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i10 >> 2] | 0;
+ i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i11 >> 2] | 0;
if ((HEAP32[i17 >> 2] | 0) == (i3 + i5 | 0)) {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i5 << 1, 0);
if (!(HEAP8[i20 >> 0] & 1)) i2 = 10; else i2 = (HEAP32[i20 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i2, 0);
- i3 = (HEAP8[i20 >> 0] & 1) == 0 ? i11 : HEAP32[i9 >> 2] | 0;
+ i3 = (HEAP8[i20 >> 0] & 1) == 0 ? i10 : HEAP32[i9 >> 2] | 0;
HEAP32[i17 >> 2] = i3 + i5;
}
- i6 = i1 + 12 | 0;
- i2 = HEAP32[i6 >> 2] | 0;
- i5 = i1 + 16 | 0;
- if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAPU8[i2 >> 0] | 0;
+ i5 = i1 + 12 | 0;
+ i2 = HEAP32[i5 >> 2] | 0;
+ i6 = i1 + 16 | 0;
+ if ((i2 | 0) == (HEAP32[i6 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAPU8[i2 >> 0] | 0;
if (__ZNSt3__19__num_getIcE19__stage2_float_loopEcRbRcPcRS4_ccRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSE_RjS4_(i2 & 255, i16, i13, i3, i17, i8, i7, i21, i18, i15, i14, i12) | 0) break;
- i2 = HEAP32[i6 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) {
+ i2 = HEAP32[i5 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i6 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
continue;
} else {
- HEAP32[i6 >> 2] = i2 + 1;
+ HEAP32[i5 >> 2] = i2 + 1;
continue;
}
}
@@ -40083,14 +39392,14 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE2
if (!(HEAP8[i20 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i20 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0);
i9 = i20 + 8 | 0;
- i11 = i20 + 1 | 0;
- i6 = (HEAP8[i20 >> 0] & 1) == 0 ? i11 : HEAP32[i9 >> 2] | 0;
+ i10 = i20 + 1 | 0;
+ i6 = (HEAP8[i20 >> 0] & 1) == 0 ? i10 : HEAP32[i9 >> 2] | 0;
HEAP32[i17 >> 2] = i6;
HEAP32[i15 >> 2] = i18;
HEAP32[i14 >> 2] = 0;
HEAP8[i16 >> 0] = 1;
HEAP8[i13 >> 0] = 69;
- i10 = i20 + 4 | 0;
+ i11 = i20 + 4 | 0;
i8 = HEAP8[i3 >> 0] | 0;
i7 = HEAP8[i4 >> 0] | 0;
i1 = HEAP32[i23 >> 2] | 0;
@@ -40120,25 +39429,25 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE2
} else i4 = 0;
}
i5 = HEAP8[i20 >> 0] | 0;
- i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i10 >> 2] | 0;
+ i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i11 >> 2] | 0;
if ((HEAP32[i17 >> 2] | 0) == (i3 + i5 | 0)) {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i5 << 1, 0);
if (!(HEAP8[i20 >> 0] & 1)) i2 = 10; else i2 = (HEAP32[i20 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i2, 0);
- i3 = (HEAP8[i20 >> 0] & 1) == 0 ? i11 : HEAP32[i9 >> 2] | 0;
+ i3 = (HEAP8[i20 >> 0] & 1) == 0 ? i10 : HEAP32[i9 >> 2] | 0;
HEAP32[i17 >> 2] = i3 + i5;
}
- i6 = i1 + 12 | 0;
- i2 = HEAP32[i6 >> 2] | 0;
- i5 = i1 + 16 | 0;
- if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAPU8[i2 >> 0] | 0;
+ i5 = i1 + 12 | 0;
+ i2 = HEAP32[i5 >> 2] | 0;
+ i6 = i1 + 16 | 0;
+ if ((i2 | 0) == (HEAP32[i6 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAPU8[i2 >> 0] | 0;
if (__ZNSt3__19__num_getIcE19__stage2_float_loopEcRbRcPcRS4_ccRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSE_RjS4_(i2 & 255, i16, i13, i3, i17, i8, i7, i21, i18, i15, i14, i12) | 0) break;
- i2 = HEAP32[i6 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) {
+ i2 = HEAP32[i5 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i6 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
continue;
} else {
- HEAP32[i6 >> 2] = i2 + 1;
+ HEAP32[i5 >> 2] = i2 + 1;
continue;
}
}
@@ -40192,28 +39501,28 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE1
i3 = i20 + 196 | 0;
i19 = i20 + 184 | 0;
i18 = i20 + 172 | 0;
- i14 = i20 + 168 | 0;
- i15 = i20 + 8 | 0;
+ i15 = i20 + 168 | 0;
+ i16 = i20 + 8 | 0;
i13 = i20 + 4 | 0;
i12 = i20;
switch (HEAP32[i2 + 4 >> 2] & 74 | 0) {
case 64:
{
- i16 = 8;
+ i14 = 8;
break;
}
case 8:
{
- i16 = 16;
+ i14 = 16;
break;
}
case 0:
{
- i16 = 0;
+ i14 = 0;
break;
}
default:
- i16 = 10;
+ i14 = 10;
}
__ZNSt3__19__num_getIcE17__stage2_int_prepERNS_8ios_baseEPcRc(i19, i2, i11, i3);
i1 = 0;
@@ -40225,12 +39534,12 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE1
if (!(HEAP8[i18 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i1, 0);
i8 = i18 + 8 | 0;
- i10 = i18 + 1 | 0;
- i6 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i6;
- HEAP32[i13 >> 2] = i15;
+ i9 = i18 + 1 | 0;
+ i6 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i6;
+ HEAP32[i13 >> 2] = i16;
HEAP32[i12 >> 2] = 0;
- i9 = i18 + 4 | 0;
+ i10 = i18 + 4 | 0;
i7 = HEAP8[i3 >> 0] | 0;
i1 = HEAP32[i21 >> 2] | 0;
i3 = i6;
@@ -40259,40 +39568,40 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE1
} else i4 = 0;
}
i5 = HEAP8[i18 >> 0] | 0;
- i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i9 >> 2] | 0;
- if ((HEAP32[i14 >> 2] | 0) == (i3 + i5 | 0)) {
+ i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i10 >> 2] | 0;
+ if ((HEAP32[i15 >> 2] | 0) == (i3 + i5 | 0)) {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i5 << 1, 0);
if (!(HEAP8[i18 >> 0] & 1)) i2 = 10; else i2 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i2, 0);
- i3 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i3 + i5;
+ i3 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i3 + i5;
}
- i6 = i1 + 12 | 0;
- i2 = HEAP32[i6 >> 2] | 0;
- i5 = i1 + 16 | 0;
- if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAPU8[i2 >> 0] | 0;
- if (__ZNSt3__19__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i2 & 255, i16, i3, i14, i12, i7, i19, i15, i13, i11) | 0) break;
- i2 = HEAP32[i6 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) {
+ i5 = i1 + 12 | 0;
+ i2 = HEAP32[i5 >> 2] | 0;
+ i6 = i1 + 16 | 0;
+ if ((i2 | 0) == (HEAP32[i6 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAPU8[i2 >> 0] | 0;
+ if (__ZNSt3__19__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i2 & 255, i14, i3, i15, i12, i7, i19, i16, i13, i11) | 0) break;
+ i2 = HEAP32[i5 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i6 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
continue;
} else {
- HEAP32[i6 >> 2] = i2 + 1;
+ HEAP32[i5 >> 2] = i2 + 1;
continue;
}
}
i11 = HEAP8[i19 >> 0] | 0;
i2 = HEAP32[i13 >> 2] | 0;
- if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i2 - i15 | 0) < 160 : 0) {
+ if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i2 - i16 | 0) < 160 : 0) {
i11 = HEAP32[i12 >> 2] | 0;
i12 = i2 + 4 | 0;
HEAP32[i13 >> 2] = i12;
HEAP32[i2 >> 2] = i11;
i2 = i12;
}
- i16 = __ZNSt3__127__num_get_unsigned_integralItEET_PKcS3_Rji(i3, HEAP32[i14 >> 2] | 0, i23, i16) | 0;
- HEAP16[i17 >> 1] = i16;
- __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i15, i2, i23);
+ i15 = __ZNSt3__127__num_get_unsigned_integralItEET_PKcS3_Rji(i3, HEAP32[i15 >> 2] | 0, i23, i14) | 0;
+ HEAP16[i17 >> 1] = i15;
+ __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i16, i2, i23);
if (i1) {
if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) {
HEAP32[i21 >> 2] = 0;
@@ -40331,28 +39640,28 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE1
i3 = i20 + 196 | 0;
i19 = i20 + 184 | 0;
i18 = i20 + 172 | 0;
- i14 = i20 + 168 | 0;
- i15 = i20 + 8 | 0;
+ i15 = i20 + 168 | 0;
+ i16 = i20 + 8 | 0;
i13 = i20 + 4 | 0;
i12 = i20;
switch (HEAP32[i2 + 4 >> 2] & 74 | 0) {
case 64:
{
- i16 = 8;
+ i14 = 8;
break;
}
case 8:
{
- i16 = 16;
+ i14 = 16;
break;
}
case 0:
{
- i16 = 0;
+ i14 = 0;
break;
}
default:
- i16 = 10;
+ i14 = 10;
}
__ZNSt3__19__num_getIcE17__stage2_int_prepERNS_8ios_baseEPcRc(i19, i2, i11, i3);
i1 = 0;
@@ -40364,12 +39673,12 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE1
if (!(HEAP8[i18 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i1, 0);
i8 = i18 + 8 | 0;
- i10 = i18 + 1 | 0;
- i6 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i6;
- HEAP32[i13 >> 2] = i15;
+ i9 = i18 + 1 | 0;
+ i6 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i6;
+ HEAP32[i13 >> 2] = i16;
HEAP32[i12 >> 2] = 0;
- i9 = i18 + 4 | 0;
+ i10 = i18 + 4 | 0;
i7 = HEAP8[i3 >> 0] | 0;
i1 = HEAP32[i21 >> 2] | 0;
i3 = i6;
@@ -40398,40 +39707,40 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE1
} else i4 = 0;
}
i5 = HEAP8[i18 >> 0] | 0;
- i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i9 >> 2] | 0;
- if ((HEAP32[i14 >> 2] | 0) == (i3 + i5 | 0)) {
+ i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i10 >> 2] | 0;
+ if ((HEAP32[i15 >> 2] | 0) == (i3 + i5 | 0)) {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i5 << 1, 0);
if (!(HEAP8[i18 >> 0] & 1)) i2 = 10; else i2 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i2, 0);
- i3 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i3 + i5;
+ i3 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i3 + i5;
}
- i6 = i1 + 12 | 0;
- i2 = HEAP32[i6 >> 2] | 0;
- i5 = i1 + 16 | 0;
- if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAPU8[i2 >> 0] | 0;
- if (__ZNSt3__19__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i2 & 255, i16, i3, i14, i12, i7, i19, i15, i13, i11) | 0) break;
- i2 = HEAP32[i6 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) {
+ i5 = i1 + 12 | 0;
+ i2 = HEAP32[i5 >> 2] | 0;
+ i6 = i1 + 16 | 0;
+ if ((i2 | 0) == (HEAP32[i6 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAPU8[i2 >> 0] | 0;
+ if (__ZNSt3__19__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i2 & 255, i14, i3, i15, i12, i7, i19, i16, i13, i11) | 0) break;
+ i2 = HEAP32[i5 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i6 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
continue;
} else {
- HEAP32[i6 >> 2] = i2 + 1;
+ HEAP32[i5 >> 2] = i2 + 1;
continue;
}
}
i11 = HEAP8[i19 >> 0] | 0;
i2 = HEAP32[i13 >> 2] | 0;
- if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i2 - i15 | 0) < 160 : 0) {
+ if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i2 - i16 | 0) < 160 : 0) {
i11 = HEAP32[i12 >> 2] | 0;
i12 = i2 + 4 | 0;
HEAP32[i13 >> 2] = i12;
HEAP32[i2 >> 2] = i11;
i2 = i12;
}
- i16 = __ZNSt3__127__num_get_unsigned_integralImEET_PKcS3_Rji(i3, HEAP32[i14 >> 2] | 0, i23, i16) | 0;
- HEAP32[i17 >> 2] = i16;
- __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i15, i2, i23);
+ i15 = __ZNSt3__127__num_get_unsigned_integralImEET_PKcS3_Rji(i3, HEAP32[i15 >> 2] | 0, i23, i14) | 0;
+ HEAP32[i17 >> 2] = i15;
+ __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i16, i2, i23);
if (i1) {
if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) {
HEAP32[i21 >> 2] = 0;
@@ -40470,28 +39779,28 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE1
i3 = i20 + 196 | 0;
i19 = i20 + 184 | 0;
i18 = i20 + 172 | 0;
- i14 = i20 + 168 | 0;
- i15 = i20 + 8 | 0;
+ i15 = i20 + 168 | 0;
+ i16 = i20 + 8 | 0;
i13 = i20 + 4 | 0;
i12 = i20;
switch (HEAP32[i2 + 4 >> 2] & 74 | 0) {
case 64:
{
- i16 = 8;
+ i14 = 8;
break;
}
case 8:
{
- i16 = 16;
+ i14 = 16;
break;
}
case 0:
{
- i16 = 0;
+ i14 = 0;
break;
}
default:
- i16 = 10;
+ i14 = 10;
}
__ZNSt3__19__num_getIcE17__stage2_int_prepERNS_8ios_baseEPcRc(i19, i2, i11, i3);
i1 = 0;
@@ -40503,12 +39812,12 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE1
if (!(HEAP8[i18 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i1, 0);
i8 = i18 + 8 | 0;
- i10 = i18 + 1 | 0;
- i6 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i6;
- HEAP32[i13 >> 2] = i15;
+ i9 = i18 + 1 | 0;
+ i6 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i6;
+ HEAP32[i13 >> 2] = i16;
HEAP32[i12 >> 2] = 0;
- i9 = i18 + 4 | 0;
+ i10 = i18 + 4 | 0;
i7 = HEAP8[i3 >> 0] | 0;
i1 = HEAP32[i21 >> 2] | 0;
i3 = i6;
@@ -40537,40 +39846,40 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE1
} else i4 = 0;
}
i5 = HEAP8[i18 >> 0] | 0;
- i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i9 >> 2] | 0;
- if ((HEAP32[i14 >> 2] | 0) == (i3 + i5 | 0)) {
+ i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i10 >> 2] | 0;
+ if ((HEAP32[i15 >> 2] | 0) == (i3 + i5 | 0)) {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i5 << 1, 0);
if (!(HEAP8[i18 >> 0] & 1)) i2 = 10; else i2 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i2, 0);
- i3 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i3 + i5;
+ i3 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i3 + i5;
}
- i6 = i1 + 12 | 0;
- i2 = HEAP32[i6 >> 2] | 0;
- i5 = i1 + 16 | 0;
- if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAPU8[i2 >> 0] | 0;
- if (__ZNSt3__19__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i2 & 255, i16, i3, i14, i12, i7, i19, i15, i13, i11) | 0) break;
- i2 = HEAP32[i6 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) {
+ i5 = i1 + 12 | 0;
+ i2 = HEAP32[i5 >> 2] | 0;
+ i6 = i1 + 16 | 0;
+ if ((i2 | 0) == (HEAP32[i6 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAPU8[i2 >> 0] | 0;
+ if (__ZNSt3__19__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i2 & 255, i14, i3, i15, i12, i7, i19, i16, i13, i11) | 0) break;
+ i2 = HEAP32[i5 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i6 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
continue;
} else {
- HEAP32[i6 >> 2] = i2 + 1;
+ HEAP32[i5 >> 2] = i2 + 1;
continue;
}
}
i11 = HEAP8[i19 >> 0] | 0;
i2 = HEAP32[i13 >> 2] | 0;
- if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i2 - i15 | 0) < 160 : 0) {
+ if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i2 - i16 | 0) < 160 : 0) {
i11 = HEAP32[i12 >> 2] | 0;
i12 = i2 + 4 | 0;
HEAP32[i13 >> 2] = i12;
HEAP32[i2 >> 2] = i11;
i2 = i12;
}
- i16 = __ZNSt3__127__num_get_unsigned_integralIjEET_PKcS3_Rji(i3, HEAP32[i14 >> 2] | 0, i23, i16) | 0;
- HEAP32[i17 >> 2] = i16;
- __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i15, i2, i23);
+ i15 = __ZNSt3__127__num_get_unsigned_integralIjEET_PKcS3_Rji(i3, HEAP32[i15 >> 2] | 0, i23, i14) | 0;
+ HEAP32[i17 >> 2] = i15;
+ __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i16, i2, i23);
if (i1) {
if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) {
HEAP32[i21 >> 2] = 0;
@@ -40609,28 +39918,28 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE1
i3 = i20 + 196 | 0;
i19 = i20 + 184 | 0;
i18 = i20 + 172 | 0;
- i14 = i20 + 168 | 0;
- i15 = i20 + 8 | 0;
+ i15 = i20 + 168 | 0;
+ i16 = i20 + 8 | 0;
i13 = i20 + 4 | 0;
i12 = i20;
switch (HEAP32[i2 + 4 >> 2] & 74 | 0) {
case 64:
{
- i16 = 8;
+ i14 = 8;
break;
}
case 8:
{
- i16 = 16;
+ i14 = 16;
break;
}
case 0:
{
- i16 = 0;
+ i14 = 0;
break;
}
default:
- i16 = 10;
+ i14 = 10;
}
__ZNSt3__19__num_getIcE17__stage2_int_prepERNS_8ios_baseEPcRc(i19, i2, i11, i3);
i1 = 0;
@@ -40642,12 +39951,12 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE1
if (!(HEAP8[i18 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i1, 0);
i8 = i18 + 8 | 0;
- i10 = i18 + 1 | 0;
- i6 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i6;
- HEAP32[i13 >> 2] = i15;
+ i9 = i18 + 1 | 0;
+ i6 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i6;
+ HEAP32[i13 >> 2] = i16;
HEAP32[i12 >> 2] = 0;
- i9 = i18 + 4 | 0;
+ i10 = i18 + 4 | 0;
i7 = HEAP8[i3 >> 0] | 0;
i1 = HEAP32[i21 >> 2] | 0;
i3 = i6;
@@ -40676,40 +39985,40 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE1
} else i4 = 0;
}
i5 = HEAP8[i18 >> 0] | 0;
- i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i9 >> 2] | 0;
- if ((HEAP32[i14 >> 2] | 0) == (i3 + i5 | 0)) {
+ i5 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : HEAP32[i10 >> 2] | 0;
+ if ((HEAP32[i15 >> 2] | 0) == (i3 + i5 | 0)) {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i5 << 1, 0);
if (!(HEAP8[i18 >> 0] & 1)) i2 = 10; else i2 = (HEAP32[i18 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i2, 0);
- i3 = (HEAP8[i18 >> 0] & 1) == 0 ? i10 : HEAP32[i8 >> 2] | 0;
- HEAP32[i14 >> 2] = i3 + i5;
+ i3 = (HEAP8[i18 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
+ HEAP32[i15 >> 2] = i3 + i5;
}
- i6 = i1 + 12 | 0;
- i2 = HEAP32[i6 >> 2] | 0;
- i5 = i1 + 16 | 0;
- if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAPU8[i2 >> 0] | 0;
- if (__ZNSt3__19__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i2 & 255, i16, i3, i14, i12, i7, i19, i15, i13, i11) | 0) break;
- i2 = HEAP32[i6 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) {
+ i5 = i1 + 12 | 0;
+ i2 = HEAP32[i5 >> 2] | 0;
+ i6 = i1 + 16 | 0;
+ if ((i2 | 0) == (HEAP32[i6 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAPU8[i2 >> 0] | 0;
+ if (__ZNSt3__19__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i2 & 255, i14, i3, i15, i12, i7, i19, i16, i13, i11) | 0) break;
+ i2 = HEAP32[i5 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i6 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
continue;
} else {
- HEAP32[i6 >> 2] = i2 + 1;
+ HEAP32[i5 >> 2] = i2 + 1;
continue;
}
}
i11 = HEAP8[i19 >> 0] | 0;
i2 = HEAP32[i13 >> 2] | 0;
- if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i2 - i15 | 0) < 160 : 0) {
+ if ((((i11 & 1) == 0 ? (i11 & 255) >>> 1 : HEAP32[i19 + 4 >> 2] | 0) | 0) != 0 ? (i2 - i16 | 0) < 160 : 0) {
i11 = HEAP32[i12 >> 2] | 0;
i12 = i2 + 4 | 0;
HEAP32[i13 >> 2] = i12;
HEAP32[i2 >> 2] = i11;
i2 = i12;
}
- i16 = __ZNSt3__125__num_get_signed_integralIlEET_PKcS3_Rji(i3, HEAP32[i14 >> 2] | 0, i23, i16) | 0;
- HEAP32[i17 >> 2] = i16;
- __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i15, i2, i23);
+ i15 = __ZNSt3__125__num_get_signed_integralIlEET_PKcS3_Rji(i3, HEAP32[i15 >> 2] | 0, i23, i14) | 0;
+ HEAP32[i17 >> 2] = i15;
+ __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i16, i2, i23);
if (i1) {
if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) {
HEAP32[i21 >> 2] = 0;
@@ -40733,6 +40042,112 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE1
STACKTOP = i20;
return i24 | 0;
}
+
+function __ZN4wasm22SExpressionWasmBuilder11parseImportERNS_7ElementE(i14, i10) {
+ i14 = i14 | 0;
+ i10 = i10 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0, i12 = 0, i13 = 0, i15 = 0, i16 = 0;
+ i16 = STACKTOP;
+ STACKTOP = STACKTOP + 48 | 0;
+ i15 = i16 + 24 | 0;
+ i8 = i16 + 20 | 0;
+ i3 = i16 + 16 | 0;
+ i4 = i16 + 12 | 0;
+ i11 = i16;
+ i12 = i14 + 4 | 0;
+ i13 = __ZN10MixedArena5allocIN4wasm6ImportEEEPT_v(HEAP32[i12 >> 2] | 0) | 0;
+ if ((__ZN4wasm7Element4sizeEv(i10) | 0) >>> 0 > 3 ? (i9 = __ZN4wasm7Element4listEv(i10) | 0, (HEAP8[HEAP32[(HEAP32[i9 >> 2] | 0) + 12 >> 2] >> 0] | 0) == 0) : 0) {
+ i1 = __ZN4wasm7Element4listEv(i10) | 0;
+ i1 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] | 0) | 0;
+ HEAP32[i13 >> 2] = i1;
+ i1 = i14 + 36 | 0;
+ i9 = 2;
+ } else {
+ i1 = i14 + 36 | 0;
+ i9 = __ZN4wasm4Name7fromIntEj(HEAP32[i1 >> 2] | 0) | 0;
+ HEAP32[i13 >> 2] = i9;
+ i9 = 1;
+ }
+ HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 1;
+ i1 = i9 + 1 | 0;
+ i7 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i10, i9) | 0) | 0;
+ HEAP32[i13 + 4 >> 2] = i7;
+ i7 = __ZN4wasm7ElementixEj(i10, i1) | 0;
+ if (HEAP8[i7 >> 0] | 0) __ZNKSt3__18functionIFvvEEclEv(i14 + 8 | 0);
+ i2 = i9 + 2 | 0;
+ i7 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i10, i1) | 0) | 0;
+ HEAP32[i13 + 8 >> 2] = i7;
+ HEAP32[i15 >> 2] = 0;
+ HEAP32[i15 + 4 >> 2] = 0;
+ HEAP32[i15 + 8 >> 2] = 0;
+ HEAP32[i15 + 12 >> 2] = 0;
+ HEAP32[i15 + 16 >> 2] = 0;
+ do if ((__ZN4wasm7Element4sizeEv(i10) | 0) >>> 0 > i2 >>> 0) {
+ i7 = __ZN4wasm7ElementixEj(i10, i2) | 0;
+ i1 = __ZN4wasm7Element4listEv(i7) | 0;
+ i1 = __ZN4wasm7Element3strEv(HEAP32[HEAP32[i1 >> 2] >> 2] | 0) | 0;
+ L12 : do if ((i1 | 0) == (HEAP32[9549] | 0)) {
+ i1 = i15 + 8 | 0;
+ i2 = i15 + 12 | 0;
+ i3 = i15 + 16 | 0;
+ i6 = 1;
+ while (1) {
+ if (i6 >>> 0 >= (__ZN4wasm7Element4sizeEv(i7) | 0) >>> 0) break L12;
+ i4 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i14, __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i7, i6) | 0) | 0, 0, 0) | 0;
+ HEAP32[i8 >> 2] = i4;
+ i5 = HEAP32[i2 >> 2] | 0;
+ if (i5 >>> 0 < (HEAP32[i3 >> 2] | 0) >>> 0) {
+ HEAP32[i5 >> 2] = i4;
+ HEAP32[i2 >> 2] = i5 + 4;
+ } else __ZNSt3__16vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i1, i8);
+ i6 = i6 + 1 | 0;
+ }
+ } else {
+ if ((i1 | 0) == (HEAP32[9550] | 0)) {
+ i8 = __ZN4wasm7Element4listEv(i7) | 0;
+ i8 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i14, __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i8 >> 2] | 0) + 4 >> 2] | 0) | 0, 0, 0) | 0;
+ HEAP32[i15 + 4 >> 2] = i8;
+ break;
+ }
+ if ((i1 | 0) != (HEAP32[9557] | 0)) {
+ __ZNKSt3__18functionIFvvEEclEv(i14 + 8 | 0);
+ break;
+ }
+ i2 = __ZN4wasm7Element4listEv(i7) | 0;
+ i2 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i2 >> 2] | 0) + 4 >> 2] | 0) | 0;
+ i1 = HEAP32[i14 >> 2] | 0;
+ HEAP32[i3 >> 2] = i2;
+ if ((__ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_(i1 + 48 | 0, i3) | 0) == (i1 + 52 | 0)) {
+ __ZNKSt3__18functionIFvvEEclEv(i14 + 8 | 0);
+ i1 = HEAP32[i14 >> 2] | 0;
+ }
+ HEAP32[i4 >> 2] = i2;
+ i8 = __ZNSt3__13mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixEOS2_(i1 + 48 | 0, i4) | 0;
+ __ZN4wasm12FunctionTypeaSERKS0_(i15, HEAP32[i8 >> 2] | 0) | 0;
+ } while (0);
+ i1 = i9 + 3 | 0;
+ if ((__ZN4wasm7Element4sizeEv(i10) | 0) >>> 0 > i1 >>> 0) {
+ i1 = __ZN4wasm7ElementixEj(i10, i1) | 0;
+ i10 = __ZN4wasm7Element4listEv(i1) | 0;
+ i10 = __ZN4wasm7Element3strEv(HEAP32[HEAP32[i10 >> 2] >> 2] | 0) | 0;
+ if ((i10 | 0) == (HEAP32[9550] | 0)) {
+ i10 = __ZN4wasm7Element4listEv(i1) | 0;
+ i10 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i14, __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i10 >> 2] | 0) + 4 >> 2] | 0) | 0, 0, 0) | 0;
+ HEAP32[i15 + 4 >> 2] = i10;
+ break;
+ } else ___assert_fail(16794, 16606, 1020, 16821);
+ }
+ } while (0);
+ __ZN4wasm6getSigEPNS_12FunctionTypeE(i11, i15);
+ i12 = __ZN4wasm18ensureFunctionTypeENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleER10MixedArena(i11, HEAP32[i14 >> 2] | 0, HEAP32[i12 >> 2] | 0) | 0;
+ HEAP32[i13 + 12 >> 2] = i12;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i11);
+ __ZN4wasm6Module9addImportEPNS_6ImportE(HEAP32[i14 >> 2] | 0, i13);
+ __ZNSt3__113__vector_baseIN4wasm8WasmTypeENS_9allocatorIS2_EEED2Ev(i15 + 8 | 0);
+ STACKTOP = i16;
+ return;
+}
+
function __ZN6cashew9JSPrinter11numToStringEdb(d2, i1) {
d2 = +d2;
i1 = i1 | 0;
@@ -40756,15 +40171,15 @@ function __ZN6cashew9JSPrinter11numToStringEdb(d2, i1) {
HEAPF64[i23 >> 3] = nan;
HEAPF64[i12 >> 3] = nan;
i11 = !(d2 >= 0.0);
- i9 = i1 ^ 1;
- i8 = 0;
+ i8 = i1 ^ 1;
+ i9 = 0;
L1 : while (1) {
- if ((i8 | 0) >= 2) {
+ if ((i9 | 0) >= 2) {
i22 = 3;
break;
}
- i5 = (i8 | 0) != 0;
- i7 = i5 ? HEAP32[690] | 0 : HEAP32[689] | 0;
+ i5 = (i9 | 0) != 0;
+ i7 = i5 ? HEAP32[800] | 0 : HEAP32[799] | 0;
L4 : do if (i10) {
if (i11) {
i22 = 12;
@@ -40772,26 +40187,26 @@ function __ZN6cashew9JSPrinter11numToStringEdb(d2, i1) {
}
if (!(__ZN4wasm12isUInteger64Ed(d2) | 0)) {
HEAPF64[i18 >> 3] = d2;
- _snprintf(i7, 999, i5 ? 20549 : 20552, i18) | 0;
+ _snprintf(i7, 999, i5 ? 21116 : 21119, i18) | 0;
HEAP32[i19 >> 2] = i13;
- _sscanf(i7, 20509, i19) | 0;
+ _sscanf(i7, 21076, i19) | 0;
break;
}
i1 = __ZN4wasm12toUInteger64Ed(d2) | 0;
- i6 = i5 & i9;
+ i6 = i5 & i8;
i4 = i20;
HEAP32[i4 >> 2] = i1;
HEAP32[i4 + 4 >> 2] = tempRet0;
- _snprintf(i7, 999, i6 ? 20532 : 20539, i20) | 0;
+ _snprintf(i7, 999, i6 ? 21099 : 21106, i20) | 0;
if (i6) {
HEAP32[i21 >> 2] = i14;
- _sscanf(i7, 20544, i21) | 0;
+ _sscanf(i7, 21111, i21) | 0;
i6 = i14;
HEAPF64[i13 >> 3] = +((HEAP32[i6 >> 2] | 0) >>> 0) + 4294967296.0 * +((HEAP32[i6 + 4 >> 2] | 0) >>> 0);
break;
} else {
HEAP32[i17 >> 2] = i13;
- _sscanf(i7, 20509, i17) | 0;
+ _sscanf(i7, 21076, i17) | 0;
break;
}
} else {
@@ -40799,22 +40214,22 @@ function __ZN6cashew9JSPrinter11numToStringEdb(d2, i1) {
i4 = 0;
while (1) {
if ((i4 | 0) >= 19) break L4;
- HEAP8[42893] = 37;
- HEAP8[42894] = 46;
+ HEAP8[44365] = 37;
+ HEAP8[44366] = 46;
if ((i4 | 0) < 10) {
- HEAP8[42895] = i4 + 48;
- HEAP8[42896] = i1;
- HEAP8[42897] = 0;
+ HEAP8[44367] = i4 + 48;
+ HEAP8[44368] = i1;
+ HEAP8[44369] = 0;
} else {
- HEAP8[42895] = 49;
- HEAP8[42896] = i4 + 38;
- HEAP8[42897] = i1;
- HEAP8[42898] = 0;
+ HEAP8[44367] = 49;
+ HEAP8[44368] = i4 + 38;
+ HEAP8[44369] = i1;
+ HEAP8[44370] = 0;
}
HEAPF64[i15 >> 3] = d2;
- _snprintf(i7, 999, 42893, i15) | 0;
+ _snprintf(i7, 999, 44365, i15) | 0;
HEAP32[i16 >> 2] = i13;
- _sscanf(i7, 20509, i16) | 0;
+ _sscanf(i7, 21076, i16) | 0;
if (+HEAPF64[i13 >> 3] == d2) break; else i4 = i4 + 1 | 0;
}
} while (0);
@@ -40824,7 +40239,7 @@ function __ZN6cashew9JSPrinter11numToStringEdb(d2, i1) {
L22 : do if (!i1) {
if (!(i10 & i5)) {
i6 = i7 + (_strlen(i7) | 0) + -1 | 0;
- i5 = i7;
+ i4 = i7;
i1 = i6;
while (1) {
if ((HEAP8[i1 >> 0] | 0) == 48) {
@@ -40833,9 +40248,8 @@ function __ZN6cashew9JSPrinter11numToStringEdb(d2, i1) {
break;
}
} else {
- i4 = i1;
- if (!(i1 >>> 0 > i7 >>> 0 & (i4 - i5 | 0) > 24)) {
- i5 = i4;
+ i5 = i1;
+ if (!(i1 >>> 0 > i7 >>> 0 & (i5 - i4 | 0) > 24)) {
i4 = i1;
break;
}
@@ -40896,25 +40310,25 @@ function __ZN6cashew9JSPrinter11numToStringEdb(d2, i1) {
}
}
} while (0);
- i8 = i8 + 1 | 0;
+ i9 = i9 + 1 | 0;
}
if ((i22 | 0) == 3) {
d3 = +HEAPF64[i12 >> 3];
d2 = +HEAPF64[i23 >> 3];
if (d3 == d2) {
- i23 = HEAP32[690] | 0;
+ i23 = HEAP32[800] | 0;
i22 = _strlen(i23) | 0;
- i1 = HEAP32[689] | 0;
+ i1 = HEAP32[799] | 0;
i22 = i22 >>> 0 < (_strlen(i1) | 0) >>> 0;
i1 = i22 ? i23 : i1;
- } else i1 = d3 < d2 ? HEAP32[690] | 0 : HEAP32[689] | 0;
+ } else i1 = d3 < d2 ? HEAP32[800] | 0 : HEAP32[799] | 0;
if (i24) {
i1 = i1 + -1 | 0;
HEAP8[i1 >> 0] = 45;
}
STACKTOP = i25;
return i1 | 0;
- } else if ((i22 | 0) == 12) ___assert_fail(20513, 27234, 871, 20520); else if ((i22 | 0) == 38) ___assert_fail(20557, 27234, 934, 20520);
+ } else if ((i22 | 0) == 12) ___assert_fail(21080, 28586, 871, 21087); else if ((i22 | 0) == 38) ___assert_fail(21124, 28586, 934, 21087);
return 0;
}
@@ -40926,10 +40340,10 @@ function ___cxa_demangle(i10, i1, i16, i18) {
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i17 = 0, i19 = 0;
i19 = STACKTOP;
STACKTOP = STACKTOP + 4208 | 0;
- i14 = i19 + 4176 | 0;
+ i15 = i19 + 4176 | 0;
i3 = i19;
i17 = i19 + 4112 | 0;
- if ((i10 | 0) != 0 ? (i2 = (i1 | 0) != 0, i15 = (i16 | 0) == 0, !(i2 & i15)) : 0) {
+ if ((i10 | 0) != 0 ? (i2 = (i1 | 0) != 0, i14 = (i16 | 0) == 0, !(i2 & i14)) : 0) {
if (i2) i12 = HEAP32[i16 >> 2] | 0; else i12 = 0;
HEAP32[i3 + 4096 >> 2] = i3;
i2 = i3;
@@ -40948,8 +40362,8 @@ function ___cxa_demangle(i10, i1, i16, i18) {
i3 = i17 + 36 | 0;
HEAP32[i3 >> 2] = 0;
HEAP32[i17 + 40 >> 2] = 0;
- i9 = i17 + 44 | 0;
- HEAP32[i9 >> 2] = i2;
+ i8 = i17 + 44 | 0;
+ HEAP32[i8 >> 2] = i2;
i5 = i17 + 48 | 0;
i4 = i17 + 61 | 0;
HEAP32[i5 >> 2] = 0;
@@ -40958,33 +40372,33 @@ function ___cxa_demangle(i10, i1, i16, i18) {
HEAP8[i5 + 12 >> 0] = 0;
HEAP8[i4 >> 0] = 1;
i5 = i17 + 32 | 0;
- __ZNSt3__114__split_bufferINS_6vectorINS1_IN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEEERNS5_IS9_Lj4096EEEEC2EjjSB_(i14, 1, 0, i9);
- i9 = i14 + 8 | 0;
- i8 = HEAP32[i9 >> 2] | 0;
- HEAP32[i8 >> 2] = 0;
- HEAP32[i8 + 4 >> 2] = 0;
- HEAP32[i8 + 8 >> 2] = 0;
- HEAP32[i8 + 12 >> 2] = i2;
- HEAP32[i9 >> 2] = i8 + 16;
- __ZNSt3__16vectorINS0_INS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEEENS4_IS8_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS8_RS9_EE(i5, i14);
- __ZNSt3__114__split_bufferINS_6vectorINS1_IN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEEERNS5_IS9_Lj4096EEEED2Ev(i14);
- i9 = i17 + 62 | 0;
- HEAP8[i9 >> 0] = 0;
+ __ZNSt3__114__split_bufferINS_6vectorINS1_IN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEEERNS5_IS9_Lj4096EEEEC2EjjSB_(i15, 1, 0, i8);
+ i8 = i15 + 8 | 0;
+ i9 = HEAP32[i8 >> 2] | 0;
+ HEAP32[i9 >> 2] = 0;
+ HEAP32[i9 + 4 >> 2] = 0;
+ HEAP32[i9 + 8 >> 2] = 0;
+ HEAP32[i9 + 12 >> 2] = i2;
+ HEAP32[i8 >> 2] = i9 + 16;
+ __ZNSt3__16vectorINS0_INS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEEENS4_IS8_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS8_RS9_EE(i5, i15);
+ __ZNSt3__114__split_bufferINS_6vectorINS1_IN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEEERNS5_IS9_Lj4096EEEED2Ev(i15);
+ i8 = i17 + 62 | 0;
+ HEAP8[i8 >> 0] = 0;
HEAP8[i17 + 63 >> 0] = 1;
- HEAP32[i14 >> 2] = 0;
- i8 = i10 + (_strlen(i10) | 0) | 0;
- __ZN10__cxxabiv112_GLOBAL__N_18demangleINS0_2DbEEEvPKcS4_RT_Ri(i10, i8, i17, i14);
- i2 = HEAP32[i14 >> 2] | 0;
- do if (!((i2 | 0) != 0 | (HEAP8[i9 >> 0] | 0) == 0)) {
+ HEAP32[i15 >> 2] = 0;
+ i9 = i10 + (_strlen(i10) | 0) | 0;
+ __ZN10__cxxabiv112_GLOBAL__N_18demangleINS0_2DbEEEvPKcS4_RT_Ri(i10, i9, i17, i15);
+ i2 = HEAP32[i15 >> 2] | 0;
+ do if (!((i2 | 0) != 0 | (HEAP8[i8 >> 0] | 0) == 0)) {
i5 = HEAP32[i5 >> 2] | 0;
if ((i5 | 0) != (HEAP32[i3 >> 2] | 0) ? (HEAP32[i5 >> 2] | 0) != (HEAP32[i5 + 4 >> 2] | 0) : 0) {
- HEAP8[i9 >> 0] = 0;
+ HEAP8[i8 >> 0] = 0;
HEAP8[i4 >> 0] = 0;
- i3 = HEAP32[i17 >> 2] | 0;
+ i2 = HEAP32[i17 >> 2] | 0;
while (1) {
- i2 = HEAP32[i13 >> 2] | 0;
- if ((i2 | 0) == (i3 | 0)) break;
- i5 = i2 + -24 | 0;
+ i3 = HEAP32[i13 >> 2] | 0;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i5 = i3 + -24 | 0;
HEAP32[i13 >> 2] = i5;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i5);
}
@@ -40996,15 +40410,15 @@ function ___cxa_demangle(i10, i1, i16, i18) {
HEAP32[i7 >> 2] = i6;
__ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i6);
}
- __ZN10__cxxabiv112_GLOBAL__N_18demangleINS0_2DbEEEvPKcS4_RT_Ri(i10, i8, i17, i14);
- if (!(HEAP8[i9 >> 0] | 0)) {
- i2 = HEAP32[i14 >> 2] | 0;
+ __ZN10__cxxabiv112_GLOBAL__N_18demangleINS0_2DbEEEvPKcS4_RT_Ri(i10, i9, i17, i15);
+ if (!(HEAP8[i8 >> 0] | 0)) {
+ i2 = HEAP32[i15 >> 2] | 0;
i11 = 19;
break;
} else {
- HEAP32[i14 >> 2] = -2;
- i2 = -2;
+ HEAP32[i15 >> 2] = -2;
i1 = 0;
+ i2 = -2;
break;
}
} else i11 = 20;
@@ -41021,15 +40435,15 @@ function ___cxa_demangle(i10, i1, i16, i18) {
if (i2 >>> 0 > i12 >>> 0) {
i1 = _realloc(i1, i2) | 0;
if (!i1) {
- HEAP32[i14 >> 2] = -1;
- i2 = -1;
+ HEAP32[i15 >> 2] = -1;
i1 = 0;
+ i2 = -1;
break;
}
- if (!i15) HEAP32[i16 >> 2] = i2;
+ if (!i14) HEAP32[i16 >> 2] = i2;
} else if (!i1) {
- i2 = 0;
i1 = 0;
+ i2 = 0;
break;
}
i2 = HEAP32[i13 >> 2] | 0;
@@ -41062,105 +40476,105 @@ function __ZZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefEENK3__0clENS1_7ISt
var i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0;
i15 = STACKTOP;
STACKTOP = STACKTOP + 48 | 0;
- i14 = i15 + 28 | 0;
- i12 = i15 + 24 | 0;
- i10 = i15 + 20 | 0;
- i3 = i15 + 16 | 0;
- i4 = i15 + 12 | 0;
- i9 = i15 + 8 | 0;
- i11 = i15 + 4 | 0;
- i13 = i15;
+ i11 = i15 + 28 | 0;
+ i10 = i15 + 24 | 0;
+ i9 = i15 + 20 | 0;
+ i4 = i15 + 16 | 0;
+ i3 = i15 + 12 | 0;
+ i12 = i15 + 8 | 0;
+ i13 = i15 + 4 | 0;
+ i14 = i15;
i8 = HEAP32[i2 >> 2] | 0;
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i7, 0) | 0, 37216) | 0)) ___assert_fail(14542, 12455, 434, 34529);
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i7, 0) | 0, 38688) | 0)) ___assert_fail(15061, 13029, 434, 35993);
i2 = __ZN6cashew3RefixEj(i7, 1) | 0;
- HEAP32[i3 >> 2] = HEAP32[i2 >> 2];
- do if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 0) | 0, 37216) | 0)) if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 0) | 0, 36932) | 0) {
- i2 = __ZN6cashew3RefixEj(i3, 1) | 0;
+ HEAP32[i4 >> 2] = HEAP32[i2 >> 2];
+ do if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 0) | 0, 38688) | 0)) if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 0) | 0, 38404) | 0) {
+ i2 = __ZN6cashew3RefixEj(i4, 1) | 0;
i2 = __ZN6cashew5Value10getIStringEv(HEAP32[i2 >> 2] | 0) | 0;
i2 = HEAP32[i2 >> 2] | 0;
i5 = 35;
break;
- } else ___assert_fail(14699, 12455, 472, 34529); else {
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i3, 1) | 0, 0) | 0, 36932) | 0)) ___assert_fail(14561, 12455, 439, 34529);
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 2) | 0, 36660) | 0) {
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i7, 2) | 0, 36664) | 0) {
+ } else ___assert_fail(15218, 13029, 472, 35993); else {
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 1) | 0, 0) | 0, 38404) | 0)) ___assert_fail(15080, 13029, 439, 35993);
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 2) | 0, 38124) | 0) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i7, 2) | 0, 38128) | 0) {
i2 = i8 + 72 | 0;
if (!(HEAP32[i2 >> 2] | 0)) {
HEAP32[i2 >> 2] = HEAP32[i6 >> 2];
break;
- } else ___assert_fail(14582, 12455, 442, 34529);
+ } else ___assert_fail(15101, 13029, 442, 35993);
}
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i7, 2) | 0, 36668) | 0) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i7, 2) | 0, 38132) | 0) {
i2 = i8 + 76 | 0;
if (!(HEAP32[i2 >> 2] | 0)) {
HEAP32[i2 >> 2] = HEAP32[i6 >> 2];
break;
- } else ___assert_fail(14601, 12455, 446, 34529);
+ } else ___assert_fail(15120, 13029, 446, 35993);
}
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i7, 2) | 0, 36672) | 0) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i7, 2) | 0, 38136) | 0) {
i2 = i8 + 80 | 0;
if (!(HEAP32[i2 >> 2] | 0)) {
HEAP32[i2 >> 2] = HEAP32[i6 >> 2];
break;
- } else ___assert_fail(14621, 12455, 450, 34529);
+ } else ___assert_fail(15140, 13029, 450, 35993);
}
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i7, 2) | 0, 36692) | 0) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i7, 2) | 0, 38156) | 0) {
i2 = i8 + 84 | 0;
if (!(HEAP32[i2 >> 2] | 0)) {
HEAP32[i2 >> 2] = HEAP32[i6 >> 2];
break;
- } else ___assert_fail(14642, 12455, 454, 34529);
+ } else ___assert_fail(15161, 13029, 454, 35993);
}
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i7, 2) | 0, 36696) | 0) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i7, 2) | 0, 38160) | 0) {
i2 = i8 + 88 | 0;
if (!(HEAP32[i2 >> 2] | 0)) {
HEAP32[i2 >> 2] = HEAP32[i6 >> 2];
break;
- } else ___assert_fail(14660, 12455, 458, 34529);
+ } else ___assert_fail(15179, 13029, 458, 35993);
}
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i7, 2) | 0, 36700) | 0) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i7, 2) | 0, 38164) | 0) {
i2 = i8 + 92 | 0;
if (!(HEAP32[i2 >> 2] | 0)) {
HEAP32[i2 >> 2] = HEAP32[i6 >> 2];
break;
- } else ___assert_fail(14680, 12455, 462, 34529);
+ } else ___assert_fail(15199, 13029, 462, 35993);
}
}
- i2 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i3, 1) | 0, 1) | 0;
+ i2 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 1) | 0, 1) | 0;
i2 = __ZN6cashew5Value10getCStringEv(HEAP32[i2 >> 2] | 0) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i14, i2, _strlen(i2) | 0);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i14, 46);
- i2 = __ZN6cashew3RefixEj(i3, 2) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i14, __ZN6cashew5Value10getCStringEv(HEAP32[i2 >> 2] | 0) | 0) | 0;
- __ZN6cashew7IStringC2EPKcb(i4, (HEAP8[i14 >> 0] & 1) == 0 ? i14 + 1 | 0 : HEAP32[i14 + 8 >> 2] | 0, 0);
- i2 = HEAP32[i4 >> 2] | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i14);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i11, i2, _strlen(i2) | 0);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i11, 46);
+ i2 = __ZN6cashew3RefixEj(i4, 2) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i11, __ZN6cashew5Value10getCStringEv(HEAP32[i2 >> 2] | 0) | 0) | 0;
+ __ZN6cashew7IStringC2EPKcb(i3, (HEAP8[i11 >> 0] & 1) == 0 ? i11 + 1 | 0 : HEAP32[i11 + 8 >> 2] | 0, 0);
+ i2 = HEAP32[i3 >> 2] | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i11);
i5 = 35;
} while (0);
do if ((i5 | 0) == 35) {
- i5 = __ZN10MixedArena5allocIN4wasm6ImportEEEPT_v(HEAP32[i8 + 4 >> 2] | 0) | 0;
- i4 = HEAP32[i6 >> 2] | 0;
- HEAP32[i5 >> 2] = i4;
- i6 = i5 + 4 | 0;
+ i4 = __ZN10MixedArena5allocIN4wasm6ImportEEEPT_v(HEAP32[i8 + 4 >> 2] | 0) | 0;
+ i5 = HEAP32[i6 >> 2] | 0;
+ HEAP32[i4 >> 2] = i5;
+ i6 = i4 + 4 | 0;
HEAP32[i6 >> 2] = i2;
i2 = __ZN6cashew3RefixEj(i7, 2) | 0;
i2 = __ZN6cashew5Value10getIStringEv(HEAP32[i2 >> 2] | 0) | 0;
i2 = HEAP32[i2 >> 2] | 0;
- HEAP32[i5 + 8 >> 2] = i2;
+ HEAP32[i4 + 8 >> 2] = i2;
i6 = HEAP32[i6 >> 2] | 0;
i7 = i2;
i3 = i6;
- if ((i6 | 0) == (HEAP32[9150] | 0) ? (i7 | 0) == (HEAP32[9151] | 0) | (i7 | 0) == (HEAP32[9152] | 0) : 0) i1 = 4; else if (!i1) {
- __ZN4wasm6Module9addImportEPNS_6ImportE(HEAP32[i8 >> 2] | 0, i5);
+ if ((i6 | 0) == (HEAP32[9516] | 0) ? (i7 | 0) == (HEAP32[9517] | 0) | (i7 | 0) == (HEAP32[9518] | 0) : 0) i1 = 4; else if (!i1) {
+ __ZN4wasm6Module9addImportEPNS_6ImportE(HEAP32[i8 >> 2] | 0, i4);
break;
}
- HEAP32[i9 >> 2] = i4;
- HEAP32[i11 >> 2] = i3;
- HEAP32[i13 >> 2] = i2;
- HEAP32[i10 >> 2] = HEAP32[i9 >> 2];
- HEAP32[i12 >> 2] = HEAP32[i11 >> 2];
- HEAP32[i14 >> 2] = HEAP32[i13 >> 2];
- __ZN4wasm15Asm2WasmBuilder14allocateGlobalEN6cashew7IStringENS_8WasmTypeEbS2_S2_(i8, i10, i1, 1, i12, i14);
+ HEAP32[i12 >> 2] = i5;
+ HEAP32[i13 >> 2] = i3;
+ HEAP32[i14 >> 2] = i2;
+ HEAP32[i9 >> 2] = HEAP32[i12 >> 2];
+ HEAP32[i10 >> 2] = HEAP32[i13 >> 2];
+ HEAP32[i11 >> 2] = HEAP32[i14 >> 2];
+ __ZN4wasm15Asm2WasmBuilder14allocateGlobalEN6cashew7IStringENS_8WasmTypeEbS2_S2_(i8, i9, i1, 1, i10, i11);
} while (0);
STACKTOP = i15;
return;
@@ -41179,23 +40593,23 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6
i15 = i19;
i10 = i19 + 208 | 0;
i18 = i19 + 196 | 0;
- i2 = i19 + 180 | 0;
+ i1 = i19 + 180 | 0;
i17 = i19 + 184 | 0;
i14 = i19 + 176 | 0;
i12 = i19 + 16 | 0;
i13 = i19 + 8 | 0;
i11 = i19 + 4 | 0;
- i1 = 0;
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i18 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i18 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i1 = __ZNKSt3__18ios_base6getlocEv(i3) | 0;
- HEAP32[i2 >> 2] = i1;
- i9 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 38964) | 0;
- FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i9 >> 2] | 0) + 32 >> 2] & 7](i9, 31159, 31185, i10) | 0;
- __ZNSt3__114__shared_count16__release_sharedEv(i1) | 0;
+ i9 = __ZNKSt3__18ios_base6getlocEv(i3) | 0;
+ HEAP32[i1 >> 2] = i9;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 40436) | 0;
+ FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 32 >> 2] & 7](i1, 32623, 32649, i10) | 0;
+ __ZNSt3__114__shared_count16__release_sharedEv(i9) | 0;
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
@@ -41245,17 +40659,17 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6
i2 = (HEAP8[i17 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
HEAP32[i14 >> 2] = i2 + i4;
}
- i6 = i1 + 12 | 0;
- i4 = HEAP32[i6 >> 2] | 0;
- i5 = i1 + 16 | 0;
- if ((i4 | 0) == (HEAP32[i5 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i4 = HEAPU8[i4 >> 0] | 0;
+ i5 = i1 + 12 | 0;
+ i4 = HEAP32[i5 >> 2] | 0;
+ i6 = i1 + 16 | 0;
+ if ((i4 | 0) == (HEAP32[i6 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i4 = HEAPU8[i4 >> 0] | 0;
if (__ZNSt3__19__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i4 & 255, 16, i2, i14, i11, 0, i18, i12, i13, i10) | 0) break;
- i3 = HEAP32[i6 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i5 >> 2] | 0)) {
+ i3 = HEAP32[i5 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i6 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
continue;
} else {
- HEAP32[i6 >> 2] = i3 + 1;
+ HEAP32[i5 >> 2] = i3 + 1;
continue;
}
}
@@ -41263,7 +40677,7 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6
i13 = (HEAP8[i17 >> 0] & 1) == 0 ? i9 : HEAP32[i8 >> 2] | 0;
i14 = __ZNSt3__16__clocEv() | 0;
HEAP32[i15 >> 2] = i16;
- if ((__ZNSt3__110__sscanf_lEPKcP15__locale_structS1_z(i13, i14, 31194, i15) | 0) != 1) HEAP32[i22 >> 2] = 4;
+ if ((__ZNSt3__110__sscanf_lEPKcP15__locale_structS1_z(i13, i14, 32658, i15) | 0) != 1) HEAP32[i22 >> 2] = 4;
if (i1) {
if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) {
HEAP32[i20 >> 2] = 0;
@@ -41293,506 +40707,252 @@ function __ZNSt3__16locale5__impC2Ej(i4, i1) {
i1 = i1 | 0;
var i2 = 0, i3 = 0, i5 = 0;
HEAP32[i4 + 4 >> 2] = i1 + -1;
- HEAP32[i4 >> 2] = 10532;
+ HEAP32[i4 >> 2] = 11100;
i1 = i4 + 8 | 0;
__ZNSt3__16vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEEC2Ej(i1, 28);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i4 + 144 | 0, 31192, 1);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i4 + 144 | 0, 32656, 1);
i1 = HEAP32[i1 >> 2] | 0;
- i3 = i4 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 12 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -4 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
- }
- HEAP32[9029] = 0;
- HEAP32[9028] = 8196;
- __ZNSt3__16locale5__imp7installINS_7collateIcEEEEvPT_(i4, 36112);
- HEAP32[9031] = 0;
- HEAP32[9030] = 8228;
- __ZNSt3__16locale5__imp7installINS_7collateIwEEEEvPT_(i4, 36120);
- __ZNSt3__15ctypeIcEC2EPKtbj(36128, 0, 0, 1);
- __ZNSt3__16locale5__imp7installINS_5ctypeIcEEEEvPT_(i4, 36128);
- HEAP32[9037] = 0;
- HEAP32[9036] = 10748;
- __ZNSt3__16locale5__imp7installINS_5ctypeIwEEEEvPT_(i4, 36144);
- HEAP32[9039] = 0;
- HEAP32[9038] = 10816;
- __ZNSt3__16locale5__imp7installINS_7codecvtIcc11__mbstate_tEEEEvPT_(i4, 36152);
- HEAP32[9041] = 0;
- HEAP32[9040] = 10484;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -4 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
+ }
+ HEAP32[9395] = 0;
+ HEAP32[9394] = 8764;
+ __ZNSt3__16locale5__imp7installINS_7collateIcEEEEvPT_(i4, 37576);
+ HEAP32[9397] = 0;
+ HEAP32[9396] = 8796;
+ __ZNSt3__16locale5__imp7installINS_7collateIwEEEEvPT_(i4, 37584);
+ __ZNSt3__15ctypeIcEC2EPKtbj(37592, 0, 0, 1);
+ __ZNSt3__16locale5__imp7installINS_5ctypeIcEEEEvPT_(i4, 37592);
+ HEAP32[9403] = 0;
+ HEAP32[9402] = 11316;
+ __ZNSt3__16locale5__imp7installINS_5ctypeIwEEEEvPT_(i4, 37608);
+ HEAP32[9405] = 0;
+ HEAP32[9404] = 11384;
+ __ZNSt3__16locale5__imp7installINS_7codecvtIcc11__mbstate_tEEEEvPT_(i4, 37616);
+ HEAP32[9407] = 0;
+ HEAP32[9406] = 11052;
i5 = __ZNSt3__16__clocEv() | 0;
- HEAP32[9042] = i5;
- __ZNSt3__16locale5__imp7installINS_7codecvtIwc11__mbstate_tEEEEvPT_(i4, 36160);
- HEAP32[9045] = 0;
- HEAP32[9044] = 10864;
- __ZNSt3__16locale5__imp7installINS_7codecvtIDsc11__mbstate_tEEEEvPT_(i4, 36176);
- HEAP32[9047] = 0;
- HEAP32[9046] = 10912;
- __ZNSt3__16locale5__imp7installINS_7codecvtIDic11__mbstate_tEEEEvPT_(i4, 36184);
- __ZNSt3__18numpunctIcEC2Ej(36192, 1);
- __ZNSt3__16locale5__imp7installINS_8numpunctIcEEEEvPT_(i4, 36192);
- __ZNSt3__18numpunctIwEC2Ej(36216, 1);
- __ZNSt3__16locale5__imp7installINS_8numpunctIwEEEEvPT_(i4, 36216);
- HEAP32[9063] = 0;
- HEAP32[9062] = 8260;
- __ZNSt3__16locale5__imp7installINS_7num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i4, 36248);
- HEAP32[9065] = 0;
- HEAP32[9064] = 8324;
- __ZNSt3__16locale5__imp7installINS_7num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i4, 36256);
- HEAP32[9067] = 0;
- HEAP32[9066] = 8388;
- __ZNSt3__16locale5__imp7installINS_7num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i4, 36264);
- HEAP32[9069] = 0;
- HEAP32[9068] = 8440;
- __ZNSt3__16locale5__imp7installINS_7num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i4, 36272);
- HEAP32[9071] = 0;
- HEAP32[9070] = 9988;
- __ZNSt3__16locale5__imp7installINS_10moneypunctIcLb0EEEEEvPT_(i4, 36280);
- HEAP32[9073] = 0;
- HEAP32[9072] = 10044;
- __ZNSt3__16locale5__imp7installINS_10moneypunctIcLb1EEEEEvPT_(i4, 36288);
- HEAP32[9075] = 0;
- HEAP32[9074] = 10100;
- __ZNSt3__16locale5__imp7installINS_10moneypunctIwLb0EEEEEvPT_(i4, 36296);
- HEAP32[9077] = 0;
- HEAP32[9076] = 10156;
- __ZNSt3__16locale5__imp7installINS_10moneypunctIwLb1EEEEEvPT_(i4, 36304);
- HEAP32[9079] = 0;
- HEAP32[9078] = 10212;
- __ZNSt3__16locale5__imp7installINS_9money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i4, 36312);
- HEAP32[9081] = 0;
- HEAP32[9080] = 10240;
- __ZNSt3__16locale5__imp7installINS_9money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i4, 36320);
- HEAP32[9083] = 0;
- HEAP32[9082] = 10268;
- __ZNSt3__16locale5__imp7installINS_9money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i4, 36328);
- HEAP32[9085] = 0;
- HEAP32[9084] = 10296;
- __ZNSt3__16locale5__imp7installINS_9money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i4, 36336);
- HEAP32[9087] = 0;
- HEAP32[9086] = 8492;
- HEAP32[9088] = 8540;
- __ZNSt3__16locale5__imp7installINS_8time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i4, 36344);
- HEAP32[9091] = 0;
- HEAP32[9090] = 8576;
- HEAP32[9092] = 8624;
- __ZNSt3__16locale5__imp7installINS_8time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i4, 36360);
- HEAP32[9095] = 0;
- HEAP32[9094] = 10728;
+ HEAP32[9408] = i5;
+ __ZNSt3__16locale5__imp7installINS_7codecvtIwc11__mbstate_tEEEEvPT_(i4, 37624);
+ HEAP32[9411] = 0;
+ HEAP32[9410] = 11432;
+ __ZNSt3__16locale5__imp7installINS_7codecvtIDsc11__mbstate_tEEEEvPT_(i4, 37640);
+ HEAP32[9413] = 0;
+ HEAP32[9412] = 11480;
+ __ZNSt3__16locale5__imp7installINS_7codecvtIDic11__mbstate_tEEEEvPT_(i4, 37648);
+ __ZNSt3__18numpunctIcEC2Ej(37656, 1);
+ __ZNSt3__16locale5__imp7installINS_8numpunctIcEEEEvPT_(i4, 37656);
+ __ZNSt3__18numpunctIwEC2Ej(37680, 1);
+ __ZNSt3__16locale5__imp7installINS_8numpunctIwEEEEvPT_(i4, 37680);
+ HEAP32[9429] = 0;
+ HEAP32[9428] = 8828;
+ __ZNSt3__16locale5__imp7installINS_7num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i4, 37712);
+ HEAP32[9431] = 0;
+ HEAP32[9430] = 8892;
+ __ZNSt3__16locale5__imp7installINS_7num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i4, 37720);
+ HEAP32[9433] = 0;
+ HEAP32[9432] = 8956;
+ __ZNSt3__16locale5__imp7installINS_7num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i4, 37728);
+ HEAP32[9435] = 0;
+ HEAP32[9434] = 9008;
+ __ZNSt3__16locale5__imp7installINS_7num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i4, 37736);
+ HEAP32[9437] = 0;
+ HEAP32[9436] = 10556;
+ __ZNSt3__16locale5__imp7installINS_10moneypunctIcLb0EEEEEvPT_(i4, 37744);
+ HEAP32[9439] = 0;
+ HEAP32[9438] = 10612;
+ __ZNSt3__16locale5__imp7installINS_10moneypunctIcLb1EEEEEvPT_(i4, 37752);
+ HEAP32[9441] = 0;
+ HEAP32[9440] = 10668;
+ __ZNSt3__16locale5__imp7installINS_10moneypunctIwLb0EEEEEvPT_(i4, 37760);
+ HEAP32[9443] = 0;
+ HEAP32[9442] = 10724;
+ __ZNSt3__16locale5__imp7installINS_10moneypunctIwLb1EEEEEvPT_(i4, 37768);
+ HEAP32[9445] = 0;
+ HEAP32[9444] = 10780;
+ __ZNSt3__16locale5__imp7installINS_9money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i4, 37776);
+ HEAP32[9447] = 0;
+ HEAP32[9446] = 10808;
+ __ZNSt3__16locale5__imp7installINS_9money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i4, 37784);
+ HEAP32[9449] = 0;
+ HEAP32[9448] = 10836;
+ __ZNSt3__16locale5__imp7installINS_9money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i4, 37792);
+ HEAP32[9451] = 0;
+ HEAP32[9450] = 10864;
+ __ZNSt3__16locale5__imp7installINS_9money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i4, 37800);
+ HEAP32[9453] = 0;
+ HEAP32[9452] = 9060;
+ HEAP32[9454] = 9108;
+ __ZNSt3__16locale5__imp7installINS_8time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i4, 37808);
+ HEAP32[9457] = 0;
+ HEAP32[9456] = 9144;
+ HEAP32[9458] = 9192;
+ __ZNSt3__16locale5__imp7installINS_8time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i4, 37824);
+ HEAP32[9461] = 0;
+ HEAP32[9460] = 11296;
i5 = __ZNSt3__16__clocEv() | 0;
- HEAP32[9096] = i5;
- HEAP32[9094] = 9940;
- __ZNSt3__16locale5__imp7installINS_8time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i4, 36376);
- HEAP32[9099] = 0;
- HEAP32[9098] = 10728;
+ HEAP32[9462] = i5;
+ HEAP32[9460] = 10508;
+ __ZNSt3__16locale5__imp7installINS_8time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i4, 37840);
+ HEAP32[9465] = 0;
+ HEAP32[9464] = 11296;
i5 = __ZNSt3__16__clocEv() | 0;
- HEAP32[9100] = i5;
- HEAP32[9098] = 9964;
- __ZNSt3__16locale5__imp7installINS_8time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i4, 36392);
- HEAP32[9103] = 0;
- HEAP32[9102] = 10324;
- __ZNSt3__16locale5__imp7installINS_8messagesIcEEEEvPT_(i4, 36408);
- HEAP32[9105] = 0;
- HEAP32[9104] = 10356;
- __ZNSt3__16locale5__imp7installINS_8messagesIwEEEEvPT_(i4, 36416);
+ HEAP32[9466] = i5;
+ HEAP32[9464] = 10532;
+ __ZNSt3__16locale5__imp7installINS_8time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i4, 37856);
+ HEAP32[9469] = 0;
+ HEAP32[9468] = 10892;
+ __ZNSt3__16locale5__imp7installINS_8messagesIcEEEEvPT_(i4, 37872);
+ HEAP32[9471] = 0;
+ HEAP32[9470] = 10924;
+ __ZNSt3__16locale5__imp7installINS_8messagesIwEEEEvPT_(i4, 37880);
return;
}
-function _mbsrtowcs(i5, i9, i1, i4) {
- i5 = i5 | 0;
- i9 = i9 | 0;
+function __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i1, i3, i2) {
i1 = i1 | 0;
- i4 = i4 | 0;
- var i2 = 0, i3 = 0, i6 = 0, i7 = 0, i8 = 0;
- i2 = HEAP32[i9 >> 2] | 0;
- if ((i4 | 0) != 0 ? (i3 = HEAP32[i4 >> 2] | 0, (i3 | 0) != 0) : 0) if (!i5) {
- i6 = i2;
- i4 = i1;
- i8 = 16;
- } else {
- HEAP32[i4 >> 2] = 0;
- i6 = i1;
- i7 = i5;
- i8 = 37;
- } else if (!i5) {
- i4 = i1;
- i8 = 7;
- } else {
- i4 = i1;
- i3 = i5;
- i8 = 6;
- }
- L7 : while (1) if ((i8 | 0) == 6) {
- if (!i4) {
- i8 = 26;
+ i3 = i3 | 0;
+ i2 = i2 | 0;
+ if (!i2) ___assert_fail(27822, 27572, 1310, 27827);
+ do switch (HEAP32[i2 >> 2] | 0) {
+ case 0:
+ {
+ _abort();
break;
- } else i5 = i3;
- while (1) {
- i3 = HEAP8[i2 >> 0] | 0;
- do if (((i3 & 255) + -1 | 0) >>> 0 < 127 ? i4 >>> 0 > 4 & (i2 & 3 | 0) == 0 : 0) {
- i6 = i2;
- while (1) {
- i2 = HEAP32[i6 >> 2] | 0;
- if ((i2 + -16843009 | i2) & -2139062144 | 0) {
- i3 = i2;
- i2 = i6;
- i8 = 32;
- break;
- }
- HEAP32[i5 >> 2] = i2 & 255;
- HEAP32[i5 + 4 >> 2] = HEAPU8[i6 + 1 >> 0];
- HEAP32[i5 + 8 >> 2] = HEAPU8[i6 + 2 >> 0];
- i2 = i6 + 4 | 0;
- i3 = i5 + 16 | 0;
- HEAP32[i5 + 12 >> 2] = HEAPU8[i6 + 3 >> 0];
- i4 = i4 + -4 | 0;
- if (i4 >>> 0 > 4) {
- i6 = i2;
- i5 = i3;
- } else {
- i5 = i3;
- i8 = 31;
- break;
- }
- }
- if ((i8 | 0) == 31) {
- i3 = HEAP8[i2 >> 0] | 0;
- break;
- } else if ((i8 | 0) == 32) {
- i3 = i3 & 255;
- break;
- }
- } while (0);
- i3 = i3 & 255;
- if ((i3 + -1 | 0) >>> 0 >= 127) break;
- i2 = i2 + 1 | 0;
- HEAP32[i5 >> 2] = i3;
- i4 = i4 + -1 | 0;
- if (!i4) {
- i8 = 26;
- break L7;
- } else i5 = i5 + 4 | 0;
}
- i3 = i3 + -194 | 0;
- if (i3 >>> 0 > 50) {
- i3 = i5;
- i8 = 48;
+ case 1:
+ {
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner10visitBlockEPNS_5BlockE(i1, i3, i2);
break;
}
- i3 = HEAP32[3812 + (i3 << 2) >> 2] | 0;
- i2 = i2 + 1 | 0;
- i6 = i4;
- i7 = i5;
- i8 = 37;
- continue;
- } else if ((i8 | 0) == 7) {
- i3 = HEAP8[i2 >> 0] | 0;
- if (((i3 & 255) + -1 | 0) >>> 0 < 127 ? (i2 & 3 | 0) == 0 : 0) {
- i8 = HEAP32[i2 >> 2] | 0;
- i3 = i8 & 255;
- if (!((i8 + -16843009 | i8) & -2139062144)) {
- i3 = i4;
- while (1) {
- i2 = i2 + 4 | 0;
- i4 = i3 + -4 | 0;
- i3 = HEAP32[i2 >> 2] | 0;
- if (!((i3 + -16843009 | i3) & -2139062144)) i3 = i4; else break;
- }
- i3 = i3 & 255;
- }
+ case 2:
+ {
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner7visitIfEPNS_2IfE(i1, i3, i2);
+ break;
}
- i3 = i3 & 255;
- if ((i3 + -1 | 0) >>> 0 < 127) {
- i2 = i2 + 1 | 0;
- i4 = i4 + -1 | 0;
- i8 = 7;
- continue;
+ case 3:
+ {
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner9visitLoopEPNS_4LoopE(i1, i3, i2);
+ break;
}
- i3 = i3 + -194 | 0;
- if (i3 >>> 0 > 50) {
- i3 = i5;
- i8 = 48;
+ case 4:
+ {
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner10visitBreakEPNS_5BreakE(i1, i3, i2);
break;
}
- i3 = HEAP32[3812 + (i3 << 2) >> 2] | 0;
- i6 = i2 + 1 | 0;
- i8 = 16;
- continue;
- } else if ((i8 | 0) == 16) {
- i8 = (HEAPU8[i6 >> 0] | 0) >>> 3;
- if ((i8 + -16 | i8 + (i3 >> 26)) >>> 0 > 7) {
- i8 = 17;
+ case 5:
+ {
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner11visitSwitchEPNS_6SwitchE(i1, i3, i2);
break;
}
- i2 = i6 + 1 | 0;
- if (i3 & 33554432) {
- if ((HEAP8[i2 >> 0] & -64) << 24 >> 24 != -128) {
- i8 = 20;
- break;
- }
- i2 = i6 + 2 | 0;
- if (i3 & 524288) {
- if ((HEAP8[i2 >> 0] & -64) << 24 >> 24 != -128) {
- i8 = 23;
- break;
- }
- i2 = i6 + 3 | 0;
- }
+ case 6:
+ {
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner9visitCallEPNS_4CallE(i1, i3, i2);
+ break;
}
- i4 = i4 + -1 | 0;
- i8 = 7;
- continue;
- } else if ((i8 | 0) == 37) {
- i4 = HEAPU8[i2 >> 0] | 0;
- i8 = i4 >>> 3;
- if ((i8 + -16 | i8 + (i3 >> 26)) >>> 0 > 7) {
- i8 = 38;
+ case 7:
+ {
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner15visitCallImportEPNS_10CallImportE(i1, i3, i2);
break;
}
- i5 = i2 + 1 | 0;
- i4 = i4 + -128 | i3 << 6;
- if ((i4 | 0) < 0) {
- i3 = HEAPU8[i5 >> 0] | 0;
- if ((i3 & 192 | 0) != 128) {
- i8 = 41;
- break;
- }
- i5 = i2 + 2 | 0;
- i4 = i3 + -128 | i4 << 6;
- if ((i4 | 0) < 0) {
- i3 = HEAPU8[i5 >> 0] | 0;
- if ((i3 & 192 | 0) != 128) {
- i8 = 44;
- break;
- }
- i4 = i3 + -128 | i4 << 6;
- i2 = i2 + 3 | 0;
- } else i2 = i5;
- } else i2 = i5;
- HEAP32[i7 >> 2] = i4;
- i4 = i6 + -1 | 0;
- i3 = i7 + 4 | 0;
- i8 = 6;
- continue;
- }
- if ((i8 | 0) == 17) {
- i2 = i6 + -1 | 0;
- i8 = 47;
- } else if ((i8 | 0) == 20) {
- i2 = i6 + -1 | 0;
- i8 = 47;
- } else if ((i8 | 0) == 23) {
- i2 = i6 + -1 | 0;
- i8 = 47;
- } else if ((i8 | 0) == 26) HEAP32[i9 >> 2] = i2; else if ((i8 | 0) == 38) {
- i2 = i2 + -1 | 0;
- i4 = i6;
- i5 = i7;
- i8 = 47;
- } else if ((i8 | 0) == 41) {
- i2 = i2 + -1 | 0;
- i1 = i7;
- i8 = 52;
- } else if ((i8 | 0) == 44) {
- i2 = i2 + -1 | 0;
- i1 = i7;
- i8 = 52;
- }
- if ((i8 | 0) == 47) if (!i3) {
- i3 = i5;
- i8 = 48;
- } else {
- i1 = i5;
- i8 = 52;
- }
- if ((i8 | 0) == 48) if (!(HEAP8[i2 >> 0] | 0)) {
- if (i3 | 0) {
- HEAP32[i3 >> 2] = 0;
- HEAP32[i9 >> 2] = 0;
+ case 8:
+ {
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner17visitCallIndirectEPNS_12CallIndirectE(i1, i3, i2);
+ break;
}
- i1 = i1 - i4 | 0;
- } else {
- i1 = i3;
- i8 = 52;
- }
- if ((i8 | 0) == 52) {
- i8 = ___errno_location() | 0;
- HEAP32[i8 >> 2] = 84;
- if (!i1) i1 = -1; else {
- HEAP32[i9 >> 2] = i2;
- i1 = -1;
+ case 9:
+ {
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner13visitGetLocalEPNS_8GetLocalE(i1, i3, i2);
+ break;
}
- }
- return i1 | 0;
-}
-
-function __ZN4wasm8Function5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i10, i12, i6) {
- i10 = i10 | 0;
- i12 = i12 | 0;
- i6 = i6 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0, i13 = 0, i14 = 0;
- i14 = STACKTOP;
- STACKTOP = STACKTOP + 32 | 0;
- i9 = i14 + 16 | 0;
- i11 = i14 + 12 | 0;
- i1 = i14 + 8 | 0;
- i5 = i14 + 4 | 0;
- i8 = i14;
- HEAP32[i11 >> 2] = i6;
- i3 = __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i12, 17615, 1) | 0;
- HEAP32[i1 >> 2] = HEAP32[i10 >> 2];
- HEAP32[i9 >> 2] = HEAP32[i1 >> 2];
- __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i3, i9) | 0;
- i3 = HEAP32[i10 + 12 >> 2] | 0;
- i1 = HEAP32[i10 + 8 >> 2] | 0;
- i4 = i3;
- L1 : do if ((i3 | 0) != (i1 | 0)) L3 : while (1) {
- if ((i1 | 0) == (i4 | 0)) break L1;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i12, 32) | 0;
- i2 = __Z17printMinorOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKc(i12, 17621) | 0;
- HEAP32[i5 >> 2] = HEAP32[i1 >> 2];
- HEAP32[i9 >> 2] = HEAP32[i5 >> 2];
- i2 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i2, i9) | 0, 32) | 0;
- switch (HEAP32[i1 + 4 >> 2] | 0) {
- case 0:
- {
- i3 = 16812;
- break;
- }
- case 1:
- {
- i3 = 16817;
- break;
- }
- case 2:
- {
- i3 = 16821;
- break;
- }
- case 3:
- {
- i3 = 16825;
- break;
- }
- case 4:
- {
- i3 = 16829;
- break;
- }
- default:
- break L3;
+ case 10:
+ {
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner13visitSetLocalEPNS_8SetLocalE(i1, i3, i2);
+ break;
}
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i2, i3) | 0, 34358) | 0;
- i1 = i1 + 8 | 0;
- } while (0);
- i2 = i10 + 4 | 0;
- if (HEAP32[i2 >> 2] | 0) {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i12, 32) | 0;
- i1 = __Z17printMinorOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKc(i12, 17582) | 0;
- switch (HEAP32[i2 >> 2] | 0) {
- case 0:
- {
- i7 = 16812;
- break;
- }
- case 1:
- {
- i7 = 16817;
- break;
- }
- case 2:
- {
- i7 = 16821;
- break;
- }
- case 3:
- {
- i7 = 16825;
- break;
- }
- case 4:
- {
- i7 = 16829;
- break;
- }
- default:
- {}
+ case 11:
+ {
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner9visitLoadEPNS_4LoadE(i1, i3, i2);
+ break;
}
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i1, i7) | 0, 34358) | 0;
- }
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i12, 10) | 0;
- i5 = i6 + 1 | 0;
- HEAP32[i11 >> 2] = i5;
- i1 = HEAP32[i10 + 24 >> 2] | 0;
- i2 = HEAP32[i10 + 20 >> 2] | 0;
- L24 : while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- __Z8doIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEj(i12, i5) | 0;
- i3 = __Z17printMinorOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKc(i12, 17628) | 0;
- HEAP32[i8 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i9 >> 2] = HEAP32[i8 >> 2];
- i3 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i3, i9) | 0, 32) | 0;
- switch (HEAP32[i2 + 4 >> 2] | 0) {
- case 0:
- {
- i4 = 16812;
- break;
- }
- case 1:
- {
- i4 = 16817;
- break;
- }
- case 2:
- {
- i4 = 16821;
- break;
- }
- case 3:
- {
- i4 = 16825;
- break;
- }
- case 4:
- {
- i4 = 16829;
- break;
- }
- default:
- {
- i13 = 27;
- break L24;
- }
+ case 12:
+ {
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner10visitStoreEPNS_5StoreE(i1, i3, i2);
+ break;
}
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i3, i4) | 0, 17572) | 0;
- i2 = i2 + 8 | 0;
- }
- i1 = i10 + 36 | 0;
- L36 : do if (__ZN4wasm10Expression2isINS_5BlockEEEbv(HEAP32[i1 >> 2] | 0) | 0 ? (i10 = (__ZN4wasm10Expression4castINS_5BlockEEEPT_v(HEAP32[i1 >> 2] | 0) | 0) + 8 | 0, (HEAP32[i10 >> 2] | 0) == 0) : 0) {
- i2 = __ZN4wasm10Expression4castINS_5BlockEEEPT_v(HEAP32[i1 >> 2] | 0) | 0;
- i1 = HEAP32[i2 + 16 >> 2] | 0;
- i2 = HEAP32[i2 + 12 >> 2] | 0;
- while (1) {
- if ((i2 | 0) == (i1 | 0)) break L36;
- __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i12, i5, HEAP32[i2 >> 2] | 0) | 0;
- i2 = i2 + 4 | 0;
+ case 13:
+ {
+ i3 = i2 + 8 | 0;
+ HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i1 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
+ HEAP32[i1 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ HEAP32[i1 + 12 >> 2] = HEAP32[i3 + 12 >> 2];
+ HEAP32[i1 + 16 >> 2] = 0;
+ break;
}
- } else i13 = 33; while (0);
- if ((i13 | 0) == 33) __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i12, i5, HEAP32[i1 >> 2] | 0) | 0;
- i13 = __Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i12, i11) | 0;
- STACKTOP = i14;
- return i13 | 0;
+ case 14:
+ {
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner10visitUnaryEPNS_5UnaryE(i1, i3, i2);
+ break;
+ }
+ case 15:
+ {
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner11visitBinaryEPNS_6BinaryE(i1, i3, i2);
+ break;
+ }
+ case 16:
+ {
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner11visitSelectEPNS_6SelectE(i1, i3, i2);
+ break;
+ }
+ case 17:
+ {
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner11visitReturnEPNS_6ReturnE(i1, i3, i2);
+ break;
+ }
+ case 18:
+ {
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner9visitHostEPNS_4HostE(i1, i3, i2);
+ break;
+ }
+ case 19:
+ {
+ HEAP32[i1 >> 2] = 0;
+ i3 = i1 + 8 | 0;
+ HEAP32[i3 >> 2] = 0;
+ HEAP32[i3 + 4 >> 2] = 0;
+ HEAP32[i1 + 16 >> 2] = 0;
+ break;
+ }
+ case 20:
+ {
+ i3 = HEAP32[(HEAP32[i3 + 4 >> 2] | 0) + 12 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 20 >> 2] & 127](i3, 17838);
+ HEAP32[i1 >> 2] = 0;
+ i3 = i1 + 8 | 0;
+ HEAP32[i3 >> 2] = 0;
+ HEAP32[i3 + 4 >> 2] = 0;
+ HEAP32[i1 + 16 >> 2] = 0;
+ break;
+ }
+ default:
+ {}
+ } while (0);
+ return;
}
-function __ZNSt3__120__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i12, i14, i15, i10, i7) {
+function __ZNSt3__120__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i12, i14, i15, i11, i6) {
i12 = i12 | 0;
i14 = i14 | 0;
i15 = i15 | 0;
- i10 = i10 | 0;
- i7 = i7 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0, i9 = 0, i11 = 0, i13 = 0;
+ i11 = i11 | 0;
+ i6 = i6 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i13 = 0;
i1 = HEAP32[i12 >> 2] | 0;
do if (i1) {
if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) {
@@ -41824,27 +40984,29 @@ function __ZNSt3__120__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_t
} else if ((i13 | 0) == 13) {
i2 = HEAP32[i12 >> 2] | 0;
i3 = HEAP32[i2 + 12 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i3 = HEAPU8[i3 >> 0] | 0;
- i2 = i3 & 255;
- if (i2 << 24 >> 24 > -1 ? (i11 = i10 + 8 | 0, HEAP16[(HEAP32[i11 >> 2] | 0) + (i3 << 24 >> 24 << 1) >> 1] & 2048) : 0) {
- i5 = (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i10 >> 2] | 0) + 36 >> 2] & 31](i10, i2, 0) | 0) << 24 >> 24;
+ if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i2 = HEAPU8[i3 >> 0] | 0;
+ i3 = i2 & 255;
+ if (i3 << 24 >> 24 > -1 ? (i10 = i11 + 8 | 0, HEAP16[(HEAP32[i10 >> 2] | 0) + (i2 << 24 >> 24 << 1) >> 1] & 2048) : 0) {
+ i5 = (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i11 >> 2] | 0) + 36 >> 2] & 31](i11, i3, 0) | 0) << 24 >> 24;
i2 = HEAP32[i12 >> 2] | 0;
- i4 = i2 + 12 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) {
+ i3 = i2 + 12 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if ((i4 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0;
- i8 = i1;
+ i8 = i6;
+ i7 = i1;
i6 = i1;
i1 = i5;
} else {
- HEAP32[i4 >> 2] = i3 + 1;
- i8 = i1;
+ HEAP32[i3 >> 2] = i4 + 1;
+ i8 = i6;
+ i7 = i1;
i6 = i1;
i1 = i5;
}
while (1) {
i1 = i1 + -48 | 0;
- i9 = i7 + -1 | 0;
+ i9 = i8 + -1 | 0;
i2 = HEAP32[i12 >> 2] | 0;
do if (i2) {
if ((HEAP32[i2 + 12 >> 2] | 0) == (HEAP32[i2 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) == -1) {
@@ -41862,32 +41024,32 @@ function __ZNSt3__120__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_t
i3 = 0;
i6 = 0;
} else {
- i3 = i8;
- i6 = i8;
- } else i3 = i8; else {
- i3 = i8;
+ i3 = i7;
+ i6 = i7;
+ } else i3 = i7; else {
+ i3 = i7;
i6 = 0;
}
i2 = HEAP32[i12 >> 2] | 0;
- if (!((i7 | 0) > 1 & (i4 ^ (i6 | 0) == 0))) break;
+ if (!((i8 | 0) > 1 & (i4 ^ (i6 | 0) == 0))) break;
i4 = HEAP32[i2 + 12 >> 2] | 0;
- if ((i4 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i4 = HEAPU8[i4 >> 0] | 0;
- i2 = i4 & 255;
- if (i2 << 24 >> 24 <= -1) break L16;
- if (!(HEAP16[(HEAP32[i11 >> 2] | 0) + (i4 << 24 >> 24 << 1) >> 1] & 2048)) break L16;
- i1 = ((FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i10 >> 2] | 0) + 36 >> 2] & 31](i10, i2, 0) | 0) << 24 >> 24) + (i1 * 10 | 0) | 0;
+ if ((i4 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i2 = HEAPU8[i4 >> 0] | 0;
+ i4 = i2 & 255;
+ if (i4 << 24 >> 24 <= -1) break L16;
+ if (!(HEAP16[(HEAP32[i10 >> 2] | 0) + (i2 << 24 >> 24 << 1) >> 1] & 2048)) break L16;
+ i1 = ((FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i11 >> 2] | 0) + 36 >> 2] & 31](i11, i4, 0) | 0) << 24 >> 24) + (i1 * 10 | 0) | 0;
i2 = HEAP32[i12 >> 2] | 0;
- i5 = i2 + 12 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- if ((i4 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) {
+ i4 = i2 + 12 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ if ((i5 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0;
- i8 = i3;
- i7 = i9;
+ i8 = i9;
+ i7 = i3;
continue;
} else {
- HEAP32[i5 >> 2] = i4 + 1;
- i8 = i3;
- i7 = i9;
+ HEAP32[i4 >> 2] = i5 + 1;
+ i8 = i9;
+ i7 = i3;
continue;
}
}
@@ -41920,375 +41082,503 @@ function __ZNSt3__120__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_t
return i1 | 0;
}
-function __GLOBAL__sub_I_parser_cpp() {
- __ZN6cashew7IString3setEPKcb(36912, 26564, 1);
- __ZN6cashew7IString3setEPKcb(36916, 26573, 1);
- __ZN6cashew7IString3setEPKcb(36920, 26579, 1);
- __ZN6cashew7IString3setEPKcb(36924, 26585, 1);
- __ZN6cashew7IString3setEPKcb(36928, 26590, 1);
- __ZN6cashew7IString3setEPKcb(36932, 26597, 1);
- __ZN6cashew7IString3setEPKcb(36936, 26602, 1);
- __ZN6cashew7IString3setEPKcb(36940, 26606, 1);
- __ZN6cashew7IString3setEPKcb(36944, 26612, 1);
- __ZN6cashew7IString3setEPKcb(36948, 26624, 1);
- __ZN6cashew7IString3setEPKcb(36952, 26631, 1);
- __ZN6cashew7IString3setEPKcb(36956, 26638, 1);
- __ZN6cashew7IString3setEPKcb(36960, 26641, 1);
- __ZN6cashew7IString3setEPKcb(36964, 26646, 1);
- __ZN6cashew7IString3setEPKcb(36968, 26652, 1);
- __ZN6cashew7IString3setEPKcb(36972, 26655, 1);
- __ZN6cashew7IString3setEPKcb(36976, 26659, 1);
- __ZN6cashew7IString3setEPKcb(36980, 26663, 1);
- __ZN6cashew7IString3setEPKcb(36984, 26667, 1);
- __ZN6cashew7IString3setEPKcb(36988, 26672, 1);
- __ZN6cashew7IString3setEPKcb(36992, 26676, 1);
- __ZN6cashew7IString3setEPKcb(36996, 26682, 1);
- __ZN6cashew7IString3setEPKcb(37e3, 26688, 1);
- __ZN6cashew7IString3setEPKcb(37004, 26697, 1);
- __ZN6cashew7IString3setEPKcb(37008, 26704, 1);
- __ZN6cashew7IString3setEPKcb(37012, 29997, 1);
- __ZN6cashew7IString3setEPKcb(37016, 30290, 1);
- __ZN6cashew7IString3setEPKcb(37020, 26711, 1);
- __ZN6cashew7IString3setEPKcb(37024, 26720, 1);
- __ZN6cashew7IString3setEPKcb(37028, 26733, 1);
- __ZN6cashew7IString3setEPKcb(37032, 26747, 1);
- __ZN6cashew7IString3setEPKcb(37036, 26759, 1);
- __ZN6cashew7IString3setEPKcb(37040, 26774, 1);
- __ZN6cashew7IString3setEPKcb(37044, 26789, 1);
- __ZN6cashew7IString3setEPKcb(37048, 26802, 1);
- __ZN6cashew7IString3setEPKcb(37052, 26815, 1);
- __ZN6cashew7IString3setEPKcb(37056, 35477, 1);
- __ZN6cashew7IString3setEPKcb(37060, 35428, 1);
- __ZN6cashew7IString3setEPKcb(37064, 35468, 1);
- __ZN6cashew7IString3setEPKcb(37068, 34411, 1);
- __ZN6cashew7IString3setEPKcb(37072, 35404, 1);
- __ZN6cashew7IString3setEPKcb(37076, 35452, 1);
- __ZN6cashew7IString3setEPKcb(37080, 34445, 1);
- __ZN6cashew7IString3setEPKcb(37084, 34988, 1);
- __ZN6cashew7IString3setEPKcb(37088, 35412, 1);
- __ZN6cashew7IString3setEPKcb(37092, 35418, 1);
- __ZN6cashew7IString3setEPKcb(37096, 34403, 1);
- __ZN6cashew7IString3setEPKcb(37100, 35409, 1);
- __ZN6cashew7IString3setEPKcb(37104, 35449, 1);
- __ZN6cashew7IString3setEPKcb(37108, 35399, 1);
- __ZN6cashew7IString3setEPKcb(37112, 35522, 1);
- __ZN6cashew7IString3setEPKcb(37116, 34477, 1);
- __ZN6cashew7IString3setEPKcb(37120, 35527, 1);
- __ZN6cashew7IString3setEPKcb(37124, 35421, 1);
- __ZN6cashew7IString3setEPKcb(37128, 26828, 1);
- __ZN6cashew7IString3setEPKcb(37132, 26832, 1);
- __ZN6cashew7IString3setEPKcb(37136, 26846, 1);
- __ZN6cashew7IString3setEPKcb(37140, 26852, 1);
- __ZN6cashew7IString3setEPKcb(37144, 26859, 1);
- __ZN6cashew7IString3setEPKcb(37148, 26866, 1);
- __ZN6cashew7IString3setEPKcb(37152, 26874, 1);
- __ZN6cashew7IString3setEPKcb(37156, 26881, 1);
- __ZN6cashew7IString3setEPKcb(37160, 26889, 1);
- __ZN6cashew7IString3setEPKcb(37164, 26897, 1);
- __ZN6cashew7IString3setEPKcb(37168, 26905, 1);
- __ZN6cashew7IString3setEPKcb(37172, 44980, 1);
- __ZN6cashew7IString3setEPKcb(37176, 26908, 1);
- __ZN6cashew7IString3setEPKcb(37180, 34356, 1);
- __ZN6cashew7IString3setEPKcb(37184, 26917, 1);
- __ZN6cashew7IString3setEPKcb(37188, 26919, 1);
- __ZN6cashew7IString3setEPKcb(37192, 26921, 1);
- __ZN6cashew7IString3setEPKcb(37196, 34443, 1);
- __ZN6cashew7IString3setEPKcb(37200, 26923, 1);
- __ZN6cashew7IString3setEPKcb(37204, 26925, 1);
- __ZN6cashew7IString3setEPKcb(37208, 26927, 1);
- __ZN6cashew7IString3setEPKcb(37212, 26932, 1);
- __ZN6cashew7IString3setEPKcb(37216, 26940, 1);
- __ZN6cashew7IString3setEPKcb(37220, 35397, 1);
- __ZN6cashew7IString3setEPKcb(37224, 26944, 1);
- __ZN6cashew7IString3setEPKcb(37228, 26948, 1);
- __ZN6cashew7IString3setEPKcb(37232, 26954, 1);
- __ZN6cashew7IString3setEPKcb(37236, 35575, 1);
- __ZN6cashew7IString3setEPKcb(37240, 34416, 1);
- __ZN6cashew10IStringSetC2EPKc(37244, 26961);
- ___cxa_atexit(164, 37244, ___dso_handle | 0) | 0;
- HEAP32[9316] = 0;
- HEAP32[9317] = 0;
- HEAP32[9318] = 0;
- ___cxa_atexit(165, 37264, ___dso_handle | 0) | 0;
- HEAP32[9319] = 0;
- HEAP32[9320] = 0;
- HEAP32[9321] = 0;
- ___cxa_atexit(166, 37276, ___dso_handle | 0) | 0;
- __ZN6cashew4InitC2Ev(42906);
- return;
-}
-
-function __ZN4wasm22SExpressionWasmBuilder11parseImportERNS_7ElementE(i13, i9) {
- i13 = i13 | 0;
- i9 = i9 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0, i12 = 0, i14 = 0, i15 = 0;
- i15 = STACKTOP;
- STACKTOP = STACKTOP + 48 | 0;
- i14 = i15 + 24 | 0;
- i8 = i15 + 20 | 0;
- i3 = i15 + 16 | 0;
- i4 = i15 + 12 | 0;
- i10 = i15;
- i11 = i13 + 4 | 0;
- i12 = __ZN10MixedArena5allocIN4wasm6ImportEEEPT_v(HEAP32[i11 >> 2] | 0) | 0;
- i7 = __ZN4wasm7Element4listEv(i9) | 0;
- i7 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i7 >> 2] | 0) + 4 >> 2] | 0) | 0;
- HEAP32[i12 >> 2] = i7;
- i7 = __ZN4wasm7Element4listEv(i9) | 0;
- i7 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i7 >> 2] | 0) + 8 >> 2] | 0) | 0;
- HEAP32[i12 + 4 >> 2] = i7;
- i7 = __ZN4wasm7Element4listEv(i9) | 0;
- if (HEAP8[HEAP32[(HEAP32[i7 >> 2] | 0) + 12 >> 2] >> 0] | 0) __ZNKSt3__18functionIFvvEEclEv(i13 + 8 | 0);
- i7 = __ZN4wasm7Element4listEv(i9) | 0;
- i7 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i7 >> 2] | 0) + 12 >> 2] | 0) | 0;
- HEAP32[i12 + 8 >> 2] = i7;
- HEAP32[i14 >> 2] = 0;
- HEAP32[i14 + 4 >> 2] = 0;
- HEAP32[i14 + 8 >> 2] = 0;
- HEAP32[i14 + 12 >> 2] = 0;
- HEAP32[i14 + 16 >> 2] = 0;
- do if ((__ZN4wasm7Element4sizeEv(i9) | 0) >>> 0 > 4) {
- i7 = __ZN4wasm7Element4listEv(i9) | 0;
- i7 = HEAP32[(HEAP32[i7 >> 2] | 0) + 16 >> 2] | 0;
- i1 = __ZN4wasm7Element4listEv(i7) | 0;
- i1 = __ZN4wasm7Element3strEv(HEAP32[HEAP32[i1 >> 2] >> 2] | 0) | 0;
- L6 : do if ((i1 | 0) != (HEAP32[9182] | 0)) {
- if ((i1 | 0) == (HEAP32[9183] | 0)) {
- i8 = __ZN4wasm7Element4listEv(i7) | 0;
- i8 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i13, __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i8 >> 2] | 0) + 4 >> 2] | 0) | 0, 0, 0) | 0;
- HEAP32[i14 + 4 >> 2] = i8;
- break;
- }
- if ((i1 | 0) != (HEAP32[9190] | 0)) {
- __ZNKSt3__18functionIFvvEEclEv(i13 + 8 | 0);
- break;
+function _mbsrtowcs(i5, i10, i1, i3) {
+ i5 = i5 | 0;
+ i10 = i10 | 0;
+ i1 = i1 | 0;
+ i3 = i3 | 0;
+ var i2 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0;
+ i2 = HEAP32[i10 >> 2] | 0;
+ if ((i3 | 0) != 0 ? (i4 = HEAP32[i3 >> 2] | 0, (i4 | 0) != 0) : 0) if (!i5) {
+ i3 = i1;
+ i6 = i2;
+ i9 = 16;
+ } else {
+ HEAP32[i3 >> 2] = 0;
+ i8 = i5;
+ i3 = i1;
+ i7 = i4;
+ i9 = 37;
+ } else if (!i5) {
+ i3 = i1;
+ i9 = 7;
+ } else {
+ i4 = i5;
+ i3 = i1;
+ i9 = 6;
+ }
+ L7 : while (1) if ((i9 | 0) == 6) {
+ if (!i3) {
+ i9 = 26;
+ break;
+ } else i5 = i4;
+ while (1) {
+ i4 = HEAP8[i2 >> 0] | 0;
+ do if (((i4 & 255) + -1 | 0) >>> 0 < 127 ? i3 >>> 0 > 4 & (i2 & 3 | 0) == 0 : 0) {
+ i6 = i2;
+ while (1) {
+ i2 = HEAP32[i6 >> 2] | 0;
+ if ((i2 + -16843009 | i2) & -2139062144 | 0) {
+ i4 = i2;
+ i2 = i6;
+ i9 = 32;
+ break;
+ }
+ HEAP32[i5 >> 2] = i2 & 255;
+ HEAP32[i5 + 4 >> 2] = HEAPU8[i6 + 1 >> 0];
+ HEAP32[i5 + 8 >> 2] = HEAPU8[i6 + 2 >> 0];
+ i2 = i6 + 4 | 0;
+ i4 = i5 + 16 | 0;
+ HEAP32[i5 + 12 >> 2] = HEAPU8[i6 + 3 >> 0];
+ i3 = i3 + -4 | 0;
+ if (i3 >>> 0 > 4) {
+ i5 = i4;
+ i6 = i2;
+ } else {
+ i9 = 31;
+ break;
+ }
+ }
+ if ((i9 | 0) == 31) {
+ i5 = i4;
+ i4 = HEAP8[i2 >> 0] | 0;
+ break;
+ } else if ((i9 | 0) == 32) {
+ i4 = i4 & 255;
+ break;
+ }
+ } while (0);
+ i4 = i4 & 255;
+ if ((i4 + -1 | 0) >>> 0 >= 127) break;
+ i2 = i2 + 1 | 0;
+ HEAP32[i5 >> 2] = i4;
+ i3 = i3 + -1 | 0;
+ if (!i3) {
+ i9 = 26;
+ break L7;
+ } else i5 = i5 + 4 | 0;
+ }
+ i4 = i4 + -194 | 0;
+ if (i4 >>> 0 > 50) {
+ i9 = 48;
+ break;
+ }
+ i8 = i5;
+ i7 = HEAP32[4380 + (i4 << 2) >> 2] | 0;
+ i2 = i2 + 1 | 0;
+ i9 = 37;
+ continue;
+ } else if ((i9 | 0) == 7) {
+ i4 = HEAP8[i2 >> 0] | 0;
+ if (((i4 & 255) + -1 | 0) >>> 0 < 127 ? (i2 & 3 | 0) == 0 : 0) {
+ i9 = HEAP32[i2 >> 2] | 0;
+ i4 = i9 & 255;
+ if (!((i9 + -16843009 | i9) & -2139062144)) {
+ do {
+ i2 = i2 + 4 | 0;
+ i3 = i3 + -4 | 0;
+ i4 = HEAP32[i2 >> 2] | 0;
+ } while (((i4 + -16843009 | i4) & -2139062144 | 0) == 0);
+ i4 = i4 & 255;
}
- i1 = __ZN4wasm7Element4listEv(i7) | 0;
- i1 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] | 0) | 0;
- i2 = HEAP32[i13 >> 2] | 0;
- HEAP32[i3 >> 2] = i1;
- if ((__ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_(i2 + 48 | 0, i3) | 0) == (i2 + 52 | 0)) ___assert_fail(16211, 16023, 1015, 16275); else {
- HEAP32[i4 >> 2] = i1;
- i8 = __ZNSt3__13mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixEOS2_(i2 + 48 | 0, i4) | 0;
- __ZN4wasm12FunctionTypeaSERKS0_(i14, HEAP32[i8 >> 2] | 0) | 0;
+ }
+ i4 = i4 & 255;
+ if ((i4 + -1 | 0) >>> 0 < 127) {
+ i3 = i3 + -1 | 0;
+ i2 = i2 + 1 | 0;
+ i9 = 7;
+ continue;
+ }
+ i4 = i4 + -194 | 0;
+ if (i4 >>> 0 > 50) {
+ i9 = 48;
+ break;
+ }
+ i4 = HEAP32[4380 + (i4 << 2) >> 2] | 0;
+ i6 = i2 + 1 | 0;
+ i9 = 16;
+ continue;
+ } else if ((i9 | 0) == 16) {
+ i9 = (HEAPU8[i6 >> 0] | 0) >>> 3;
+ if ((i9 + -16 | i9 + (i4 >> 26)) >>> 0 > 7) {
+ i9 = 17;
+ break;
+ }
+ i2 = i6 + 1 | 0;
+ if (i4 & 33554432) {
+ if ((HEAP8[i2 >> 0] & -64) << 24 >> 24 != -128) {
+ i9 = 20;
break;
}
- } else {
- i6 = i14 + 8 | 0;
- i2 = i14 + 12 | 0;
- i3 = i14 + 16 | 0;
- i5 = 1;
- while (1) {
- if (i5 >>> 0 >= (__ZN4wasm7Element4sizeEv(i7) | 0) >>> 0) break L6;
- i4 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i13, __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i7, i5) | 0) | 0, 0, 0) | 0;
- HEAP32[i8 >> 2] = i4;
- i1 = HEAP32[i2 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i3 >> 2] | 0) >>> 0) {
- HEAP32[i1 >> 2] = i4;
- HEAP32[i2 >> 2] = i1 + 4;
- } else __ZNSt3__16vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i6, i8);
- i5 = i5 + 1 | 0;
+ i2 = i6 + 2 | 0;
+ if (i4 & 524288) {
+ if ((HEAP8[i2 >> 0] & -64) << 24 >> 24 != -128) {
+ i9 = 23;
+ break;
+ }
+ i2 = i6 + 3 | 0;
}
- } while (0);
- if ((__ZN4wasm7Element4sizeEv(i9) | 0) >>> 0 > 5) {
- i1 = __ZN4wasm7Element4listEv(i9) | 0;
- i1 = HEAP32[(HEAP32[i1 >> 2] | 0) + 20 >> 2] | 0;
- i9 = __ZN4wasm7Element4listEv(i1) | 0;
- i9 = __ZN4wasm7Element3strEv(HEAP32[HEAP32[i9 >> 2] >> 2] | 0) | 0;
- if ((i9 | 0) == (HEAP32[9183] | 0)) {
- i9 = __ZN4wasm7Element4listEv(i1) | 0;
- i9 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i13, __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i9 >> 2] | 0) + 4 >> 2] | 0) | 0, 0, 0) | 0;
- HEAP32[i14 + 4 >> 2] = i9;
+ }
+ i3 = i3 + -1 | 0;
+ i9 = 7;
+ continue;
+ } else if ((i9 | 0) == 37) {
+ i4 = HEAPU8[i2 >> 0] | 0;
+ i9 = i4 >>> 3;
+ if ((i9 + -16 | i9 + (i7 >> 26)) >>> 0 > 7) {
+ i9 = 38;
+ break;
+ }
+ i6 = i2 + 1 | 0;
+ i5 = i4 + -128 | i7 << 6;
+ if ((i5 | 0) < 0) {
+ i4 = HEAPU8[i6 >> 0] | 0;
+ if ((i4 & 192 | 0) != 128) {
+ i9 = 41;
break;
- } else ___assert_fail(16287, 16023, 1022, 16275);
+ }
+ i6 = i2 + 2 | 0;
+ i5 = i4 + -128 | i5 << 6;
+ if ((i5 | 0) < 0) {
+ i4 = HEAPU8[i6 >> 0] | 0;
+ if ((i4 & 192 | 0) != 128) {
+ i9 = 44;
+ break;
+ }
+ i5 = i4 + -128 | i5 << 6;
+ i2 = i2 + 3 | 0;
+ } else i2 = i6;
+ } else i2 = i6;
+ HEAP32[i8 >> 2] = i5;
+ i4 = i8 + 4 | 0;
+ i3 = i3 + -1 | 0;
+ i9 = 6;
+ continue;
+ }
+ if ((i9 | 0) == 17) {
+ i2 = i6 + -1 | 0;
+ i9 = 47;
+ } else if ((i9 | 0) == 20) {
+ i2 = i6 + -1 | 0;
+ i9 = 47;
+ } else if ((i9 | 0) == 23) {
+ i2 = i6 + -1 | 0;
+ i9 = 47;
+ } else if ((i9 | 0) == 26) HEAP32[i10 >> 2] = i2; else if ((i9 | 0) == 38) {
+ i5 = i8;
+ i4 = i7;
+ i2 = i2 + -1 | 0;
+ i9 = 47;
+ } else if ((i9 | 0) == 41) {
+ i3 = i8;
+ i1 = i2 + -1 | 0;
+ i9 = 52;
+ } else if ((i9 | 0) == 44) {
+ i3 = i8;
+ i1 = i2 + -1 | 0;
+ i9 = 52;
+ }
+ if ((i9 | 0) == 47) if (!i4) i9 = 48; else {
+ i3 = i5;
+ i1 = i2;
+ i9 = 52;
+ }
+ if ((i9 | 0) == 48) if (!(HEAP8[i2 >> 0] | 0)) {
+ if (i5 | 0) {
+ HEAP32[i5 >> 2] = 0;
+ HEAP32[i10 >> 2] = 0;
}
- } while (0);
- __ZN4wasm6getSigEPNS_12FunctionTypeE(i10, i14);
- i11 = __ZN4wasm18ensureFunctionTypeENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleER10MixedArena(i10, HEAP32[i13 >> 2] | 0, HEAP32[i11 >> 2] | 0) | 0;
- HEAP32[i12 + 12 >> 2] = i11;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10);
- __ZN4wasm6Module9addImportEPNS_6ImportE(HEAP32[i13 >> 2] | 0, i12);
- __ZNSt3__113__vector_baseIN4wasm8WasmTypeENS_9allocatorIS2_EEED2Ev(i14 + 8 | 0);
- STACKTOP = i15;
- return;
+ i1 = i1 - i3 | 0;
+ } else {
+ i3 = i5;
+ i1 = i2;
+ i9 = 52;
+ }
+ if ((i9 | 0) == 52) {
+ i9 = ___errno_location() | 0;
+ HEAP32[i9 >> 2] = 84;
+ if (!i3) i1 = -1; else {
+ HEAP32[i10 >> 2] = i1;
+ i1 = -1;
+ }
+ }
+ return i1 | 0;
}
-function __ZN4wasm5Unary7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i6, i4, i2) {
+function __GLOBAL__sub_I_parser_cpp() {
+ __ZN6cashew7IString3setEPKcb(38384, 27916, 1);
+ __ZN6cashew7IString3setEPKcb(38388, 27925, 1);
+ __ZN6cashew7IString3setEPKcb(38392, 27931, 1);
+ __ZN6cashew7IString3setEPKcb(38396, 27937, 1);
+ __ZN6cashew7IString3setEPKcb(38400, 27942, 1);
+ __ZN6cashew7IString3setEPKcb(38404, 27949, 1);
+ __ZN6cashew7IString3setEPKcb(38408, 27954, 1);
+ __ZN6cashew7IString3setEPKcb(38412, 27958, 1);
+ __ZN6cashew7IString3setEPKcb(38416, 27964, 1);
+ __ZN6cashew7IString3setEPKcb(38420, 27976, 1);
+ __ZN6cashew7IString3setEPKcb(38424, 27983, 1);
+ __ZN6cashew7IString3setEPKcb(38428, 27990, 1);
+ __ZN6cashew7IString3setEPKcb(38432, 27993, 1);
+ __ZN6cashew7IString3setEPKcb(38436, 27998, 1);
+ __ZN6cashew7IString3setEPKcb(38440, 28004, 1);
+ __ZN6cashew7IString3setEPKcb(38444, 28007, 1);
+ __ZN6cashew7IString3setEPKcb(38448, 28011, 1);
+ __ZN6cashew7IString3setEPKcb(38452, 28015, 1);
+ __ZN6cashew7IString3setEPKcb(38456, 28019, 1);
+ __ZN6cashew7IString3setEPKcb(38460, 28024, 1);
+ __ZN6cashew7IString3setEPKcb(38464, 28028, 1);
+ __ZN6cashew7IString3setEPKcb(38468, 28034, 1);
+ __ZN6cashew7IString3setEPKcb(38472, 28040, 1);
+ __ZN6cashew7IString3setEPKcb(38476, 28049, 1);
+ __ZN6cashew7IString3setEPKcb(38480, 28056, 1);
+ __ZN6cashew7IString3setEPKcb(38484, 31688, 1);
+ __ZN6cashew7IString3setEPKcb(38488, 31696, 1);
+ __ZN6cashew7IString3setEPKcb(38492, 28063, 1);
+ __ZN6cashew7IString3setEPKcb(38496, 28072, 1);
+ __ZN6cashew7IString3setEPKcb(38500, 28085, 1);
+ __ZN6cashew7IString3setEPKcb(38504, 28099, 1);
+ __ZN6cashew7IString3setEPKcb(38508, 28111, 1);
+ __ZN6cashew7IString3setEPKcb(38512, 28126, 1);
+ __ZN6cashew7IString3setEPKcb(38516, 28141, 1);
+ __ZN6cashew7IString3setEPKcb(38520, 28154, 1);
+ __ZN6cashew7IString3setEPKcb(38524, 28167, 1);
+ __ZN6cashew7IString3setEPKcb(38528, 36941, 1);
+ __ZN6cashew7IString3setEPKcb(38532, 36892, 1);
+ __ZN6cashew7IString3setEPKcb(38536, 36932, 1);
+ __ZN6cashew7IString3setEPKcb(38540, 35875, 1);
+ __ZN6cashew7IString3setEPKcb(38544, 36868, 1);
+ __ZN6cashew7IString3setEPKcb(38548, 36916, 1);
+ __ZN6cashew7IString3setEPKcb(38552, 35909, 1);
+ __ZN6cashew7IString3setEPKcb(38556, 36452, 1);
+ __ZN6cashew7IString3setEPKcb(38560, 36876, 1);
+ __ZN6cashew7IString3setEPKcb(38564, 36882, 1);
+ __ZN6cashew7IString3setEPKcb(38568, 35867, 1);
+ __ZN6cashew7IString3setEPKcb(38572, 36873, 1);
+ __ZN6cashew7IString3setEPKcb(38576, 36913, 1);
+ __ZN6cashew7IString3setEPKcb(38580, 36863, 1);
+ __ZN6cashew7IString3setEPKcb(38584, 36986, 1);
+ __ZN6cashew7IString3setEPKcb(38588, 35941, 1);
+ __ZN6cashew7IString3setEPKcb(38592, 36991, 1);
+ __ZN6cashew7IString3setEPKcb(38596, 36885, 1);
+ __ZN6cashew7IString3setEPKcb(38600, 28180, 1);
+ __ZN6cashew7IString3setEPKcb(38604, 28184, 1);
+ __ZN6cashew7IString3setEPKcb(38608, 28198, 1);
+ __ZN6cashew7IString3setEPKcb(38612, 28204, 1);
+ __ZN6cashew7IString3setEPKcb(38616, 28211, 1);
+ __ZN6cashew7IString3setEPKcb(38620, 28218, 1);
+ __ZN6cashew7IString3setEPKcb(38624, 28226, 1);
+ __ZN6cashew7IString3setEPKcb(38628, 28233, 1);
+ __ZN6cashew7IString3setEPKcb(38632, 28241, 1);
+ __ZN6cashew7IString3setEPKcb(38636, 28249, 1);
+ __ZN6cashew7IString3setEPKcb(38640, 28257, 1);
+ __ZN6cashew7IString3setEPKcb(38644, 46453, 1);
+ __ZN6cashew7IString3setEPKcb(38648, 28260, 1);
+ __ZN6cashew7IString3setEPKcb(38652, 35820, 1);
+ __ZN6cashew7IString3setEPKcb(38656, 28269, 1);
+ __ZN6cashew7IString3setEPKcb(38660, 28271, 1);
+ __ZN6cashew7IString3setEPKcb(38664, 28273, 1);
+ __ZN6cashew7IString3setEPKcb(38668, 35907, 1);
+ __ZN6cashew7IString3setEPKcb(38672, 28275, 1);
+ __ZN6cashew7IString3setEPKcb(38676, 28277, 1);
+ __ZN6cashew7IString3setEPKcb(38680, 28279, 1);
+ __ZN6cashew7IString3setEPKcb(38684, 28284, 1);
+ __ZN6cashew7IString3setEPKcb(38688, 28292, 1);
+ __ZN6cashew7IString3setEPKcb(38692, 36861, 1);
+ __ZN6cashew7IString3setEPKcb(38696, 28296, 1);
+ __ZN6cashew7IString3setEPKcb(38700, 28300, 1);
+ __ZN6cashew7IString3setEPKcb(38704, 28306, 1);
+ __ZN6cashew7IString3setEPKcb(38708, 37039, 1);
+ __ZN6cashew7IString3setEPKcb(38712, 35880, 1);
+ __ZN6cashew10IStringSetC2EPKc(38716, 28313);
+ ___cxa_atexit(185, 38716, ___dso_handle | 0) | 0;
+ HEAP32[9684] = 0;
+ HEAP32[9685] = 0;
+ HEAP32[9686] = 0;
+ ___cxa_atexit(186, 38736, ___dso_handle | 0) | 0;
+ HEAP32[9687] = 0;
+ HEAP32[9688] = 0;
+ HEAP32[9689] = 0;
+ ___cxa_atexit(187, 38748, ___dso_handle | 0) | 0;
+ __ZN6cashew4InitC2Ev(44379);
+ return;
+}
+
+function __ZN4wasm5Unary7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i7, i6, i5) {
+ i7 = i7 | 0;
i6 = i6 | 0;
- i4 = i4 | 0;
- i2 = i2 | 0;
- var i1 = 0, i3 = 0, i5 = 0, i7 = 0, i8 = 0;
+ i5 = i5 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i3 = i8;
- HEAP32[i3 >> 2] = i2;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i4, 40) | 0;
- i1 = __Z12prepareColorRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEE(i4) | 0;
- i7 = i6 + 4 | 0;
- switch (HEAP32[i7 >> 2] | 0) {
+ i2 = i8;
+ HEAP32[i2 >> 2] = i5;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i6, 40) | 0;
+ i3 = __Z12prepareColorRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEE(i6) | 0;
+ i4 = i7 + 4 | 0;
+ switch (HEAP32[i4 >> 2] | 0) {
case 0:
{
- i5 = 16812;
+ i1 = 17406;
break;
}
case 1:
{
- i5 = 16817;
+ i1 = 17411;
break;
}
case 2:
{
- i5 = 16821;
+ i1 = 17415;
break;
}
case 3:
{
- i5 = 16825;
+ i1 = 17419;
break;
}
case 4:
{
- i5 = 16829;
+ i1 = 17423;
break;
}
default:
{}
}
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i1, i5) | 0, 46) | 0;
- do switch (HEAP32[i6 + 8 >> 2] | 0) {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i3, i1) | 0, 46) | 0;
+ do switch (HEAP32[i7 + 8 >> 2] | 0) {
case 0:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 16840) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17434) | 0;
break;
}
case 1:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 16844) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17438) | 0;
break;
}
case 2:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 16848) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17442) | 0;
break;
}
case 3:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 16855) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17449) | 0;
break;
}
case 4:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 12072) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 12640) | 0;
break;
}
case 5:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 16859) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17453) | 0;
break;
}
case 6:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 12076) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 12644) | 0;
break;
}
case 7:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 16864) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17458) | 0;
break;
}
case 8:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 16870) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17464) | 0;
break;
}
case 9:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 12082) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 12650) | 0;
break;
}
case 10:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 16878) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17472) | 0;
break;
}
case 11:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 16891) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17485) | 0;
break;
}
case 12:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 16904) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17498) | 0;
break;
}
case 13:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 16913) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17507) | 0;
break;
}
case 14:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 16925) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17519) | 0;
break;
}
case 15:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 16937) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17531) | 0;
break;
}
case 16:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 16949) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17543) | 0;
break;
}
case 17:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 16961) | 0, (HEAP32[i7 >> 2] | 0) == 2 ? 16829 : 16825) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17555) | 0, (HEAP32[i4 >> 2] | 0) == 2 ? 17423 : 17419) | 0;
break;
}
case 19:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 16974) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17568) | 0;
break;
}
case 18:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 16988) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17582) | 0;
break;
}
case 21:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 17002) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17596) | 0;
break;
}
case 20:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 17016) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17610) | 0;
break;
}
case 22:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 17030) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17624) | 0;
break;
}
case 23:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 17042) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17636) | 0;
break;
}
case 24:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, 16961) | 0, (HEAP32[i7 >> 2] | 0) == 4 ? 16821 : 16817) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17555) | 0, (HEAP32[i4 >> 2] | 0) == 4 ? 17415 : 17411) | 0;
break;
}
default:
_abort();
} while (0);
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i4, 10) | 0;
- i7 = i2 + 1 | 0;
- HEAP32[i3 >> 2] = i7;
- __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i4, i7, HEAP32[i6 + 12 >> 2] | 0) | 0;
- i7 = __Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i4, i3) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i6, 10) | 0;
+ i5 = i5 + 1 | 0;
+ HEAP32[i2 >> 2] = i5;
+ __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i6, i5, HEAP32[i7 + 12 >> 2] | 0) | 0;
+ i7 = __Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i6, i2) | 0;
STACKTOP = i8;
return i7 | 0;
}
@@ -42300,36 +41590,36 @@ function __ZN4wasm6Switch7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEE
var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i14 = 0, i15 = 0;
i14 = STACKTOP;
STACKTOP = STACKTOP + 48 | 0;
- i10 = i14 + 32 | 0;
- i12 = i14 + 28 | 0;
- i2 = i14 + 24 | 0;
- i11 = i14 + 4 | 0;
+ i9 = i14 + 32 | 0;
+ i10 = i14 + 28 | 0;
+ i1 = i14 + 24 | 0;
+ i12 = i14 + 4 | 0;
i7 = i14 + 20 | 0;
i8 = i14 + 16 | 0;
- i9 = i14;
- HEAP32[i12 >> 2] = i3;
- __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i13, 16690, 0) | 0;
- i1 = HEAP32[i6 + 8 >> 2] | 0;
- if (i1 | 0) {
- HEAP32[i2 >> 2] = i1;
- HEAP32[i10 >> 2] = HEAP32[i2 >> 2];
- __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i13, i10) | 0;
+ i11 = i14;
+ HEAP32[i10 >> 2] = i3;
+ __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i13, 17281, 0) | 0;
+ i2 = HEAP32[i6 + 8 >> 2] | 0;
+ if (i2 | 0) {
+ HEAP32[i1 >> 2] = i2;
+ HEAP32[i9 >> 2] = HEAP32[i1 >> 2];
+ __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i13, i9) | 0;
}
__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i13, 10) | 0;
i5 = i3 + 1 | 0;
- HEAP32[i12 >> 2] = i5;
+ HEAP32[i10 >> 2] = i5;
__ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i13, i5, HEAP32[i6 + 12 >> 2] | 0) | 0;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__Z8doIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEj(i13, i5) | 0, 16703) | 0;
- HEAP32[i11 + 4 >> 2] = 0;
- HEAP32[i11 + 8 >> 2] = 0;
- HEAP32[i11 >> 2] = i11 + 4;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__Z8doIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEj(i13, i5) | 0, 17294) | 0;
+ HEAP32[i12 + 4 >> 2] = 0;
+ HEAP32[i12 + 8 >> 2] = 0;
+ HEAP32[i12 >> 2] = i12 + 4;
i5 = i6 + 32 | 0;
i4 = i6 + 36 | 0;
i1 = HEAP32[i4 >> 2] | 0;
i2 = HEAP32[i5 >> 2] | 0;
while (1) {
if ((i2 | 0) == (i1 | 0)) break;
- __ZNSt3__16__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE15__insert_uniqueERKS2_(i10, i11, i2);
+ __ZNSt3__16__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE15__insert_uniqueERKS2_(i9, i12, i2);
i2 = i2 + 8 | 0;
}
i2 = HEAP32[i6 + 20 >> 2] | 0;
@@ -42337,277 +41627,154 @@ function __ZN4wasm6Switch7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEE
i1 = HEAP32[i6 + 16 >> 2] | 0;
while (1) {
if ((i1 | 0) == (i2 | 0)) break;
- i15 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i13, 34408) | 0;
- i6 = (__ZNKSt3__16__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE14__count_uniqueIS2_EEjRKT_(i11, i1) | 0) == 0;
- i6 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i15, i6 ? 12257 : 26927) | 0, 35447) | 0;
+ i15 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i13, 35872) | 0;
+ i6 = (__ZNKSt3__16__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE14__count_uniqueIS2_EEjRKT_(i12, i1) | 0) == 0;
+ i6 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i15, i6 ? 12831 : 28279) | 0, 36911) | 0;
HEAP32[i7 >> 2] = HEAP32[(HEAP32[i1 >> 2] | 0 ? i1 : i3) >> 2];
- HEAP32[i10 >> 2] = HEAP32[i7 >> 2];
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i6, i10) | 0, 34358) | 0;
+ HEAP32[i9 >> 2] = HEAP32[i7 >> 2];
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i6, i9) | 0, 35822) | 0;
i1 = i1 + 4 | 0;
}
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i13, 34358) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i13, 35822) | 0;
if (HEAP32[i3 >> 2] | 0) {
- i7 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i13, 34408) | 0;
- i15 = (__ZNKSt3__16__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE14__count_uniqueIS2_EEjRKT_(i11, i3) | 0) == 0;
- i15 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, i15 ? 12257 : 26927) | 0, 35447) | 0;
+ i7 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i13, 35872) | 0;
+ i15 = (__ZNKSt3__16__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE14__count_uniqueIS2_EEjRKT_(i12, i3) | 0) == 0;
+ i15 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, i15 ? 12831 : 28279) | 0, 36911) | 0;
HEAP32[i8 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i10 >> 2] = HEAP32[i8 >> 2];
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i15, i10) | 0, 34358) | 0;
+ HEAP32[i9 >> 2] = HEAP32[i8 >> 2];
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i15, i9) | 0, 35822) | 0;
}
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i13, 16710) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i13, 17301) | 0;
i2 = HEAP32[i4 >> 2] | 0;
i1 = HEAP32[i5 >> 2] | 0;
while (1) {
if ((i1 | 0) == (i2 | 0)) break;
- i15 = HEAP32[i12 >> 2] | 0;
+ i15 = HEAP32[i10 >> 2] | 0;
__Z8doIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEj(i13, i15) | 0;
- i8 = __Z17printMinorOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKc(i13, 16712) | 0;
- HEAP32[i9 >> 2] = HEAP32[i1 >> 2];
- HEAP32[i10 >> 2] = HEAP32[i9 >> 2];
- __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i8, i10) | 0;
+ i8 = __Z17printMinorOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKc(i13, 17303) | 0;
+ HEAP32[i11 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i9 >> 2] = HEAP32[i11 >> 2];
+ __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i8, i9) | 0;
__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i13, 10) | 0;
i15 = i15 + 1 | 0;
- HEAP32[i12 >> 2] = i15;
+ HEAP32[i10 >> 2] = i15;
__ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i13, i15, HEAP32[i1 + 4 >> 2] | 0) | 0;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i13, i12) | 0, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i13, i10) | 0, 10) | 0;
i1 = i1 + 8 | 0;
}
- i15 = __Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i13, i12) | 0;
- __ZNSt3__16__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEED2Ev(i11);
+ i15 = __Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i13, i10) | 0;
+ __ZNSt3__16__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEED2Ev(i12);
STACKTOP = i14;
return i15 | 0;
}
-function __ZN4wasm15Asm2WasmBuilder24noteImportedFunctionCallEN6cashew3RefENS_8WasmTypeEP7AsmData(i14, i6, i7, i11) {
+function __ZN4wasm15Asm2WasmBuilder24noteImportedFunctionCallEN6cashew3RefENS_8WasmTypeEP7AsmData(i14, i6, i7, i12) {
i14 = i14 | 0;
i6 = i6 | 0;
i7 = i7 | 0;
- i11 = i11 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i13 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0;
+ i12 = i12 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i13 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0;
i19 = STACKTOP;
STACKTOP = STACKTOP + 80 | 0;
- i9 = i19 + 64 | 0;
- i12 = i19 + 60 | 0;
+ i8 = i19 + 64 | 0;
+ i13 = i19 + 60 | 0;
i18 = i19 + 40 | 0;
- i2 = i19 + 32 | 0;
- i5 = i19 + 20 | 0;
+ i1 = i19 + 32 | 0;
+ i2 = i19 + 20 | 0;
i4 = i19 + 8 | 0;
- i10 = i19 + 36 | 0;
- i13 = i19 + 4 | 0;
- i8 = i19;
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i6, 0) | 0, 36764) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i6, 1) | 0, 0) | 0, 36932) | 0 : 0) {
+ i11 = i19 + 36 | 0;
+ i9 = i19 + 4 | 0;
+ i10 = i19;
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i6, 0) | 0, 38232) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i6, 1) | 0, 0) | 0, 38404) | 0 : 0) {
i3 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i6, 1) | 0, 1) | 0;
i3 = __ZN6cashew5Value10getIStringEv(HEAP32[i3 >> 2] | 0) | 0;
i3 = HEAP32[i3 >> 2] | 0;
- HEAP32[i12 >> 2] = i3;
+ HEAP32[i13 >> 2] = i3;
HEAP32[i18 >> 2] = 0;
HEAP32[i18 + 4 >> 2] = 0;
HEAP32[i18 + 8 >> 2] = 0;
HEAP32[i18 + 12 >> 2] = 0;
HEAP32[i18 + 16 >> 2] = 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i4, 21565, 5);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i4, 22153, 5);
i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i4, i3) | 0;
- HEAP32[i5 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i5 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i5 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i1 = 0;
+ HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i2 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
+ HEAP32[i2 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ i5 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i3 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i5 | 0) == 3) break;
+ HEAP32[i3 + (i5 << 2) >> 2] = 0;
+ i5 = i5 + 1 | 0;
}
- __ZN6cashew7IStringC2EPKcb(i2, (HEAP8[i5 >> 0] & 1) == 0 ? i5 + 1 | 0 : HEAP32[i5 + 8 >> 2] | 0, 0);
- HEAP32[i18 >> 2] = HEAP32[i2 >> 2];
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5);
+ __ZN6cashew7IStringC2EPKcb(i1, (HEAP8[i2 >> 0] & 1) == 0 ? i2 + 1 | 0 : HEAP32[i2 + 8 >> 2] | 0, 0);
+ HEAP32[i18 >> 2] = HEAP32[i1 >> 2];
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i2);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i4);
i17 = i18 + 4 | 0;
HEAP32[i17 >> 2] = i7;
i1 = __ZN6cashew3RefixEj(i6, 2) | 0;
i1 = HEAP32[i1 >> 2] | 0;
- HEAP32[i10 >> 2] = i1;
- i16 = i18 + 8 | 0;
- i15 = i18 + 12 | 0;
+ HEAP32[i11 >> 2] = i1;
+ i15 = i18 + 8 | 0;
+ i16 = i18 + 12 | 0;
i3 = i18 + 16 | 0;
i4 = 0;
while (1) {
if (i4 >>> 0 >= (__ZN6cashew5Value4sizeEv(i1) | 0) >>> 0) break;
- i2 = __ZN6cashew3RefixEj(i10, i4) | 0;
- HEAP32[i8 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i9 >> 2] = HEAP32[i8 >> 2];
- i2 = __ZN4wasm15Asm2WasmBuilder14detectWasmTypeEN6cashew3RefEP7AsmData(i14, i9, i11) | 0;
- HEAP32[i13 >> 2] = i2;
- i1 = HEAP32[i15 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i3 >> 2] | 0) >>> 0) {
- HEAP32[i1 >> 2] = i2;
- HEAP32[i15 >> 2] = i1 + 4;
- } else __ZNSt3__16vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i16, i13);
- i1 = HEAP32[i10 >> 2] | 0;
+ i1 = __ZN6cashew3RefixEj(i11, i4) | 0;
+ HEAP32[i10 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i8 >> 2] = HEAP32[i10 >> 2];
+ i1 = __ZN4wasm15Asm2WasmBuilder14detectWasmTypeEN6cashew3RefEP7AsmData(i14, i8, i12) | 0;
+ HEAP32[i9 >> 2] = i1;
+ i2 = HEAP32[i16 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i3 >> 2] | 0) >>> 0) {
+ HEAP32[i2 >> 2] = i1;
+ HEAP32[i16 >> 2] = i2 + 4;
+ } else __ZNSt3__16vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i15, i9);
+ i1 = HEAP32[i11 >> 2] | 0;
i4 = i4 + 1 | 0;
}
- i6 = i14 + 96 | 0;
- i14 = (__ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_(i6, i12) | 0) == (i14 + 100 | 0);
- i6 = __ZNSt3__13mapIN6cashew7IStringEN4wasm12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i6, i12) | 0;
+ i4 = i14 + 96 | 0;
+ i14 = (__ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_(i4, i13) | 0) == (i14 + 100 | 0);
+ i4 = __ZNSt3__13mapIN6cashew7IStringEN4wasm12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i4, i13) | 0;
if (!i14) {
- if (!(__ZN4wasm12FunctionTypeeqERS0_(i18, i6) | 0)) {
- i8 = i6 + 8 | 0;
- i4 = i6 + 12 | 0;
- i5 = i6 + 16 | 0;
- i7 = 0;
+ if (!(__ZN4wasm12FunctionTypeeqERS0_(i18, i4) | 0)) {
+ i5 = i4 + 8 | 0;
+ i6 = i4 + 12 | 0;
+ i7 = i4 + 16 | 0;
+ i8 = 0;
while (1) {
- i14 = HEAP32[i16 >> 2] | 0;
+ i14 = HEAP32[i15 >> 2] | 0;
i2 = i14;
- if (i7 >>> 0 >= (HEAP32[i15 >> 2] | 0) - i14 >> 2 >>> 0) break;
- i14 = HEAP32[i4 >> 2] | 0;
- i1 = HEAP32[i8 >> 2] | 0;
+ if (i8 >>> 0 >= (HEAP32[i16 >> 2] | 0) - i14 >> 2 >>> 0) break;
+ i14 = HEAP32[i6 >> 2] | 0;
+ i1 = HEAP32[i5 >> 2] | 0;
i3 = i14;
- do if (i14 - i1 >> 2 >>> 0 > i7 >>> 0) {
- i1 = i1 + (i7 << 2) | 0;
- if (!(HEAP32[i1 >> 2] | 0)) HEAP32[i1 >> 2] = HEAP32[i2 + (i7 << 2) >> 2];
+ do if (i14 - i1 >> 2 >>> 0 > i8 >>> 0) {
+ i1 = i1 + (i8 << 2) | 0;
+ if (!(HEAP32[i1 >> 2] | 0)) HEAP32[i1 >> 2] = HEAP32[i2 + (i8 << 2) >> 2];
} else {
- i1 = i2 + (i7 << 2) | 0;
- if ((i3 | 0) == (HEAP32[i5 >> 2] | 0)) {
- __ZNSt3__16vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i8, i1);
+ i1 = i2 + (i8 << 2) | 0;
+ if ((i3 | 0) == (HEAP32[i7 >> 2] | 0)) {
+ __ZNSt3__16vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i5, i1);
break;
} else {
HEAP32[i3 >> 2] = HEAP32[i1 >> 2];
- HEAP32[i4 >> 2] = i3 + 4;
+ HEAP32[i6 >> 2] = i3 + 4;
break;
}
} while (0);
- i7 = i7 + 1 | 0;
+ i8 = i8 + 1 | 0;
}
- i1 = i6 + 4 | 0;
+ i1 = i4 + 4 | 0;
if (!(HEAP32[i1 >> 2] | 0)) HEAP32[i1 >> 2] = HEAP32[i17 >> 2];
}
- } else __ZN4wasm12FunctionTypeaSERKS0_(i6, i18) | 0;
+ } else __ZN4wasm12FunctionTypeaSERKS0_(i4, i18) | 0;
__ZNSt3__113__vector_baseIN4wasm8WasmTypeENS_9allocatorIS2_EEED2Ev(i18 + 8 | 0);
STACKTOP = i19;
return;
}
- ___assert_fail(21504, 12455, 208, 21540);
-}
-
-function __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i1, i3, i2) {
- i1 = i1 | 0;
- i3 = i3 | 0;
- i2 = i2 | 0;
- if (!i2) ___assert_fail(26470, 26220, 1229, 26475);
- do switch (HEAP32[i2 >> 2] | 0) {
- case 0:
- {
- _abort();
- break;
- }
- case 1:
- {
- __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner10visitBlockEPNS_5BlockE(i1, i3, i2);
- break;
- }
- case 2:
- {
- __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner7visitIfEPNS_2IfE(i1, i3, i2);
- break;
- }
- case 3:
- {
- __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner9visitLoopEPNS_4LoopE(i1, i3, i2);
- break;
- }
- case 4:
- {
- __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner10visitBreakEPNS_5BreakE(i1, i3, i2);
- break;
- }
- case 5:
- {
- __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner11visitSwitchEPNS_6SwitchE(i1, i3, i2);
- break;
- }
- case 6:
- {
- __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner9visitCallEPNS_4CallE(i1, i3, i2);
- break;
- }
- case 7:
- {
- __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner15visitCallImportEPNS_10CallImportE(i1, i3, i2);
- break;
- }
- case 8:
- {
- __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner17visitCallIndirectEPNS_12CallIndirectE(i1, i3, i2);
- break;
- }
- case 9:
- {
- __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner13visitGetLocalEPNS_8GetLocalE(i1, i3, i2);
- break;
- }
- case 10:
- {
- __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner13visitSetLocalEPNS_8SetLocalE(i1, i3, i2);
- break;
- }
- case 11:
- {
- __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner9visitLoadEPNS_4LoadE(i1, i3, i2);
- break;
- }
- case 12:
- {
- __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner10visitStoreEPNS_5StoreE(i1, i3, i2);
- break;
- }
- case 13:
- {
- i3 = i2 + 8 | 0;
- HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i1 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i1 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- HEAP32[i1 + 12 >> 2] = HEAP32[i3 + 12 >> 2];
- HEAP32[i1 + 16 >> 2] = 0;
- break;
- }
- case 14:
- {
- __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner10visitUnaryEPNS_5UnaryE(i1, i3, i2);
- break;
- }
- case 15:
- {
- __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner11visitBinaryEPNS_6BinaryE(i1, i3, i2);
- break;
- }
- case 16:
- {
- __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner11visitSelectEPNS_6SelectE(i1, i3, i2);
- break;
- }
- case 17:
- {
- __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner9visitHostEPNS_4HostE(i1, i3, i2);
- break;
- }
- case 18:
- {
- HEAP32[i1 >> 2] = 0;
- HEAPF64[i1 + 8 >> 3] = 0.0;
- HEAP32[i1 + 16 >> 2] = 0;
- break;
- }
- case 19:
- {
- i3 = HEAP32[(HEAP32[i3 + 4 >> 2] | 0) + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 20 >> 2] & 127](i3, 17244);
- HEAP32[i1 >> 2] = 0;
- HEAPF64[i1 + 8 >> 3] = 0.0;
- HEAP32[i1 + 16 >> 2] = 0;
- break;
- }
- default:
- {}
- } while (0);
- return;
+ ___assert_fail(22092, 13029, 208, 22128);
}
function ___udivmoddi4(i5, i6, i8, i11, i13) {
@@ -42800,48 +41967,48 @@ function __ZNKSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEE
var i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i20 = 0, i21 = 0, i22 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0;
i28 = STACKTOP;
STACKTOP = STACKTOP + 1008 | 0;
- i16 = i28 + 8 | 0;
+ i10 = i28 + 8 | 0;
i3 = i28;
- i2 = i28 + 896 | 0;
+ i1 = i28 + 896 | 0;
i5 = i28 + 888 | 0;
- i1 = i28 + 488 | 0;
+ i2 = i28 + 488 | 0;
i20 = i28 + 480 | 0;
- i13 = i28 + 892 | 0;
- i10 = i28 + 476 | 0;
- i14 = i28 + 472 | 0;
+ i15 = i28 + 892 | 0;
+ i12 = i28 + 476 | 0;
+ i16 = i28 + 472 | 0;
i24 = i28 + 460 | 0;
i27 = i28 + 448 | 0;
i26 = i28 + 436 | 0;
i7 = i28 + 432 | 0;
i9 = i28 + 32 | 0;
- i12 = i28 + 24 | 0;
- i11 = i28 + 16 | 0;
- i15 = i28 + 20 | 0;
- HEAP32[i5 >> 2] = i2;
- HEAPF64[i16 >> 3] = d4;
- i2 = _snprintf(i2, 100, 32654, i16) | 0;
- if (i2 >>> 0 > 99) {
- i2 = __ZNSt3__16__clocEv() | 0;
+ i14 = i28 + 24 | 0;
+ i13 = i28 + 16 | 0;
+ i11 = i28 + 20 | 0;
+ HEAP32[i5 >> 2] = i1;
+ HEAPF64[i10 >> 3] = d4;
+ i1 = _snprintf(i1, 100, 34118, i10) | 0;
+ if (i1 >>> 0 > 99) {
+ i1 = __ZNSt3__16__clocEv() | 0;
HEAPF64[i3 >> 3] = d4;
- i2 = __ZNSt3__112__asprintf_lEPPcP15__locale_structPKcz(i5, i2, 32654, i3) | 0;
- i1 = HEAP32[i5 >> 2] | 0;
- if (!i1) __ZSt17__throw_bad_allocv();
- i3 = _malloc(i2 << 2) | 0;
+ i1 = __ZNSt3__112__asprintf_lEPPcP15__locale_structPKcz(i5, i1, 34118, i3) | 0;
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (!i2) __ZSt17__throw_bad_allocv();
+ i3 = _malloc(i1 << 2) | 0;
if (!i3) __ZSt17__throw_bad_allocv(); else {
i17 = i3;
i29 = i3;
- i30 = i1;
- i22 = i2;
+ i30 = i2;
+ i22 = i1;
}
} else {
- i17 = i1;
+ i17 = i2;
i29 = 0;
i30 = 0;
- i22 = i2;
+ i22 = i1;
}
i1 = __ZNKSt3__18ios_base6getlocEv(i19) | 0;
HEAP32[i20 >> 2] = i1;
- i6 = __ZNKSt3__16locale9use_facetERNS0_2idE(i20, 38996) | 0;
+ i6 = __ZNKSt3__16locale9use_facetERNS0_2idE(i20, 40468) | 0;
i3 = HEAP32[i5 >> 2] | 0;
FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i6 >> 2] | 0) + 48 >> 2] & 7](i6, i3, i3 + i22 | 0, i17) | 0;
if (!i22) i5 = 0; else i5 = (HEAP8[HEAP32[i5 >> 2] >> 0] | 0) == 45;
@@ -42863,7 +42030,7 @@ function __ZNKSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEE
HEAP32[i26 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- __ZNSt3__111__money_putIwE13__gather_infoEbbRKNS_6localeERNS_10money_base7patternERwS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS9_IwNSA_IwEENSC_IwEEEESJ_Ri(i8, i5, i20, i13, i10, i14, i24, i27, i26, i7);
+ __ZNSt3__111__money_putIwE13__gather_infoEbbRKNS_6localeERNS_10money_base7patternERwS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS9_IwNSA_IwEENSC_IwEEEESJ_Ri(i8, i5, i20, i15, i12, i16, i24, i27, i26, i7);
i3 = HEAP32[i7 >> 2] | 0;
if ((i22 | 0) > (i3 | 0)) {
i8 = HEAP8[i26 >> 0] | 0;
@@ -42884,12 +42051,12 @@ function __ZNKSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEE
i25 = 0;
i21 = i9;
}
- __ZNSt3__111__money_putIwE8__formatEPwRS2_S3_jPKwS5_RKNS_5ctypeIwEEbRKNS_10money_base7patternEwwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNSE_IwNSF_IwEENSH_IwEEEESQ_i(i21, i12, i11, HEAP32[i19 + 4 >> 2] | 0, i17, i17 + (i22 << 2) | 0, i6, i5, i13, HEAP32[i10 >> 2] | 0, HEAP32[i14 >> 2] | 0, i24, i27, i26, i3);
- HEAP32[i15 >> 2] = HEAP32[i23 >> 2];
- i23 = HEAP32[i12 >> 2] | 0;
- i2 = HEAP32[i11 >> 2] | 0;
- HEAP32[i16 >> 2] = HEAP32[i15 >> 2];
- i2 = __ZNSt3__116__pad_and_outputIwNS_11char_traitsIwEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i16, i21, i23, i2, i19, i18) | 0;
+ __ZNSt3__111__money_putIwE8__formatEPwRS2_S3_jPKwS5_RKNS_5ctypeIwEEbRKNS_10money_base7patternEwwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNSE_IwNSF_IwEENSH_IwEEEESQ_i(i21, i14, i13, HEAP32[i19 + 4 >> 2] | 0, i17, i17 + (i22 << 2) | 0, i6, i5, i15, HEAP32[i12 >> 2] | 0, HEAP32[i16 >> 2] | 0, i24, i27, i26, i3);
+ HEAP32[i11 >> 2] = HEAP32[i23 >> 2];
+ i23 = HEAP32[i14 >> 2] | 0;
+ i2 = HEAP32[i13 >> 2] | 0;
+ HEAP32[i10 >> 2] = HEAP32[i11 >> 2];
+ i2 = __ZNSt3__116__pad_and_outputIwNS_11char_traitsIwEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i10, i21, i23, i2, i19, i18) | 0;
if (i25) {
_free(i25);
i1 = HEAP32[i20 >> 2] | 0;
@@ -42904,6 +42071,133 @@ function __ZNKSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEE
return i2 | 0;
}
+function __ZN4wasm11WasmVisitorIZNS_10Expression5printERNSt3__113basic_ostreamIcNS2_11char_traitsIcEEEEjE17ExpressionPrintervE5visitEPS1_(i3, i2) {
+ i3 = i3 | 0;
+ i2 = i2 | 0;
+ var i1 = 0, i4 = 0;
+ i4 = STACKTOP;
+ STACKTOP = STACKTOP + 16 | 0;
+ i1 = i4;
+ if (!i2) ___assert_fail(27822, 27572, 1310, 27827);
+ do switch (HEAP32[i2 >> 2] | 0) {
+ case 0:
+ {
+ _abort();
+ break;
+ }
+ case 1:
+ {
+ __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter10visitBlockEPNS_5BlockE(i3, i2);
+ break;
+ }
+ case 2:
+ {
+ __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter7visitIfEPNS_2IfE(i3, i2);
+ break;
+ }
+ case 3:
+ {
+ __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter9visitLoopEPNS_4LoopE(i3, i2);
+ break;
+ }
+ case 4:
+ {
+ __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter10visitBreakEPNS_5BreakE(i3, i2);
+ break;
+ }
+ case 5:
+ {
+ __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter11visitSwitchEPNS_6SwitchE(i3, i2);
+ break;
+ }
+ case 6:
+ {
+ __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter9visitCallEPNS_4CallE(i3, i2);
+ break;
+ }
+ case 7:
+ {
+ __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter15visitCallImportEPNS_10CallImportE(i3, i2);
+ break;
+ }
+ case 8:
+ {
+ __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter17visitCallIndirectEPNS_12CallIndirectE(i3, i2);
+ break;
+ }
+ case 9:
+ {
+ __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter13visitGetLocalEPNS_8GetLocalE(i3, i2);
+ break;
+ }
+ case 10:
+ {
+ __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter13visitSetLocalEPNS_8SetLocalE(i3, i2);
+ break;
+ }
+ case 11:
+ {
+ __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter9visitLoadEPNS_4LoadE(i3, i2);
+ break;
+ }
+ case 12:
+ {
+ __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter10visitStoreEPNS_5StoreE(i3, i2);
+ break;
+ }
+ case 13:
+ {
+ i3 = HEAP32[i3 + 4 >> 2] | 0;
+ i2 = i2 + 8 | 0;
+ HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i1 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i1 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ HEAP32[i1 + 12 >> 2] = HEAP32[i2 + 12 >> 2];
+ __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_7LiteralE(i3, i1) | 0;
+ break;
+ }
+ case 14:
+ {
+ __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter10visitUnaryEPNS_5UnaryE(i3, i2);
+ break;
+ }
+ case 15:
+ {
+ __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter11visitBinaryEPNS_6BinaryE(i3, i2);
+ break;
+ }
+ case 16:
+ {
+ __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter11visitSelectEPNS_6SelectE(i3, i2);
+ break;
+ }
+ case 17:
+ {
+ __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter11visitReturnEPNS_6ReturnE(i3, i2);
+ break;
+ }
+ case 18:
+ {
+ __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter9visitHostEPNS_4HostE(i3, i2);
+ break;
+ }
+ case 19:
+ {
+ __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter8visitNopEPNS_3NopE(i3, i2);
+ break;
+ }
+ case 20:
+ {
+ __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter16visitUnreachableEPNS_11UnreachableE(i3, i2);
+ break;
+ }
+ default:
+ {}
+ } while (0);
+ STACKTOP = i4;
+ return;
+}
+
function __ZNKSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_bRNS_8ios_baseEce(i1, i23, i8, i19, i18, d4) {
i1 = i1 | 0;
i23 = i23 | 0;
@@ -42914,48 +42208,48 @@ function __ZNKSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEE
var i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i20 = 0, i21 = 0, i22 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0;
i28 = STACKTOP;
STACKTOP = STACKTOP + 384 | 0;
- i16 = i28 + 8 | 0;
+ i10 = i28 + 8 | 0;
i3 = i28;
- i2 = i28 + 284 | 0;
+ i1 = i28 + 284 | 0;
i5 = i28 + 72 | 0;
- i1 = i28 + 184 | 0;
+ i2 = i28 + 184 | 0;
i20 = i28 + 68 | 0;
- i13 = i28 + 180 | 0;
- i10 = i28 + 177 | 0;
- i14 = i28 + 176 | 0;
+ i15 = i28 + 180 | 0;
+ i12 = i28 + 177 | 0;
+ i16 = i28 + 176 | 0;
i24 = i28 + 56 | 0;
i27 = i28 + 44 | 0;
i26 = i28 + 32 | 0;
i7 = i28 + 28 | 0;
i9 = i28 + 76 | 0;
- i12 = i28 + 24 | 0;
- i11 = i28 + 16 | 0;
- i15 = i28 + 20 | 0;
- HEAP32[i5 >> 2] = i2;
- HEAPF64[i16 >> 3] = d4;
- i2 = _snprintf(i2, 100, 32654, i16) | 0;
- if (i2 >>> 0 > 99) {
- i2 = __ZNSt3__16__clocEv() | 0;
+ i14 = i28 + 24 | 0;
+ i13 = i28 + 16 | 0;
+ i11 = i28 + 20 | 0;
+ HEAP32[i5 >> 2] = i1;
+ HEAPF64[i10 >> 3] = d4;
+ i1 = _snprintf(i1, 100, 34118, i10) | 0;
+ if (i1 >>> 0 > 99) {
+ i1 = __ZNSt3__16__clocEv() | 0;
HEAPF64[i3 >> 3] = d4;
- i2 = __ZNSt3__112__asprintf_lEPPcP15__locale_structPKcz(i5, i2, 32654, i3) | 0;
- i1 = HEAP32[i5 >> 2] | 0;
- if (!i1) __ZSt17__throw_bad_allocv();
- i3 = _malloc(i2) | 0;
+ i1 = __ZNSt3__112__asprintf_lEPPcP15__locale_structPKcz(i5, i1, 34118, i3) | 0;
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (!i2) __ZSt17__throw_bad_allocv();
+ i3 = _malloc(i1) | 0;
if (!i3) __ZSt17__throw_bad_allocv(); else {
i17 = i3;
i29 = i3;
- i30 = i1;
- i22 = i2;
+ i30 = i2;
+ i22 = i1;
}
} else {
- i17 = i1;
+ i17 = i2;
i29 = 0;
i30 = 0;
- i22 = i2;
+ i22 = i1;
}
i1 = __ZNKSt3__18ios_base6getlocEv(i19) | 0;
HEAP32[i20 >> 2] = i1;
- i6 = __ZNKSt3__16locale9use_facetERNS0_2idE(i20, 38964) | 0;
+ i6 = __ZNKSt3__16locale9use_facetERNS0_2idE(i20, 40436) | 0;
i3 = HEAP32[i5 >> 2] | 0;
FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i6 >> 2] | 0) + 32 >> 2] & 7](i6, i3, i3 + i22 | 0, i17) | 0;
if (!i22) i5 = 0; else i5 = (HEAP8[HEAP32[i5 >> 2] >> 0] | 0) == 45;
@@ -42977,7 +42271,7 @@ function __ZNKSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEE
HEAP32[i26 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- __ZNSt3__111__money_putIcE13__gather_infoEbbRKNS_6localeERNS_10money_base7patternERcS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESF_SF_Ri(i8, i5, i20, i13, i10, i14, i24, i27, i26, i7);
+ __ZNSt3__111__money_putIcE13__gather_infoEbbRKNS_6localeERNS_10money_base7patternERcS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESF_SF_Ri(i8, i5, i20, i15, i12, i16, i24, i27, i26, i7);
i3 = HEAP32[i7 >> 2] | 0;
if ((i22 | 0) > (i3 | 0)) {
i8 = HEAP8[i26 >> 0] | 0;
@@ -42998,12 +42292,12 @@ function __ZNKSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEE
i25 = 0;
i21 = i9;
}
- __ZNSt3__111__money_putIcE8__formatEPcRS2_S3_jPKcS5_RKNS_5ctypeIcEEbRKNS_10money_base7patternEccRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESL_SL_i(i21, i12, i11, HEAP32[i19 + 4 >> 2] | 0, i17, i17 + i22 | 0, i6, i5, i13, HEAP8[i10 >> 0] | 0, HEAP8[i14 >> 0] | 0, i24, i27, i26, i3);
- HEAP32[i15 >> 2] = HEAP32[i23 >> 2];
- i23 = HEAP32[i12 >> 2] | 0;
- i2 = HEAP32[i11 >> 2] | 0;
- HEAP32[i16 >> 2] = HEAP32[i15 >> 2];
- i2 = __ZNSt3__116__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i16, i21, i23, i2, i19, i18) | 0;
+ __ZNSt3__111__money_putIcE8__formatEPcRS2_S3_jPKcS5_RKNS_5ctypeIcEEbRKNS_10money_base7patternEccRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESL_SL_i(i21, i14, i13, HEAP32[i19 + 4 >> 2] | 0, i17, i17 + i22 | 0, i6, i5, i15, HEAP8[i12 >> 0] | 0, HEAP8[i16 >> 0] | 0, i24, i27, i26, i3);
+ HEAP32[i11 >> 2] = HEAP32[i23 >> 2];
+ i23 = HEAP32[i14 >> 2] | 0;
+ i2 = HEAP32[i13 >> 2] | 0;
+ HEAP32[i10 >> 2] = HEAP32[i11 >> 2];
+ i2 = __ZNSt3__116__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i10, i21, i23, i2, i19, i18) | 0;
if (i25) {
_free(i25);
i1 = HEAP32[i20 >> 2] | 0;
@@ -43018,6 +42312,99 @@ function __ZNKSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEE
return i2 | 0;
}
+function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner11visitSwitchEPNS_6SwitchE(i14, i18, i16) {
+ i14 = i14 | 0;
+ i18 = i18 | 0;
+ i16 = i16 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i15 = 0, i17 = 0, i19 = 0, i20 = 0;
+ i20 = STACKTOP;
+ STACKTOP = STACKTOP + 64 | 0;
+ i17 = i20 + 24 | 0;
+ i8 = i20 + 60 | 0;
+ i15 = i20 + 48 | 0;
+ i12 = i20;
+ __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i17, i18, HEAP32[i16 + 12 >> 2] | 0);
+ i13 = i17 + 16 | 0;
+ i1 = HEAP32[i13 >> 2] | 0;
+ if (!i1) {
+ i2 = __ZN4wasm7Literal10getIntegerEv(i17) | 0;
+ i10 = tempRet0;
+ i1 = HEAP32[i16 + 28 >> 2] | 0;
+ HEAP32[i8 >> 2] = i1;
+ if ((i10 | 0) > -1 | (i10 | 0) == -1 & i2 >>> 0 > 4294967295 ? (i3 = HEAP32[i16 + 16 >> 2] | 0, i2 >>> 0 < (HEAP32[i16 + 20 >> 2] | 0) - i3 >> 2 >>> 0) : 0) {
+ i1 = HEAP32[i3 + (i2 << 2) >> 2] | 0;
+ HEAP32[i8 >> 2] = i1;
+ }
+ HEAP32[i15 + 4 >> 2] = 0;
+ HEAP32[i15 + 8 >> 2] = 0;
+ i7 = i15 + 4 | 0;
+ HEAP32[i15 >> 2] = i7;
+ i9 = i16 + 32 | 0;
+ i10 = i16 + 36 | 0;
+ i2 = 0;
+ while (1) {
+ i3 = HEAP32[i10 >> 2] | 0;
+ i4 = HEAP32[i9 >> 2] | 0;
+ i5 = i3 - i4 >> 3;
+ i6 = i4;
+ if (i2 >>> 0 >= i5 >>> 0) break;
+ i6 = __ZNSt3__13mapIN4wasm4NameEjNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_jEEEEEixERS7_(i15, i6 + (i2 << 3) | 0) | 0;
+ HEAP32[i6 >> 2] = i2;
+ i2 = i2 + 1 | 0;
+ }
+ i2 = __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEjEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE4findIS3_EENS_15__tree_iteratorIS4_PNS_11__tree_nodeIS4_PvEEiEERKT_(i15, i8) | 0;
+ if ((i2 | 0) == (i7 | 0)) {
+ HEAP32[i14 >> 2] = 0;
+ i19 = i14 + 8 | 0;
+ HEAP32[i19 >> 2] = 0;
+ HEAP32[i19 + 4 >> 2] = 0;
+ HEAP32[i14 + 16 >> 2] = i1;
+ if ((i1 | 0) == (HEAP32[i16 + 8 >> 2] | 0)) HEAP32[i14 + 16 >> 2] = 0;
+ } else {
+ i2 = HEAP32[i2 + 20 >> 2] | 0;
+ if (i2 >>> 0 >= i5 >>> 0) ___assert_fail(20228, 19746, 275, 20259);
+ i1 = i6;
+ while (1) {
+ if (i2 >>> 0 >= i3 - i4 >> 3 >>> 0) break;
+ __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i12, i18, HEAP32[i1 + (i2 << 3) + 4 >> 2] | 0);
+ HEAP32[i17 >> 2] = HEAP32[i12 >> 2];
+ HEAP32[i17 + 4 >> 2] = HEAP32[i12 + 4 >> 2];
+ HEAP32[i17 + 8 >> 2] = HEAP32[i12 + 8 >> 2];
+ HEAP32[i17 + 12 >> 2] = HEAP32[i12 + 12 >> 2];
+ HEAP32[i17 + 16 >> 2] = HEAP32[i12 + 16 >> 2];
+ i1 = HEAP32[i13 >> 2] | 0;
+ if (i1 | 0) {
+ i11 = i1;
+ i19 = 20;
+ break;
+ }
+ i1 = HEAP32[i9 >> 2] | 0;
+ i4 = i1;
+ i3 = HEAP32[i10 >> 2] | 0;
+ i2 = i2 + 1 | 0;
+ }
+ if ((i19 | 0) == 20 ? (i11 | 0) == (HEAP32[i16 + 8 >> 2] | 0) : 0) HEAP32[i13 >> 2] = 0;
+ HEAP32[i14 >> 2] = HEAP32[i17 >> 2];
+ HEAP32[i14 + 4 >> 2] = HEAP32[i17 + 4 >> 2];
+ HEAP32[i14 + 8 >> 2] = HEAP32[i17 + 8 >> 2];
+ HEAP32[i14 + 12 >> 2] = HEAP32[i17 + 12 >> 2];
+ HEAP32[i14 + 16 >> 2] = HEAP32[i17 + 16 >> 2];
+ HEAP32[i14 + 20 >> 2] = HEAP32[i17 + 20 >> 2];
+ }
+ __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEjEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEED2Ev(i15);
+ } else {
+ if ((i1 | 0) == (HEAP32[i16 + 8 >> 2] | 0)) HEAP32[i13 >> 2] = 0;
+ HEAP32[i14 >> 2] = HEAP32[i17 >> 2];
+ HEAP32[i14 + 4 >> 2] = HEAP32[i17 + 4 >> 2];
+ HEAP32[i14 + 8 >> 2] = HEAP32[i17 + 8 >> 2];
+ HEAP32[i14 + 12 >> 2] = HEAP32[i17 + 12 >> 2];
+ HEAP32[i14 + 16 >> 2] = HEAP32[i17 + 16 >> 2];
+ HEAP32[i14 + 20 >> 2] = HEAP32[i17 + 20 >> 2];
+ }
+ STACKTOP = i20;
+ return;
+}
+
function __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i3, i1, i5, i2) {
i3 = i3 | 0;
i1 = i1 | 0;
@@ -43033,29 +42420,29 @@ function __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4
i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i3, i1, i2) | 0;
if ((i1 | 0) != (i3 | 0) ? (i4 = i2 + 4 | 0, i6 = HEAP32[i4 >> 2] | 0, (HEAP32[i2 >> 2] | 0) != (i6 | 0)) : 0) {
i11 = i6 + -24 | 0;
- __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EERKSB_PKS8_(i14, i5, 34356);
+ __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EERKSB_PKS8_(i14, i5, 35820);
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i15, (HEAP32[i4 >> 2] | 0) + -24 | 0);
- i3 = HEAP8[i15 >> 0] | 0;
- i2 = (i3 & 1) == 0;
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i14, i2 ? i15 + 1 | 0 : HEAP32[i15 + 8 >> 2] | 0, i2 ? (i3 & 255) >>> 1 : HEAP32[i15 + 4 >> 2] | 0) | 0;
- HEAP32[i13 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i13 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i13 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i2 = HEAP8[i15 >> 0] | 0;
+ i3 = (i2 & 1) == 0;
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i14, i3 ? i15 + 1 | 0 : HEAP32[i15 + 8 >> 2] | 0, i3 ? (i2 & 255) >>> 1 : HEAP32[i15 + 4 >> 2] | 0) | 0;
+ HEAP32[i13 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i13 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i13 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i13, 34358) | 0;
- HEAP32[i12 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i12 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i12 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
- i2 = 0;
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i13, 35822) | 0;
+ HEAP32[i12 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i12 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i12 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
do if (HEAP8[i11 >> 0] & 1) {
i10 = i6 + -16 | 0;
@@ -43071,43 +42458,43 @@ function __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4
if (!(i2 & 1)) {
i3 = (i2 & 255) >>> 1;
if ((i2 & 255) < 22) {
- i9 = i3;
i5 = 10;
- i8 = 1;
+ i8 = i3;
+ i9 = 1;
} else {
- i9 = i3;
i5 = (i3 + 16 & 240) + -1 | 0;
- i8 = 1;
+ i8 = i3;
+ i9 = 1;
}
} else {
- i9 = 0;
i5 = 10;
i8 = 0;
+ i9 = 0;
}
if ((i5 | 0) != (i6 | 0)) {
if ((i5 | 0) == 10) {
i4 = i11 + 1 | 0;
i3 = HEAP32[i10 >> 2] | 0;
- if (i8) {
+ if (i9) {
_memcpy(i4 | 0, i3 | 0, ((i2 & 255) >>> 1) + 1 | 0) | 0;
_free(i3);
} else {
HEAP8[i4 >> 0] = HEAP8[i3 >> 0] | 0;
_free(i3);
}
- HEAP8[i11 >> 0] = i9 << 1;
+ HEAP8[i11 >> 0] = i8 << 1;
break;
}
i3 = i5 + 1 | 0;
i4 = _malloc(i3) | 0;
if (!(i5 >>> 0 <= i6 >>> 0 & (i4 | 0) == 0)) {
- if (i8) _memcpy(i4 | 0, i11 + 1 | 0, ((i2 & 255) >>> 1) + 1 | 0) | 0; else {
- i8 = HEAP32[i10 >> 2] | 0;
- HEAP8[i4 >> 0] = HEAP8[i8 >> 0] | 0;
- _free(i8);
+ if (i9) _memcpy(i4 | 0, i11 + 1 | 0, ((i2 & 255) >>> 1) + 1 | 0) | 0; else {
+ i9 = HEAP32[i10 >> 2] | 0;
+ HEAP8[i4 >> 0] = HEAP8[i9 >> 0] | 0;
+ _free(i9);
}
HEAP32[i11 >> 2] = i3 | 1;
- HEAP32[i7 >> 2] = i9;
+ HEAP32[i7 >> 2] = i8;
HEAP32[i10 >> 2] = i4;
}
}
@@ -43165,14 +42552,14 @@ function __ZN10__cxxabiv112_GLOBAL__N_126parse_base_unresolved_nameINS0_2DbEEEPK
}
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i7, i1 + -24 | 0);
i1 = HEAP32[i4 >> 2] | 0;
- i3 = i1 + -24 | 0;
- i2 = i1;
+ i2 = i1 + -24 | 0;
+ i3 = i1;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break;
- i6 = i2 + -24 | 0;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i6 = i3 + -24 | 0;
HEAP32[i4 >> 2] = i6;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i6);
- i2 = HEAP32[i4 >> 2] | 0;
+ i3 = HEAP32[i4 >> 2] | 0;
}
i6 = HEAP8[i7 >> 0] | 0;
i4 = (i6 & 1) == 0;
@@ -43184,7 +42571,7 @@ function __ZN10__cxxabiv112_GLOBAL__N_126parse_base_unresolved_nameINS0_2DbEEEPK
if ((i3 | 0) != (i4 | 0)) {
i1 = __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_typeINS0_2DbEEEPKcS4_S4_RT_(i3, i4, i6) | 0;
if ((i1 | 0) == (i3 | 0)) i1 = __ZN10__cxxabiv112_GLOBAL__N_115parse_simple_idINS0_2DbEEEPKcS4_S4_RT_(i3, i4, i6) | 0;
- if ((i1 | 0) != (i3 | 0) ? (i2 = HEAP32[i6 + 4 >> 2] | 0, (HEAP32[i6 >> 2] | 0) != (i2 | 0)) : 0) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 34445) | 0; else i1 = i3;
+ if ((i1 | 0) != (i3 | 0) ? (i2 = HEAP32[i6 + 4 >> 2] | 0, (HEAP32[i6 >> 2] | 0) != (i2 | 0)) : 0) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 35909) | 0; else i1 = i3;
} else i1 = i4;
i1 = (i1 | 0) == (i3 | 0) ? i5 : i1;
break L1;
@@ -43206,14 +42593,14 @@ function __ZN10__cxxabiv112_GLOBAL__N_126parse_base_unresolved_nameINS0_2DbEEEPK
if (((i1 - (HEAP32[i6 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) i1 = i5; else {
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i7, i1 + -24 | 0);
i1 = HEAP32[i4 >> 2] | 0;
- i3 = i1 + -24 | 0;
- i2 = i1;
+ i2 = i1 + -24 | 0;
+ i3 = i1;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break;
- i6 = i2 + -24 | 0;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i6 = i3 + -24 | 0;
HEAP32[i4 >> 2] = i6;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i6);
- i2 = HEAP32[i4 >> 2] | 0;
+ i3 = HEAP32[i4 >> 2] | 0;
}
i6 = HEAP8[i7 >> 0] | 0;
i4 = (i6 & 1) == 0;
@@ -43229,306 +42616,95 @@ function __ZN10__cxxabiv112_GLOBAL__N_126parse_base_unresolved_nameINS0_2DbEEEPK
return i1 | 0;
}
-function __ZN4wasm11WasmVisitorIZNS_10Expression5printERNSt3__113basic_ostreamIcNS2_11char_traitsIcEEEEjE17ExpressionPrintervE5visitEPS1_(i3, i2) {
- i3 = i3 | 0;
- i2 = i2 | 0;
- var i1 = 0, i4 = 0;
- i4 = STACKTOP;
- STACKTOP = STACKTOP + 16 | 0;
- i1 = i4;
- if (!i2) ___assert_fail(26470, 26220, 1229, 26475);
- do switch (HEAP32[i2 >> 2] | 0) {
- case 0:
- {
- _abort();
- break;
- }
- case 1:
- {
- __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter10visitBlockEPNS_5BlockE(i3, i2);
- break;
- }
- case 2:
- {
- __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter7visitIfEPNS_2IfE(i3, i2);
- break;
- }
- case 3:
- {
- __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter9visitLoopEPNS_4LoopE(i3, i2);
- break;
- }
- case 4:
- {
- __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter10visitBreakEPNS_5BreakE(i3, i2);
- break;
- }
- case 5:
- {
- __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter11visitSwitchEPNS_6SwitchE(i3, i2);
- break;
- }
- case 6:
- {
- __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter9visitCallEPNS_4CallE(i3, i2);
- break;
- }
- case 7:
- {
- __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter15visitCallImportEPNS_10CallImportE(i3, i2);
- break;
- }
- case 8:
- {
- __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter17visitCallIndirectEPNS_12CallIndirectE(i3, i2);
- break;
- }
- case 9:
- {
- __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter13visitGetLocalEPNS_8GetLocalE(i3, i2);
- break;
- }
- case 10:
- {
- __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter13visitSetLocalEPNS_8SetLocalE(i3, i2);
- break;
- }
- case 11:
- {
- __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter9visitLoadEPNS_4LoadE(i3, i2);
- break;
- }
- case 12:
- {
- __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter10visitStoreEPNS_5StoreE(i3, i2);
- break;
- }
- case 13:
- {
- i3 = HEAP32[i3 + 4 >> 2] | 0;
- i2 = i2 + 8 | 0;
- HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i1 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i1 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- HEAP32[i1 + 12 >> 2] = HEAP32[i2 + 12 >> 2];
- __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_7LiteralE(i3, i1) | 0;
- break;
- }
- case 14:
- {
- __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter10visitUnaryEPNS_5UnaryE(i3, i2);
- break;
- }
- case 15:
- {
- __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter11visitBinaryEPNS_6BinaryE(i3, i2);
- break;
- }
- case 16:
- {
- __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter11visitSelectEPNS_6SelectE(i3, i2);
- break;
- }
- case 17:
- {
- __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter9visitHostEPNS_4HostE(i3, i2);
- break;
- }
- case 18:
- {
- __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter8visitNopEPNS_3NopE(i3, i2);
- break;
- }
- case 19:
- {
- __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter16visitUnreachableEPNS_11UnreachableE(i3, i2);
- break;
- }
- default:
- {}
- } while (0);
- STACKTOP = i4;
- return;
-}
-
-function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner11visitSwitchEPNS_6SwitchE(i12, i18, i14) {
- i12 = i12 | 0;
- i18 = i18 | 0;
- i14 = i14 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i13 = 0, i15 = 0, i16 = 0, i17 = 0, i19 = 0, i20 = 0;
- i20 = STACKTOP;
- STACKTOP = STACKTOP + 64 | 0;
- i15 = i20 + 24 | 0;
- i8 = i20 + 60 | 0;
- i13 = i20 + 48 | 0;
- i16 = i20;
- __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i15, i18, HEAP32[i14 + 12 >> 2] | 0);
- i17 = i15 + 16 | 0;
- i1 = HEAP32[i17 >> 2] | 0;
- if (!i1) {
- i1 = __ZN4wasm7Literal10getIntegerEv(i15) | 0;
- i10 = tempRet0;
- i2 = HEAP32[i14 + 28 >> 2] | 0;
- HEAP32[i8 >> 2] = i2;
- if ((i10 | 0) > -1 | (i10 | 0) == -1 & i1 >>> 0 > 4294967295 ? (i3 = HEAP32[i14 + 16 >> 2] | 0, i1 >>> 0 < (HEAP32[i14 + 20 >> 2] | 0) - i3 >> 2 >>> 0) : 0) {
- i2 = HEAP32[i3 + (i1 << 2) >> 2] | 0;
- HEAP32[i8 >> 2] = i2;
- }
- HEAP32[i13 + 4 >> 2] = 0;
- HEAP32[i13 + 8 >> 2] = 0;
- i7 = i13 + 4 | 0;
- HEAP32[i13 >> 2] = i7;
- i10 = i14 + 32 | 0;
- i9 = i14 + 36 | 0;
- i5 = 0;
- while (1) {
- i3 = HEAP32[i9 >> 2] | 0;
- i4 = HEAP32[i10 >> 2] | 0;
- i6 = i3 - i4 >> 3;
- i1 = i4;
- if (i5 >>> 0 >= i6 >>> 0) break;
- i6 = __ZNSt3__13mapIN4wasm4NameEjNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_jEEEEEixERS7_(i13, i1 + (i5 << 3) | 0) | 0;
- HEAP32[i6 >> 2] = i5;
- i5 = i5 + 1 | 0;
- }
- i5 = __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEjEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE4findIS3_EENS_15__tree_iteratorIS4_PNS_11__tree_nodeIS4_PvEEiEERKT_(i13, i8) | 0;
- if ((i5 | 0) == (i7 | 0)) {
- HEAP32[i12 >> 2] = 0;
- HEAPF64[i12 + 8 >> 3] = 0.0;
- HEAP32[i12 + 16 >> 2] = i2;
- if ((i2 | 0) == (HEAP32[i14 + 8 >> 2] | 0)) HEAP32[i12 + 16 >> 2] = 0;
- } else {
- i2 = HEAP32[i5 + 20 >> 2] | 0;
- if (i2 >>> 0 >= i6 >>> 0) ___assert_fail(19695, 19231, 261, 19726);
- while (1) {
- if (i2 >>> 0 >= i3 - i4 >> 3 >>> 0) break;
- __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i16, i18, HEAP32[i1 + (i2 << 3) + 4 >> 2] | 0);
- HEAP32[i15 >> 2] = HEAP32[i16 >> 2];
- HEAP32[i15 + 4 >> 2] = HEAP32[i16 + 4 >> 2];
- HEAP32[i15 + 8 >> 2] = HEAP32[i16 + 8 >> 2];
- HEAP32[i15 + 12 >> 2] = HEAP32[i16 + 12 >> 2];
- HEAP32[i15 + 16 >> 2] = HEAP32[i16 + 16 >> 2];
- i1 = HEAP32[i17 >> 2] | 0;
- if (i1 | 0) {
- i11 = i1;
- i19 = 20;
- break;
- }
- i1 = HEAP32[i10 >> 2] | 0;
- i4 = i1;
- i3 = HEAP32[i9 >> 2] | 0;
- i2 = i2 + 1 | 0;
- }
- if ((i19 | 0) == 20 ? (i11 | 0) == (HEAP32[i14 + 8 >> 2] | 0) : 0) HEAP32[i17 >> 2] = 0;
- HEAP32[i12 >> 2] = HEAP32[i15 >> 2];
- HEAP32[i12 + 4 >> 2] = HEAP32[i15 + 4 >> 2];
- HEAP32[i12 + 8 >> 2] = HEAP32[i15 + 8 >> 2];
- HEAP32[i12 + 12 >> 2] = HEAP32[i15 + 12 >> 2];
- HEAP32[i12 + 16 >> 2] = HEAP32[i15 + 16 >> 2];
- HEAP32[i12 + 20 >> 2] = HEAP32[i15 + 20 >> 2];
- }
- __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEjEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEED2Ev(i13);
- } else {
- if ((i1 | 0) == (HEAP32[i14 + 8 >> 2] | 0)) HEAP32[i17 >> 2] = 0;
- HEAP32[i12 >> 2] = HEAP32[i15 >> 2];
- HEAP32[i12 + 4 >> 2] = HEAP32[i15 + 4 >> 2];
- HEAP32[i12 + 8 >> 2] = HEAP32[i15 + 8 >> 2];
- HEAP32[i12 + 12 >> 2] = HEAP32[i15 + 12 >> 2];
- HEAP32[i12 + 16 >> 2] = HEAP32[i15 + 16 >> 2];
- HEAP32[i12 + 20 >> 2] = HEAP32[i15 + 20 >> 2];
- }
- STACKTOP = i20;
- return;
-}
-
-function __ZN4wasm6ModuleC2ERKS0_(i9, i6) {
+function __ZN4wasm6ModuleC2ERKS0_(i9, i7) {
i9 = i9 | 0;
- i6 = i6 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0;
+ i7 = i7 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0, i10 = 0, i11 = 0;
i10 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i8 = i10 + 4 | 0;
- i7 = i10;
- __ZNSt3__16vectorIPN4wasm12FunctionTypeENS_9allocatorIS3_EEEC2ERKS6_(i9, i6);
- __ZNSt3__16vectorIPN4wasm6ImportENS_9allocatorIS3_EEEC2ERKS6_(i9 + 12 | 0, i6 + 12 | 0);
- __ZNSt3__16vectorIPN4wasm6ExportENS_9allocatorIS3_EEEC2ERKS6_(i9 + 24 | 0, i6 + 24 | 0);
- __ZNSt3__16vectorIPN4wasm8FunctionENS_9allocatorIS3_EEEC2ERKS6_(i9 + 36 | 0, i6 + 36 | 0);
+ i6 = i10 + 4 | 0;
+ i8 = i10;
+ __ZNSt3__16vectorIPN4wasm12FunctionTypeENS_9allocatorIS3_EEEC2ERKS6_(i9, i7);
+ __ZNSt3__16vectorIPN4wasm6ImportENS_9allocatorIS3_EEEC2ERKS6_(i9 + 12 | 0, i7 + 12 | 0);
+ __ZNSt3__16vectorIPN4wasm6ExportENS_9allocatorIS3_EEEC2ERKS6_(i9 + 24 | 0, i7 + 24 | 0);
+ __ZNSt3__16vectorIPN4wasm8FunctionENS_9allocatorIS3_EEEC2ERKS6_(i9 + 36 | 0, i7 + 36 | 0);
i5 = i9 + 48 | 0;
HEAP32[i9 + 52 >> 2] = 0;
HEAP32[i9 + 56 >> 2] = 0;
- i1 = i9 + 52 | 0;
- HEAP32[i5 >> 2] = i1;
- i3 = HEAP32[i6 + 48 >> 2] | 0;
- i4 = i6 + 52 | 0;
- i2 = i3;
+ i2 = i9 + 52 | 0;
+ HEAP32[i5 >> 2] = i2;
+ i4 = HEAP32[i7 + 48 >> 2] | 0;
+ i1 = i7 + 52 | 0;
+ i3 = i4;
while (1) {
- if ((i2 | 0) == (i4 | 0)) break;
- HEAP32[i7 >> 2] = i1;
- HEAP32[i8 >> 2] = HEAP32[i7 >> 2];
- __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE15__insert_uniqueIRKNS_4pairIKS3_S5_EEEENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEENS_21__tree_const_iteratorIS6_SO_iEEOT_(i5, i8, i2 + 16 | 0) | 0;
- i11 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i3) | 0;
- i2 = i11;
+ if ((i3 | 0) == (i1 | 0)) break;
+ HEAP32[i8 >> 2] = i2;
+ HEAP32[i6 >> 2] = HEAP32[i8 >> 2];
+ __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE15__insert_uniqueIRKNS_4pairIKS3_S5_EEEENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEENS_21__tree_const_iteratorIS6_SO_iEEOT_(i5, i6, i3 + 16 | 0) | 0;
+ i11 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i4) | 0;
i3 = i11;
+ i4 = i11;
}
- i5 = i9 + 60 | 0;
+ i1 = i9 + 60 | 0;
HEAP32[i9 + 64 >> 2] = 0;
HEAP32[i9 + 68 >> 2] = 0;
- i1 = i9 + 64 | 0;
- HEAP32[i5 >> 2] = i1;
- i3 = HEAP32[i6 + 60 >> 2] | 0;
- i4 = i6 + 64 | 0;
- i2 = i3;
+ i3 = i9 + 64 | 0;
+ HEAP32[i1 >> 2] = i3;
+ i5 = HEAP32[i7 + 60 >> 2] | 0;
+ i2 = i7 + 64 | 0;
+ i4 = i5;
while (1) {
- if ((i2 | 0) == (i4 | 0)) break;
- HEAP32[i7 >> 2] = i1;
- HEAP32[i8 >> 2] = HEAP32[i7 >> 2];
- __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE15__insert_uniqueIRKNS_4pairIKS3_S5_EEEENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEENS_21__tree_const_iteratorIS6_SO_iEEOT_(i5, i8, i2 + 16 | 0) | 0;
- i11 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i3) | 0;
- i2 = i11;
- i3 = i11;
+ if ((i4 | 0) == (i2 | 0)) break;
+ HEAP32[i8 >> 2] = i3;
+ HEAP32[i6 >> 2] = HEAP32[i8 >> 2];
+ __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE15__insert_uniqueIRKNS_4pairIKS3_S5_EEEENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEENS_21__tree_const_iteratorIS6_SO_iEEOT_(i1, i6, i4 + 16 | 0) | 0;
+ i11 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i5) | 0;
+ i4 = i11;
+ i5 = i11;
}
- i5 = i9 + 72 | 0;
+ i1 = i9 + 72 | 0;
HEAP32[i9 + 76 >> 2] = 0;
HEAP32[i9 + 80 >> 2] = 0;
- i1 = i9 + 76 | 0;
- HEAP32[i5 >> 2] = i1;
- i3 = HEAP32[i6 + 72 >> 2] | 0;
- i4 = i6 + 76 | 0;
- i2 = i3;
+ i3 = i9 + 76 | 0;
+ HEAP32[i1 >> 2] = i3;
+ i5 = HEAP32[i7 + 72 >> 2] | 0;
+ i2 = i7 + 76 | 0;
+ i4 = i5;
while (1) {
- if ((i2 | 0) == (i4 | 0)) break;
- HEAP32[i7 >> 2] = i1;
- HEAP32[i8 >> 2] = HEAP32[i7 >> 2];
- __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE15__insert_uniqueIRKNS_4pairIKS3_S5_EEEENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEENS_21__tree_const_iteratorIS6_SO_iEEOT_(i5, i8, i2 + 16 | 0) | 0;
- i11 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i3) | 0;
- i2 = i11;
- i3 = i11;
+ if ((i4 | 0) == (i2 | 0)) break;
+ HEAP32[i8 >> 2] = i3;
+ HEAP32[i6 >> 2] = HEAP32[i8 >> 2];
+ __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE15__insert_uniqueIRKNS_4pairIKS3_S5_EEEENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEENS_21__tree_const_iteratorIS6_SO_iEEOT_(i1, i6, i4 + 16 | 0) | 0;
+ i11 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i5) | 0;
+ i4 = i11;
+ i5 = i11;
}
- i5 = i9 + 84 | 0;
+ i1 = i9 + 84 | 0;
HEAP32[i9 + 88 >> 2] = 0;
HEAP32[i9 + 92 >> 2] = 0;
- i1 = i9 + 88 | 0;
- HEAP32[i5 >> 2] = i1;
- i3 = HEAP32[i6 + 84 >> 2] | 0;
- i4 = i6 + 88 | 0;
- i2 = i3;
+ i3 = i9 + 88 | 0;
+ HEAP32[i1 >> 2] = i3;
+ i5 = HEAP32[i7 + 84 >> 2] | 0;
+ i2 = i7 + 88 | 0;
+ i4 = i5;
while (1) {
- if ((i2 | 0) == (i4 | 0)) break;
- HEAP32[i7 >> 2] = i1;
- HEAP32[i8 >> 2] = HEAP32[i7 >> 2];
- __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE15__insert_uniqueIRKNS_4pairIKS3_S5_EEEENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEENS_21__tree_const_iteratorIS6_SO_iEEOT_(i5, i8, i2 + 16 | 0) | 0;
- i11 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i3) | 0;
- i2 = i11;
- i3 = i11;
+ if ((i4 | 0) == (i2 | 0)) break;
+ HEAP32[i8 >> 2] = i3;
+ HEAP32[i6 >> 2] = HEAP32[i8 >> 2];
+ __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE15__insert_uniqueIRKNS_4pairIKS3_S5_EEEENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEENS_21__tree_const_iteratorIS6_SO_iEEOT_(i1, i6, i4 + 16 | 0) | 0;
+ i11 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i5) | 0;
+ i4 = i11;
+ i5 = i11;
}
- __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEEC2ERKS5_(i9 + 96 | 0, i6 + 96 | 0);
- __ZN4wasm6MemoryC2ERKS0_(i9 + 108 | 0, i6 + 108 | 0);
+ __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEEC2ERKS5_(i9 + 96 | 0, i7 + 96 | 0);
+ __ZN4wasm6MemoryC2ERKS0_(i9 + 108 | 0, i7 + 108 | 0);
i11 = i9 + 128 | 0;
- i9 = i6 + 128 | 0;
+ i9 = i7 + 128 | 0;
HEAP32[i11 >> 2] = HEAP32[i9 >> 2];
HEAP32[i11 + 4 >> 2] = HEAP32[i9 + 4 >> 2];
HEAP32[i11 + 8 >> 2] = HEAP32[i9 + 8 >> 2];
HEAP32[i11 + 12 >> 2] = HEAP32[i9 + 12 >> 2];
+ HEAP32[i11 + 16 >> 2] = HEAP32[i9 + 16 >> 2];
STACKTOP = i10;
return;
}
@@ -43542,30 +42718,30 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterIdentE
i19 = STACKTOP;
STACKTOP = STACKTOP + 80 | 0;
i17 = i19 + 64 | 0;
- i8 = i19 + 36 | 0;
- i2 = i19 + 56 | 0;
- i5 = i19 + 48 | 0;
+ i6 = i19 + 36 | 0;
+ i1 = i19 + 56 | 0;
+ i2 = i19 + 48 | 0;
i3 = i19 + 40 | 0;
i4 = i19 + 32 | 0;
- i7 = i19 + 28 | 0;
+ i8 = i19 + 28 | 0;
i9 = i19 + 24 | 0;
i10 = i19 + 16 | 0;
i11 = i19 + 8 | 0;
i13 = i19;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i15);
- i1 = HEAP32[i15 >> 2] | 0;
- i6 = HEAP8[i1 >> 0] | 0;
- L1 : do switch (i6 << 24 >> 24) {
+ i5 = HEAP32[i15 >> 2] | 0;
+ i7 = HEAP8[i5 >> 0] | 0;
+ L1 : do switch (i7 << 24 >> 24) {
case 40:
{
- i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseFragERNS3_4FragE(i16, i12) | 0;
- HEAP32[i5 >> 2] = i1;
- HEAP32[i17 >> 2] = HEAP32[i5 >> 2];
- i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseCallES1_RPc(i16, i17, i15) | 0;
- HEAP8[i2 >> 0] = 1;
- HEAP32[i2 + 4 >> 2] = i1;
+ i13 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseFragERNS3_4FragE(i16, i12) | 0;
+ HEAP32[i2 >> 2] = i13;
HEAP32[i17 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i17 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ i13 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseCallES1_RPc(i16, i17, i15) | 0;
+ HEAP8[i1 >> 0] = 1;
+ HEAP32[i1 + 4 >> 2] = i13;
+ HEAP32[i17 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i17 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i16, i17, i15, i14) | 0;
break;
}
@@ -43590,20 +42766,20 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterIdentE
i18 = 12;
break L1;
}
- HEAP32[i15 >> 2] = i1 + 1;
+ HEAP32[i15 >> 2] = i5 + 1;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i15);
if ((HEAP8[HEAP32[i15 >> 2] >> 0] | 0) == 123) i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE19parseBracketedBlockERPc(i16, i15) | 0; else i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i16, i15, i14) | 0;
- HEAP32[i7 >> 2] = HEAP32[i12 >> 2];
+ HEAP32[i8 >> 2] = HEAP32[i12 >> 2];
HEAP32[i9 >> 2] = i1;
- HEAP32[i8 >> 2] = HEAP32[i7 >> 2];
+ HEAP32[i6 >> 2] = HEAP32[i8 >> 2];
HEAP32[i17 >> 2] = HEAP32[i9 >> 2];
- i1 = __ZN6cashew12ValueBuilder9makeLabelENS_7IStringENS_3RefE(i8, i17) | 0;
+ i1 = __ZN6cashew12ValueBuilder9makeLabelENS_7IStringENS_3RefE(i6, i17) | 0;
break;
}
default:
{
i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseFragERNS3_4FragE(i16, i12) | 0;
- if (i6 << 24 >> 24 == 46) {
+ if (i7 << 24 >> 24 == 46) {
HEAP32[i11 >> 2] = i1;
HEAP32[i17 >> 2] = HEAP32[i11 >> 2];
i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseDottingES1_RPc(i16, i17, i15) | 0;
@@ -43636,28 +42812,28 @@ function __ZNKSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEE
var i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i21 = 0, i22 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0;
i28 = STACKTOP;
STACKTOP = STACKTOP + 480 | 0;
- i16 = i28 + 468 | 0;
+ i9 = i28 + 468 | 0;
i21 = i28 + 464 | 0;
- i12 = i28 + 472 | 0;
- i9 = i28 + 460 | 0;
- i14 = i28 + 456 | 0;
+ i16 = i28 + 472 | 0;
+ i13 = i28 + 460 | 0;
+ i17 = i28 + 456 | 0;
i24 = i28 + 444 | 0;
i27 = i28 + 432 | 0;
i26 = i28 + 420 | 0;
i6 = i28 + 416 | 0;
i8 = i28 + 16 | 0;
- i11 = i28 + 8 | 0;
- i10 = i28 + 4 | 0;
- i15 = i28;
+ i15 = i28 + 8 | 0;
+ i14 = i28 + 4 | 0;
+ i10 = i28;
i1 = __ZNKSt3__18ios_base6getlocEv(i20) | 0;
HEAP32[i21 >> 2] = i1;
- i17 = __ZNKSt3__16locale9use_facetERNS0_2idE(i21, 38996) | 0;
+ i11 = __ZNKSt3__16locale9use_facetERNS0_2idE(i21, 40468) | 0;
i7 = HEAP8[i18 >> 0] | 0;
i2 = (i7 & 1) == 0;
- i13 = i18 + 4 | 0;
- if (!((i2 ? (i7 & 255) >>> 1 : HEAP32[i13 >> 2] | 0) | 0)) i7 = 0; else {
- i7 = HEAP32[(i2 ? i13 : HEAP32[i18 + 8 >> 2] | 0) >> 2] | 0;
- i7 = (i7 | 0) == (FUNCTION_TABLE_iii[HEAP32[(HEAP32[i17 >> 2] | 0) + 44 >> 2] & 31](i17, 45) | 0);
+ i12 = i18 + 4 | 0;
+ if (!((i2 ? (i7 & 255) >>> 1 : HEAP32[i12 >> 2] | 0) | 0)) i7 = 0; else {
+ i7 = HEAP32[(i2 ? i12 : HEAP32[i18 + 8 >> 2] | 0) >> 2] | 0;
+ i7 = (i7 | 0) == (FUNCTION_TABLE_iii[HEAP32[(HEAP32[i11 >> 2] | 0) + 44 >> 2] & 31](i11, 45) | 0);
}
i2 = 0;
while (1) {
@@ -43677,9 +42853,9 @@ function __ZNKSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEE
HEAP32[i26 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- __ZNSt3__111__money_putIwE13__gather_infoEbbRKNS_6localeERNS_10money_base7patternERwS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS9_IwNSA_IwEENSC_IwEEEESJ_Ri(i3, i7, i21, i12, i9, i14, i24, i27, i26, i6);
+ __ZNSt3__111__money_putIwE13__gather_infoEbbRKNS_6localeERNS_10money_base7patternERwS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS9_IwNSA_IwEENSC_IwEEEESJ_Ri(i3, i7, i21, i16, i13, i17, i24, i27, i26, i6);
i4 = HEAP8[i18 >> 0] | 0;
- i5 = HEAP32[i13 >> 2] | 0;
+ i5 = HEAP32[i12 >> 2] | 0;
i2 = (i4 & 1) == 0 ? (i4 & 255) >>> 1 : i5;
i3 = HEAP32[i6 >> 2] | 0;
if ((i2 | 0) > (i3 | 0)) {
@@ -43702,13 +42878,13 @@ function __ZNKSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEE
i22 = i8;
}
i29 = (i4 & 1) == 0;
- i2 = i29 ? i13 : HEAP32[i18 + 8 >> 2] | 0;
- __ZNSt3__111__money_putIwE8__formatEPwRS2_S3_jPKwS5_RKNS_5ctypeIwEEbRKNS_10money_base7patternEwwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNSE_IwNSF_IwEENSH_IwEEEESQ_i(i22, i11, i10, HEAP32[i20 + 4 >> 2] | 0, i2, i2 + ((i29 ? (i4 & 255) >>> 1 : i5) << 2) | 0, i17, i7, i12, HEAP32[i9 >> 2] | 0, HEAP32[i14 >> 2] | 0, i24, i27, i26, i3);
- HEAP32[i15 >> 2] = HEAP32[i23 >> 2];
- i29 = HEAP32[i11 >> 2] | 0;
- i2 = HEAP32[i10 >> 2] | 0;
- HEAP32[i16 >> 2] = HEAP32[i15 >> 2];
- i2 = __ZNSt3__116__pad_and_outputIwNS_11char_traitsIwEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i16, i22, i29, i2, i20, i19) | 0;
+ i2 = i29 ? i12 : HEAP32[i18 + 8 >> 2] | 0;
+ __ZNSt3__111__money_putIwE8__formatEPwRS2_S3_jPKwS5_RKNS_5ctypeIwEEbRKNS_10money_base7patternEwwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNSE_IwNSF_IwEENSH_IwEEEESQ_i(i22, i15, i14, HEAP32[i20 + 4 >> 2] | 0, i2, i2 + ((i29 ? (i4 & 255) >>> 1 : i5) << 2) | 0, i11, i7, i16, HEAP32[i13 >> 2] | 0, HEAP32[i17 >> 2] | 0, i24, i27, i26, i3);
+ HEAP32[i10 >> 2] = HEAP32[i23 >> 2];
+ i29 = HEAP32[i15 >> 2] | 0;
+ i2 = HEAP32[i14 >> 2] | 0;
+ HEAP32[i9 >> 2] = HEAP32[i10 >> 2];
+ i2 = __ZNSt3__116__pad_and_outputIwNS_11char_traitsIwEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i9, i22, i29, i2, i20, i19) | 0;
if (i25) {
_free(i25);
i1 = HEAP32[i21 >> 2] | 0;
@@ -43721,38 +42897,38 @@ function __ZNKSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEE
return i2 | 0;
}
-function __ZNKSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_bRNS_8ios_baseEcRKNS_12basic_stringIcS3_NS_9allocatorIcEEEE(i1, i22, i3, i19, i18, i17) {
+function __ZNKSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_bRNS_8ios_baseEcRKNS_12basic_stringIcS3_NS_9allocatorIcEEEE(i1, i22, i4, i19, i18, i17) {
i1 = i1 | 0;
i22 = i22 | 0;
- i3 = i3 | 0;
+ i4 = i4 | 0;
i19 = i19 | 0;
i18 = i18 | 0;
i17 = i17 | 0;
- var i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i20 = 0, i21 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0;
+ var i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i20 = 0, i21 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0;
i27 = STACKTOP;
STACKTOP = STACKTOP + 176 | 0;
- i15 = i27 + 56 | 0;
+ i9 = i27 + 56 | 0;
i20 = i27 + 52 | 0;
- i12 = i27 + 164 | 0;
- i9 = i27 + 161 | 0;
- i13 = i27 + 160 | 0;
+ i15 = i27 + 164 | 0;
+ i12 = i27 + 161 | 0;
+ i16 = i27 + 160 | 0;
i23 = i27 + 40 | 0;
i26 = i27 + 28 | 0;
i25 = i27 + 16 | 0;
i6 = i27 + 12 | 0;
i8 = i27 + 60 | 0;
- i11 = i27 + 8 | 0;
- i10 = i27 + 4 | 0;
- i14 = i27;
+ i14 = i27 + 8 | 0;
+ i13 = i27 + 4 | 0;
+ i10 = i27;
i1 = __ZNKSt3__18ios_base6getlocEv(i19) | 0;
HEAP32[i20 >> 2] = i1;
- i16 = __ZNKSt3__16locale9use_facetERNS0_2idE(i20, 38964) | 0;
+ i11 = __ZNKSt3__16locale9use_facetERNS0_2idE(i20, 40436) | 0;
i7 = HEAP8[i17 >> 0] | 0;
i2 = (i7 & 1) == 0;
- i4 = i17 + 4 | 0;
- if (!((i2 ? (i7 & 255) >>> 1 : HEAP32[i4 >> 2] | 0) | 0)) i7 = 0; else {
+ i3 = i17 + 4 | 0;
+ if (!((i2 ? (i7 & 255) >>> 1 : HEAP32[i3 >> 2] | 0) | 0)) i7 = 0; else {
i7 = HEAP8[(i2 ? i17 + 1 | 0 : HEAP32[i17 + 8 >> 2] | 0) >> 0] | 0;
- i7 = i7 << 24 >> 24 == (FUNCTION_TABLE_iii[HEAP32[(HEAP32[i16 >> 2] | 0) + 28 >> 2] & 31](i16, 45) | 0) << 24 >> 24;
+ i7 = i7 << 24 >> 24 == (FUNCTION_TABLE_iii[HEAP32[(HEAP32[i11 >> 2] | 0) + 28 >> 2] & 31](i11, 45) | 0) << 24 >> 24;
}
i2 = 0;
while (1) {
@@ -43772,9 +42948,9 @@ function __ZNKSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEE
HEAP32[i25 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- __ZNSt3__111__money_putIcE13__gather_infoEbbRKNS_6localeERNS_10money_base7patternERcS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESF_SF_Ri(i3, i7, i20, i12, i9, i13, i23, i26, i25, i6);
+ __ZNSt3__111__money_putIcE13__gather_infoEbbRKNS_6localeERNS_10money_base7patternERcS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESF_SF_Ri(i4, i7, i20, i15, i12, i16, i23, i26, i25, i6);
i5 = HEAP8[i17 >> 0] | 0;
- i4 = HEAP32[i4 >> 2] | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
i2 = (i5 & 1) == 0 ? (i5 & 255) >>> 1 : i4;
i3 = HEAP32[i6 >> 2] | 0;
if ((i2 | 0) > (i3 | 0)) {
@@ -43798,12 +42974,12 @@ function __ZNKSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEE
}
i28 = (i5 & 1) == 0;
i2 = i28 ? i17 + 1 | 0 : HEAP32[i17 + 8 >> 2] | 0;
- __ZNSt3__111__money_putIcE8__formatEPcRS2_S3_jPKcS5_RKNS_5ctypeIcEEbRKNS_10money_base7patternEccRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESL_SL_i(i21, i11, i10, HEAP32[i19 + 4 >> 2] | 0, i2, i2 + (i28 ? (i5 & 255) >>> 1 : i4) | 0, i16, i7, i12, HEAP8[i9 >> 0] | 0, HEAP8[i13 >> 0] | 0, i23, i26, i25, i3);
- HEAP32[i14 >> 2] = HEAP32[i22 >> 2];
- i28 = HEAP32[i11 >> 2] | 0;
- i2 = HEAP32[i10 >> 2] | 0;
- HEAP32[i15 >> 2] = HEAP32[i14 >> 2];
- i2 = __ZNSt3__116__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i15, i21, i28, i2, i19, i18) | 0;
+ __ZNSt3__111__money_putIcE8__formatEPcRS2_S3_jPKcS5_RKNS_5ctypeIcEEbRKNS_10money_base7patternEccRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESL_SL_i(i21, i14, i13, HEAP32[i19 + 4 >> 2] | 0, i2, i2 + (i28 ? (i5 & 255) >>> 1 : i4) | 0, i11, i7, i15, HEAP8[i12 >> 0] | 0, HEAP8[i16 >> 0] | 0, i23, i26, i25, i3);
+ HEAP32[i10 >> 2] = HEAP32[i22 >> 2];
+ i28 = HEAP32[i14 >> 2] | 0;
+ i2 = HEAP32[i13 >> 2] | 0;
+ HEAP32[i9 >> 2] = HEAP32[i10 >> 2];
+ i2 = __ZNSt3__116__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i9, i21, i28, i2, i19, i18) | 0;
if (i24) {
_free(i24);
i1 = HEAP32[i20 >> 2] | 0;
@@ -43866,29 +43042,29 @@ function __ZNK10__cxxabiv121__vmi_class_type_info16search_below_dstEPNS_19__dyna
HEAP32[i14 + 32 >> 2] = i6;
i10 = i14 + 44 | 0;
if ((HEAP32[i10 >> 2] | 0) == 4) break;
- i5 = i3 + 16 + (HEAP32[i3 + 12 >> 2] << 3) | 0;
- i7 = i14 + 52 | 0;
+ i4 = i3 + 16 + (HEAP32[i3 + 12 >> 2] << 3) | 0;
+ i5 = i14 + 52 | 0;
i6 = i14 + 53 | 0;
- i9 = i14 + 54 | 0;
- i4 = i3 + 8 | 0;
- i8 = i14 + 24 | 0;
+ i8 = i14 + 54 | 0;
+ i7 = i3 + 8 | 0;
+ i9 = i14 + 24 | 0;
i2 = 0;
i1 = 0;
i3 = i3 + 16 | 0;
L34 : while (1) {
- if (i3 >>> 0 >= i5 >>> 0) {
+ if (i3 >>> 0 >= i4 >>> 0) {
i3 = 20;
break;
}
- HEAP8[i7 >> 0] = 0;
+ HEAP8[i5 >> 0] = 0;
HEAP8[i6 >> 0] = 0;
__ZNK10__cxxabiv122__base_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib(i3, i14, i13, i13, 1, i12);
- if (HEAP8[i9 >> 0] | 0) {
+ if (HEAP8[i8 >> 0] | 0) {
i3 = 20;
break;
}
do if (HEAP8[i6 >> 0] | 0) {
- if (!(HEAP8[i7 >> 0] | 0)) if (!(HEAP32[i4 >> 2] & 1)) {
+ if (!(HEAP8[i5 >> 0] | 0)) if (!(HEAP32[i7 >> 2] & 1)) {
i1 = 1;
i3 = 20;
break L34;
@@ -43896,11 +43072,11 @@ function __ZNK10__cxxabiv121__vmi_class_type_info16search_below_dstEPNS_19__dyna
i1 = 1;
break;
}
- if ((HEAP32[i8 >> 2] | 0) == 1) {
+ if ((HEAP32[i9 >> 2] | 0) == 1) {
i3 = 25;
break L34;
}
- if (!(HEAP32[i4 >> 2] & 2)) {
+ if (!(HEAP32[i7 >> 2] & 2)) {
i3 = 25;
break L34;
} else {
@@ -43911,8 +43087,8 @@ function __ZNK10__cxxabiv121__vmi_class_type_info16search_below_dstEPNS_19__dyna
i3 = i3 + 8 | 0;
}
do if ((i3 | 0) == 20) {
- if ((!i2 ? (HEAP32[i11 >> 2] = i13, i13 = i14 + 40 | 0, HEAP32[i13 >> 2] = (HEAP32[i13 >> 2] | 0) + 1, (HEAP32[i14 + 36 >> 2] | 0) == 1) : 0) ? (HEAP32[i8 >> 2] | 0) == 2 : 0) {
- HEAP8[i9 >> 0] = 1;
+ if ((!i2 ? (HEAP32[i11 >> 2] = i13, i13 = i14 + 40 | 0, HEAP32[i13 >> 2] = (HEAP32[i13 >> 2] | 0) + 1, (HEAP32[i14 + 36 >> 2] | 0) == 1) : 0) ? (HEAP32[i9 >> 2] | 0) == 2 : 0) {
+ HEAP8[i8 >> 0] = 1;
if (i1) {
i3 = 25;
break;
@@ -43949,7 +43125,7 @@ function __ZNSt3__1L13utf8_to_utf16EPKhS1_RS1_PtS3_RS3_mNS_12codecvt_modeE(i1, i
i2 = i11;
if ((((i2 - i1 | 0) > 2 ? (HEAP8[i1 >> 0] | 0) == -17 : 0) ? (HEAP8[i1 + 1 >> 0] | 0) == -69 : 0) ? (HEAP8[i1 + 2 >> 0] | 0) == -65 : 0) HEAP32[i12 >> 2] = i1 + 3;
} else i2 = i11;
- i9 = i13;
+ i8 = i13;
L9 : while (1) {
i5 = HEAP32[i12 >> 2] | 0;
i1 = i5 >>> 0 < i11 >>> 0;
@@ -43957,8 +43133,8 @@ function __ZNSt3__1L13utf8_to_utf16EPKhS1_RS1_PtS3_RS3_mNS_12codecvt_modeE(i1, i
i15 = 41;
break;
}
- i8 = HEAP32[i14 >> 2] | 0;
- if (i8 >>> 0 >= i13 >>> 0) {
+ i9 = HEAP32[i14 >> 2] | 0;
+ if (i9 >>> 0 >= i13 >>> 0) {
i15 = 41;
break;
}
@@ -43969,7 +43145,7 @@ function __ZNSt3__1L13utf8_to_utf16EPKhS1_RS1_PtS3_RS3_mNS_12codecvt_modeE(i1, i
break;
}
do if (i1 << 24 >> 24 > -1) {
- HEAP16[i8 >> 1] = i1 & 255;
+ HEAP16[i9 >> 1] = i1 & 255;
HEAP32[i12 >> 2] = i5 + 1;
} else {
if ((i1 & 255) < 194) {
@@ -43991,7 +43167,7 @@ function __ZNSt3__1L13utf8_to_utf16EPKhS1_RS1_PtS3_RS3_mNS_12codecvt_modeE(i1, i
i1 = 2;
break L9;
}
- HEAP16[i8 >> 1] = i1;
+ HEAP16[i9 >> 1] = i1;
HEAP32[i12 >> 2] = i5 + 2;
break;
}
@@ -44035,7 +43211,7 @@ function __ZNSt3__1L13utf8_to_utf16EPKhS1_RS1_PtS3_RS3_mNS_12codecvt_modeE(i1, i
i1 = 2;
break L9;
}
- HEAP16[i8 >> 1] = i1;
+ HEAP16[i9 >> 1] = i1;
HEAP32[i12 >> 2] = i5 + 3;
break;
}
@@ -44083,7 +43259,7 @@ function __ZNSt3__1L13utf8_to_utf16EPKhS1_RS1_PtS3_RS3_mNS_12codecvt_modeE(i1, i
i1 = 2;
break L9;
}
- if ((i9 - i8 | 0) < 4) {
+ if ((i8 - i9 | 0) < 4) {
i1 = 1;
break L9;
}
@@ -44095,10 +43271,10 @@ function __ZNSt3__1L13utf8_to_utf16EPKhS1_RS1_PtS3_RS3_mNS_12codecvt_modeE(i1, i
i1 = 2;
break L9;
}
- HEAP16[i8 >> 1] = i4 << 2 & 60 | i6 >>> 4 & 3 | ((i4 >>> 4 & 3 | i5 << 2) << 6) + 16320 | 55296;
- i8 = i8 + 2 | 0;
- HEAP32[i14 >> 2] = i8;
- HEAP16[i8 >> 1] = i1 | i3 & 960 | 56320;
+ HEAP16[i9 >> 1] = i4 << 2 & 60 | i6 >>> 4 & 3 | ((i4 >>> 4 & 3 | i5 << 2) << 6) + 16320 | 55296;
+ i9 = i9 + 2 | 0;
+ HEAP32[i14 >> 2] = i9;
+ HEAP16[i9 >> 1] = i1 | i3 & 960 | 56320;
HEAP32[i12 >> 2] = (HEAP32[i12 >> 2] | 0) + 4;
} while (0);
HEAP32[i14 >> 2] = (HEAP32[i14 >> 2] | 0) + 2;
@@ -44117,32 +43293,32 @@ function __ZN10__cxxabiv112_GLOBAL__N_19base_nameINSt3__112basic_stringIcNS2_11c
L1 : do if (!i4) __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i6, i5); else {
i2 = i1 ? i5 + 1 | 0 : HEAP32[i5 + 8 >> 2] | 0;
i1 = i4 >>> 0 > 11;
- i3 = _memcmp(i2, 35039, i1 ? 11 : i4) | 0;
+ i3 = _memcmp(i2, 36503, i1 ? 11 : i4) | 0;
if (!(((i3 | 0) == 0 ? (i4 >>> 0 < 11 ? -1 : i1 & 1) : i3) | 0)) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6assignEPKcj(i5, 35091, 70);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i6, 35162, 12);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6assignEPKcj(i5, 36555, 70);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i6, 36626, 12);
break;
}
i1 = i4 >>> 0 > 12;
i3 = i1 ? 12 : i4;
- i7 = _memcmp(i2, 35051, i3) | 0;
+ i7 = _memcmp(i2, 36515, i3) | 0;
i1 = i4 >>> 0 < 12 ? -1 : i1 & 1;
if (!(((i7 | 0) == 0 ? i1 : i7) | 0)) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6assignEPKcj(i5, 35175, 49);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i6, 35225, 13);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6assignEPKcj(i5, 36639, 49);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i6, 36689, 13);
break;
}
- i7 = _memcmp(i2, 35064, i3) | 0;
+ i7 = _memcmp(i2, 36528, i3) | 0;
if (!(((i7 | 0) == 0 ? i1 : i7) | 0)) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6assignEPKcj(i5, 35239, 49);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i6, 35289, 13);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6assignEPKcj(i5, 36703, 49);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i6, 36753, 13);
break;
}
i3 = i4 >>> 0 > 13;
- i7 = _memcmp(i2, 35077, i3 ? 13 : i4) | 0;
+ i7 = _memcmp(i2, 36541, i3 ? 13 : i4) | 0;
if (!(((i7 | 0) == 0 ? (i4 >>> 0 < 13 ? -1 : i3 & 1) : i7) | 0)) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6assignEPKcj(i5, 35303, 50);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i6, 35354, 14);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6assignEPKcj(i5, 36767, 50);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i6, 36818, 14);
break;
}
i1 = i2 + i4 | 0;
@@ -44225,75 +43401,78 @@ function _fmod(d12, d1) {
d1 = +d1;
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i13 = 0, i14 = 0, d15 = 0.0;
HEAPF64[tempDoublePtr >> 3] = d12;
- i8 = HEAP32[tempDoublePtr >> 2] | 0;
+ i2 = HEAP32[tempDoublePtr >> 2] | 0;
i9 = HEAP32[tempDoublePtr + 4 >> 2] | 0;
HEAPF64[tempDoublePtr >> 3] = d1;
i10 = HEAP32[tempDoublePtr >> 2] | 0;
i11 = HEAP32[tempDoublePtr + 4 >> 2] | 0;
- i3 = _bitshift64Lshr(i8 | 0, i9 | 0, 52) | 0;
+ i3 = _bitshift64Lshr(i2 | 0, i9 | 0, 52) | 0;
i3 = i3 & 2047;
- i6 = _bitshift64Lshr(i10 | 0, i11 | 0, 52) | 0;
- i6 = i6 & 2047;
+ i7 = _bitshift64Lshr(i10 | 0, i11 | 0, 52) | 0;
+ i7 = i7 & 2047;
i13 = i9 & -2147483648;
- i7 = _bitshift64Shl(i10 | 0, i11 | 0, 1) | 0;
- i5 = tempRet0;
- L1 : do if (!((i7 | 0) == 0 & (i5 | 0) == 0) ? (d15 = +Math_abs(+d1), HEAPF64[tempDoublePtr >> 3] = d15, i4 = HEAP32[tempDoublePtr + 4 >> 2] | 0, !(i4 >>> 0 > 2146435072 | (i4 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0 | (i3 | 0) == 2047)) : 0) {
- i2 = _bitshift64Shl(i8 | 0, i9 | 0, 1) | 0;
- i4 = tempRet0;
- if (!(i4 >>> 0 > i5 >>> 0 | (i4 | 0) == (i5 | 0) & i2 >>> 0 > i7 >>> 0)) return +((i2 | 0) == (i7 | 0) & (i4 | 0) == (i5 | 0) ? d12 * 0.0 : d12);
+ i6 = _bitshift64Shl(i10 | 0, i11 | 0, 1) | 0;
+ i8 = tempRet0;
+ L1 : do if (!((i6 | 0) == 0 & (i8 | 0) == 0) ? (d15 = +Math_abs(+d1), HEAPF64[tempDoublePtr >> 3] = d15, i5 = HEAP32[tempDoublePtr + 4 >> 2] | 0, !(i5 >>> 0 > 2146435072 | (i5 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0 | (i3 | 0) == 2047)) : 0) {
+ i4 = _bitshift64Shl(i2 | 0, i9 | 0, 1) | 0;
+ i5 = tempRet0;
+ if (!(i5 >>> 0 > i8 >>> 0 | (i5 | 0) == (i8 | 0) & i4 >>> 0 > i6 >>> 0)) return +((i4 | 0) == (i6 | 0) & (i5 | 0) == (i8 | 0) ? d12 * 0.0 : d12);
if (!i3) {
- i2 = _bitshift64Shl(i8 | 0, i9 | 0, 12) | 0;
- i3 = tempRet0;
- if ((i3 | 0) > -1 | (i3 | 0) == -1 & i2 >>> 0 > 4294967295) {
- i4 = i3;
+ i3 = _bitshift64Shl(i2 | 0, i9 | 0, 12) | 0;
+ i4 = tempRet0;
+ if ((i4 | 0) > -1 | (i4 | 0) == -1 & i3 >>> 0 > 4294967295) {
+ i5 = i3;
i3 = 0;
do {
i3 = i3 + -1 | 0;
- i2 = _bitshift64Shl(i2 | 0, i4 | 0, 1) | 0;
+ i5 = _bitshift64Shl(i5 | 0, i4 | 0, 1) | 0;
i4 = tempRet0;
- } while ((i4 | 0) > -1 | (i4 | 0) == -1 & i2 >>> 0 > 4294967295);
+ } while ((i4 | 0) > -1 | (i4 | 0) == -1 & i5 >>> 0 > 4294967295);
} else i3 = 0;
- i8 = _bitshift64Shl(i8 | 0, i9 | 0, 1 - i3 | 0) | 0;
+ i2 = _bitshift64Shl(i2 | 0, i9 | 0, 1 - i3 | 0) | 0;
i4 = tempRet0;
} else i4 = i9 & 1048575 | 1048576;
- if (!i6) {
- i2 = _bitshift64Shl(i10 | 0, i11 | 0, 12) | 0;
- i5 = tempRet0;
- if ((i5 | 0) > -1 | (i5 | 0) == -1 & i2 >>> 0 > 4294967295) {
- i6 = 0;
+ if (!i7) {
+ i5 = _bitshift64Shl(i10 | 0, i11 | 0, 12) | 0;
+ i6 = tempRet0;
+ if ((i6 | 0) > -1 | (i6 | 0) == -1 & i5 >>> 0 > 4294967295) {
+ i7 = 0;
do {
- i6 = i6 + -1 | 0;
- i2 = _bitshift64Shl(i2 | 0, i5 | 0, 1) | 0;
- i5 = tempRet0;
- } while ((i5 | 0) > -1 | (i5 | 0) == -1 & i2 >>> 0 > 4294967295);
- } else i6 = 0;
- i10 = _bitshift64Shl(i10 | 0, i11 | 0, 1 - i6 | 0) | 0;
+ i7 = i7 + -1 | 0;
+ i5 = _bitshift64Shl(i5 | 0, i6 | 0, 1) | 0;
+ i6 = tempRet0;
+ } while ((i6 | 0) > -1 | (i6 | 0) == -1 & i5 >>> 0 > 4294967295);
+ } else i7 = 0;
+ i10 = _bitshift64Shl(i10 | 0, i11 | 0, 1 - i7 | 0) | 0;
i9 = tempRet0;
} else i9 = i11 & 1048575 | 1048576;
- i2 = _i64Subtract(i8 | 0, i4 | 0, i10 | 0, i9 | 0) | 0;
- i7 = tempRet0;
- i5 = (i7 | 0) > -1 | (i7 | 0) == -1 & i2 >>> 0 > 4294967295;
- L23 : do if ((i3 | 0) > (i6 | 0)) {
+ i8 = _i64Subtract(i2 | 0, i4 | 0, i10 | 0, i9 | 0) | 0;
+ i6 = tempRet0;
+ i5 = (i6 | 0) > -1 | (i6 | 0) == -1 & i8 >>> 0 > 4294967295;
+ L23 : do if ((i3 | 0) > (i7 | 0)) {
while (1) {
- if (i5) if ((i8 | 0) == (i10 | 0) & (i4 | 0) == (i9 | 0)) break; else i4 = i7; else i2 = i8;
- i8 = _bitshift64Shl(i2 | 0, i4 | 0, 1) | 0;
+ if (i5) if ((i2 | 0) == (i10 | 0) & (i4 | 0) == (i9 | 0)) break; else {
+ i2 = i8;
+ i4 = i6;
+ }
+ i2 = _bitshift64Shl(i2 | 0, i4 | 0, 1) | 0;
i4 = tempRet0;
i3 = i3 + -1 | 0;
- i2 = _i64Subtract(i8 | 0, i4 | 0, i10 | 0, i9 | 0) | 0;
- i7 = tempRet0;
- i5 = (i7 | 0) > -1 | (i7 | 0) == -1 & i2 >>> 0 > 4294967295;
- if ((i3 | 0) <= (i6 | 0)) {
- i6 = i8;
- break L23;
- }
+ i8 = _i64Subtract(i2 | 0, i4 | 0, i10 | 0, i9 | 0) | 0;
+ i6 = tempRet0;
+ i5 = (i6 | 0) > -1 | (i6 | 0) == -1 & i8 >>> 0 > 4294967295;
+ if ((i3 | 0) <= (i7 | 0)) break L23;
}
d1 = d12 * 0.0;
break L1;
- } else i6 = i8; while (0);
- if (i5) if ((i6 | 0) == (i10 | 0) & (i4 | 0) == (i9 | 0)) {
+ } while (0);
+ if (i5) if ((i2 | 0) == (i10 | 0) & (i4 | 0) == (i9 | 0)) {
d1 = d12 * 0.0;
break;
- } else i4 = i7; else i2 = i6;
+ } else {
+ i4 = i6;
+ i2 = i8;
+ }
if (i4 >>> 0 < 1048576 | (i4 | 0) == 1048576 & i2 >>> 0 < 0) do {
i2 = _bitshift64Shl(i2 | 0, i4 | 0, 1) | 0;
i4 = tempRet0;
@@ -44320,105 +43499,105 @@ function _fmod(d12, d1) {
return +d1;
}
-function __Z10detectSignN6cashew3RefENS_7IStringE(i14, i10) {
+function __Z10detectSignN6cashew3RefENS_7IStringE(i14, i11) {
i14 = i14 | 0;
- i10 = i10 | 0;
- var d1 = 0.0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0, i12 = 0, i13 = 0, i15 = 0;
+ i11 = i11 | 0;
+ var d1 = 0.0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i13 = 0, i15 = 0;
i15 = STACKTOP;
STACKTOP = STACKTOP + 48 | 0;
- i13 = i15 + 32 | 0;
- i7 = i15 + 24 | 0;
- i12 = i15 + 28 | 0;
- i3 = i15 + 20 | 0;
- i4 = i15 + 16 | 0;
- i5 = i15 + 12 | 0;
- i6 = i15 + 8 | 0;
- i8 = i15 + 4 | 0;
- i9 = i15;
- i2 = __ZN6cashew3RefixEj(i14, 0) | 0;
- i2 = __ZN6cashew5Value10getIStringEv(HEAP32[i2 >> 2] | 0) | 0;
- i2 = HEAP32[i2 >> 2] | 0;
- L1 : do if ((i2 | 0) != (HEAP32[9237] | 0)) {
- if ((i2 | 0) == (HEAP32[9256] | 0)) {
- i12 = __ZN6cashew3RefixEj(i14, 1) | 0;
- i12 = __ZN6cashew5Value10getIStringEv(HEAP32[i12 >> 2] | 0) | 0;
- switch (HEAP8[HEAP32[i12 >> 2] >> 0] | 0) {
+ i12 = i15 + 32 | 0;
+ i3 = i15 + 24 | 0;
+ i13 = i15 + 28 | 0;
+ i4 = i15 + 20 | 0;
+ i6 = i15 + 16 | 0;
+ i7 = i15 + 12 | 0;
+ i8 = i15 + 8 | 0;
+ i9 = i15 + 4 | 0;
+ i10 = i15;
+ i5 = __ZN6cashew3RefixEj(i14, 0) | 0;
+ i5 = __ZN6cashew5Value10getIStringEv(HEAP32[i5 >> 2] | 0) | 0;
+ i5 = HEAP32[i5 >> 2] | 0;
+ L1 : do if ((i5 | 0) != (HEAP32[9605] | 0)) {
+ if ((i5 | 0) == (HEAP32[9624] | 0)) {
+ i13 = __ZN6cashew3RefixEj(i14, 1) | 0;
+ i13 = __ZN6cashew5Value10getIStringEv(HEAP32[i13 >> 2] | 0) | 0;
+ switch (HEAP8[HEAP32[i13 >> 2] >> 0] | 0) {
case 45:
{
- i11 = 0;
+ i2 = 0;
break L1;
}
case 43:
{
- i11 = 3;
+ i2 = 3;
break L1;
}
case 126:
{
- i11 = 1;
+ i2 = 1;
break L1;
}
default:
{
- HEAP32[i3 >> 2] = HEAP32[i14 >> 2];
- HEAP32[i13 >> 2] = HEAP32[i3 >> 2];
- __ZL8abort_onN6cashew3RefE(i13);
+ HEAP32[i4 >> 2] = HEAP32[i14 >> 2];
+ HEAP32[i12 >> 2] = HEAP32[i4 >> 2];
+ __ZL8abort_onN6cashew3RefE(i12);
}
}
}
- if ((i2 | 0) == (HEAP32[9247] | 0)) {
+ if ((i5 | 0) == (HEAP32[9615] | 0)) {
i14 = __ZN6cashew3RefixEj(i14, 1) | 0;
i14 = __ZN6cashew5Value9getNumberEv(HEAP32[i14 >> 2] | 0) | 0;
d1 = +HEAPF64[i14 >> 3];
if (d1 < 0.0) {
- i11 = 1;
+ i2 = 1;
break;
}
if (d1 > 4294967295.0) {
- i11 = 3;
+ i2 = 3;
break;
}
if (+_fmod(d1, 1.0) != 0.0) {
- i11 = 3;
+ i2 = 3;
break;
}
- i11 = __ZN4wasm12isSInteger32Ed(d1) | 0;
- i11 = i11 ? 0 : 2;
+ i2 = __ZN4wasm12isSInteger32Ed(d1) | 0;
+ i2 = i2 ? 0 : 2;
break;
}
- if ((i2 | 0) == (HEAP32[9233] | 0)) i11 = 0; else {
- if ((i2 | 0) == (HEAP32[9236] | 0)) {
- i11 = __ZN6cashew3RefixEj(i14, 2) | 0;
- HEAP32[i4 >> 2] = HEAP32[i11 >> 2];
- HEAP32[i5 >> 2] = HEAP32[i10 >> 2];
- HEAP32[i7 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i13 >> 2] = HEAP32[i5 >> 2];
- i11 = __Z10detectSignN6cashew3RefENS_7IStringE(i7, i13) | 0;
+ if ((i5 | 0) == (HEAP32[9601] | 0)) i2 = 0; else {
+ if ((i5 | 0) == (HEAP32[9604] | 0)) {
+ i2 = __ZN6cashew3RefixEj(i14, 2) | 0;
+ HEAP32[i6 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i7 >> 2] = HEAP32[i11 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
+ HEAP32[i12 >> 2] = HEAP32[i7 >> 2];
+ i2 = __Z10detectSignN6cashew3RefENS_7IStringE(i3, i12) | 0;
break;
}
- if ((i2 | 0) == (HEAP32[9246] | 0)) {
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i14, 1) | 0, 0) | 0, 36932) | 0) {
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i14, 1) | 0, 1) | 0, 37032) | 0) {
- i11 = 3;
+ if ((i5 | 0) == (HEAP32[9614] | 0)) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i14, 1) | 0, 0) | 0, 38404) | 0) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i14, 1) | 0, 1) | 0, 38504) | 0) {
+ i2 = 3;
break;
}
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i14, 1) | 0, 1) | 0, i10) | 0) {
- i11 = 3;
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i14, 1) | 0, 1) | 0, i11) | 0) {
+ i2 = 3;
break;
}
}
- } else if ((i2 | 0) == (HEAP32[9244] | 0)) {
- i11 = __ZN6cashew3RefixEj(i14, 2) | 0;
- HEAP32[i6 >> 2] = HEAP32[i11 >> 2];
- HEAP32[i8 >> 2] = HEAP32[i10 >> 2];
- HEAP32[i7 >> 2] = HEAP32[i6 >> 2];
- HEAP32[i13 >> 2] = HEAP32[i8 >> 2];
- i11 = __Z10detectSignN6cashew3RefENS_7IStringE(i7, i13) | 0;
+ } else if ((i5 | 0) == (HEAP32[9612] | 0)) {
+ i2 = __ZN6cashew3RefixEj(i14, 2) | 0;
+ HEAP32[i8 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i9 >> 2] = HEAP32[i11 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i8 >> 2];
+ HEAP32[i12 >> 2] = HEAP32[i9 >> 2];
+ i2 = __Z10detectSignN6cashew3RefENS_7IStringE(i3, i12) | 0;
break;
}
- HEAP32[i9 >> 2] = HEAP32[i14 >> 2];
- HEAP32[i13 >> 2] = HEAP32[i9 >> 2];
- __ZL8abort_onN6cashew3RefE(i13);
+ HEAP32[i10 >> 2] = HEAP32[i14 >> 2];
+ HEAP32[i12 >> 2] = HEAP32[i10 >> 2];
+ __ZL8abort_onN6cashew3RefE(i12);
}
} else {
i2 = __ZN6cashew3RefixEj(i14, 1) | 0;
@@ -44428,13 +43607,13 @@ function __Z10detectSignN6cashew3RefENS_7IStringE(i14, i10) {
case 45:
case 43:
{
- i11 = 0;
+ i2 = 0;
break L1;
}
case 62:
{
- if ((i2 | 0) == (HEAP32[9282] | 0)) {
- i11 = 2;
+ if ((i2 | 0) == (HEAP32[9650] | 0)) {
+ i2 = 2;
break L1;
}
break;
@@ -44449,59 +43628,59 @@ function __Z10detectSignN6cashew3RefENS_7IStringE(i14, i10) {
case 47:
case 42:
{
- i11 = 3;
+ i2 = 3;
break L1;
}
default:
{
- HEAP32[i12 >> 2] = HEAP32[i14 >> 2];
- HEAP32[i13 >> 2] = HEAP32[i12 >> 2];
- __ZL8abort_onN6cashew3RefE(i13);
+ HEAP32[i13 >> 2] = HEAP32[i14 >> 2];
+ HEAP32[i12 >> 2] = HEAP32[i13 >> 2];
+ __ZL8abort_onN6cashew3RefE(i12);
}
}
- i11 = 1;
+ i2 = 1;
} while (0);
STACKTOP = i15;
- return i11 | 0;
+ return i2 | 0;
}
-function __ZNSt3__19__num_putIwE21__widen_and_group_intEPcS2_S2_PwRS3_S4_RKNS_6localeE(i1, i14, i13, i15, i16, i11, i2) {
- i1 = i1 | 0;
+function __ZNSt3__19__num_putIwE21__widen_and_group_intEPcS2_S2_PwRS3_S4_RKNS_6localeE(i2, i14, i13, i15, i16, i11, i1) {
+ i2 = i2 | 0;
i14 = i14 | 0;
i13 = i13 | 0;
i15 = i15 | 0;
i16 = i16 | 0;
i11 = i11 | 0;
- i2 = i2 | 0;
+ i1 = i1 | 0;
var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i17 = 0, i18 = 0, i19 = 0;
i17 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
i12 = i17;
- i10 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 38996) | 0;
- i5 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 39004) | 0;
+ i10 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 40468) | 0;
+ i5 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 40476) | 0;
FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 20 >> 2] & 127](i12, i5);
i8 = HEAP8[i12 >> 0] | 0;
i9 = i12 + 4 | 0;
L1 : do if (((i8 & 1) == 0 ? (i8 & 255) >>> 1 : HEAP32[i9 >> 2] | 0) | 0) {
HEAP32[i11 >> 2] = i15;
- i2 = HEAP8[i1 >> 0] | 0;
- switch (i2 << 24 >> 24) {
+ i1 = HEAP8[i2 >> 0] | 0;
+ switch (i1 << 24 >> 24) {
case 43:
case 45:
{
- i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i10 >> 2] | 0) + 44 >> 2] & 31](i10, i2) | 0;
- i2 = HEAP32[i11 >> 2] | 0;
- HEAP32[i11 >> 2] = i2 + 4;
- HEAP32[i2 >> 2] = i8;
- i2 = i1 + 1 | 0;
+ i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i10 >> 2] | 0) + 44 >> 2] & 31](i10, i1) | 0;
+ i3 = HEAP32[i11 >> 2] | 0;
+ HEAP32[i11 >> 2] = i3 + 4;
+ HEAP32[i3 >> 2] = i8;
+ i3 = i2 + 1 | 0;
break;
}
default:
- i2 = i1;
+ i3 = i2;
}
- L7 : do if ((i13 - i2 | 0) > 1 ? (HEAP8[i2 >> 0] | 0) == 48 : 0) {
- i3 = i2 + 1 | 0;
- switch (HEAP8[i3 >> 0] | 0) {
+ L7 : do if ((i13 - i3 | 0) > 1 ? (HEAP8[i3 >> 0] | 0) == 48 : 0) {
+ i1 = i3 + 1 | 0;
+ switch (HEAP8[i1 >> 0] | 0) {
case 88:
case 120:
break;
@@ -44512,68 +43691,70 @@ function __ZNSt3__19__num_putIwE21__widen_and_group_intEPcS2_S2_PwRS3_S4_RKNS_6l
i7 = HEAP32[i11 >> 2] | 0;
HEAP32[i11 >> 2] = i7 + 4;
HEAP32[i7 >> 2] = i8;
- i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i10 >> 2] | 0) + 44 >> 2] & 31](i10, HEAP8[i3 >> 0] | 0) | 0;
+ i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i10 >> 2] | 0) + 44 >> 2] & 31](i10, HEAP8[i1 >> 0] | 0) | 0;
i8 = HEAP32[i11 >> 2] | 0;
HEAP32[i11 >> 2] = i8 + 4;
HEAP32[i8 >> 2] = i7;
- i2 = i2 + 2 | 0;
+ i3 = i3 + 2 | 0;
} while (0);
- L12 : do if ((i2 | 0) != (i13 | 0)) {
- i4 = i2;
- i3 = i13;
+ L12 : do if ((i3 | 0) != (i13 | 0)) {
+ i1 = i13;
+ i4 = i3;
while (1) {
- i3 = i3 + -1 | 0;
- if (i4 >>> 0 >= i3 >>> 0) break L12;
+ i1 = i1 + -1 | 0;
+ if (i4 >>> 0 >= i1 >>> 0) break L12;
i8 = HEAP8[i4 >> 0] | 0;
- HEAP8[i4 >> 0] = HEAP8[i3 >> 0] | 0;
- HEAP8[i3 >> 0] = i8;
+ HEAP8[i4 >> 0] = HEAP8[i1 >> 0] | 0;
+ HEAP8[i1 >> 0] = i8;
i4 = i4 + 1 | 0;
}
} while (0);
- i8 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 16 >> 2] & 127](i5) | 0;
- i5 = i12 + 8 | 0;
+ i5 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 16 >> 2] & 127](i5) | 0;
+ i6 = i12 + 8 | 0;
i7 = i12 + 1 | 0;
- i3 = 0;
+ i1 = 0;
i4 = 0;
- i6 = i2;
+ i8 = i3;
while (1) {
- if (i6 >>> 0 >= i13 >>> 0) break;
- i18 = HEAP8[((HEAP8[i12 >> 0] & 1) == 0 ? i7 : HEAP32[i5 >> 2] | 0) + i4 >> 0] | 0;
- if (i18 << 24 >> 24 != 0 & (i3 | 0) == (i18 << 24 >> 24 | 0)) {
+ if (i8 >>> 0 >= i13 >>> 0) break;
+ i18 = HEAP8[((HEAP8[i12 >> 0] & 1) == 0 ? i7 : HEAP32[i6 >> 2] | 0) + i4 >> 0] | 0;
+ if (i18 << 24 >> 24 != 0 & (i1 | 0) == (i18 << 24 >> 24 | 0)) {
i18 = HEAP32[i11 >> 2] | 0;
HEAP32[i11 >> 2] = i18 + 4;
- HEAP32[i18 >> 2] = i8;
+ HEAP32[i18 >> 2] = i5;
i18 = HEAP8[i12 >> 0] | 0;
- i3 = 0;
+ i1 = 0;
i4 = (i4 >>> 0 < (((i18 & 1) == 0 ? (i18 & 255) >>> 1 : HEAP32[i9 >> 2] | 0) + -1 | 0) >>> 0 & 1) + i4 | 0;
}
- i19 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i10 >> 2] | 0) + 44 >> 2] & 31](i10, HEAP8[i6 >> 0] | 0) | 0;
+ i19 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i10 >> 2] | 0) + 44 >> 2] & 31](i10, HEAP8[i8 >> 0] | 0) | 0;
i18 = HEAP32[i11 >> 2] | 0;
HEAP32[i11 >> 2] = i18 + 4;
HEAP32[i18 >> 2] = i19;
- i3 = i3 + 1 | 0;
- i6 = i6 + 1 | 0;
+ i1 = i1 + 1 | 0;
+ i8 = i8 + 1 | 0;
}
- i3 = i15 + (i2 - i1 << 2) | 0;
- i2 = HEAP32[i11 >> 2] | 0;
- if ((i3 | 0) == (i2 | 0)) i2 = i3; else {
- i4 = i3;
- i3 = i2;
+ i1 = i15 + (i3 - i2 << 2) | 0;
+ i4 = HEAP32[i11 >> 2] | 0;
+ if ((i1 | 0) != (i4 | 0)) {
+ i3 = i4;
while (1) {
i3 = i3 + -4 | 0;
- if (i4 >>> 0 >= i3 >>> 0) break L1;
- i19 = HEAP32[i4 >> 2] | 0;
- HEAP32[i4 >> 2] = HEAP32[i3 >> 2];
+ if (i1 >>> 0 >= i3 >>> 0) {
+ i1 = i4;
+ break L1;
+ }
+ i19 = HEAP32[i1 >> 2] | 0;
+ HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
HEAP32[i3 >> 2] = i19;
- i4 = i4 + 4 | 0;
+ i1 = i1 + 4 | 0;
}
}
} else {
- FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i10 >> 2] | 0) + 48 >> 2] & 7](i10, i1, i13, i15) | 0;
- i2 = i15 + (i13 - i1 << 2) | 0;
- HEAP32[i11 >> 2] = i2;
+ FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i10 >> 2] | 0) + 48 >> 2] & 7](i10, i2, i13, i15) | 0;
+ i1 = i15 + (i13 - i2 << 2) | 0;
+ HEAP32[i11 >> 2] = i1;
} while (0);
- HEAP32[i16 >> 2] = (i14 | 0) == (i13 | 0) ? i2 : i15 + (i14 - i1 << 2) | 0;
+ HEAP32[i16 >> 2] = (i14 | 0) == (i13 | 0) ? i1 : i15 + (i14 - i2 << 2) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i12);
STACKTOP = i17;
return;
@@ -44597,107 +43778,183 @@ function __ZN4wasm22SExpressionWasmBuilder10makeSwitchERNS_7ElementE(i13, i12) {
HEAP32[i15 + 8 >> 2] = i9;
i9 = 2;
} else {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i1, 26697, 6);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i1, 28049, 6);
i9 = __ZN4wasm22SExpressionWasmBuilder15getPrefixedNameENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i13, i1) | 0;
HEAP32[i15 + 8 >> 2] = i9;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1);
i9 = 1;
}
- i5 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i13, __ZN4wasm7ElementixEj(i12, i9) | 0) | 0;
- HEAP32[i15 + 12 >> 2] = i5;
- i5 = __ZN4wasm7ElementixEj(i12, i9 + 1 | 0) | 0;
- i3 = i15 + 20 | 0;
- i4 = i15 + 24 | 0;
- i7 = i15 + 16 | 0;
- i6 = 1;
+ i1 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i13, __ZN4wasm7ElementixEj(i12, i9) | 0) | 0;
+ HEAP32[i15 + 12 >> 2] = i1;
+ i1 = __ZN4wasm7ElementixEj(i12, i9 + 1 | 0) | 0;
+ i2 = i15 + 20 | 0;
+ i3 = i15 + 24 | 0;
+ i4 = i15 + 16 | 0;
+ i7 = 1;
while (1) {
- if (i6 >>> 0 >= (__ZN4wasm7Element4sizeEv(i5) | 0) >>> 0) break;
- i1 = __ZN4wasm7Element4listEv(__ZN4wasm7ElementixEj(i5, i6) | 0) | 0;
- i1 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] | 0) | 0;
- HEAP32[i8 >> 2] = i1;
- i2 = HEAP32[i3 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i4 >> 2] | 0) >>> 0) {
- HEAP32[i2 >> 2] = i1;
- HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i7, i8);
- i6 = i6 + 1 | 0;
+ if (i7 >>> 0 >= (__ZN4wasm7Element4sizeEv(i1) | 0) >>> 0) break;
+ i5 = __ZN4wasm7Element4listEv(__ZN4wasm7ElementixEj(i1, i7) | 0) | 0;
+ i5 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i5 >> 2] | 0) + 4 >> 2] | 0) | 0;
+ HEAP32[i8 >> 2] = i5;
+ i6 = HEAP32[i2 >> 2] | 0;
+ if (i6 >>> 0 < (HEAP32[i3 >> 2] | 0) >>> 0) {
+ HEAP32[i6 >> 2] = i5;
+ HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4;
+ } else __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i4, i8);
+ i7 = i7 + 1 | 0;
}
- i7 = __ZN4wasm7Element4listEv(__ZN4wasm7ElementixEj(i12, i9 + 2 | 0) | 0) | 0;
- i7 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i7 >> 2] | 0) + 4 >> 2] | 0) | 0;
- HEAP32[i15 + 28 >> 2] = i7;
- i7 = i13 + 8 | 0;
+ i5 = __ZN4wasm7Element4listEv(__ZN4wasm7ElementixEj(i12, i9 + 2 | 0) | 0) | 0;
+ i5 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i5 >> 2] | 0) + 4 >> 2] | 0) | 0;
+ HEAP32[i15 + 28 >> 2] = i5;
+ i5 = i13 + 8 | 0;
i8 = i15 + 36 | 0;
- i5 = i15 + 40 | 0;
- i6 = i15 + 32 | 0;
+ i6 = i15 + 40 | 0;
+ i7 = i15 + 32 | 0;
i4 = i9 + 3 | 0;
while (1) {
if (i4 >>> 0 >= (__ZN4wasm7Element4sizeEv(i12) | 0) >>> 0) break;
i1 = __ZN4wasm7ElementixEj(i12, i4) | 0;
i9 = __ZN4wasm7Element4listEv(i1) | 0;
i9 = __ZN4wasm7Element3strEv(HEAP32[HEAP32[i9 >> 2] >> 2] | 0) | 0;
- if ((i9 | 0) != (HEAP32[9197] | 0)) {
+ if ((i9 | 0) != (HEAP32[9564] | 0)) {
i14 = 13;
break;
}
- if ((__ZN4wasm7Element4sizeEv(i1) | 0) >>> 0 < 2) __ZNKSt3__18functionIFvvEEclEv(i7);
+ if ((__ZN4wasm7Element4sizeEv(i1) | 0) >>> 0 < 2) __ZNKSt3__18functionIFvvEEclEv(i5);
i3 = __ZN4wasm7Element4listEv(i1) | 0;
i3 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i3 >> 2] | 0) + 4 >> 2] | 0) | 0;
HEAP32[i10 >> 2] = i3;
- i2 = __ZN4wasm22SExpressionWasmBuilder14makeMaybeBlockERNS_7ElementEjj(i13, i1, 2, __ZN4wasm7Element4sizeEv(i1) | 0) | 0;
- HEAP32[i11 >> 2] = i2;
- i1 = HEAP32[i8 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i5 >> 2] | 0) >>> 0) {
- HEAP32[i1 >> 2] = i3;
- HEAP32[i1 + 4 >> 2] = i2;
+ i1 = __ZN4wasm22SExpressionWasmBuilder14makeMaybeBlockERNS_7ElementEjj(i13, i1, 2, __ZN4wasm7Element4sizeEv(i1) | 0) | 0;
+ HEAP32[i11 >> 2] = i1;
+ i2 = HEAP32[i8 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i6 >> 2] | 0) >>> 0) {
+ HEAP32[i2 >> 2] = i3;
+ HEAP32[i2 + 4 >> 2] = i1;
HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 8;
- } else __ZNSt3__16vectorIN4wasm6Switch4CaseENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJN6cashew7IStringEPNS1_10ExpressionEEEEvDpOT_(i6, i10, i11);
+ } else __ZNSt3__16vectorIN4wasm6Switch4CaseENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJN6cashew7IStringEPNS1_10ExpressionEEEEvDpOT_(i7, i10, i11);
i4 = i4 + 1 | 0;
}
- if ((i14 | 0) == 13) ___assert_fail(17448, 16023, 931, 17471);
- i1 = HEAP32[i6 >> 2] | 0;
+ if ((i14 | 0) == 13) ___assert_fail(18042, 16606, 923, 18065);
+ i1 = HEAP32[i7 >> 2] | 0;
if ((HEAP32[i8 >> 2] | 0) == (i1 | 0)) i1 = 0; else i1 = HEAP32[(HEAP32[i1 + 4 >> 2] | 0) + 4 >> 2] | 0;
HEAP32[i15 + 4 >> 2] = i1;
STACKTOP = i16;
return i15 | 0;
}
-function __ZNSt3__19__num_putIcE21__widen_and_group_intEPcS2_S2_S2_RS2_S3_RKNS_6localeE(i1, i14, i13, i15, i16, i11, i2) {
- i1 = i1 | 0;
+function __GLOBAL__sub_I_wasm_js_cpp() {
+ __ZN6cashew7IString3setEPKcb(38064, 12436, 1);
+ __ZN6cashew7IString3setEPKcb(38068, 12443, 1);
+ __ZN6cashew7IString3setEPKcb(38072, 12447, 1);
+ __ZN6cashew7IString3setEPKcb(38076, 31696, 1);
+ __ZN6cashew7IString3setEPKcb(38080, 29271, 1);
+ __ZN6cashew7IString3setEPKcb(38084, 12456, 1);
+ __ZN6cashew7IString3setEPKcb(38088, 12464, 1);
+ __ZN6cashew7IString3setEPKcb(38092, 12474, 1);
+ __ZN6cashew7IString3setEPKcb(38096, 12485, 1);
+ __ZN6cashew7IString3setEPKcb(38100, 12496, 1);
+ __ZN6cashew7IString3setEPKcb(38104, 12507, 1);
+ __ZN6cashew7IString3setEPKcb(38108, 12519, 1);
+ __ZN6cashew7IString3setEPKcb(38112, 12531, 1);
+ __ZN6cashew7IString3setEPKcb(38116, 12544, 1);
+ __ZN6cashew7IString3setEPKcb(38120, 12557, 1);
+ __ZN6cashew7IString3setEPKcb(38124, 12577, 1);
+ __ZN6cashew7IString3setEPKcb(38128, 12582, 1);
+ __ZN6cashew7IString3setEPKcb(38132, 12587, 1);
+ __ZN6cashew7IString3setEPKcb(38136, 12593, 1);
+ __ZN6cashew7IString3setEPKcb(38140, 12600, 1);
+ __ZN6cashew7IString3setEPKcb(38144, 12609, 1);
+ __ZN6cashew7IString3setEPKcb(38148, 12617, 1);
+ __ZN6cashew7IString3setEPKcb(38152, 12628, 1);
+ __ZN6cashew7IString3setEPKcb(38156, 12640, 1);
+ __ZN6cashew7IString3setEPKcb(38160, 12644, 1);
+ __ZN6cashew7IString3setEPKcb(38164, 12650, 1);
+ __ZN6cashew7IString3setEPKcb(38168, 12655, 1);
+ __ZN6cashew7IString3setEPKcb(38172, 12673, 1);
+ __ZN6cashew7IString3setEPKcb(38176, 12682, 1);
+ __ZN6cashew7IString3setEPKcb(38180, 12699, 1);
+ __ZN6cashew7IString3setEPKcb(38184, 12707, 1);
+ __ZN6cashew7IString3setEPKcb(38188, 12714, 1);
+ __ZN6cashew7IString3setEPKcb(38192, 12720, 1);
+ __ZN6cashew7IString3setEPKcb(38196, 12725, 1);
+ __ZN6cashew7IString3setEPKcb(38200, 12731, 1);
+ __ZN6cashew7IString3setEPKcb(38204, 12738, 1);
+ __ZN6cashew7IString3setEPKcb(38208, 12745, 1);
+ __ZN6cashew7IString3setEPKcb(38212, 12753, 1);
+ __ZN6cashew7IString3setEPKcb(38216, 12760, 1);
+ __ZN6cashew7IString3setEPKcb(38220, 12767, 1);
+ __ZN6cashew7IString3setEPKcb(38224, 12773, 1);
+ __ZN6cashew7IString3setEPKcb(38228, 12779, 1);
+ __ZN6cashew7IString3setEPKcb(38232, 28019, 1);
+ __ZN6cashew7IString3setEPKcb(38236, 12784, 1);
+ __ZN6cashew7IString3setEPKcb(38240, 12796, 1);
+ __ZN6cashew7IString3setEPKcb(38244, 12810, 1);
+ __ZN6cashew7IString3setEPKcb(38248, 12816, 1);
+ __ZN6cashew7IString3setEPKcb(38252, 12826, 1);
+ __ZN6cashew7IString3setEPKcb(38256, 28279, 1);
+ __ZN6cashew7IString3setEPKcb(38260, 12831, 1);
+ __ZN6cashew7IString3setEPKcb(38264, 12834, 1);
+ __ZN6cashew7IString3setEPKcb(38268, 12842, 1);
+ __ZN6cashew7IString3setEPKcb(38272, 12849, 1);
+ __ZN6cashew7IString3setEPKcb(38276, 12853, 1);
+ __ZN6cashew7IString3setEPKcb(38280, 12873, 1);
+ __ZN6cashew7IString3setEPKcb(38284, 12883, 1);
+ __ZN6cashew7IString3setEPKcb(38288, 12894, 1);
+ __ZN6cashew7IString3setEPKcb(38292, 12905, 1);
+ __ZN6cashew7IString3setEPKcb(38296, 12919, 1);
+ __ZN6cashew7IString3setEPKcb(38300, 12928, 1);
+ __ZN6cashew7IString3setEPKcb(38304, 12938, 1);
+ __ZN6cashew7IString3setEPKcb(38308, 12949, 1);
+ __ZN6cashew7IString3setEPKcb(38312, 12960, 1);
+ __ZN6cashew7IString3setEPKcb(38316, 12973, 1);
+ __ZN6cashew7IString3setEPKcb(38320, 12983, 1);
+ __ZN6cashew7IString3setEPKcb(38324, 12992, 1);
+ HEAP32[9582] = 0;
+ HEAP32[9583] = 0;
+ HEAP32[9584] = 0;
+ ___cxa_atexit(184, 38328, ___dso_handle | 0) | 0;
+ __ZN6cashew7IString3setEPKcb(38340, 13873, 1);
+ __ZN6cashew7IString3setEPKcb(38344, 13878, 1);
+ return;
+}
+
+function __ZNSt3__19__num_putIcE21__widen_and_group_intEPcS2_S2_S2_RS2_S3_RKNS_6localeE(i2, i14, i13, i15, i16, i11, i1) {
+ i2 = i2 | 0;
i14 = i14 | 0;
i13 = i13 | 0;
i15 = i15 | 0;
i16 = i16 | 0;
i11 = i11 | 0;
- i2 = i2 | 0;
+ i1 = i1 | 0;
var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i17 = 0, i18 = 0, i19 = 0;
i17 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
i12 = i17;
- i10 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 38964) | 0;
- i5 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 38976) | 0;
+ i10 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 40436) | 0;
+ i5 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 40448) | 0;
FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 20 >> 2] & 127](i12, i5);
i8 = HEAP8[i12 >> 0] | 0;
i9 = i12 + 4 | 0;
if (((i8 & 1) == 0 ? (i8 & 255) >>> 1 : HEAP32[i9 >> 2] | 0) | 0) {
HEAP32[i11 >> 2] = i15;
- i2 = HEAP8[i1 >> 0] | 0;
- switch (i2 << 24 >> 24) {
+ i1 = HEAP8[i2 >> 0] | 0;
+ switch (i1 << 24 >> 24) {
case 43:
case 45:
{
- i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i10 >> 2] | 0) + 28 >> 2] & 31](i10, i2) | 0;
- i2 = HEAP32[i11 >> 2] | 0;
- HEAP32[i11 >> 2] = i2 + 1;
- HEAP8[i2 >> 0] = i8;
- i2 = i1 + 1 | 0;
+ i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i10 >> 2] | 0) + 28 >> 2] & 31](i10, i1) | 0;
+ i3 = HEAP32[i11 >> 2] | 0;
+ HEAP32[i11 >> 2] = i3 + 1;
+ HEAP8[i3 >> 0] = i8;
+ i3 = i2 + 1 | 0;
break;
}
default:
- i2 = i1;
+ i3 = i2;
}
- L7 : do if ((i13 - i2 | 0) > 1 ? (HEAP8[i2 >> 0] | 0) == 48 : 0) {
- i3 = i2 + 1 | 0;
- switch (HEAP8[i3 >> 0] | 0) {
+ L7 : do if ((i13 - i3 | 0) > 1 ? (HEAP8[i3 >> 0] | 0) == 48 : 0) {
+ i1 = i3 + 1 | 0;
+ switch (HEAP8[i1 >> 0] | 0) {
case 88:
case 120:
break;
@@ -44708,146 +43965,72 @@ function __ZNSt3__19__num_putIcE21__widen_and_group_intEPcS2_S2_S2_RS2_S3_RKNS_6
i7 = HEAP32[i11 >> 2] | 0;
HEAP32[i11 >> 2] = i7 + 1;
HEAP8[i7 >> 0] = i8;
- i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i10 >> 2] | 0) + 28 >> 2] & 31](i10, HEAP8[i3 >> 0] | 0) | 0;
+ i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i10 >> 2] | 0) + 28 >> 2] & 31](i10, HEAP8[i1 >> 0] | 0) | 0;
i8 = HEAP32[i11 >> 2] | 0;
HEAP32[i11 >> 2] = i8 + 1;
HEAP8[i8 >> 0] = i7;
- i2 = i2 + 2 | 0;
+ i3 = i3 + 2 | 0;
} while (0);
- L12 : do if ((i2 | 0) != (i13 | 0)) {
- i4 = i2;
- i3 = i13;
+ L12 : do if ((i3 | 0) != (i13 | 0)) {
+ i1 = i13;
+ i4 = i3;
while (1) {
- i3 = i3 + -1 | 0;
- if (i4 >>> 0 >= i3 >>> 0) break L12;
+ i1 = i1 + -1 | 0;
+ if (i4 >>> 0 >= i1 >>> 0) break L12;
i8 = HEAP8[i4 >> 0] | 0;
- HEAP8[i4 >> 0] = HEAP8[i3 >> 0] | 0;
- HEAP8[i3 >> 0] = i8;
+ HEAP8[i4 >> 0] = HEAP8[i1 >> 0] | 0;
+ HEAP8[i1 >> 0] = i8;
i4 = i4 + 1 | 0;
}
} while (0);
- i8 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 16 >> 2] & 127](i5) | 0;
- i5 = i12 + 8 | 0;
+ i5 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 16 >> 2] & 127](i5) | 0;
+ i6 = i12 + 8 | 0;
i7 = i12 + 1 | 0;
- i3 = 0;
+ i1 = 0;
i4 = 0;
- i6 = i2;
+ i8 = i3;
while (1) {
- if (i6 >>> 0 >= i13 >>> 0) break;
- i18 = HEAP8[((HEAP8[i12 >> 0] & 1) == 0 ? i7 : HEAP32[i5 >> 2] | 0) + i4 >> 0] | 0;
- if (i18 << 24 >> 24 != 0 & (i3 | 0) == (i18 << 24 >> 24 | 0)) {
+ if (i8 >>> 0 >= i13 >>> 0) break;
+ i18 = HEAP8[((HEAP8[i12 >> 0] & 1) == 0 ? i7 : HEAP32[i6 >> 2] | 0) + i4 >> 0] | 0;
+ if (i18 << 24 >> 24 != 0 & (i1 | 0) == (i18 << 24 >> 24 | 0)) {
i18 = HEAP32[i11 >> 2] | 0;
HEAP32[i11 >> 2] = i18 + 1;
- HEAP8[i18 >> 0] = i8;
+ HEAP8[i18 >> 0] = i5;
i18 = HEAP8[i12 >> 0] | 0;
- i3 = 0;
+ i1 = 0;
i4 = (i4 >>> 0 < (((i18 & 1) == 0 ? (i18 & 255) >>> 1 : HEAP32[i9 >> 2] | 0) + -1 | 0) >>> 0 & 1) + i4 | 0;
}
- i19 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i10 >> 2] | 0) + 28 >> 2] & 31](i10, HEAP8[i6 >> 0] | 0) | 0;
+ i19 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i10 >> 2] | 0) + 28 >> 2] & 31](i10, HEAP8[i8 >> 0] | 0) | 0;
i18 = HEAP32[i11 >> 2] | 0;
HEAP32[i11 >> 2] = i18 + 1;
HEAP8[i18 >> 0] = i19;
- i3 = i3 + 1 | 0;
- i6 = i6 + 1 | 0;
+ i1 = i1 + 1 | 0;
+ i8 = i8 + 1 | 0;
}
- i2 = i15 + (i2 - i1) | 0;
+ i1 = i15 + (i3 - i2) | 0;
i3 = HEAP32[i11 >> 2] | 0;
- if ((i2 | 0) != (i3 | 0)) {
+ if ((i1 | 0) != (i3 | 0)) {
while (1) {
i3 = i3 + -1 | 0;
- if (i2 >>> 0 >= i3 >>> 0) break;
- i19 = HEAP8[i2 >> 0] | 0;
- HEAP8[i2 >> 0] = HEAP8[i3 >> 0] | 0;
+ if (i1 >>> 0 >= i3 >>> 0) break;
+ i19 = HEAP8[i1 >> 0] | 0;
+ HEAP8[i1 >> 0] = HEAP8[i3 >> 0] | 0;
HEAP8[i3 >> 0] = i19;
- i2 = i2 + 1 | 0;
+ i1 = i1 + 1 | 0;
}
- i2 = HEAP32[i11 >> 2] | 0;
+ i1 = HEAP32[i11 >> 2] | 0;
}
} else {
- FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i10 >> 2] | 0) + 32 >> 2] & 7](i10, i1, i13, i15) | 0;
- i2 = i15 + (i13 - i1) | 0;
- HEAP32[i11 >> 2] = i2;
+ FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i10 >> 2] | 0) + 32 >> 2] & 7](i10, i2, i13, i15) | 0;
+ i1 = i15 + (i13 - i2) | 0;
+ HEAP32[i11 >> 2] = i1;
}
- HEAP32[i16 >> 2] = (i14 | 0) == (i13 | 0) ? i2 : i15 + (i14 - i1) | 0;
+ HEAP32[i16 >> 2] = (i14 | 0) == (i13 | 0) ? i1 : i15 + (i14 - i2) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i12);
STACKTOP = i17;
return;
}
-function __GLOBAL__sub_I_wasm_js_cpp() {
- __ZN6cashew7IString3setEPKcb(36600, 11868, 1);
- __ZN6cashew7IString3setEPKcb(36604, 11875, 1);
- __ZN6cashew7IString3setEPKcb(36608, 11879, 1);
- __ZN6cashew7IString3setEPKcb(36612, 30290, 1);
- __ZN6cashew7IString3setEPKcb(36616, 30281, 1);
- __ZN6cashew7IString3setEPKcb(36620, 11888, 1);
- __ZN6cashew7IString3setEPKcb(36624, 11896, 1);
- __ZN6cashew7IString3setEPKcb(36628, 11906, 1);
- __ZN6cashew7IString3setEPKcb(36632, 11917, 1);
- __ZN6cashew7IString3setEPKcb(36636, 11928, 1);
- __ZN6cashew7IString3setEPKcb(36640, 11939, 1);
- __ZN6cashew7IString3setEPKcb(36644, 11951, 1);
- __ZN6cashew7IString3setEPKcb(36648, 11963, 1);
- __ZN6cashew7IString3setEPKcb(36652, 11976, 1);
- __ZN6cashew7IString3setEPKcb(36656, 11989, 1);
- __ZN6cashew7IString3setEPKcb(36660, 12009, 1);
- __ZN6cashew7IString3setEPKcb(36664, 12014, 1);
- __ZN6cashew7IString3setEPKcb(36668, 12019, 1);
- __ZN6cashew7IString3setEPKcb(36672, 12025, 1);
- __ZN6cashew7IString3setEPKcb(36676, 12032, 1);
- __ZN6cashew7IString3setEPKcb(36680, 12041, 1);
- __ZN6cashew7IString3setEPKcb(36684, 12049, 1);
- __ZN6cashew7IString3setEPKcb(36688, 12060, 1);
- __ZN6cashew7IString3setEPKcb(36692, 12072, 1);
- __ZN6cashew7IString3setEPKcb(36696, 12076, 1);
- __ZN6cashew7IString3setEPKcb(36700, 12082, 1);
- __ZN6cashew7IString3setEPKcb(36704, 12087, 1);
- __ZN6cashew7IString3setEPKcb(36708, 12105, 1);
- __ZN6cashew7IString3setEPKcb(36712, 12114, 1);
- __ZN6cashew7IString3setEPKcb(36716, 12131, 1);
- __ZN6cashew7IString3setEPKcb(36720, 12139, 1);
- __ZN6cashew7IString3setEPKcb(36724, 12146, 1);
- __ZN6cashew7IString3setEPKcb(36728, 12151, 1);
- __ZN6cashew7IString3setEPKcb(36732, 12157, 1);
- __ZN6cashew7IString3setEPKcb(36736, 12164, 1);
- __ZN6cashew7IString3setEPKcb(36740, 12171, 1);
- __ZN6cashew7IString3setEPKcb(36744, 12179, 1);
- __ZN6cashew7IString3setEPKcb(36748, 12186, 1);
- __ZN6cashew7IString3setEPKcb(36752, 12193, 1);
- __ZN6cashew7IString3setEPKcb(36756, 12199, 1);
- __ZN6cashew7IString3setEPKcb(36760, 12205, 1);
- __ZN6cashew7IString3setEPKcb(36764, 26667, 1);
- __ZN6cashew7IString3setEPKcb(36768, 12210, 1);
- __ZN6cashew7IString3setEPKcb(36772, 12222, 1);
- __ZN6cashew7IString3setEPKcb(36776, 12236, 1);
- __ZN6cashew7IString3setEPKcb(36780, 12242, 1);
- __ZN6cashew7IString3setEPKcb(36784, 12252, 1);
- __ZN6cashew7IString3setEPKcb(36788, 26927, 1);
- __ZN6cashew7IString3setEPKcb(36792, 12257, 1);
- __ZN6cashew7IString3setEPKcb(36796, 12260, 1);
- __ZN6cashew7IString3setEPKcb(36800, 12268, 1);
- __ZN6cashew7IString3setEPKcb(36804, 12275, 1);
- __ZN6cashew7IString3setEPKcb(36808, 12279, 1);
- __ZN6cashew7IString3setEPKcb(36812, 12299, 1);
- __ZN6cashew7IString3setEPKcb(36816, 12309, 1);
- __ZN6cashew7IString3setEPKcb(36820, 12320, 1);
- __ZN6cashew7IString3setEPKcb(36824, 12331, 1);
- __ZN6cashew7IString3setEPKcb(36828, 12345, 1);
- __ZN6cashew7IString3setEPKcb(36832, 12354, 1);
- __ZN6cashew7IString3setEPKcb(36836, 12364, 1);
- __ZN6cashew7IString3setEPKcb(36840, 12375, 1);
- __ZN6cashew7IString3setEPKcb(36844, 12386, 1);
- __ZN6cashew7IString3setEPKcb(36848, 12399, 1);
- __ZN6cashew7IString3setEPKcb(36852, 12409, 1);
- __ZN6cashew7IString3setEPKcb(36856, 12418, 1);
- HEAP32[9215] = 0;
- HEAP32[9216] = 0;
- HEAP32[9217] = 0;
- ___cxa_atexit(163, 36860, ___dso_handle | 0) | 0;
- __ZN6cashew7IString3setEPKcb(36872, 13299, 1);
- return;
-}
-
function __ZNSt3__1L20utf8_to_utf16_lengthEPKhS1_jmNS_12codecvt_modeE(i12, i10, i11, i9, i1) {
i12 = i12 | 0;
i10 = i10 | 0;
@@ -44857,59 +44040,65 @@ function __ZNSt3__1L20utf8_to_utf16_lengthEPKhS1_jmNS_12codecvt_modeE(i12, i10,
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0;
i8 = i10;
if ((((i1 & 4 | 0) != 0 ? (i8 - i12 | 0) > 2 : 0) ? (HEAP8[i12 >> 0] | 0) == -17 : 0) ? (HEAP8[i12 + 1 >> 0] | 0) == -69 : 0) {
- i1 = (HEAP8[i12 + 2 >> 0] | 0) == -65 ? i12 + 3 | 0 : i12;
+ i7 = (HEAP8[i12 + 2 >> 0] | 0) == -65 ? i12 + 3 | 0 : i12;
i2 = 0;
} else {
- i1 = i12;
+ i7 = i12;
i2 = 0;
}
L6 : while (1) {
- if (!(i2 >>> 0 < i11 >>> 0 & i1 >>> 0 < i10 >>> 0)) {
+ if (!(i2 >>> 0 < i11 >>> 0 & i7 >>> 0 < i10 >>> 0)) {
+ i1 = i7;
i2 = 40;
break;
}
- i3 = HEAP8[i1 >> 0] | 0;
- i7 = i3 & 255;
- if (i7 >>> 0 > i9 >>> 0) {
+ i1 = HEAP8[i7 >> 0] | 0;
+ i6 = i1 & 255;
+ if (i6 >>> 0 > i9 >>> 0) {
+ i1 = i7;
i2 = 40;
break;
}
- do if (i3 << 24 >> 24 > -1) i1 = i1 + 1 | 0; else {
- if ((i3 & 255) < 194) {
+ do if (i1 << 24 >> 24 > -1) i1 = i7 + 1 | 0; else {
+ if ((i1 & 255) < 194) {
+ i1 = i7;
i2 = 40;
break L6;
}
- if ((i3 & 255) < 224) {
- if ((i8 - i1 | 0) < 2) {
+ if ((i1 & 255) < 224) {
+ if ((i8 - i7 | 0) < 2) {
+ i1 = i7;
i2 = 40;
break L6;
}
- i3 = HEAPU8[i1 + 1 >> 0] | 0;
- if ((i3 & 192 | 0) != 128) {
+ i1 = HEAPU8[i7 + 1 >> 0] | 0;
+ if ((i1 & 192 | 0) != 128) {
+ i1 = i7;
i2 = 40;
break L6;
}
- if ((i3 & 63 | i7 << 6 & 1984) >>> 0 > i9 >>> 0) {
+ if ((i1 & 63 | i6 << 6 & 1984) >>> 0 > i9 >>> 0) {
+ i1 = i7;
i2 = 40;
break L6;
} else {
- i1 = i1 + 2 | 0;
+ i1 = i7 + 2 | 0;
break;
}
}
- if ((i3 & 255) < 240) {
- i4 = i1;
- if ((i8 - i4 | 0) < 3) {
+ if ((i1 & 255) < 240) {
+ i1 = i7;
+ if ((i8 - i1 | 0) < 3) {
+ i1 = i7;
i2 = 40;
break L6;
}
- i5 = HEAP8[i1 + 1 >> 0] | 0;
- i3 = HEAP8[i1 + 2 >> 0] | 0;
- switch (i7 | 0) {
+ i4 = HEAP8[i7 + 1 >> 0] | 0;
+ i3 = HEAP8[i7 + 2 >> 0] | 0;
+ switch (i6 | 0) {
case 224:
{
- if ((i5 & -32) << 24 >> 24 != -96) {
- i1 = i4;
+ if ((i4 & -32) << 24 >> 24 != -96) {
i2 = 19;
break L6;
}
@@ -44917,50 +44106,51 @@ function __ZNSt3__1L20utf8_to_utf16_lengthEPKhS1_jmNS_12codecvt_modeE(i12, i10,
}
case 237:
{
- if ((i5 & -32) << 24 >> 24 != -128) {
- i1 = i4;
+ if ((i4 & -32) << 24 >> 24 != -128) {
i2 = 21;
break L6;
}
break;
}
default:
- if ((i5 & -64) << 24 >> 24 != -128) {
- i1 = i4;
+ if ((i4 & -64) << 24 >> 24 != -128) {
i2 = 23;
break L6;
}
}
- i3 = i3 & 255;
- if ((i3 & 192 | 0) != 128) {
+ i1 = i3 & 255;
+ if ((i1 & 192 | 0) != 128) {
+ i1 = i7;
i2 = 40;
break L6;
}
- if (((i5 & 255) << 6 & 4032 | i7 << 12 & 61440 | i3 & 63) >>> 0 > i9 >>> 0) {
+ if (((i4 & 255) << 6 & 4032 | i6 << 12 & 61440 | i1 & 63) >>> 0 > i9 >>> 0) {
+ i1 = i7;
i2 = 40;
break L6;
} else {
- i1 = i1 + 3 | 0;
+ i1 = i7 + 3 | 0;
break;
}
}
- if ((i3 & 255) >= 245) {
+ if ((i1 & 255) >= 245) {
+ i1 = i7;
i2 = 40;
break L6;
}
- i4 = i1;
- if ((i11 - i2 | 0) >>> 0 < 2 | (i8 - i4 | 0) < 4) {
+ i1 = i7;
+ if ((i11 - i2 | 0) >>> 0 < 2 | (i8 - i1 | 0) < 4) {
+ i1 = i7;
i2 = 40;
break L6;
}
- i6 = HEAP8[i1 + 1 >> 0] | 0;
- i3 = HEAP8[i1 + 2 >> 0] | 0;
- i5 = HEAP8[i1 + 3 >> 0] | 0;
- switch (i7 | 0) {
+ i5 = HEAP8[i7 + 1 >> 0] | 0;
+ i3 = HEAP8[i7 + 2 >> 0] | 0;
+ i4 = HEAP8[i7 + 3 >> 0] | 0;
+ switch (i6 | 0) {
case 240:
{
- if ((i6 + 112 & 255) >= 48) {
- i1 = i4;
+ if ((i5 + 112 & 255) >= 48) {
i2 = 30;
break L6;
}
@@ -44968,43 +44158,210 @@ function __ZNSt3__1L20utf8_to_utf16_lengthEPKhS1_jmNS_12codecvt_modeE(i12, i10,
}
case 244:
{
- if ((i6 & -16) << 24 >> 24 != -128) {
- i1 = i4;
+ if ((i5 & -16) << 24 >> 24 != -128) {
i2 = 32;
break L6;
}
break;
}
default:
- if ((i6 & -64) << 24 >> 24 != -128) {
- i1 = i4;
+ if ((i5 & -64) << 24 >> 24 != -128) {
i2 = 34;
break L6;
}
}
- i4 = i3 & 255;
- if ((i4 & 192 | 0) != 128) {
+ i3 = i3 & 255;
+ if ((i3 & 192 | 0) != 128) {
+ i1 = i7;
i2 = 40;
break L6;
}
- i3 = i5 & 255;
- if ((i3 & 192 | 0) != 128) {
+ i1 = i4 & 255;
+ if ((i1 & 192 | 0) != 128) {
+ i1 = i7;
i2 = 40;
break L6;
}
- if (((i6 & 255) << 12 & 258048 | i7 << 18 & 1835008 | i4 << 6 & 4032 | i3 & 63) >>> 0 > i9 >>> 0) {
+ if (((i5 & 255) << 12 & 258048 | i6 << 18 & 1835008 | i3 << 6 & 4032 | i1 & 63) >>> 0 > i9 >>> 0) {
+ i1 = i7;
i2 = 40;
break L6;
}
- i1 = i1 + 4 | 0;
+ i1 = i7 + 4 | 0;
i2 = i2 + 1 | 0;
} while (0);
+ i7 = i1;
i2 = i2 + 1 | 0;
}
if ((i2 | 0) == 19) i1 = i1 - i12 | 0; else if ((i2 | 0) == 21) i1 = i1 - i12 | 0; else if ((i2 | 0) == 23) i1 = i1 - i12 | 0; else if ((i2 | 0) == 30) i1 = i1 - i12 | 0; else if ((i2 | 0) == 32) i1 = i1 - i12 | 0; else if ((i2 | 0) == 34) i1 = i1 - i12 | 0; else if ((i2 | 0) == 40) i1 = i1 - i12 | 0;
return i1 | 0;
}
+function __ZNSt3__1L19utf8_to_ucs4_lengthEPKhS1_jmNS_12codecvt_modeE(i12, i10, i11, i9, i1) {
+ i12 = i12 | 0;
+ i10 = i10 | 0;
+ i11 = i11 | 0;
+ i9 = i9 | 0;
+ i1 = i1 | 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0;
+ i8 = i10;
+ if ((((i1 & 4 | 0) != 0 ? (i8 - i12 | 0) > 2 : 0) ? (HEAP8[i12 >> 0] | 0) == -17 : 0) ? (HEAP8[i12 + 1 >> 0] | 0) == -69 : 0) {
+ i6 = (HEAP8[i12 + 2 >> 0] | 0) == -65 ? i12 + 3 | 0 : i12;
+ i7 = 0;
+ } else {
+ i6 = i12;
+ i7 = 0;
+ }
+ L6 : while (1) {
+ if (!(i7 >>> 0 < i11 >>> 0 & i6 >>> 0 < i10 >>> 0)) {
+ i1 = i6;
+ i2 = 40;
+ break;
+ }
+ i1 = HEAP8[i6 >> 0] | 0;
+ i5 = i1 & 255;
+ do if (i1 << 24 >> 24 <= -1) {
+ if ((i1 & 255) < 194) {
+ i1 = i6;
+ i2 = 40;
+ break L6;
+ }
+ if ((i1 & 255) < 224) {
+ if ((i8 - i6 | 0) < 2) {
+ i1 = i6;
+ i2 = 40;
+ break L6;
+ }
+ i1 = HEAPU8[i6 + 1 >> 0] | 0;
+ if ((i1 & 192 | 0) != 128) {
+ i1 = i6;
+ i2 = 40;
+ break L6;
+ }
+ if ((i1 & 63 | i5 << 6 & 1984) >>> 0 > i9 >>> 0) {
+ i1 = i6;
+ i2 = 40;
+ break L6;
+ }
+ i1 = i6 + 2 | 0;
+ break;
+ }
+ if ((i1 & 255) < 240) {
+ i1 = i6;
+ if ((i8 - i1 | 0) < 3) {
+ i1 = i6;
+ i2 = 40;
+ break L6;
+ }
+ i3 = HEAP8[i6 + 1 >> 0] | 0;
+ i2 = HEAP8[i6 + 2 >> 0] | 0;
+ switch (i5 | 0) {
+ case 224:
+ {
+ if ((i3 & -32) << 24 >> 24 != -96) {
+ i2 = 20;
+ break L6;
+ }
+ break;
+ }
+ case 237:
+ {
+ if ((i3 & -32) << 24 >> 24 != -128) {
+ i2 = 22;
+ break L6;
+ }
+ break;
+ }
+ default:
+ if ((i3 & -64) << 24 >> 24 != -128) {
+ i2 = 24;
+ break L6;
+ }
+ }
+ i1 = i2 & 255;
+ if ((i1 & 192 | 0) != 128) {
+ i1 = i6;
+ i2 = 40;
+ break L6;
+ }
+ if (((i3 & 255) << 6 & 4032 | i5 << 12 & 61440 | i1 & 63) >>> 0 > i9 >>> 0) {
+ i1 = i6;
+ i2 = 40;
+ break L6;
+ } else {
+ i1 = i6 + 3 | 0;
+ break;
+ }
+ }
+ if ((i1 & 255) >= 245) {
+ i1 = i6;
+ i2 = 40;
+ break L6;
+ }
+ i1 = i6;
+ if ((i8 - i1 | 0) < 4) {
+ i1 = i6;
+ i2 = 40;
+ break L6;
+ }
+ i4 = HEAP8[i6 + 1 >> 0] | 0;
+ i2 = HEAP8[i6 + 2 >> 0] | 0;
+ i3 = HEAP8[i6 + 3 >> 0] | 0;
+ switch (i5 | 0) {
+ case 240:
+ {
+ if ((i4 + 112 & 255) >= 48) {
+ i2 = 31;
+ break L6;
+ }
+ break;
+ }
+ case 244:
+ {
+ if ((i4 & -16) << 24 >> 24 != -128) {
+ i2 = 33;
+ break L6;
+ }
+ break;
+ }
+ default:
+ if ((i4 & -64) << 24 >> 24 != -128) {
+ i2 = 35;
+ break L6;
+ }
+ }
+ i2 = i2 & 255;
+ if ((i2 & 192 | 0) != 128) {
+ i1 = i6;
+ i2 = 40;
+ break L6;
+ }
+ i1 = i3 & 255;
+ if ((i1 & 192 | 0) != 128) {
+ i1 = i6;
+ i2 = 40;
+ break L6;
+ }
+ if (((i4 & 255) << 12 & 258048 | i5 << 18 & 1835008 | i2 << 6 & 4032 | i1 & 63) >>> 0 > i9 >>> 0) {
+ i1 = i6;
+ i2 = 40;
+ break L6;
+ } else i1 = i6 + 4 | 0;
+ } else {
+ if (i5 >>> 0 > i9 >>> 0) {
+ i1 = i6;
+ i2 = 40;
+ break L6;
+ }
+ i1 = i6 + 1 | 0;
+ } while (0);
+ i6 = i1;
+ i7 = i7 + 1 | 0;
+ }
+ if ((i2 | 0) == 20) i1 = i1 - i12 | 0; else if ((i2 | 0) == 22) i1 = i1 - i12 | 0; else if ((i2 | 0) == 24) i1 = i1 - i12 | 0; else if ((i2 | 0) == 31) i1 = i1 - i12 | 0; else if ((i2 | 0) == 33) i1 = i1 - i12 | 0; else if ((i2 | 0) == 35) i1 = i1 - i12 | 0; else if ((i2 | 0) == 40) i1 = i1 - i12 | 0;
+ return i1 | 0;
+}
+
function __ZNSt3__1L13utf16_to_utf8EPKtS1_RS1_PhS3_RS3_mNS_12codecvt_modeE(i1, i8, i9, i4, i2, i10, i7, i3) {
i1 = i1 | 0;
i8 = i8 | 0;
@@ -45104,9 +44461,9 @@ function __ZNSt3__1L13utf16_to_utf8EPKtS1_RS1_PhS3_RS3_mNS_12codecvt_modeE(i1, i
i1 = 1;
break L4;
}
- i3 = i1 + 2 | 0;
- i4 = HEAPU16[i3 >> 1] | 0;
- if ((i4 & 64512 | 0) != 56320) {
+ i1 = i1 + 2 | 0;
+ i3 = HEAPU16[i1 >> 1] | 0;
+ if ((i3 & 64512 | 0) != 56320) {
i1 = 2;
break L4;
}
@@ -45114,25 +44471,25 @@ function __ZNSt3__1L13utf16_to_utf8EPKtS1_RS1_PhS3_RS3_mNS_12codecvt_modeE(i1, i
i1 = 1;
break L4;
}
- i1 = i5 & 960;
- if (((i1 << 10) + 65536 | i5 << 10 & 64512 | i4 & 1023) >>> 0 > i7 >>> 0) {
+ i4 = i5 & 960;
+ if (((i4 << 10) + 65536 | i5 << 10 & 64512 | i3 & 1023) >>> 0 > i7 >>> 0) {
i1 = 2;
break L4;
}
- HEAP32[i9 >> 2] = i3;
- i1 = (i1 >>> 6) + 1 | 0;
- i3 = HEAP32[i10 >> 2] | 0;
- HEAP32[i10 >> 2] = i3 + 1;
- HEAP8[i3 >> 0] = i1 >>> 2 | 240;
- i3 = HEAP32[i10 >> 2] | 0;
- HEAP32[i10 >> 2] = i3 + 1;
- HEAP8[i3 >> 0] = i5 >>> 2 & 15 | i1 << 4 & 48 | 128;
- i3 = HEAP32[i10 >> 2] | 0;
- HEAP32[i10 >> 2] = i3 + 1;
- HEAP8[i3 >> 0] = i5 << 4 & 48 | i4 >>> 6 & 15 | 128;
+ HEAP32[i9 >> 2] = i1;
+ i1 = (i4 >>> 6) + 1 | 0;
+ i4 = HEAP32[i10 >> 2] | 0;
+ HEAP32[i10 >> 2] = i4 + 1;
+ HEAP8[i4 >> 0] = i1 >>> 2 | 240;
+ i4 = HEAP32[i10 >> 2] | 0;
+ HEAP32[i10 >> 2] = i4 + 1;
+ HEAP8[i4 >> 0] = i5 >>> 2 & 15 | i1 << 4 & 48 | 128;
+ i4 = HEAP32[i10 >> 2] | 0;
+ HEAP32[i10 >> 2] = i4 + 1;
+ HEAP8[i4 >> 0] = i5 << 4 & 48 | i3 >>> 6 & 15 | 128;
i5 = HEAP32[i10 >> 2] | 0;
HEAP32[i10 >> 2] = i5 + 1;
- HEAP8[i5 >> 0] = i4 & 63 | 128;
+ HEAP8[i5 >> 0] = i3 & 63 | 128;
} while (0);
i1 = (HEAP32[i9 >> 2] | 0) + 2 | 0;
HEAP32[i9 >> 2] = i1;
@@ -45141,162 +44498,6 @@ function __ZNSt3__1L13utf16_to_utf8EPKtS1_RS1_PhS3_RS3_mNS_12codecvt_modeE(i1, i
return i1 | 0;
}
-function __ZNSt3__1L19utf8_to_ucs4_lengthEPKhS1_jmNS_12codecvt_modeE(i12, i10, i11, i9, i1) {
- i12 = i12 | 0;
- i10 = i10 | 0;
- i11 = i11 | 0;
- i9 = i9 | 0;
- i1 = i1 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0;
- i8 = i10;
- if ((((i1 & 4 | 0) != 0 ? (i8 - i12 | 0) > 2 : 0) ? (HEAP8[i12 >> 0] | 0) == -17 : 0) ? (HEAP8[i12 + 1 >> 0] | 0) == -69 : 0) {
- i1 = (HEAP8[i12 + 2 >> 0] | 0) == -65 ? i12 + 3 | 0 : i12;
- i7 = 0;
- } else {
- i1 = i12;
- i7 = 0;
- }
- L6 : while (1) {
- if (!(i7 >>> 0 < i11 >>> 0 & i1 >>> 0 < i10 >>> 0)) {
- i2 = 40;
- break;
- }
- i2 = HEAP8[i1 >> 0] | 0;
- i6 = i2 & 255;
- do if (i2 << 24 >> 24 <= -1) {
- if ((i2 & 255) < 194) {
- i2 = 40;
- break L6;
- }
- if ((i2 & 255) < 224) {
- if ((i8 - i1 | 0) < 2) {
- i2 = 40;
- break L6;
- }
- i2 = HEAPU8[i1 + 1 >> 0] | 0;
- if ((i2 & 192 | 0) != 128) {
- i2 = 40;
- break L6;
- }
- if ((i2 & 63 | i6 << 6 & 1984) >>> 0 > i9 >>> 0) {
- i2 = 40;
- break L6;
- }
- i1 = i1 + 2 | 0;
- break;
- }
- if ((i2 & 255) < 240) {
- i3 = i1;
- if ((i8 - i3 | 0) < 3) {
- i2 = 40;
- break L6;
- }
- i4 = HEAP8[i1 + 1 >> 0] | 0;
- i2 = HEAP8[i1 + 2 >> 0] | 0;
- switch (i6 | 0) {
- case 224:
- {
- if ((i4 & -32) << 24 >> 24 != -96) {
- i1 = i3;
- i2 = 20;
- break L6;
- }
- break;
- }
- case 237:
- {
- if ((i4 & -32) << 24 >> 24 != -128) {
- i1 = i3;
- i2 = 22;
- break L6;
- }
- break;
- }
- default:
- if ((i4 & -64) << 24 >> 24 != -128) {
- i1 = i3;
- i2 = 24;
- break L6;
- }
- }
- i2 = i2 & 255;
- if ((i2 & 192 | 0) != 128) {
- i2 = 40;
- break L6;
- }
- if (((i4 & 255) << 6 & 4032 | i6 << 12 & 61440 | i2 & 63) >>> 0 > i9 >>> 0) {
- i2 = 40;
- break L6;
- } else {
- i1 = i1 + 3 | 0;
- break;
- }
- }
- if ((i2 & 255) >= 245) {
- i2 = 40;
- break L6;
- }
- i3 = i1;
- if ((i8 - i3 | 0) < 4) {
- i2 = 40;
- break L6;
- }
- i5 = HEAP8[i1 + 1 >> 0] | 0;
- i2 = HEAP8[i1 + 2 >> 0] | 0;
- i4 = HEAP8[i1 + 3 >> 0] | 0;
- switch (i6 | 0) {
- case 240:
- {
- if ((i5 + 112 & 255) >= 48) {
- i1 = i3;
- i2 = 31;
- break L6;
- }
- break;
- }
- case 244:
- {
- if ((i5 & -16) << 24 >> 24 != -128) {
- i1 = i3;
- i2 = 33;
- break L6;
- }
- break;
- }
- default:
- if ((i5 & -64) << 24 >> 24 != -128) {
- i1 = i3;
- i2 = 35;
- break L6;
- }
- }
- i3 = i2 & 255;
- if ((i3 & 192 | 0) != 128) {
- i2 = 40;
- break L6;
- }
- i2 = i4 & 255;
- if ((i2 & 192 | 0) != 128) {
- i2 = 40;
- break L6;
- }
- if (((i5 & 255) << 12 & 258048 | i6 << 18 & 1835008 | i3 << 6 & 4032 | i2 & 63) >>> 0 > i9 >>> 0) {
- i2 = 40;
- break L6;
- } else i1 = i1 + 4 | 0;
- } else {
- if (i6 >>> 0 > i9 >>> 0) {
- i2 = 40;
- break L6;
- }
- i1 = i1 + 1 | 0;
- } while (0);
- i7 = i7 + 1 | 0;
- }
- if ((i2 | 0) == 20) i1 = i1 - i12 | 0; else if ((i2 | 0) == 22) i1 = i1 - i12 | 0; else if ((i2 | 0) == 24) i1 = i1 - i12 | 0; else if ((i2 | 0) == 31) i1 = i1 - i12 | 0; else if ((i2 | 0) == 33) i1 = i1 - i12 | 0; else if ((i2 | 0) == 35) i1 = i1 - i12 | 0; else if ((i2 | 0) == 40) i1 = i1 - i12 | 0;
- return i1 | 0;
-}
-
function __ZNKSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_bRNS_8ios_baseERjRe(i1, i13, i14, i2, i3, i15, i12) {
i1 = i1 | 0;
i13 = i13 | 0;
@@ -45308,28 +44509,28 @@ function __ZNKSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEE
var i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0;
i20 = STACKTOP;
STACKTOP = STACKTOP + 576 | 0;
- i8 = i20 + 424 | 0;
+ i7 = i20 + 424 | 0;
i10 = i20;
i4 = i20 + 24 | 0;
i19 = i20 + 16 | 0;
- i7 = i20 + 12 | 0;
+ i8 = i20 + 12 | 0;
i16 = i20 + 8 | 0;
i5 = i20 + 564 | 0;
i21 = i20 + 4 | 0;
i9 = i20 + 464 | 0;
HEAP32[i19 >> 2] = i4;
i18 = i19 + 4 | 0;
- HEAP32[i18 >> 2] = 181;
+ HEAP32[i18 >> 2] = 202;
i1 = __ZNKSt3__18ios_base6getlocEv(i3) | 0;
HEAP32[i16 >> 2] = i1;
- i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i16, 38996) | 0;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i16, 40468) | 0;
HEAP8[i5 >> 0] = 0;
HEAP32[i21 >> 2] = HEAP32[i14 >> 2];
i3 = HEAP32[i3 + 4 >> 2] | 0;
- HEAP32[i8 >> 2] = HEAP32[i21 >> 2];
- if (__ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE8__do_getERS4_S4_bRKNS_6localeEjRjRbRKNS_5ctypeIwEERNS_10unique_ptrIwPFvPvEEERPwSM_(i13, i8, i2, i16, i3, i15, i5, i1, i19, i7, i4 + 400 | 0) | 0) {
- FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 48 >> 2] & 7](i1, 32548, 32558, i8) | 0;
- i2 = HEAP32[i7 >> 2] | 0;
+ HEAP32[i7 >> 2] = HEAP32[i21 >> 2];
+ if (__ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE8__do_getERS4_S4_bRKNS_6localeEjRjRbRKNS_5ctypeIwEERNS_10unique_ptrIwPFvPvEEERPwSM_(i13, i7, i2, i16, i3, i15, i5, i1, i19, i8, i4 + 400 | 0) | 0) {
+ FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 48 >> 2] & 7](i1, 34012, 34022, i7) | 0;
+ i2 = HEAP32[i8 >> 2] | 0;
i4 = HEAP32[i19 >> 2] | 0;
i1 = i2 - i4 | 0;
if ((i1 | 0) > 392) {
@@ -45346,12 +44547,12 @@ function __ZNKSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEE
HEAP8[i6 >> 0] = 45;
i1 = i6 + 1 | 0;
}
- i5 = i8 + 40 | 0;
- i6 = i8;
+ i5 = i7 + 40 | 0;
+ i6 = i7;
while (1) {
if (i4 >>> 0 >= i2 >>> 0) break;
i3 = HEAP32[i4 >> 2] | 0;
- i2 = i8;
+ i2 = i7;
while (1) {
if ((i2 | 0) == (i5 | 0)) {
i2 = i5;
@@ -45360,14 +44561,14 @@ function __ZNKSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEE
if ((HEAP32[i2 >> 2] | 0) == (i3 | 0)) break;
i2 = i2 + 4 | 0;
}
- HEAP8[i1 >> 0] = HEAP8[32548 + (i2 - i6 >> 2) >> 0] | 0;
- i2 = HEAP32[i7 >> 2] | 0;
+ HEAP8[i1 >> 0] = HEAP8[34012 + (i2 - i6 >> 2) >> 0] | 0;
+ i2 = HEAP32[i8 >> 2] | 0;
i1 = i1 + 1 | 0;
i4 = i4 + 4 | 0;
}
HEAP8[i1 >> 0] = 0;
HEAP32[i10 >> 2] = i12;
- _sscanf(i9, 32449, i10) | 0;
+ _sscanf(i9, 33913, i10) | 0;
if (i11 | 0) _free(i11);
}
i1 = HEAP32[i13 >> 2] | 0;
@@ -45412,10 +44613,10 @@ function __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i12, i10) {
i10 = i10 | 0;
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0;
do if (HEAP8[i12 >> 0] & 1) {
- i8 = i12 + 8 | 0;
- HEAP8[HEAP32[i8 >> 2] >> 0] = 0;
- i6 = i12 + 4 | 0;
- HEAP32[i6 >> 2] = 0;
+ i9 = i12 + 8 | 0;
+ HEAP8[HEAP32[i9 >> 2] >> 0] = 0;
+ i7 = i12 + 4 | 0;
+ HEAP32[i7 >> 2] = 0;
i1 = HEAP8[i12 >> 0] | 0;
if (!(i1 & 1)) i5 = 10; else {
i5 = HEAP32[i12 >> 2] | 0;
@@ -45425,44 +44626,44 @@ function __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i12, i10) {
if (!(i1 & 1)) {
i2 = (i1 & 255) >>> 1;
if ((i1 & 255) < 22) {
- i9 = i2;
i4 = 10;
- i7 = 1;
+ i6 = i2;
+ i8 = 1;
} else {
- i9 = i2;
i4 = (i2 + 16 & 240) + -1 | 0;
- i7 = 1;
+ i6 = i2;
+ i8 = 1;
}
} else {
- i9 = 0;
i4 = 10;
- i7 = 0;
+ i6 = 0;
+ i8 = 0;
}
if ((i4 | 0) != (i5 | 0)) {
if ((i4 | 0) == 10) {
i3 = i12 + 1 | 0;
- i2 = HEAP32[i8 >> 2] | 0;
- if (i7) {
+ i2 = HEAP32[i9 >> 2] | 0;
+ if (i8) {
_memcpy(i3 | 0, i2 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0;
_free(i2);
} else {
HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0;
_free(i2);
}
- HEAP8[i12 >> 0] = i9 << 1;
+ HEAP8[i12 >> 0] = i6 << 1;
break;
}
i2 = i4 + 1 | 0;
i3 = _malloc(i2) | 0;
if (!(i4 >>> 0 <= i5 >>> 0 & (i3 | 0) == 0)) {
- if (i7) _memcpy(i3 | 0, i12 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
- i11 = HEAP32[i8 >> 2] | 0;
+ if (i8) _memcpy(i3 | 0, i12 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
+ i11 = HEAP32[i9 >> 2] | 0;
HEAP8[i3 >> 0] = HEAP8[i11 >> 0] | 0;
_free(i11);
}
HEAP32[i12 >> 2] = i2 | 1;
- HEAP32[i6 >> 2] = i9;
- HEAP32[i8 >> 2] = i3;
+ HEAP32[i7 >> 2] = i6;
+ HEAP32[i9 >> 2] = i3;
}
}
} else {
@@ -45494,43 +44695,43 @@ function __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i12, i10) {
if (!(i1 & 1)) {
i2 = (i1 & 255) >>> 1;
if ((i1 & 255) < 22) {
- i8 = i2;
i4 = 10;
- i7 = 1;
+ i7 = i2;
+ i8 = 1;
} else {
- i8 = i2;
i4 = (i2 + 16 & 240) + -1 | 0;
- i7 = 1;
+ i7 = i2;
+ i8 = 1;
}
} else {
- i8 = 0;
i4 = 10;
i7 = 0;
+ i8 = 0;
}
if ((i4 | 0) != (i5 | 0)) {
if ((i4 | 0) == 10) {
i3 = i11 + 1 | 0;
i2 = HEAP32[i9 >> 2] | 0;
- if (i7) {
+ if (i8) {
_memcpy(i3 | 0, i2 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0;
_free(i2);
} else {
HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0;
_free(i2);
}
- HEAP8[i11 >> 0] = i8 << 1;
+ HEAP8[i11 >> 0] = i7 << 1;
break;
}
i2 = i4 + 1 | 0;
i3 = _malloc(i2) | 0;
if (!(i4 >>> 0 <= i5 >>> 0 & (i3 | 0) == 0)) {
- if (i7) _memcpy(i3 | 0, i11 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
+ if (i8) _memcpy(i3 | 0, i11 + 1 | 0, ((i1 & 255) >>> 1) + 1 | 0) | 0; else {
i12 = HEAP32[i9 >> 2] | 0;
HEAP8[i3 >> 0] = HEAP8[i12 >> 0] | 0;
_free(i12);
}
HEAP32[i11 >> 2] = i2 | 1;
- HEAP32[i6 >> 2] = i8;
+ HEAP32[i6 >> 2] = i7;
HEAP32[i9 >> 2] = i3;
}
}
@@ -45720,9 +44921,9 @@ function __ZN4wasm22SExpressionWasmBuilder11parseMemoryERNS_7ElementE(i12, i11)
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i13 = 0;
i13 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i8 = i13 + 8 | 0;
- i9 = i13 + 4 | 0;
- i10 = i13;
+ i10 = i13 + 8 | 0;
+ i8 = i13 + 4 | 0;
+ i9 = i13;
i7 = __ZN4wasm7Element4listEv(i11) | 0;
i7 = _atoi(__ZN4wasm7Element5c_strEv(HEAP32[(HEAP32[i7 >> 2] | 0) + 4 >> 2] | 0) | 0) | 0;
HEAP32[(HEAP32[i12 >> 2] | 0) + 108 >> 2] = i7;
@@ -45739,11 +44940,11 @@ function __ZN4wasm22SExpressionWasmBuilder11parseMemoryERNS_7ElementE(i12, i11)
i5 = __ZN4wasm7ElementixEj(i11, i1) | 0;
i7 = __ZN4wasm7Element4listEv(i5) | 0;
i7 = __ZN4wasm7Element3strEv(HEAP32[HEAP32[i7 >> 2] >> 2] | 0) | 0;
- if ((i7 | 0) != (HEAP32[9185] | 0)) break;
+ if ((i7 | 0) != (HEAP32[9552] | 0)) break;
i2 = __ZN4wasm7Element4listEv(i5) | 0;
i2 = __ZN4wasm7Element5c_strEv(HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] | 0) | 0;
i4 = _malloc(_strlen(i2) | 0) | 0;
- HEAP32[i8 >> 2] = i4;
+ HEAP32[i10 >> 2] = i4;
L10 : while (1) {
i3 = HEAP8[i2 >> 0] | 0;
L12 : do switch (i3 << 24 >> 24) {
@@ -45804,23 +45005,23 @@ function __ZN4wasm22SExpressionWasmBuilder11parseMemoryERNS_7ElementE(i12, i11)
i4 = i4 + 1 | 0;
}
i7 = HEAP32[i12 >> 2] | 0;
- i6 = __ZN4wasm7Element4listEv(i5) | 0;
- i6 = _atoi(__ZN4wasm7Element5c_strEv(HEAP32[(HEAP32[i6 >> 2] | 0) + 4 >> 2] | 0) | 0) | 0;
- HEAP32[i9 >> 2] = i6;
- i5 = HEAP32[i8 >> 2] | 0;
- i4 = i2 - i5 | 0;
- HEAP32[i10 >> 2] = i4;
+ i5 = __ZN4wasm7Element4listEv(i5) | 0;
+ i5 = _atoi(__ZN4wasm7Element5c_strEv(HEAP32[(HEAP32[i5 >> 2] | 0) + 4 >> 2] | 0) | 0) | 0;
+ HEAP32[i8 >> 2] = i5;
+ i6 = HEAP32[i10 >> 2] | 0;
+ i2 = i2 - i6 | 0;
+ HEAP32[i9 >> 2] = i2;
i3 = i7 + 120 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i7 + 124 >> 2] | 0) >>> 0) {
- HEAP32[i2 >> 2] = i6;
- HEAP32[i2 + 4 >> 2] = i5;
- HEAP32[i2 + 8 >> 2] = i4;
- HEAP32[i3 >> 2] = i2 + 12;
- } else __ZNSt3__16vectorIN4wasm6Memory7SegmentENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJiRPciEEEvDpOT_(i7 + 116 | 0, i9, i8, i10);
+ i4 = HEAP32[i3 >> 2] | 0;
+ if (i4 >>> 0 < (HEAP32[i7 + 124 >> 2] | 0) >>> 0) {
+ HEAP32[i4 >> 2] = i5;
+ HEAP32[i4 + 4 >> 2] = i6;
+ HEAP32[i4 + 8 >> 2] = i2;
+ HEAP32[i3 >> 2] = i4 + 12;
+ } else __ZNSt3__16vectorIN4wasm6Memory7SegmentENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJiRPciEEEvDpOT_(i7 + 116 | 0, i8, i10, i9);
i1 = i1 + 1 | 0;
}
- ___assert_fail(17482, 16023, 949, 17508);
+ ___assert_fail(18076, 16606, 941, 18102);
} while (0);
STACKTOP = i13;
return;
@@ -45833,12 +45034,12 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPc
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i12 = 0;
i12 = STACKTOP;
STACKTOP = STACKTOP + 64 | 0;
- i7 = i12 + 56 | 0;
+ i4 = i12 + 56 | 0;
i3 = i12;
i1 = i12 + 48 | 0;
- i4 = i12 + 40 | 0;
- i5 = i12 + 32 | 0;
- i6 = i12 + 24 | 0;
+ i6 = i12 + 40 | 0;
+ i7 = i12 + 32 | 0;
+ i8 = i12 + 24 | 0;
i2 = i12 + 16 | 0;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i10);
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i3, HEAP32[i10 >> 2] | 0);
@@ -45846,73 +45047,73 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPc
L1 : do switch (HEAP32[i3 + 12 >> 2] | 0) {
case 0:
{
- i8 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17parseAfterKeywordERNS3_4FragERPcPKc(i11, i3, i10, i9) | 0;
+ i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17parseAfterKeywordERNS3_4FragERPcPKc(i11, i3, i10, i9) | 0;
break;
}
case 2:
{
- i8 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterIdentERNS3_4FragERPcPKc(i11, i3, i10, i9) | 0;
+ i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterIdentERNS3_4FragERPcPKc(i11, i3, i10, i9) | 0;
break;
}
case 5:
case 4:
case 3:
{
- i8 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseFragERNS3_4FragE(i11, i3) | 0;
+ i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseFragERNS3_4FragE(i11, i3) | 0;
HEAP8[i1 >> 0] = 1;
- HEAP32[i1 + 4 >> 2] = i8;
- HEAP32[i7 >> 2] = HEAP32[i1 >> 2];
- HEAP32[i7 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
- i8 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i11, i7, i10, i9) | 0;
+ HEAP32[i1 + 4 >> 2] = i5;
+ HEAP32[i4 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i4 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i11, i4, i10, i9) | 0;
break;
}
case 6:
{
i1 = HEAP32[i3 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[9295] | 0)) {
- i8 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterParenERPc(i11, i10) | 0;
- HEAP8[i4 >> 0] = 1;
- HEAP32[i4 + 4 >> 2] = i8;
- HEAP32[i7 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i7 + 4 >> 2] = HEAP32[i4 + 4 >> 2];
- i8 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i11, i7, i10, i9) | 0;
+ if ((i1 | 0) == (HEAP32[9663] | 0)) {
+ i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterParenERPc(i11, i10) | 0;
+ HEAP8[i6 >> 0] = 1;
+ HEAP32[i6 + 4 >> 2] = i5;
+ HEAP32[i4 >> 2] = HEAP32[i6 >> 2];
+ HEAP32[i4 + 4 >> 2] = HEAP32[i6 + 4 >> 2];
+ i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i11, i4, i10, i9) | 0;
break L1;
}
- if ((i1 | 0) == (HEAP32[9296] | 0)) {
- i8 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterBraceERPc(i11, i10) | 0;
- HEAP8[i5 >> 0] = 1;
- HEAP32[i5 + 4 >> 2] = i8;
- HEAP32[i7 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i7 + 4 >> 2] = HEAP32[i5 + 4 >> 2];
- i8 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i11, i7, i10, i9) | 0;
+ if ((i1 | 0) == (HEAP32[9664] | 0)) {
+ i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterBraceERPc(i11, i10) | 0;
+ HEAP8[i7 >> 0] = 1;
+ HEAP32[i7 + 4 >> 2] = i5;
+ HEAP32[i4 >> 2] = HEAP32[i7 >> 2];
+ HEAP32[i4 + 4 >> 2] = HEAP32[i7 + 4 >> 2];
+ i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i11, i4, i10, i9) | 0;
break L1;
}
- if ((i1 | 0) == (HEAP32[9297] | 0)) {
- i8 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterCurlyERPc(i11, i10) | 0;
- HEAP8[i6 >> 0] = 1;
- HEAP32[i6 + 4 >> 2] = i8;
- HEAP32[i7 >> 2] = HEAP32[i6 >> 2];
- HEAP32[i7 + 4 >> 2] = HEAP32[i6 + 4 >> 2];
- i8 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i11, i7, i10, i9) | 0;
+ if ((i1 | 0) == (HEAP32[9665] | 0)) {
+ i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterCurlyERPc(i11, i10) | 0;
+ HEAP8[i8 >> 0] = 1;
+ HEAP32[i8 + 4 >> 2] = i5;
+ HEAP32[i4 >> 2] = HEAP32[i8 >> 2];
+ HEAP32[i4 + 4 >> 2] = HEAP32[i8 + 4 >> 2];
+ i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i11, i4, i10, i9) | 0;
break L1;
} else _abort();
break;
}
case 1:
{
- i8 = HEAP32[i3 >> 2] | 0;
+ i5 = HEAP32[i3 >> 2] | 0;
HEAP8[i2 >> 0] = 0;
- HEAP32[i2 + 4 >> 2] = i8;
- HEAP32[i7 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i7 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- i8 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i11, i7, i10, i9) | 0;
+ HEAP32[i2 + 4 >> 2] = i5;
+ HEAP32[i4 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i4 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i11, i4, i10, i9) | 0;
break;
}
default:
_abort();
} while (0);
STACKTOP = i12;
- return i8 | 0;
+ return i5 | 0;
}
function __ZNKSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_bRNS_8ios_baseERjRe(i1, i13, i14, i2, i3, i15, i12) {
@@ -45926,28 +45127,28 @@ function __ZNKSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEE
var i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0;
i20 = STACKTOP;
STACKTOP = STACKTOP + 240 | 0;
- i8 = i20 + 24 | 0;
+ i7 = i20 + 24 | 0;
i10 = i20;
i4 = i20 + 140 | 0;
i19 = i20 + 16 | 0;
- i7 = i20 + 12 | 0;
+ i8 = i20 + 12 | 0;
i16 = i20 + 8 | 0;
i5 = i20 + 136 | 0;
i21 = i20 + 4 | 0;
i9 = i20 + 36 | 0;
HEAP32[i19 >> 2] = i4;
i18 = i19 + 4 | 0;
- HEAP32[i18 >> 2] = 181;
+ HEAP32[i18 >> 2] = 202;
i1 = __ZNKSt3__18ios_base6getlocEv(i3) | 0;
HEAP32[i16 >> 2] = i1;
- i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i16, 38964) | 0;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i16, 40436) | 0;
HEAP8[i5 >> 0] = 0;
HEAP32[i21 >> 2] = HEAP32[i14 >> 2];
i3 = HEAP32[i3 + 4 >> 2] | 0;
- HEAP32[i8 >> 2] = HEAP32[i21 >> 2];
- if (__ZNSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE8__do_getERS4_S4_bRKNS_6localeEjRjRbRKNS_5ctypeIcEERNS_10unique_ptrIcPFvPvEEERPcSM_(i13, i8, i2, i16, i3, i15, i5, i1, i19, i7, i4 + 100 | 0) | 0) {
- FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 32 >> 2] & 7](i1, 32438, 32448, i8) | 0;
- i2 = HEAP32[i7 >> 2] | 0;
+ HEAP32[i7 >> 2] = HEAP32[i21 >> 2];
+ if (__ZNSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE8__do_getERS4_S4_bRKNS_6localeEjRjRbRKNS_5ctypeIcEERNS_10unique_ptrIcPFvPvEEERPcSM_(i13, i7, i2, i16, i3, i15, i5, i1, i19, i8, i4 + 100 | 0) | 0) {
+ FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 32 >> 2] & 7](i1, 33902, 33912, i7) | 0;
+ i2 = HEAP32[i8 >> 2] | 0;
i4 = HEAP32[i19 >> 2] | 0;
i1 = i2 - i4 | 0;
if ((i1 | 0) > 98) {
@@ -45964,12 +45165,12 @@ function __ZNKSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEE
HEAP8[i6 >> 0] = 45;
i1 = i6 + 1 | 0;
}
- i5 = i8 + 10 | 0;
- i6 = i8;
+ i5 = i7 + 10 | 0;
+ i6 = i7;
while (1) {
if (i4 >>> 0 >= i2 >>> 0) break;
i3 = HEAP8[i4 >> 0] | 0;
- i2 = i8;
+ i2 = i7;
while (1) {
if ((i2 | 0) == (i5 | 0)) {
i2 = i5;
@@ -45978,14 +45179,14 @@ function __ZNKSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEE
if ((HEAP8[i2 >> 0] | 0) == i3 << 24 >> 24) break;
i2 = i2 + 1 | 0;
}
- HEAP8[i1 >> 0] = HEAP8[32438 + (i2 - i6) >> 0] | 0;
- i2 = HEAP32[i7 >> 2] | 0;
+ HEAP8[i1 >> 0] = HEAP8[33902 + (i2 - i6) >> 0] | 0;
+ i2 = HEAP32[i8 >> 2] | 0;
i1 = i1 + 1 | 0;
i4 = i4 + 1 | 0;
}
HEAP8[i1 >> 0] = 0;
HEAP32[i10 >> 2] = i12;
- _sscanf(i9, 32449, i10) | 0;
+ _sscanf(i9, 33913, i10) | 0;
if (i11 | 0) _free(i11);
}
i1 = HEAP32[i13 >> 2] | 0;
@@ -45999,17 +45200,17 @@ function __ZNKSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEE
break;
}
} else i1 = 0; while (0);
- i2 = (i1 | 0) == 0;
- i1 = HEAP32[i14 >> 2] | 0;
- do if (i1) {
- if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) {
+ i1 = (i1 | 0) == 0;
+ i2 = HEAP32[i14 >> 2] | 0;
+ do if (i2) {
+ if ((HEAP32[i2 + 12 >> 2] | 0) == (HEAP32[i2 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) == -1 : 0) {
HEAP32[i14 >> 2] = 0;
i17 = 27;
break;
}
- if (!i2) i17 = 28;
+ if (!i1) i17 = 28;
} else i17 = 27; while (0);
- if ((i17 | 0) == 27 ? i2 : 0) i17 = 28;
+ if ((i17 | 0) == 27 ? i1 : 0) i17 = 28;
if ((i17 | 0) == 28) HEAP32[i15 >> 2] = HEAP32[i15 >> 2] | 2;
i2 = HEAP32[i13 >> 2] | 0;
__ZNSt3__114__shared_count16__release_sharedEv(HEAP32[i16 >> 2] | 0) | 0;
@@ -46020,87 +45221,19 @@ function __ZNKSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEE
return i2 | 0;
}
-function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner17visitCallIndirectEPNS_12CallIndirectE(i5, i13, i10) {
- i5 = i5 | 0;
- i13 = i13 | 0;
- i10 = i10 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0, i12 = 0, i14 = 0;
- i14 = STACKTOP;
- STACKTOP = STACKTOP + 96 | 0;
- i8 = i14 + 84 | 0;
- i1 = i14 + 40 | 0;
- i12 = i14 + 80 | 0;
- i9 = i14 + 68 | 0;
- i11 = i14 + 16 | 0;
- i6 = i14;
- i7 = i14 + 64 | 0;
- __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i1, i13, HEAP32[i10 + 24 >> 2] | 0);
- if (!(HEAP32[i1 + 16 >> 2] | 0)) {
- i3 = __ZN4wasm7Literal6geti32Ev(i1) | 0;
- i4 = i13 + 4 | 0;
- i1 = HEAP32[i4 >> 2] | 0;
- i2 = HEAP32[i1 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i2 + 100 >> 2] | 0) - (HEAP32[i2 + 96 >> 2] | 0) >> 2 >>> 0) {
- i2 = HEAP32[i1 + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i2, 19738);
- i2 = HEAP32[HEAP32[i4 >> 2] >> 2] | 0;
- }
- i1 = HEAP32[(HEAP32[i2 + 96 >> 2] | 0) + (i3 << 2) >> 2] | 0;
- HEAP32[i12 >> 2] = i1;
- i12 = __ZNSt3__13mapIN4wasm4NameEPNS1_8FunctionENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i2 + 84 | 0, i12) | 0;
- i12 = HEAP32[(HEAP32[i12 >> 2] | 0) + 32 >> 2] | 0;
- if (i12 | 0 ? (i12 | 0) != (HEAP32[HEAP32[i10 + 20 >> 2] >> 2] | 0) : 0) {
- i12 = HEAP32[(HEAP32[i4 >> 2] | 0) + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i12 >> 2] | 0) + 20 >> 2] & 127](i12, 19761);
- }
- HEAP32[i9 >> 2] = 0;
- HEAP32[i9 + 4 >> 2] = 0;
- HEAP32[i9 + 8 >> 2] = 0;
- __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner17generateArgumentsERKNS4_IPNS_10ExpressionENS6_ISC_EEEES9_(i11, i13, i10 + 8 | 0, i9);
- if (!(HEAP32[i11 + 16 >> 2] | 0)) {
- i13 = HEAP32[i4 >> 2] | 0;
- HEAP32[i7 >> 2] = i1;
- HEAP32[i8 >> 2] = HEAP32[i7 >> 2];
- __ZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEE(i6, i13, i8, i9);
- HEAP32[i5 >> 2] = HEAP32[i6 >> 2];
- HEAP32[i5 + 4 >> 2] = HEAP32[i6 + 4 >> 2];
- HEAP32[i5 + 8 >> 2] = HEAP32[i6 + 8 >> 2];
- HEAP32[i5 + 12 >> 2] = HEAP32[i6 + 12 >> 2];
- HEAP32[i5 + 16 >> 2] = 0;
- } else {
- HEAP32[i5 >> 2] = HEAP32[i11 >> 2];
- HEAP32[i5 + 4 >> 2] = HEAP32[i11 + 4 >> 2];
- HEAP32[i5 + 8 >> 2] = HEAP32[i11 + 8 >> 2];
- HEAP32[i5 + 12 >> 2] = HEAP32[i11 + 12 >> 2];
- HEAP32[i5 + 16 >> 2] = HEAP32[i11 + 16 >> 2];
- HEAP32[i5 + 20 >> 2] = HEAP32[i11 + 20 >> 2];
- }
- __ZNSt3__113__vector_baseIN4wasm7LiteralENS_9allocatorIS2_EEED2Ev(i9);
- } else {
- HEAP32[i5 >> 2] = HEAP32[i1 >> 2];
- HEAP32[i5 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
- HEAP32[i5 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
- HEAP32[i5 + 12 >> 2] = HEAP32[i1 + 12 >> 2];
- HEAP32[i5 + 16 >> 2] = HEAP32[i1 + 16 >> 2];
- HEAP32[i5 + 20 >> 2] = HEAP32[i1 + 20 >> 2];
- }
- STACKTOP = i14;
- return;
-}
-
function __ZN4wasm15Asm2WasmBuilder12checkLiteralEN6cashew3RefE(i3, i2, i4) {
i3 = i3 | 0;
i2 = i2 | 0;
i4 = i4 | 0;
var d1 = 0.0;
- do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 0) | 0, 36988) | 0) {
+ do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 0) | 0, 38460) | 0) {
i4 = __ZN6cashew3RefixEj(i4, 1) | 0;
i4 = __ZN6cashew5Value10getIntegerEv(HEAP32[i4 >> 2] | 0) | 0;
HEAP32[i3 >> 2] = 1;
HEAP32[i3 + 8 >> 2] = i4;
} else {
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 0) | 0, 37024) | 0) {
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 1) | 0, 37056) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 0) | 0, 36988) | 0 : 0) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 0) | 0, 38496) | 0) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 1) | 0, 38528) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 0) | 0, 38460) | 0 : 0) {
i4 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 1) | 0;
i4 = __ZN6cashew5Value9getNumberEv(HEAP32[i4 >> 2] | 0) | 0;
d1 = +HEAPF64[i4 >> 3];
@@ -46108,7 +45241,7 @@ function __ZN4wasm15Asm2WasmBuilder12checkLiteralEN6cashew3RefE(i3, i2, i4) {
HEAPF64[i3 + 8 >> 3] = d1;
break;
}
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 1) | 0, 37060) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 0) | 0, 36988) | 0 : 0) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 1) | 0, 38532) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 0) | 0, 38460) | 0 : 0) {
i2 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 1) | 0;
i2 = __ZN6cashew5Value9getNumberEv(HEAP32[i2 >> 2] | 0) | 0;
d1 = -+HEAPF64[i2 >> 3];
@@ -46121,9 +45254,9 @@ function __ZN4wasm15Asm2WasmBuilder12checkLiteralEN6cashew3RefE(i3, i2, i4) {
HEAP32[i3 >> 2] = 1;
HEAP32[i3 + 8 >> 2] = ~~d1 >>> 0;
break;
- } else ___assert_fail(21432, 12455, 379, 21477);
+ } else ___assert_fail(22020, 13029, 379, 22065);
}
- if (((__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 1) | 0, 37056) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 0) | 0, 37024) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 1) | 0, 37060) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 2) | 0, 0) | 0, 36988) | 0 : 0) {
+ if (((__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 1) | 0, 38528) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 0) | 0, 38496) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 1) | 0, 38532) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 2) | 0, 0) | 0, 38460) | 0 : 0) {
i4 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 2) | 0, 1) | 0;
i4 = __ZN6cashew5Value9getNumberEv(HEAP32[i4 >> 2] | 0) | 0;
d1 = -+HEAPF64[i4 >> 3];
@@ -46131,7 +45264,7 @@ function __ZN4wasm15Asm2WasmBuilder12checkLiteralEN6cashew3RefE(i3, i2, i4) {
HEAPF64[i3 + 8 >> 3] = d1;
break;
}
- if (((__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 1) | 0, 37060) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 0) | 0, 37024) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 1) | 0, 37056) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 2) | 0, 0) | 0, 36988) | 0 : 0) {
+ if (((__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 1) | 0, 38532) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 0) | 0, 38496) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 1) | 0, 38528) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 2) | 0, 0) | 0, 38460) | 0 : 0) {
i4 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 2) | 0, 1) | 0;
i4 = __ZN6cashew5Value9getNumberEv(HEAP32[i4 >> 2] | 0) | 0;
d1 = -+HEAPF64[i4 >> 3];
@@ -46141,11 +45274,81 @@ function __ZN4wasm15Asm2WasmBuilder12checkLiteralEN6cashew3RefE(i3, i2, i4) {
}
}
HEAP32[i3 >> 2] = 0;
- HEAPF64[i3 + 8 >> 3] = 0.0;
+ i4 = i3 + 8 | 0;
+ HEAP32[i4 >> 2] = 0;
+ HEAP32[i4 + 4 >> 2] = 0;
} while (0);
return;
}
+function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner17visitCallIndirectEPNS_12CallIndirectE(i8, i13, i10) {
+ i8 = i8 | 0;
+ i13 = i13 | 0;
+ i10 = i10 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i11 = 0, i12 = 0, i14 = 0;
+ i14 = STACKTOP;
+ STACKTOP = STACKTOP + 96 | 0;
+ i5 = i14 + 84 | 0;
+ i1 = i14 + 40 | 0;
+ i12 = i14 + 80 | 0;
+ i9 = i14 + 68 | 0;
+ i11 = i14 + 16 | 0;
+ i6 = i14;
+ i7 = i14 + 64 | 0;
+ __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i1, i13, HEAP32[i10 + 24 >> 2] | 0);
+ if (!(HEAP32[i1 + 16 >> 2] | 0)) {
+ i3 = __ZN4wasm7Literal6geti32Ev(i1) | 0;
+ i4 = i13 + 4 | 0;
+ i2 = HEAP32[i4 >> 2] | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
+ if (i3 >>> 0 < (HEAP32[i1 + 100 >> 2] | 0) - (HEAP32[i1 + 96 >> 2] | 0) >> 2 >>> 0) i2 = i1; else {
+ i2 = HEAP32[i2 + 12 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i2, 20271);
+ i2 = HEAP32[HEAP32[i4 >> 2] >> 2] | 0;
+ }
+ i1 = HEAP32[(HEAP32[i2 + 96 >> 2] | 0) + (i3 << 2) >> 2] | 0;
+ HEAP32[i12 >> 2] = i1;
+ i12 = __ZNSt3__13mapIN4wasm4NameEPNS1_8FunctionENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i2 + 84 | 0, i12) | 0;
+ i12 = HEAP32[(HEAP32[i12 >> 2] | 0) + 32 >> 2] | 0;
+ if (i12 | 0 ? (i12 | 0) != (HEAP32[HEAP32[i10 + 20 >> 2] >> 2] | 0) : 0) {
+ i12 = HEAP32[(HEAP32[i4 >> 2] | 0) + 12 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i12 >> 2] | 0) + 20 >> 2] & 127](i12, 20294);
+ }
+ HEAP32[i9 >> 2] = 0;
+ HEAP32[i9 + 4 >> 2] = 0;
+ HEAP32[i9 + 8 >> 2] = 0;
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner17generateArgumentsERKNS4_IPNS_10ExpressionENS6_ISC_EEEES9_(i11, i13, i10 + 8 | 0, i9);
+ if (!(HEAP32[i11 + 16 >> 2] | 0)) {
+ i13 = HEAP32[i4 >> 2] | 0;
+ HEAP32[i7 >> 2] = i1;
+ HEAP32[i5 >> 2] = HEAP32[i7 >> 2];
+ __ZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEE(i6, i13, i5, i9);
+ HEAP32[i8 >> 2] = HEAP32[i6 >> 2];
+ HEAP32[i8 + 4 >> 2] = HEAP32[i6 + 4 >> 2];
+ HEAP32[i8 + 8 >> 2] = HEAP32[i6 + 8 >> 2];
+ HEAP32[i8 + 12 >> 2] = HEAP32[i6 + 12 >> 2];
+ HEAP32[i8 + 16 >> 2] = 0;
+ } else {
+ HEAP32[i8 >> 2] = HEAP32[i11 >> 2];
+ HEAP32[i8 + 4 >> 2] = HEAP32[i11 + 4 >> 2];
+ HEAP32[i8 + 8 >> 2] = HEAP32[i11 + 8 >> 2];
+ HEAP32[i8 + 12 >> 2] = HEAP32[i11 + 12 >> 2];
+ HEAP32[i8 + 16 >> 2] = HEAP32[i11 + 16 >> 2];
+ HEAP32[i8 + 20 >> 2] = HEAP32[i11 + 20 >> 2];
+ }
+ __ZNSt3__113__vector_baseIN4wasm7LiteralENS_9allocatorIS2_EEED2Ev(i9);
+ } else {
+ HEAP32[i8 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i8 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i8 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ HEAP32[i8 + 12 >> 2] = HEAP32[i1 + 12 >> 2];
+ HEAP32[i8 + 16 >> 2] = HEAP32[i1 + 16 >> 2];
+ HEAP32[i8 + 20 >> 2] = HEAP32[i1 + 20 >> 2];
+ }
+ STACKTOP = i14;
+ return;
+}
+
function __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE7seekoffExNS_8ios_base7seekdirEj(i11, i12, i5, i6, i4, i10) {
i11 = i11 | 0;
i12 = i12 | 0;
@@ -46154,15 +45357,15 @@ function __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE7see
i4 = i4 | 0;
i10 = i10 | 0;
var i1 = 0, i2 = 0, i3 = 0, i7 = 0, i8 = 0, i9 = 0;
- i2 = i12 + 44 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- i9 = i12 + 24 | 0;
- i8 = HEAP32[i9 >> 2] | 0;
- i3 = i8;
- if (i1 >>> 0 < i8 >>> 0) {
- HEAP32[i2 >> 2] = i8;
+ i1 = i12 + 44 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ i8 = i12 + 24 | 0;
+ i9 = HEAP32[i8 >> 2] | 0;
+ i3 = i9;
+ if (i2 >>> 0 < i9 >>> 0) {
+ HEAP32[i1 >> 2] = i9;
i7 = i3;
- } else i7 = i1;
+ } else i7 = i2;
i1 = i10 & 24;
L4 : do if (!i1) {
i12 = i11;
@@ -46239,7 +45442,7 @@ function __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE7see
HEAP32[i12 + 4 >> 2] = -1;
break;
}
- if ((i10 & 16 | 0) != 0 & (i8 | 0) == 0) {
+ if ((i10 & 16 | 0) != 0 & (i9 | 0) == 0) {
i12 = i11;
HEAP32[i12 >> 2] = 0;
HEAP32[i12 + 4 >> 2] = 0;
@@ -46253,7 +45456,7 @@ function __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE7see
HEAP32[i12 + 12 >> 2] = (HEAP32[i12 + 8 >> 2] | 0) + i2;
HEAP32[i12 + 16 >> 2] = i7;
}
- if (i10 & 16 | 0) HEAP32[i9 >> 2] = (HEAP32[i12 + 20 >> 2] | 0) + i2;
+ if (i10 & 16 | 0) HEAP32[i8 >> 2] = (HEAP32[i12 + 20 >> 2] | 0) + i2;
i12 = i11;
HEAP32[i12 >> 2] = 0;
HEAP32[i12 + 4 >> 2] = 0;
@@ -46273,15 +45476,15 @@ function __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE7see
return;
}
-function __ZNKSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_bRNS_8ios_baseERjRNS_12basic_stringIwS3_NS_9allocatorIwEEEE(i1, i9, i10, i4, i2, i11, i6) {
+function __ZNKSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_bRNS_8ios_baseERjRNS_12basic_stringIwS3_NS_9allocatorIwEEEE(i1, i10, i11, i4, i2, i12, i6) {
i1 = i1 | 0;
- i9 = i9 | 0;
i10 = i10 | 0;
+ i11 = i11 | 0;
i4 = i4 | 0;
i2 = i2 | 0;
- i11 = i11 | 0;
+ i12 = i12 | 0;
i6 = i6 | 0;
- var i3 = 0, i5 = 0, i7 = 0, i8 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0;
+ var i3 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0;
i16 = STACKTOP;
STACKTOP = STACKTOP + 432 | 0;
i19 = i16 + 424 | 0;
@@ -46289,45 +45492,45 @@ function __ZNKSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEE
i15 = i16 + 16 | 0;
i5 = i16 + 8 | 0;
i18 = i16 + 4 | 0;
- i1 = i16 + 428 | 0;
+ i3 = i16 + 428 | 0;
i7 = i16;
HEAP32[i15 >> 2] = i17;
i14 = i15 + 4 | 0;
- HEAP32[i14 >> 2] = 181;
- i12 = __ZNKSt3__18ios_base6getlocEv(i2) | 0;
- HEAP32[i18 >> 2] = i12;
- i3 = __ZNKSt3__16locale9use_facetERNS0_2idE(i18, 38996) | 0;
- HEAP8[i1 >> 0] = 0;
- i8 = HEAP32[i10 >> 2] | 0;
+ HEAP32[i14 >> 2] = 202;
+ i9 = __ZNKSt3__18ios_base6getlocEv(i2) | 0;
+ HEAP32[i18 >> 2] = i9;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i18, 40468) | 0;
+ HEAP8[i3 >> 0] = 0;
+ i8 = HEAP32[i11 >> 2] | 0;
HEAP32[i7 >> 2] = i8;
i2 = HEAP32[i2 + 4 >> 2] | 0;
HEAP32[i19 >> 2] = HEAP32[i7 >> 2];
i7 = i8;
- if (__ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE8__do_getERS4_S4_bRKNS_6localeEjRjRbRKNS_5ctypeIwEERNS_10unique_ptrIwPFvPvEEERPwSM_(i9, i19, i4, i18, i2, i11, i1, i3, i15, i5, i17 + 400 | 0) | 0) {
+ if (__ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE8__do_getERS4_S4_bRKNS_6localeEjRjRbRKNS_5ctypeIwEERNS_10unique_ptrIwPFvPvEEERPwSM_(i10, i19, i4, i18, i2, i12, i3, i1, i15, i5, i17 + 400 | 0) | 0) {
if (!(HEAP8[i6 >> 0] & 1)) HEAP8[i6 >> 0] = 0; else HEAP32[HEAP32[i6 + 8 >> 2] >> 2] = 0;
HEAP32[i6 + 4 >> 2] = 0;
- if (HEAP8[i1 >> 0] | 0) __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9push_backEw(i6, FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 44 >> 2] & 31](i3, 45) | 0);
- i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 44 >> 2] & 31](i3, 48) | 0;
- i3 = HEAP32[i5 >> 2] | 0;
- i2 = i3 + -4 | 0;
+ if (HEAP8[i3 >> 0] | 0) __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9push_backEw(i6, FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 44 >> 2] & 31](i1, 45) | 0);
+ i3 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 44 >> 2] & 31](i1, 48) | 0;
+ i4 = HEAP32[i5 >> 2] | 0;
+ i2 = i4 + -4 | 0;
i1 = HEAP32[i15 >> 2] | 0;
while (1) {
if (i1 >>> 0 >= i2 >>> 0) break;
- if ((HEAP32[i1 >> 2] | 0) != (i4 | 0)) break;
+ if ((HEAP32[i1 >> 2] | 0) != (i3 | 0)) break;
i1 = i1 + 4 | 0;
}
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6appendIPwEENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueERS5_E4typeES9_S9_(i6, i1, i3) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6appendIPwEENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueERS5_E4typeES9_S9_(i6, i1, i4) | 0;
}
- i1 = HEAP32[i9 >> 2] | 0;
+ i1 = HEAP32[i10 >> 2] | 0;
do if (i1) {
i2 = HEAP32[i1 + 12 >> 2] | 0;
if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0;
if ((i1 | 0) == -1) {
- HEAP32[i9 >> 2] = 0;
+ HEAP32[i10 >> 2] = 0;
i2 = 1;
break;
} else {
- i2 = (HEAP32[i9 >> 2] | 0) == 0;
+ i2 = (HEAP32[i10 >> 2] | 0) == 0;
break;
}
} else i2 = 1; while (0);
@@ -46338,15 +45541,15 @@ function __ZNKSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEE
i13 = 27;
break;
} else {
- HEAP32[i10 >> 2] = 0;
+ HEAP32[i11 >> 2] = 0;
i13 = 25;
break;
}
} else i13 = 25; while (0);
if ((i13 | 0) == 25 ? i2 : 0) i13 = 27;
- if ((i13 | 0) == 27) HEAP32[i11 >> 2] = HEAP32[i11 >> 2] | 2;
- i2 = HEAP32[i9 >> 2] | 0;
- __ZNSt3__114__shared_count16__release_sharedEv(i12) | 0;
+ if ((i13 | 0) == 27) HEAP32[i12 >> 2] = HEAP32[i12 >> 2] | 2;
+ i2 = HEAP32[i10 >> 2] | 0;
+ __ZNSt3__114__shared_count16__release_sharedEv(i9) | 0;
i1 = HEAP32[i15 >> 2] | 0;
HEAP32[i15 >> 2] = 0;
if (i1 | 0) FUNCTION_TABLE_vi[HEAP32[i14 >> 2] & 255](i1);
@@ -46360,24 +45563,24 @@ function __ZN4wasm22SExpressionWasmBuilder20preParseFunctionTypeERNS_7ElementE(i
var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i5 = i8 + 4 | 0;
- i6 = i8;
+ i6 = i8 + 4 | 0;
+ i5 = i8;
i1 = __ZN4wasm7Element4listEv(i4) | 0;
i1 = __ZN4wasm7Element3strEv(HEAP32[HEAP32[i1 >> 2] >> 2] | 0) | 0;
- if ((i1 | 0) != (HEAP32[9190] | 0)) {
- if ((i1 | 0) == (HEAP32[9181] | 0)) {
- HEAP32[i5 >> 2] = 0;
+ if ((i1 | 0) != (HEAP32[9557] | 0)) {
+ if ((i1 | 0) == (HEAP32[9548] | 0)) {
+ HEAP32[i6 >> 2] = 0;
i3 = __ZN4wasm7Element4listEv(i4) | 0;
if (!(HEAP8[HEAP32[(HEAP32[i3 >> 2] | 0) + 4 >> 2] >> 0] | 0)) {
i1 = __ZN4wasm7Element4listEv(i4) | 0;
i1 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] | 0) | 0;
- HEAP32[i5 >> 2] = i1;
+ HEAP32[i6 >> 2] = i1;
i1 = i7 + 32 | 0;
i2 = 2;
} else {
i1 = i7 + 32 | 0;
i2 = __ZN4wasm4Name7fromIntEj(HEAP32[i1 >> 2] | 0) | 0;
- HEAP32[i5 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i2 = 1;
}
HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 1;
@@ -46389,35 +45592,35 @@ function __ZN4wasm22SExpressionWasmBuilder20preParseFunctionTypeERNS_7ElementE(i
i1 = __ZN4wasm7ElementixEj(i4, i2) | 0;
i3 = __ZN4wasm7Element4listEv(i1) | 0;
i3 = __ZN4wasm7Element3strEv(HEAP32[HEAP32[i3 >> 2] >> 2] | 0) | 0;
- if ((i3 | 0) == (HEAP32[9183] | 0)) {
+ if ((i3 | 0) == (HEAP32[9550] | 0)) {
i2 = 10;
break;
}
- if ((i3 | 0) == (HEAP32[9190] | 0)) {
+ if ((i3 | 0) == (HEAP32[9557] | 0)) {
i2 = 12;
break;
} else i2 = i2 + 1 | 0;
}
if ((i2 | 0) == 10) {
- i6 = __ZN4wasm7Element4listEv(i1) | 0;
- i6 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i7, __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i6 >> 2] | 0) + 4 >> 2] | 0) | 0, 0, 0) | 0;
- i7 = __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i7 + 36 | 0, i5) | 0;
- HEAP32[i7 >> 2] = i6;
+ i5 = __ZN4wasm7Element4listEv(i1) | 0;
+ i5 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i7, __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i5 >> 2] | 0) + 4 >> 2] | 0) | 0, 0, 0) | 0;
+ i7 = __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i7 + 40 | 0, i6) | 0;
+ HEAP32[i7 >> 2] = i5;
} else if ((i2 | 0) == 12) {
i1 = __ZN4wasm7Element4listEv(i1) | 0;
i1 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] | 0) | 0;
- HEAP32[i6 >> 2] = i1;
+ HEAP32[i5 >> 2] = i1;
i1 = HEAP32[i7 >> 2] | 0;
- if ((__ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_(i1 + 48 | 0, i6) | 0) == (i1 + 52 | 0)) {
+ if ((__ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_(i1 + 48 | 0, i5) | 0) == (i1 + 52 | 0)) {
__ZNKSt3__18functionIFvvEEclEv(i7 + 8 | 0);
i1 = HEAP32[i7 >> 2] | 0;
}
- i5 = __ZNSt3__13mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i1 + 48 | 0, i6) | 0;
+ i5 = __ZNSt3__13mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i1 + 48 | 0, i5) | 0;
i5 = HEAP32[(HEAP32[i5 >> 2] | 0) + 4 >> 2] | 0;
- i7 = __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i7 + 36 | 0, i6) | 0;
+ i7 = __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i7 + 40 | 0, i6) | 0;
HEAP32[i7 >> 2] = i5;
} else if ((i2 | 0) == 15) {
- i7 = __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i7 + 36 | 0, i5) | 0;
+ i7 = __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i7 + 40 | 0, i6) | 0;
HEAP32[i7 >> 2] = 0;
}
}
@@ -46429,60 +45632,108 @@ function __ZN4wasm22SExpressionWasmBuilder20preParseFunctionTypeERNS_7ElementE(i
function __ZNKSt3__120__time_get_c_storageIcE8__monthsEv(i1) {
i1 = i1 | 0;
var i2 = 0;
- if ((HEAP8[35968] | 0) == 0 ? ___cxa_guard_acquire(35968) | 0 : 0) {
- if ((HEAP8[35976] | 0) == 0 ? ___cxa_guard_acquire(35976) | 0 : 0) {
- i2 = 39208;
+ if ((HEAP8[37432] | 0) == 0 ? ___cxa_guard_acquire(37432) | 0 : 0) {
+ if ((HEAP8[37440] | 0) == 0 ? ___cxa_guard_acquire(37440) | 0 : 0) {
+ i1 = 40680;
do {
- i1 = 0;
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = i2 + 12 | 0;
- } while ((i2 | 0) != 39496);
- ___cxa_atexit(174, 0, ___dso_handle | 0) | 0;
- ___cxa_guard_release(35976);
- }
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39208, 31761) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39220, 31769) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39232, 31778) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39244, 31784) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39256, 31790) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39268, 31794) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39280, 31799) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39292, 31804) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39304, 31811) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39316, 31821) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39328, 31829) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39340, 31838) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39352, 31847) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39364, 31851) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39376, 31855) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39388, 31859) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39400, 31790) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39412, 31863) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39424, 31867) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39436, 31871) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39448, 31875) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39460, 31879) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39472, 31883) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39484, 31887) | 0;
- HEAP32[9874] = 39208;
- ___cxa_guard_release(35968);
- }
- return HEAP32[9874] | 0;
-}
-
-function __ZNKSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_bRNS_8ios_baseERjRNS_12basic_stringIcS3_NS_9allocatorIcEEEE(i1, i9, i10, i4, i2, i11, i6) {
+ i1 = i1 + 12 | 0;
+ } while ((i1 | 0) != 40968);
+ ___cxa_atexit(195, 0, ___dso_handle | 0) | 0;
+ ___cxa_guard_release(37440);
+ }
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40680, 33225) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40692, 33233) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40704, 33242) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40716, 33248) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40728, 33254) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40740, 33258) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40752, 33263) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40764, 33268) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40776, 33275) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40788, 33285) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40800, 33293) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40812, 33302) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40824, 33311) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40836, 33315) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40848, 33319) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40860, 33323) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40872, 33254) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40884, 33327) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40896, 33331) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40908, 33335) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40920, 33339) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40932, 33343) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40944, 33347) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40956, 33351) | 0;
+ HEAP32[10242] = 40680;
+ ___cxa_guard_release(37432);
+ }
+ return HEAP32[10242] | 0;
+}
+
+function __ZNKSt3__120__time_get_c_storageIwE8__monthsEv(i1) {
+ i1 = i1 | 0;
+ var i2 = 0;
+ if ((HEAP8[37512] | 0) == 0 ? ___cxa_guard_acquire(37512) | 0 : 0) {
+ if ((HEAP8[37520] | 0) == 0 ? ___cxa_guard_acquire(37520) | 0 : 0) {
+ i1 = 41492;
+ do {
+ i2 = 0;
+ while (1) {
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
+ }
+ i1 = i1 + 12 | 0;
+ } while ((i1 | 0) != 41780);
+ ___cxa_atexit(199, 0, ___dso_handle | 0) | 0;
+ ___cxa_guard_release(37520);
+ }
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41492, 9752) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41504, 9784) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41516, 9820) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41528, 9844) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41540, 9868) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41552, 9884) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41564, 9904) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41576, 9924) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41588, 9952) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41600, 9992) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41612, 10024) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41624, 10060) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41636, 10096) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41648, 10112) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41660, 10128) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41672, 10144) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41684, 9868) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41696, 10160) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41708, 10176) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41720, 10192) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41732, 10208) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41744, 10224) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41756, 10240) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41768, 10256) | 0;
+ HEAP32[10445] = 41492;
+ ___cxa_guard_release(37512);
+ }
+ return HEAP32[10445] | 0;
+}
+
+function __ZNKSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_bRNS_8ios_baseERjRNS_12basic_stringIcS3_NS_9allocatorIcEEEE(i1, i10, i11, i4, i2, i12, i6) {
i1 = i1 | 0;
- i9 = i9 | 0;
i10 = i10 | 0;
+ i11 = i11 | 0;
i4 = i4 | 0;
i2 = i2 | 0;
- i11 = i11 | 0;
+ i12 = i12 | 0;
i6 = i6 | 0;
- var i3 = 0, i5 = 0, i7 = 0, i8 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0;
+ var i3 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0;
i16 = STACKTOP;
STACKTOP = STACKTOP + 144 | 0;
i19 = i16 + 24 | 0;
@@ -46490,21 +45741,21 @@ function __ZNKSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEE
i15 = i16 + 16 | 0;
i5 = i16 + 8 | 0;
i18 = i16 + 4 | 0;
- i1 = i16 + 28 | 0;
+ i3 = i16 + 28 | 0;
i7 = i16;
HEAP32[i15 >> 2] = i17;
i14 = i15 + 4 | 0;
- HEAP32[i14 >> 2] = 181;
- i12 = __ZNKSt3__18ios_base6getlocEv(i2) | 0;
- HEAP32[i18 >> 2] = i12;
- i3 = __ZNKSt3__16locale9use_facetERNS0_2idE(i18, 38964) | 0;
- HEAP8[i1 >> 0] = 0;
- i8 = HEAP32[i10 >> 2] | 0;
+ HEAP32[i14 >> 2] = 202;
+ i9 = __ZNKSt3__18ios_base6getlocEv(i2) | 0;
+ HEAP32[i18 >> 2] = i9;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i18, 40436) | 0;
+ HEAP8[i3 >> 0] = 0;
+ i8 = HEAP32[i11 >> 2] | 0;
HEAP32[i7 >> 2] = i8;
i2 = HEAP32[i2 + 4 >> 2] | 0;
HEAP32[i19 >> 2] = HEAP32[i7 >> 2];
i7 = i8;
- if (__ZNSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE8__do_getERS4_S4_bRKNS_6localeEjRjRbRKNS_5ctypeIcEERNS_10unique_ptrIcPFvPvEEERPcSM_(i9, i19, i4, i18, i2, i11, i1, i3, i15, i5, i17 + 100 | 0) | 0) {
+ if (__ZNSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE8__do_getERS4_S4_bRKNS_6localeEjRjRbRKNS_5ctypeIcEERNS_10unique_ptrIcPFvPvEEERPcSM_(i10, i19, i4, i18, i2, i12, i3, i1, i15, i5, i17 + 100 | 0) | 0) {
if (!(HEAP8[i6 >> 0] & 1)) {
HEAP8[i6 + 1 >> 0] = 0;
HEAP8[i6 >> 0] = 0;
@@ -46512,42 +45763,42 @@ function __ZNKSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEE
HEAP8[HEAP32[i6 + 8 >> 2] >> 0] = 0;
HEAP32[i6 + 4 >> 2] = 0;
}
- if (HEAP8[i1 >> 0] | 0) __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i6, FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 31](i3, 45) | 0);
- i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 31](i3, 48) | 0;
- i3 = HEAP32[i5 >> 2] | 0;
- i2 = i3 + -1 | 0;
+ if (HEAP8[i3 >> 0] | 0) __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i6, FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 45) | 0);
+ i3 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 48) | 0;
+ i4 = HEAP32[i5 >> 2] | 0;
+ i2 = i4 + -1 | 0;
i1 = HEAP32[i15 >> 2] | 0;
while (1) {
if (i1 >>> 0 >= i2 >>> 0) break;
- if ((HEAP8[i1 >> 0] | 0) != i4 << 24 >> 24) break;
+ if ((HEAP8[i1 >> 0] | 0) != i3 << 24 >> 24) break;
i1 = i1 + 1 | 0;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendIPcEENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueERS5_E4typeES9_S9_(i6, i1, i3) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendIPcEENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueERS5_E4typeES9_S9_(i6, i1, i4) | 0;
}
- i1 = HEAP32[i9 >> 2] | 0;
+ i1 = HEAP32[i10 >> 2] | 0;
do if (i1) {
if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) {
- HEAP32[i9 >> 2] = 0;
+ HEAP32[i10 >> 2] = 0;
i1 = 0;
break;
} else {
- i1 = HEAP32[i9 >> 2] | 0;
+ i1 = HEAP32[i10 >> 2] | 0;
break;
}
} else i1 = 0; while (0);
i1 = (i1 | 0) == 0;
do if (i8) {
if ((HEAP32[i7 + 12 >> 2] | 0) == (HEAP32[i7 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i8 >> 2] | 0) + 36 >> 2] & 127](i7) | 0) == -1 : 0) {
- HEAP32[i10 >> 2] = 0;
+ HEAP32[i11 >> 2] = 0;
i13 = 22;
break;
}
if (!i1) i13 = 23;
} else i13 = 22; while (0);
if ((i13 | 0) == 22 ? i1 : 0) i13 = 23;
- if ((i13 | 0) == 23) HEAP32[i11 >> 2] = HEAP32[i11 >> 2] | 2;
- i2 = HEAP32[i9 >> 2] | 0;
- __ZNSt3__114__shared_count16__release_sharedEv(i12) | 0;
+ if ((i13 | 0) == 23) HEAP32[i12 >> 2] = HEAP32[i12 >> 2] | 2;
+ i2 = HEAP32[i10 >> 2] | 0;
+ __ZNSt3__114__shared_count16__release_sharedEv(i9) | 0;
i1 = HEAP32[i15 >> 2] | 0;
HEAP32[i15 >> 2] = 0;
if (i1 | 0) FUNCTION_TABLE_vi[HEAP32[i14 >> 2] & 255](i1);
@@ -46555,157 +45806,6 @@ function __ZNKSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEE
return i2 | 0;
}
-function __ZNKSt3__120__time_get_c_storageIwE8__monthsEv(i1) {
- i1 = i1 | 0;
- var i2 = 0;
- if ((HEAP8[36048] | 0) == 0 ? ___cxa_guard_acquire(36048) | 0 : 0) {
- if ((HEAP8[36056] | 0) == 0 ? ___cxa_guard_acquire(36056) | 0 : 0) {
- i2 = 40020;
- do {
- i1 = 0;
- while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
- }
- i2 = i2 + 12 | 0;
- } while ((i2 | 0) != 40308);
- ___cxa_atexit(178, 0, ___dso_handle | 0) | 0;
- ___cxa_guard_release(36056);
- }
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40020, 9184) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40032, 9216) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40044, 9252) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40056, 9276) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40068, 9300) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40080, 9316) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40092, 9336) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40104, 9356) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40116, 9384) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40128, 9424) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40140, 9456) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40152, 9492) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40164, 9528) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40176, 9544) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40188, 9560) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40200, 9576) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40212, 9300) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40224, 9592) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40236, 9608) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40248, 9624) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40260, 9640) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40272, 9656) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40284, 9672) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40296, 9688) | 0;
- HEAP32[10077] = 40020;
- ___cxa_guard_release(36048);
- }
- return HEAP32[10077] | 0;
-}
-
-function __ZNSt3__112__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CStringEqualENS_9allocatorIS2_EEE15__insert_uniqueERKS2_(i17, i16, i11) {
- i17 = i17 | 0;
- i16 = i16 | 0;
- i11 = i11 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, d5 = 0.0, d6 = 0.0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i18 = 0;
- i18 = STACKTOP;
- STACKTOP = STACKTOP + 16 | 0;
- i1 = i18;
- i10 = HEAP32[i11 >> 2] | 0;
- i3 = 5381;
- i4 = i10;
- while (1) {
- i2 = HEAP8[i4 >> 0] | 0;
- if (!(i2 << 24 >> 24)) {
- i15 = i3;
- break;
- }
- i3 = i2 << 24 >> 24 ^ i3 * 33;
- i4 = i4 + 1 | 0;
- }
- i13 = i16 + 4 | 0;
- i7 = HEAP32[i13 >> 2] | 0;
- i12 = (i7 | 0) == 0;
- L5 : do if (!i12) {
- i8 = i7 + -1 | 0;
- i9 = (i8 & i7 | 0) == 0;
- if (i9) i3 = i8 & i15; else i3 = (i15 >>> 0) % (i7 >>> 0) | 0;
- i2 = HEAP32[(HEAP32[i16 >> 2] | 0) + (i3 << 2) >> 2] | 0;
- if (!i2) i14 = 15; else while (1) {
- i2 = HEAP32[i2 >> 2] | 0;
- if (!i2) {
- i14 = 15;
- break L5;
- }
- i4 = HEAP32[i2 + 4 >> 2] | 0;
- if (i9) i4 = i4 & i8; else i4 = (i4 >>> 0) % (i7 >>> 0) | 0;
- if ((i4 | 0) != (i3 | 0)) {
- i14 = 15;
- break L5;
- }
- if (!(_strcmp(HEAP32[i2 + 8 >> 2] | 0, i10) | 0)) {
- i3 = 0;
- i1 = i2;
- break;
- }
- }
- } else {
- i3 = 0;
- i14 = 15;
- } while (0);
- if ((i14 | 0) == 15) {
- __ZNSt3__112__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CStringEqualENS_9allocatorIS2_EEE16__construct_nodeERKS2_j(i1, i16, i11, i15);
- i8 = i16 + 12 | 0;
- d6 = +(((HEAP32[i8 >> 2] | 0) + 1 | 0) >>> 0);
- d5 = +HEAPF32[i16 + 16 >> 2];
- do if (i12 | d6 > +(i7 >>> 0) * d5) {
- if (i7 >>> 0 > 2) i2 = (i7 + -1 & i7 | 0) == 0; else i2 = 0;
- i2 = (i2 & 1 | i7 << 1) ^ 1;
- i3 = ~~+Math_ceil(+(d6 / d5)) >>> 0;
- __ZNSt3__112__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CStringEqualENS_9allocatorIS2_EEE6rehashEj(i16, i2 >>> 0 < i3 >>> 0 ? i3 : i2);
- i2 = HEAP32[i13 >> 2] | 0;
- i3 = i2 + -1 | 0;
- if (!(i3 & i2)) {
- i7 = i2;
- i3 = i3 & i15;
- break;
- } else {
- i7 = i2;
- i3 = (i15 >>> 0) % (i2 >>> 0) | 0;
- break;
- }
- } while (0);
- i2 = HEAP32[(HEAP32[i16 >> 2] | 0) + (i3 << 2) >> 2] | 0;
- if (!i2) {
- i15 = i16 + 8 | 0;
- i2 = HEAP32[i1 >> 2] | 0;
- HEAP32[i2 >> 2] = HEAP32[i15 >> 2];
- HEAP32[i15 >> 2] = i2;
- HEAP32[(HEAP32[i16 >> 2] | 0) + (i3 << 2) >> 2] = i15;
- i3 = HEAP32[i2 >> 2] | 0;
- if (i3) {
- i3 = HEAP32[i3 + 4 >> 2] | 0;
- i4 = i7 + -1 | 0;
- if (!(i4 & i7)) i3 = i3 & i4; else i3 = (i3 >>> 0) % (i7 >>> 0) | 0;
- HEAP32[(HEAP32[i16 >> 2] | 0) + (i3 << 2) >> 2] = i2;
- }
- } else {
- i16 = HEAP32[i1 >> 2] | 0;
- HEAP32[i16 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i2 >> 2] = i16;
- i2 = i16;
- }
- HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 1;
- HEAP32[i1 >> 2] = 0;
- i3 = 1;
- i1 = i2;
- }
- HEAP32[i17 >> 2] = i1;
- HEAP8[i17 + 4 >> 0] = i3;
- STACKTOP = i18;
- return;
-}
-
function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner9visitHostEPNS_4HostE(i6, i3, i1) {
i6 = i6 | 0;
i3 = i3 | 0;
@@ -46737,33 +45837,36 @@ function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vect
i4 = __ZN4wasm7Literal6geti32Ev(i2) | 0;
if (i4 & 65535 | 0) {
i5 = HEAP32[(HEAP32[i3 + 4 >> 2] | 0) + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 20 >> 2] & 127](i5, 20364);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 20 >> 2] & 127](i5, 20931);
}
i5 = i3 + 4 | 0;
if (i4 >>> 0 > 4294901759) {
i3 = HEAP32[(HEAP32[i5 >> 2] | 0) + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 20 >> 2] & 127](i3, 20395);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 20 >> 2] & 127](i3, 20962);
}
i2 = HEAP32[i5 >> 2] | 0;
i1 = HEAP32[i2 + 8 >> 2] | 0;
if (i1 >>> 0 >= ~i4 >>> 0) {
i2 = HEAP32[i2 + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i2, 20432);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i2, 20999);
i2 = HEAP32[i5 >> 2] | 0;
i1 = HEAP32[i2 + 8 >> 2] | 0;
}
i3 = i1 + i4 | 0;
if (i3 >>> 0 > (HEAP32[(HEAP32[i2 >> 2] | 0) + 112 >> 2] | 0) >>> 0) {
- i2 = HEAP32[i2 + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i2, 20470);
- i2 = HEAP32[i5 >> 2] | 0;
- i1 = HEAP32[i2 + 8 >> 2] | 0;
+ i1 = HEAP32[i2 + 12 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i1 >> 2] | 0) + 20 >> 2] & 127](i1, 21037);
+ i1 = HEAP32[i5 >> 2] | 0;
+ i2 = i1;
+ i1 = HEAP32[i1 + 8 >> 2] | 0;
}
i4 = HEAP32[i2 + 12 >> 2] | 0;
- FUNCTION_TABLE_viii[HEAP32[(HEAP32[i4 >> 2] | 0) + 16 >> 2] & 7](i4, i1, i3);
+ FUNCTION_TABLE_viii[HEAP32[(HEAP32[i4 >> 2] | 0) + 16 >> 2] & 15](i4, i1, i3);
HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] = i3;
HEAP32[i6 >> 2] = 0;
- HEAPF64[i6 + 8 >> 3] = 0.0;
+ i5 = i6 + 8 | 0;
+ HEAP32[i5 >> 2] = 0;
+ HEAP32[i5 + 4 >> 2] = 0;
HEAP32[i6 + 16 >> 2] = 0;
} else {
HEAP32[i6 >> 2] = HEAP32[i2 >> 2];
@@ -46777,7 +45880,7 @@ function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vect
}
case 3:
{
- i5 = (HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[9218] | 0);
+ i5 = (HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[9585] | 0);
HEAP32[i6 >> 2] = 1;
i1 = i6 + 8 | 0;
if (i5) {
@@ -46797,6 +45900,104 @@ function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vect
return;
}
+function __ZNSt3__112__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CStringEqualENS_9allocatorIS2_EEE15__insert_uniqueERKS2_(i17, i16, i12) {
+ i17 = i17 | 0;
+ i16 = i16 | 0;
+ i12 = i12 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, d5 = 0.0, d6 = 0.0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i13 = 0, i14 = 0, i15 = 0, i18 = 0;
+ i18 = STACKTOP;
+ STACKTOP = STACKTOP + 16 | 0;
+ i2 = i18;
+ i10 = HEAP32[i12 >> 2] | 0;
+ i1 = i10;
+ i4 = 5381;
+ while (1) {
+ i3 = HEAP8[i1 >> 0] | 0;
+ if (!(i3 << 24 >> 24)) break;
+ i1 = i1 + 1 | 0;
+ i4 = i3 << 24 >> 24 ^ i4 * 33;
+ }
+ i13 = i16 + 4 | 0;
+ i14 = HEAP32[i13 >> 2] | 0;
+ i11 = (i14 | 0) == 0;
+ L5 : do if (!i11) {
+ i8 = i14 + -1 | 0;
+ i9 = (i8 & i14 | 0) == 0;
+ if (i9) i3 = i8 & i4; else i3 = (i4 >>> 0) % (i14 >>> 0) | 0;
+ i1 = HEAP32[(HEAP32[i16 >> 2] | 0) + (i3 << 2) >> 2] | 0;
+ if (!i1) i15 = 15; else while (1) {
+ i1 = HEAP32[i1 >> 2] | 0;
+ if (!i1) {
+ i15 = 15;
+ break L5;
+ }
+ i7 = HEAP32[i1 + 4 >> 2] | 0;
+ if (i9) i7 = i7 & i8; else i7 = (i7 >>> 0) % (i14 >>> 0) | 0;
+ if ((i7 | 0) != (i3 | 0)) {
+ i15 = 15;
+ break L5;
+ }
+ if (!(_strcmp(HEAP32[i1 + 8 >> 2] | 0, i10) | 0)) {
+ i2 = 0;
+ break;
+ }
+ }
+ } else {
+ i3 = 0;
+ i15 = 15;
+ } while (0);
+ if ((i15 | 0) == 15) {
+ __ZNSt3__112__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CStringEqualENS_9allocatorIS2_EEE16__construct_nodeERKS2_j(i2, i16, i12, i4);
+ i8 = i16 + 12 | 0;
+ d5 = +(((HEAP32[i8 >> 2] | 0) + 1 | 0) >>> 0);
+ d6 = +HEAPF32[i16 + 16 >> 2];
+ do if (i11 | d5 > +(i14 >>> 0) * d6) {
+ if (i14 >>> 0 > 2) i1 = (i14 + -1 & i14 | 0) == 0; else i1 = 0;
+ i1 = (i1 & 1 | i14 << 1) ^ 1;
+ i3 = ~~+Math_ceil(+(d5 / d6)) >>> 0;
+ __ZNSt3__112__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CStringEqualENS_9allocatorIS2_EEE6rehashEj(i16, i1 >>> 0 < i3 >>> 0 ? i3 : i1);
+ i1 = HEAP32[i13 >> 2] | 0;
+ i3 = i1 + -1 | 0;
+ if (!(i3 & i1)) {
+ i7 = i1;
+ i3 = i3 & i4;
+ break;
+ } else {
+ i7 = i1;
+ i3 = (i4 >>> 0) % (i1 >>> 0) | 0;
+ break;
+ }
+ } else i7 = i14; while (0);
+ i1 = HEAP32[(HEAP32[i16 >> 2] | 0) + (i3 << 2) >> 2] | 0;
+ if (!i1) {
+ i15 = i16 + 8 | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
+ HEAP32[i1 >> 2] = HEAP32[i15 >> 2];
+ HEAP32[i15 >> 2] = i1;
+ HEAP32[(HEAP32[i16 >> 2] | 0) + (i3 << 2) >> 2] = i15;
+ i3 = HEAP32[i1 >> 2] | 0;
+ if (i3) {
+ i3 = HEAP32[i3 + 4 >> 2] | 0;
+ i4 = i7 + -1 | 0;
+ if (!(i4 & i7)) i3 = i3 & i4; else i3 = (i3 >>> 0) % (i7 >>> 0) | 0;
+ HEAP32[(HEAP32[i16 >> 2] | 0) + (i3 << 2) >> 2] = i1;
+ }
+ } else {
+ i16 = HEAP32[i2 >> 2] | 0;
+ HEAP32[i16 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i1 >> 2] = i16;
+ i1 = i16;
+ }
+ HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 1;
+ HEAP32[i2 >> 2] = 0;
+ i2 = 1;
+ }
+ HEAP32[i17 >> 2] = i1;
+ HEAP8[i17 + 4 >> 0] = i2;
+ STACKTOP = i18;
+ return;
+}
+
function __ZNKSt3__17codecvtIwc11__mbstate_tE5do_inERS1_PKcS5_RS5_PwS7_RS7_(i4, i8, i1, i13, i14, i2, i9, i12) {
i4 = i4 | 0;
i8 = i8 | 0;
@@ -46828,16 +46029,16 @@ function __ZNKSt3__17codecvtIwc11__mbstate_tE5do_inERS1_PKcS5_RS5_PwS7_RS7_(i4,
i3 = 34;
break;
}
- i5 = i8;
- i4 = HEAP32[i5 + 4 >> 2] | 0;
- i6 = i11;
- HEAP32[i6 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i6 + 4 >> 2] = i4;
- i6 = i3;
- i4 = _uselocale(HEAP32[i10 >> 2] | 0) | 0;
- i5 = _mbsnrtowcs(i2, i14, i6 - i1 | 0, i7 - i2 >> 2, i8) | 0;
- if (i4 | 0) _uselocale(i4) | 0;
- switch (i5 | 0) {
+ i6 = i8;
+ i5 = HEAP32[i6 + 4 >> 2] | 0;
+ i4 = i11;
+ HEAP32[i4 >> 2] = HEAP32[i6 >> 2];
+ HEAP32[i4 + 4 >> 2] = i5;
+ i4 = i3;
+ i5 = _uselocale(HEAP32[i10 >> 2] | 0) | 0;
+ i6 = _mbsnrtowcs(i2, i14, i4 - i1 | 0, i7 - i2 >> 2, i8) | 0;
+ if (i5 | 0) _uselocale(i5) | 0;
+ switch (i6 | 0) {
case -1:
{
i3 = 10;
@@ -46852,7 +46053,7 @@ function __ZNKSt3__17codecvtIwc11__mbstate_tE5do_inERS1_PKcS5_RS5_PwS7_RS7_(i4,
default:
{}
}
- i2 = (HEAP32[i12 >> 2] | 0) + (i5 << 2) | 0;
+ i2 = (HEAP32[i12 >> 2] | 0) + (i6 << 2) | 0;
HEAP32[i12 >> 2] = i2;
if ((i2 | 0) == (i9 | 0)) {
i3 = 31;
@@ -46891,7 +46092,7 @@ function __ZNKSt3__17codecvtIwc11__mbstate_tE5do_inERS1_PKcS5_RS5_PwS7_RS7_(i4,
break;
}
i3 = _uselocale(HEAP32[i10 >> 2] | 0) | 0;
- i2 = _mbrtowc(i2, i1, i6 - i1 | 0, i11) | 0;
+ i2 = _mbrtowc(i2, i1, i4 - i1 | 0, i11) | 0;
if (i3 | 0) _uselocale(i3) | 0;
switch (i2 | 0) {
case -1:
@@ -46995,7 +46196,7 @@ function __ZNSt3__19__num_getIcE19__stage2_float_loopEcRbRcPcRS4_ccRKNS_12basic_
}
i2 = i1 - i5 | 0;
if ((i2 | 0) > 31) i1 = -1; else {
- i3 = HEAP8[31159 + i2 >> 0] | 0;
+ i3 = HEAP8[32623 + i2 >> 0] | 0;
switch (i2 | 0) {
case 24:
case 25:
@@ -47052,68 +46253,68 @@ function __ZN6cashew12ValueBuilder10makeBinaryENS_3RefENS_7IStringES1_(i14, i15,
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i17 = 0;
i17 = STACKTOP;
STACKTOP = STACKTOP + 48 | 0;
- i12 = i17 + 44 | 0;
+ i1 = i17 + 44 | 0;
i2 = i17 + 40 | 0;
- i13 = i17 + 36 | 0;
- i3 = i17 + 32 | 0;
- i4 = i17 + 28 | 0;
- i5 = i17 + 24 | 0;
- i6 = i17 + 20 | 0;
- i7 = i17 + 16 | 0;
- i8 = i17 + 12 | 0;
- i9 = i17 + 8 | 0;
- i10 = i17 + 4 | 0;
- i11 = i17;
- i1 = HEAP32[i15 >> 2] | 0;
- do if ((i1 | 0) != (HEAP32[9310] | 0)) if ((i1 | 0) == (HEAP32[9299] | 0)) {
- i1 = __ZN6cashew12ValueBuilder12makeRawArrayEi(3) | 0;
- i15 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(36976) | 0;
- HEAP32[i5 >> 2] = i15;
- HEAP32[i12 >> 2] = HEAP32[i5 >> 2];
- i1 = __ZN6cashew5Value9push_backENS_3RefE(i1, i12) | 0;
- HEAP32[i6 >> 2] = HEAP32[i14 >> 2];
- HEAP32[i12 >> 2] = HEAP32[i6 >> 2];
- i1 = __ZN6cashew5Value9push_backENS_3RefE(i1, i12) | 0;
- HEAP32[i7 >> 2] = HEAP32[i16 >> 2];
- HEAP32[i12 >> 2] = HEAP32[i7 >> 2];
- i1 = __ZN6cashew5Value9push_backENS_3RefE(i1, i12) | 0;
+ i3 = i17 + 36 | 0;
+ i6 = i17 + 32 | 0;
+ i7 = i17 + 28 | 0;
+ i8 = i17 + 24 | 0;
+ i9 = i17 + 20 | 0;
+ i10 = i17 + 16 | 0;
+ i11 = i17 + 12 | 0;
+ i12 = i17 + 8 | 0;
+ i13 = i17 + 4 | 0;
+ i4 = i17;
+ i5 = HEAP32[i15 >> 2] | 0;
+ do if ((i5 | 0) != (HEAP32[9678] | 0)) if ((i5 | 0) == (HEAP32[9667] | 0)) {
+ i15 = __ZN6cashew12ValueBuilder12makeRawArrayEi(3) | 0;
+ i13 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38448) | 0;
+ HEAP32[i8 >> 2] = i13;
+ HEAP32[i1 >> 2] = HEAP32[i8 >> 2];
+ i15 = __ZN6cashew5Value9push_backENS_3RefE(i15, i1) | 0;
+ HEAP32[i9 >> 2] = HEAP32[i14 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i9 >> 2];
+ i15 = __ZN6cashew5Value9push_backENS_3RefE(i15, i1) | 0;
+ HEAP32[i10 >> 2] = HEAP32[i16 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i10 >> 2];
+ i1 = __ZN6cashew5Value9push_backENS_3RefE(i15, i1) | 0;
break;
} else {
- i1 = __ZN6cashew12ValueBuilder12makeRawArrayEi(4) | 0;
- i13 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(36948) | 0;
- HEAP32[i8 >> 2] = i13;
- HEAP32[i12 >> 2] = HEAP32[i8 >> 2];
- i1 = __ZN6cashew5Value9push_backENS_3RefE(i1, i12) | 0;
+ i10 = __ZN6cashew12ValueBuilder12makeRawArrayEi(4) | 0;
+ i9 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38420) | 0;
+ HEAP32[i11 >> 2] = i9;
+ HEAP32[i1 >> 2] = HEAP32[i11 >> 2];
+ i11 = __ZN6cashew5Value9push_backENS_3RefE(i10, i1) | 0;
i15 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(i15) | 0;
- HEAP32[i9 >> 2] = i15;
- HEAP32[i12 >> 2] = HEAP32[i9 >> 2];
- i1 = __ZN6cashew5Value9push_backENS_3RefE(i1, i12) | 0;
- HEAP32[i10 >> 2] = HEAP32[i14 >> 2];
- HEAP32[i12 >> 2] = HEAP32[i10 >> 2];
- i1 = __ZN6cashew5Value9push_backENS_3RefE(i1, i12) | 0;
- HEAP32[i11 >> 2] = HEAP32[i16 >> 2];
- HEAP32[i12 >> 2] = HEAP32[i11 >> 2];
- i1 = __ZN6cashew5Value9push_backENS_3RefE(i1, i12) | 0;
+ HEAP32[i12 >> 2] = i15;
+ HEAP32[i1 >> 2] = HEAP32[i12 >> 2];
+ i15 = __ZN6cashew5Value9push_backENS_3RefE(i11, i1) | 0;
+ HEAP32[i13 >> 2] = HEAP32[i14 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i13 >> 2];
+ i15 = __ZN6cashew5Value9push_backENS_3RefE(i15, i1) | 0;
+ HEAP32[i4 >> 2] = HEAP32[i16 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i4 >> 2];
+ i1 = __ZN6cashew5Value9push_backENS_3RefE(i15, i1) | 0;
break;
} else {
- i1 = __ZN6cashew12ValueBuilder12makeRawArrayEi(4) | 0;
- i15 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(36928) | 0;
- HEAP32[i2 >> 2] = i15;
- HEAP32[i12 >> 2] = HEAP32[i2 >> 2];
- i1 = __ZN6cashew5Value9push_backENS_3RefE(i1, i12) | 0;
- i15 = __ZN6cashew5Arena5allocEv(37288) | 0;
- __ZN6cashew5Value4freeEv(i15);
- HEAP32[i15 >> 2] = 4;
- HEAP8[i15 + 8 >> 0] = 1;
- HEAP32[i13 >> 2] = i15;
- HEAP32[i12 >> 2] = HEAP32[i13 >> 2];
- i1 = __ZN6cashew5Value9push_backENS_3RefE(i1, i12) | 0;
- HEAP32[i3 >> 2] = HEAP32[i14 >> 2];
- HEAP32[i12 >> 2] = HEAP32[i3 >> 2];
- i1 = __ZN6cashew5Value9push_backENS_3RefE(i1, i12) | 0;
- HEAP32[i4 >> 2] = HEAP32[i16 >> 2];
- HEAP32[i12 >> 2] = HEAP32[i4 >> 2];
- i1 = __ZN6cashew5Value9push_backENS_3RefE(i1, i12) | 0;
+ i15 = __ZN6cashew12ValueBuilder12makeRawArrayEi(4) | 0;
+ i13 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38400) | 0;
+ HEAP32[i2 >> 2] = i13;
+ HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
+ i15 = __ZN6cashew5Value9push_backENS_3RefE(i15, i1) | 0;
+ i13 = __ZN6cashew5Arena5allocEv(38760) | 0;
+ __ZN6cashew5Value4freeEv(i13);
+ HEAP32[i13 >> 2] = 4;
+ HEAP8[i13 + 8 >> 0] = 1;
+ HEAP32[i3 >> 2] = i13;
+ HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
+ i15 = __ZN6cashew5Value9push_backENS_3RefE(i15, i1) | 0;
+ HEAP32[i6 >> 2] = HEAP32[i14 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i6 >> 2];
+ i15 = __ZN6cashew5Value9push_backENS_3RefE(i15, i1) | 0;
+ HEAP32[i7 >> 2] = HEAP32[i16 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i7 >> 2];
+ i1 = __ZN6cashew5Value9push_backENS_3RefE(i15, i1) | 0;
} while (0);
STACKTOP = i17;
return i1 | 0;
@@ -47169,14 +46370,14 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
break;
}
i1 = HEAP32[i7 >> 2] | 0;
- i3 = i1 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) {
+ i2 = i1 + 12 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
i1 = HEAP32[i7 >> 2] | 0;
if (!i1) i2 = 1; else i6 = 25;
} else {
- HEAP32[i3 >> 2] = i2 + 4;
+ HEAP32[i2 >> 2] = i3 + 4;
i6 = 25;
}
do if ((i6 | 0) == 25) {
@@ -47206,6 +46407,80 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
return;
}
+function __ZN4wasm22SExpressionWasmBuilder8makeLoopERNS_7ElementE(i8, i7) {
+ i8 = i8 | 0;
+ i7 = i7 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0, i10 = 0, i11 = 0;
+ i11 = STACKTOP;
+ STACKTOP = STACKTOP + 32 | 0;
+ i1 = i11 + 12 | 0;
+ i2 = i11;
+ i10 = __ZN10MixedArena5allocIN4wasm4LoopEEEPT_v(HEAP32[i8 + 4 >> 2] | 0) | 0;
+ i9 = __ZN4wasm7Element4listEv(i7) | 0;
+ if ((HEAP8[HEAP32[(HEAP32[i9 >> 2] | 0) + 4 >> 2] >> 0] | 0) == 0 ? (i9 = __ZN4wasm7Element4listEv(i7) | 0, (HEAP8[HEAP32[(HEAP32[i9 >> 2] | 0) + 8 >> 2] >> 0] | 0) == 0) : 0) {
+ i1 = __ZN4wasm7Element4listEv(i7) | 0;
+ i1 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] | 0) | 0;
+ HEAP32[i10 + 8 >> 2] = i1;
+ i1 = 2;
+ } else {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i1, 18025, 8);
+ i9 = __ZN4wasm22SExpressionWasmBuilder15getPrefixedNameENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i8, i1) | 0;
+ HEAP32[i10 + 8 >> 2] = i9;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1);
+ i1 = 1;
+ }
+ i9 = __ZN4wasm7ElementixEj(i7, i1) | 0;
+ i6 = i10 + 12 | 0;
+ if (!(HEAP8[i9 >> 0] | 0)) {
+ i9 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i7, i1) | 0) | 0;
+ HEAP32[i6 >> 2] = i9;
+ i1 = i1 + 1 | 0;
+ } else {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i2, 18034, 7);
+ i9 = __ZN4wasm22SExpressionWasmBuilder15getPrefixedNameENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i8, i2) | 0;
+ HEAP32[i10 + 12 >> 2] = i9;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i2);
+ }
+ i4 = i8 + 80 | 0;
+ i2 = i10 + 8 | 0;
+ i9 = i8 + 84 | 0;
+ i3 = HEAP32[i9 >> 2] | 0;
+ i5 = i8 + 88 | 0;
+ if ((i3 | 0) == (HEAP32[i5 >> 2] | 0)) {
+ __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i4, i2);
+ i2 = HEAP32[i9 >> 2] | 0;
+ } else {
+ HEAP32[i3 >> 2] = HEAP32[i2 >> 2];
+ i2 = (HEAP32[i9 >> 2] | 0) + 4 | 0;
+ HEAP32[i9 >> 2] = i2;
+ }
+ if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i4, i6); else {
+ HEAP32[i2 >> 2] = HEAP32[i6 >> 2];
+ HEAP32[i9 >> 2] = (HEAP32[i9 >> 2] | 0) + 4;
+ }
+ i4 = __ZN4wasm22SExpressionWasmBuilder14makeMaybeBlockERNS_7ElementEjj(i8, i7, i1, -1) | 0;
+ HEAP32[i10 + 16 >> 2] = i4;
+ i2 = HEAP32[i9 >> 2] | 0;
+ i1 = i2 + -4 | 0;
+ i3 = i2;
+ while (1) {
+ if ((i3 | 0) == (i1 | 0)) break;
+ i8 = i3 + -4 | 0;
+ HEAP32[i9 >> 2] = i8;
+ i3 = i8;
+ }
+ i2 = i2 + -8 | 0;
+ while (1) {
+ if ((i1 | 0) == (i2 | 0)) break;
+ i8 = i1 + -4 | 0;
+ HEAP32[i9 >> 2] = i8;
+ i1 = i8;
+ }
+ HEAP32[i10 + 4 >> 2] = HEAP32[i4 + 4 >> 2];
+ STACKTOP = i11;
+ return i10 | 0;
+}
+
function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseFunctionERPcPKc(i15, i14, i1) {
i15 = i15 | 0;
i14 = i14 | 0;
@@ -47213,15 +46488,15 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseFunctionERP
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i16 = 0;
i13 = STACKTOP;
STACKTOP = STACKTOP + 64 | 0;
- i12 = i13 + 56 | 0;
- i10 = i13 + 52 | 0;
+ i9 = i13 + 56 | 0;
+ i8 = i13 + 52 | 0;
i2 = i13 + 16 | 0;
i1 = i13 + 48 | 0;
i7 = i13;
i5 = i13 + 44 | 0;
i6 = i13 + 40 | 0;
- i9 = i13 + 36 | 0;
- i11 = i13 + 32 | 0;
+ i10 = i13 + 36 | 0;
+ i12 = i13 + 32 | 0;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i2, HEAP32[i14 >> 2] | 0);
switch (HEAP32[i2 + 12 >> 2] | 0) {
case 2:
@@ -47241,34 +46516,34 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseFunctionERP
default:
i16 = 4;
}
- if ((i16 | 0) == 4) ___assert_fail(22332, 22233, 400, 22377);
+ if ((i16 | 0) == 4) ___assert_fail(22920, 22821, 400, 22965);
HEAP32[i1 >> 2] = i3;
- HEAP32[i12 >> 2] = HEAP32[i1 >> 2];
- i4 = __ZN6cashew12ValueBuilder12makeFunctionENS_7IStringE(i12) | 0;
+ HEAP32[i9 >> 2] = HEAP32[i1 >> 2];
+ i4 = __ZN6cashew12ValueBuilder12makeFunctionENS_7IStringE(i9) | 0;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i14);
i1 = HEAP32[i14 >> 2] | 0;
- if ((HEAP8[i1 >> 0] | 0) != 40) ___assert_fail(22391, 22233, 405, 22377);
+ if ((HEAP8[i1 >> 0] | 0) != 40) ___assert_fail(22979, 22821, 405, 22965);
HEAP32[i14 >> 2] = i1 + 1;
- i3 = i7 + 12 | 0;
- i2 = i7 + 8 | 0;
+ i2 = i7 + 12 | 0;
+ i3 = i7 + 8 | 0;
L11 : while (1) {
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i14);
i1 = HEAP32[i14 >> 2] | 0;
if ((HEAP8[i1 >> 0] | 0) == 41) {
- i8 = i1;
+ i11 = i1;
break;
}
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i7, i1);
- if ((HEAP32[i3 >> 2] | 0) != 2) {
+ if ((HEAP32[i2 >> 2] | 0) != 2) {
i16 = 11;
break;
}
- HEAP32[i14 >> 2] = (HEAP32[i14 >> 2] | 0) + (HEAP32[i2 >> 2] | 0);
+ HEAP32[i14 >> 2] = (HEAP32[i14 >> 2] | 0) + (HEAP32[i3 >> 2] | 0);
HEAP32[i5 >> 2] = i4;
HEAP32[i6 >> 2] = HEAP32[i7 >> 2];
- HEAP32[i10 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i12 >> 2] = HEAP32[i6 >> 2];
- __ZN6cashew12ValueBuilder24appendArgumentToFunctionENS_3RefENS_7IStringE(i10, i12);
+ HEAP32[i8 >> 2] = HEAP32[i5 >> 2];
+ HEAP32[i9 >> 2] = HEAP32[i6 >> 2];
+ __ZN6cashew12ValueBuilder24appendArgumentToFunctionENS_3RefENS_7IStringE(i8, i9);
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i14);
i1 = HEAP32[i14 >> 2] | 0;
switch (HEAP8[i1 >> 0] | 0) {
@@ -47287,17 +46562,18 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseFunctionERP
}
HEAP32[i14 >> 2] = i1 + 1;
}
- if ((i16 | 0) == 11) ___assert_fail(22403, 22233, 411, 22377); else if ((i16 | 0) == 14) _abort(); else if ((i16 | 0) == 15) i8 = i1;
- HEAP32[i14 >> 2] = i8 + 1;
- HEAP32[i9 >> 2] = i4;
+ if ((i16 | 0) == 11) ___assert_fail(22991, 22821, 411, 22965); else if ((i16 | 0) == 14) _abort(); else if ((i16 | 0) == 15) i11 = i1;
+ HEAP32[i14 >> 2] = i11 + 1;
+ HEAP32[i10 >> 2] = i4;
i16 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE19parseBracketedBlockERPc(i15, i14) | 0;
- HEAP32[i11 >> 2] = i16;
- HEAP32[i10 >> 2] = HEAP32[i9 >> 2];
- HEAP32[i12 >> 2] = HEAP32[i11 >> 2];
- __ZN6cashew12ValueBuilder15setBlockContentENS_3RefES1_(i10, i12);
+ HEAP32[i12 >> 2] = i16;
+ HEAP32[i8 >> 2] = HEAP32[i10 >> 2];
+ HEAP32[i9 >> 2] = HEAP32[i12 >> 2];
+ __ZN6cashew12ValueBuilder15setBlockContentENS_3RefES1_(i8, i9);
STACKTOP = i13;
return i4 | 0;
}
+
function __ZNKSt3__17codecvtIwc11__mbstate_tE6do_outERS1_PKwS5_RS5_PcS7_RS7_(i4, i7, i1, i10, i14, i2, i9, i13) {
i4 = i4 | 0;
i7 = i7 | 0;
@@ -47429,17 +46705,17 @@ function __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmD
i15 = i15 | 0;
i1 = i1 | 0;
var i2 = 0, i3 = 0, i4 = 0, d5 = 0.0, d6 = 0.0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0;
- i8 = HEAP32[i1 + 8 >> 2] | 0;
- i2 = i8 * 33 ^ 5381;
+ i9 = HEAP32[i1 + 8 >> 2] | 0;
+ i2 = i9 * 33 ^ 5381;
i14 = i1 + 4 | 0;
HEAP32[i14 >> 2] = i2;
i13 = i15 + 4 | 0;
i7 = HEAP32[i13 >> 2] | 0;
i12 = (i7 | 0) == 0;
L1 : do if (!i12) {
- i9 = i7 + -1 | 0;
- i10 = (i9 & i7 | 0) == 0;
- if (i10) i3 = i9 & i2; else i3 = (i2 >>> 0) % (i7 >>> 0) | 0;
+ i10 = i7 + -1 | 0;
+ i8 = (i10 & i7 | 0) == 0;
+ if (i8) i3 = i10 & i2; else i3 = (i2 >>> 0) % (i7 >>> 0) | 0;
i2 = HEAP32[(HEAP32[i15 >> 2] | 0) + (i3 << 2) >> 2] | 0;
if (!i2) i11 = 12; else while (1) {
i4 = HEAP32[i2 >> 2] | 0;
@@ -47448,12 +46724,12 @@ function __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmD
break L1;
}
i2 = HEAP32[i4 + 4 >> 2] | 0;
- if (i10) i2 = i2 & i9; else i2 = (i2 >>> 0) % (i7 >>> 0) | 0;
+ if (i8) i2 = i2 & i10; else i2 = (i2 >>> 0) % (i7 >>> 0) | 0;
if ((i2 | 0) != (i3 | 0)) {
i11 = 12;
break L1;
}
- if ((HEAP32[i4 + 8 >> 2] | 0) == (i8 | 0)) {
+ if ((HEAP32[i4 + 8 >> 2] | 0) == (i9 | 0)) {
i2 = 0;
i1 = i4;
break;
@@ -47465,12 +46741,12 @@ function __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmD
} while (0);
if ((i11 | 0) == 12) {
i8 = i15 + 12 | 0;
- d6 = +(((HEAP32[i8 >> 2] | 0) + 1 | 0) >>> 0);
- d5 = +HEAPF32[i15 + 16 >> 2];
- do if (i12 | d6 > +(i7 >>> 0) * d5) {
+ d5 = +(((HEAP32[i8 >> 2] | 0) + 1 | 0) >>> 0);
+ d6 = +HEAPF32[i15 + 16 >> 2];
+ do if (i12 | d5 > +(i7 >>> 0) * d6) {
if (i7 >>> 0 > 2) i2 = (i7 + -1 & i7 | 0) == 0; else i2 = 0;
i4 = (i2 & 1 | i7 << 1) ^ 1;
- i2 = ~~+Math_ceil(+(d6 / d5)) >>> 0;
+ i2 = ~~+Math_ceil(+(d5 / d6)) >>> 0;
__ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmData5LocalEEENS_22__unordered_map_hasherIS3_S6_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S6_NS_8equal_toIS3_EELb1EEENS_9allocatorIS6_EEE6rehashEj(i15, i4 >>> 0 < i2 >>> 0 ? i2 : i4);
i4 = HEAP32[i13 >> 2] | 0;
i2 = HEAP32[i14 >> 2] | 0;
@@ -47510,172 +46786,6 @@ function __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmD
return;
}
-function __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE15__insert_uniqueERKS2_(i17, i16, i11) {
- i17 = i17 | 0;
- i16 = i16 | 0;
- i11 = i11 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, d5 = 0.0, d6 = 0.0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i18 = 0;
- i18 = STACKTOP;
- STACKTOP = STACKTOP + 16 | 0;
- i1 = i18;
- i8 = HEAP32[i11 >> 2] | 0;
- i15 = i8 * 33 ^ 5381;
- i14 = i16 + 4 | 0;
- i7 = HEAP32[i14 >> 2] | 0;
- i13 = (i7 | 0) == 0;
- L1 : do if (!i13) {
- i9 = i7 + -1 | 0;
- i10 = (i9 & i7 | 0) == 0;
- if (i10) i3 = i9 & i15; else i3 = (i15 >>> 0) % (i7 >>> 0) | 0;
- i2 = HEAP32[(HEAP32[i16 >> 2] | 0) + (i3 << 2) >> 2] | 0;
- if (!i2) i12 = 12; else while (1) {
- i2 = HEAP32[i2 >> 2] | 0;
- if (!i2) {
- i12 = 12;
- break L1;
- }
- i4 = HEAP32[i2 + 4 >> 2] | 0;
- if (i10) i4 = i4 & i9; else i4 = (i4 >>> 0) % (i7 >>> 0) | 0;
- if ((i4 | 0) != (i3 | 0)) {
- i12 = 12;
- break L1;
- }
- if ((HEAP32[i2 + 8 >> 2] | 0) == (i8 | 0)) {
- i3 = 0;
- i1 = i2;
- break;
- }
- }
- } else {
- i3 = 0;
- i12 = 12;
- } while (0);
- if ((i12 | 0) == 12) {
- __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE16__construct_nodeERKS2_j(i1, i16, i11, i15);
- i8 = i16 + 12 | 0;
- d6 = +(((HEAP32[i8 >> 2] | 0) + 1 | 0) >>> 0);
- d5 = +HEAPF32[i16 + 16 >> 2];
- do if (i13 | d6 > +(i7 >>> 0) * d5) {
- if (i7 >>> 0 > 2) i2 = (i7 + -1 & i7 | 0) == 0; else i2 = 0;
- i2 = (i2 & 1 | i7 << 1) ^ 1;
- i3 = ~~+Math_ceil(+(d6 / d5)) >>> 0;
- __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE6rehashEj(i16, i2 >>> 0 < i3 >>> 0 ? i3 : i2);
- i2 = HEAP32[i14 >> 2] | 0;
- i3 = i2 + -1 | 0;
- if (!(i3 & i2)) {
- i7 = i2;
- i3 = i3 & i15;
- break;
- } else {
- i7 = i2;
- i3 = (i15 >>> 0) % (i2 >>> 0) | 0;
- break;
- }
- } while (0);
- i2 = HEAP32[(HEAP32[i16 >> 2] | 0) + (i3 << 2) >> 2] | 0;
- if (!i2) {
- i15 = i16 + 8 | 0;
- i2 = HEAP32[i1 >> 2] | 0;
- HEAP32[i2 >> 2] = HEAP32[i15 >> 2];
- HEAP32[i15 >> 2] = i2;
- HEAP32[(HEAP32[i16 >> 2] | 0) + (i3 << 2) >> 2] = i15;
- i3 = HEAP32[i2 >> 2] | 0;
- if (i3) {
- i3 = HEAP32[i3 + 4 >> 2] | 0;
- i4 = i7 + -1 | 0;
- if (!(i4 & i7)) i3 = i3 & i4; else i3 = (i3 >>> 0) % (i7 >>> 0) | 0;
- HEAP32[(HEAP32[i16 >> 2] | 0) + (i3 << 2) >> 2] = i2;
- }
- } else {
- i16 = HEAP32[i1 >> 2] | 0;
- HEAP32[i16 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i2 >> 2] = i16;
- i2 = i16;
- }
- HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 1;
- HEAP32[i1 >> 2] = 0;
- i3 = 1;
- i1 = i2;
- }
- HEAP32[i17 >> 2] = i1;
- HEAP8[i17 + 4 >> 0] = i3;
- STACKTOP = i18;
- return;
-}
-
-function __ZN4wasm22SExpressionWasmBuilder8makeLoopERNS_7ElementE(i8, i7) {
- i8 = i8 | 0;
- i7 = i7 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0, i10 = 0, i11 = 0;
- i11 = STACKTOP;
- STACKTOP = STACKTOP + 32 | 0;
- i1 = i11 + 12 | 0;
- i2 = i11;
- i10 = __ZN10MixedArena5allocIN4wasm4LoopEEEPT_v(HEAP32[i8 + 4 >> 2] | 0) | 0;
- i9 = __ZN4wasm7Element4listEv(i7) | 0;
- if ((HEAP8[HEAP32[(HEAP32[i9 >> 2] | 0) + 4 >> 2] >> 0] | 0) == 0 ? (i9 = __ZN4wasm7Element4listEv(i7) | 0, (HEAP8[HEAP32[(HEAP32[i9 >> 2] | 0) + 8 >> 2] >> 0] | 0) == 0) : 0) {
- i1 = __ZN4wasm7Element4listEv(i7) | 0;
- i1 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] | 0) | 0;
- HEAP32[i10 + 8 >> 2] = i1;
- i1 = 2;
- } else {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i1, 17431, 8);
- i9 = __ZN4wasm22SExpressionWasmBuilder15getPrefixedNameENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i8, i1) | 0;
- HEAP32[i10 + 8 >> 2] = i9;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1);
- i1 = 1;
- }
- i9 = __ZN4wasm7ElementixEj(i7, i1) | 0;
- i6 = i10 + 12 | 0;
- if (!(HEAP8[i9 >> 0] | 0)) {
- i9 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i7, i1) | 0) | 0;
- HEAP32[i6 >> 2] = i9;
- i1 = i1 + 1 | 0;
- } else {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i2, 17440, 7);
- i9 = __ZN4wasm22SExpressionWasmBuilder15getPrefixedNameENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i8, i2) | 0;
- HEAP32[i10 + 12 >> 2] = i9;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i2);
- }
- i5 = i8 + 76 | 0;
- i3 = i10 + 8 | 0;
- i9 = i8 + 80 | 0;
- i2 = HEAP32[i9 >> 2] | 0;
- i4 = i8 + 84 | 0;
- if ((i2 | 0) == (HEAP32[i4 >> 2] | 0)) {
- __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i5, i3);
- i2 = HEAP32[i9 >> 2] | 0;
- } else {
- HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
- i2 = (HEAP32[i9 >> 2] | 0) + 4 | 0;
- HEAP32[i9 >> 2] = i2;
- }
- if ((i2 | 0) == (HEAP32[i4 >> 2] | 0)) __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i5, i6); else {
- HEAP32[i2 >> 2] = HEAP32[i6 >> 2];
- HEAP32[i9 >> 2] = (HEAP32[i9 >> 2] | 0) + 4;
- }
- i2 = __ZN4wasm22SExpressionWasmBuilder14makeMaybeBlockERNS_7ElementEjj(i8, i7, i1, -1) | 0;
- HEAP32[i10 + 16 >> 2] = i2;
- i2 = HEAP32[i9 >> 2] | 0;
- i1 = i2 + -4 | 0;
- i3 = i2;
- while (1) {
- if ((i3 | 0) == (i1 | 0)) break;
- i8 = i3 + -4 | 0;
- HEAP32[i9 >> 2] = i8;
- i3 = i8;
- }
- i2 = i2 + -8 | 0;
- while (1) {
- if ((i1 | 0) == (i2 | 0)) break;
- i8 = i1 + -4 | 0;
- HEAP32[i9 >> 2] = i8;
- i1 = i8;
- }
- STACKTOP = i11;
- return i10 | 0;
-}
-
function __ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwe(i1, i26, i21, i20, d9) {
i1 = i1 | 0;
i26 = i26 | 0;
@@ -47685,58 +46795,58 @@ function __ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0;
i23 = STACKTOP;
STACKTOP = STACKTOP + 352 | 0;
- i16 = i23 + 304 | 0;
+ i12 = i23 + 304 | 0;
i7 = i23 + 48 | 0;
i6 = i23 + 32 | 0;
i3 = i23 + 24 | 0;
i2 = i23 + 8 | 0;
- i4 = i23;
+ i5 = i23;
i10 = i23 + 308 | 0;
i8 = i23 + 300 | 0;
i11 = i23 + 72 | 0;
- i14 = i23 + 68 | 0;
- i13 = i23 + 64 | 0;
- i17 = i23 + 60 | 0;
- i15 = i23 + 56 | 0;
- i5 = i4;
- HEAP32[i5 >> 2] = 37;
- HEAP32[i5 + 4 >> 2] = 0;
- i5 = __ZNSt3__114__num_put_base14__format_floatEPcPKcj(i4 + 1 | 0, 31408, HEAP32[i21 + 4 >> 2] | 0) | 0;
+ i17 = i23 + 68 | 0;
+ i16 = i23 + 64 | 0;
+ i13 = i23 + 60 | 0;
+ i14 = i23 + 56 | 0;
+ i4 = i5;
+ HEAP32[i4 >> 2] = 37;
+ HEAP32[i4 + 4 >> 2] = 0;
+ i4 = __ZNSt3__114__num_put_base14__format_floatEPcPKcj(i5 + 1 | 0, 32872, HEAP32[i21 + 4 >> 2] | 0) | 0;
HEAP32[i8 >> 2] = i10;
i1 = __ZNSt3__16__clocEv() | 0;
- if (i5) {
+ if (i4) {
HEAP32[i2 >> 2] = HEAP32[i21 + 8 >> 2];
HEAPF64[i2 + 8 >> 3] = d9;
- i1 = __ZNSt3__112__snprintf_lEPcjP15__locale_structPKcz(i10, 30, i1, i4, i2) | 0;
+ i1 = __ZNSt3__112__snprintf_lEPcjP15__locale_structPKcz(i10, 30, i1, i5, i2) | 0;
} else {
HEAPF64[i3 >> 3] = d9;
- i1 = __ZNSt3__112__snprintf_lEPcjP15__locale_structPKcz(i10, 30, i1, i4, i3) | 0;
+ i1 = __ZNSt3__112__snprintf_lEPcjP15__locale_structPKcz(i10, 30, i1, i5, i3) | 0;
}
if ((i1 | 0) > 29) {
i1 = __ZNSt3__16__clocEv() | 0;
- if (i5) {
+ if (i4) {
HEAP32[i6 >> 2] = HEAP32[i21 + 8 >> 2];
HEAPF64[i6 + 8 >> 3] = d9;
- i2 = __ZNSt3__112__asprintf_lEPPcP15__locale_structPKcz(i8, i1, i4, i6) | 0;
+ i2 = __ZNSt3__112__asprintf_lEPPcP15__locale_structPKcz(i8, i1, i5, i6) | 0;
} else {
HEAPF64[i7 >> 3] = d9;
- i2 = __ZNSt3__112__asprintf_lEPPcP15__locale_structPKcz(i8, i1, i4, i7) | 0;
+ i2 = __ZNSt3__112__asprintf_lEPPcP15__locale_structPKcz(i8, i1, i5, i7) | 0;
}
i1 = HEAP32[i8 >> 2] | 0;
if (!i1) __ZSt17__throw_bad_allocv(); else {
i18 = i1;
i24 = i1;
- i12 = i2;
+ i15 = i2;
}
} else {
i18 = HEAP32[i8 >> 2] | 0;
i24 = 0;
- i12 = i1;
+ i15 = i1;
}
- i2 = i18 + i12 | 0;
+ i2 = i18 + i15 | 0;
i3 = __ZNSt3__114__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE(i18, i2, i21) | 0;
if ((i18 | 0) != (i10 | 0)) {
- i1 = _malloc(i12 << 3) | 0;
+ i1 = _malloc(i15 << 3) | 0;
if (!i1) __ZSt17__throw_bad_allocv(); else {
i19 = i18;
i22 = i1;
@@ -47748,14 +46858,14 @@ function __ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6
i25 = 0;
}
i1 = __ZNKSt3__18ios_base6getlocEv(i21) | 0;
- HEAP32[i17 >> 2] = i1;
- __ZNSt3__19__num_putIwE23__widen_and_group_floatEPcS2_S2_PwRS3_S4_RKNS_6localeE(i19, i3, i2, i22, i14, i13, i17);
+ HEAP32[i13 >> 2] = i1;
+ __ZNSt3__19__num_putIwE23__widen_and_group_floatEPcS2_S2_PwRS3_S4_RKNS_6localeE(i19, i3, i2, i22, i17, i16, i13);
__ZNSt3__114__shared_count16__release_sharedEv(i1) | 0;
- HEAP32[i15 >> 2] = HEAP32[i26 >> 2];
- i19 = HEAP32[i14 >> 2] | 0;
- i1 = HEAP32[i13 >> 2] | 0;
- HEAP32[i16 >> 2] = HEAP32[i15 >> 2];
- i1 = __ZNSt3__116__pad_and_outputIwNS_11char_traitsIwEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i16, i22, i19, i1, i21, i20) | 0;
+ HEAP32[i14 >> 2] = HEAP32[i26 >> 2];
+ i19 = HEAP32[i17 >> 2] | 0;
+ i1 = HEAP32[i16 >> 2] | 0;
+ HEAP32[i12 >> 2] = HEAP32[i14 >> 2];
+ i1 = __ZNSt3__116__pad_and_outputIwNS_11char_traitsIwEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i12, i22, i19, i1, i21, i20) | 0;
HEAP32[i26 >> 2] = i1;
if (i25 | 0) _free(i25);
_free(i24);
@@ -47763,22 +46873,113 @@ function __ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6
return i1 | 0;
}
+function __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE15__insert_uniqueERKS2_(i17, i16, i11) {
+ i17 = i17 | 0;
+ i16 = i16 | 0;
+ i11 = i11 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, d5 = 0.0, d6 = 0.0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i18 = 0;
+ i18 = STACKTOP;
+ STACKTOP = STACKTOP + 16 | 0;
+ i2 = i18;
+ i8 = HEAP32[i11 >> 2] | 0;
+ i15 = i8 * 33 ^ 5381;
+ i14 = i16 + 4 | 0;
+ i7 = HEAP32[i14 >> 2] | 0;
+ i13 = (i7 | 0) == 0;
+ L1 : do if (!i13) {
+ i9 = i7 + -1 | 0;
+ i10 = (i9 & i7 | 0) == 0;
+ if (i10) i3 = i9 & i15; else i3 = (i15 >>> 0) % (i7 >>> 0) | 0;
+ i1 = HEAP32[(HEAP32[i16 >> 2] | 0) + (i3 << 2) >> 2] | 0;
+ if (!i1) i12 = 12; else while (1) {
+ i1 = HEAP32[i1 >> 2] | 0;
+ if (!i1) {
+ i12 = 12;
+ break L1;
+ }
+ i4 = HEAP32[i1 + 4 >> 2] | 0;
+ if (i10) i4 = i4 & i9; else i4 = (i4 >>> 0) % (i7 >>> 0) | 0;
+ if ((i4 | 0) != (i3 | 0)) {
+ i12 = 12;
+ break L1;
+ }
+ if ((HEAP32[i1 + 8 >> 2] | 0) == (i8 | 0)) {
+ i2 = 0;
+ break;
+ }
+ }
+ } else {
+ i3 = 0;
+ i12 = 12;
+ } while (0);
+ if ((i12 | 0) == 12) {
+ __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE16__construct_nodeERKS2_j(i2, i16, i11, i15);
+ i8 = i16 + 12 | 0;
+ d5 = +(((HEAP32[i8 >> 2] | 0) + 1 | 0) >>> 0);
+ d6 = +HEAPF32[i16 + 16 >> 2];
+ do if (i13 | d5 > +(i7 >>> 0) * d6) {
+ if (i7 >>> 0 > 2) i1 = (i7 + -1 & i7 | 0) == 0; else i1 = 0;
+ i1 = (i1 & 1 | i7 << 1) ^ 1;
+ i3 = ~~+Math_ceil(+(d5 / d6)) >>> 0;
+ __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE6rehashEj(i16, i1 >>> 0 < i3 >>> 0 ? i3 : i1);
+ i1 = HEAP32[i14 >> 2] | 0;
+ i3 = i1 + -1 | 0;
+ if (!(i3 & i1)) {
+ i7 = i1;
+ i3 = i3 & i15;
+ break;
+ } else {
+ i7 = i1;
+ i3 = (i15 >>> 0) % (i1 >>> 0) | 0;
+ break;
+ }
+ } while (0);
+ i1 = HEAP32[(HEAP32[i16 >> 2] | 0) + (i3 << 2) >> 2] | 0;
+ if (!i1) {
+ i15 = i16 + 8 | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
+ HEAP32[i1 >> 2] = HEAP32[i15 >> 2];
+ HEAP32[i15 >> 2] = i1;
+ HEAP32[(HEAP32[i16 >> 2] | 0) + (i3 << 2) >> 2] = i15;
+ i3 = HEAP32[i1 >> 2] | 0;
+ if (i3) {
+ i3 = HEAP32[i3 + 4 >> 2] | 0;
+ i4 = i7 + -1 | 0;
+ if (!(i4 & i7)) i3 = i3 & i4; else i3 = (i3 >>> 0) % (i7 >>> 0) | 0;
+ HEAP32[(HEAP32[i16 >> 2] | 0) + (i3 << 2) >> 2] = i1;
+ }
+ } else {
+ i16 = HEAP32[i2 >> 2] | 0;
+ HEAP32[i16 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i1 >> 2] = i16;
+ i1 = i16;
+ }
+ HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 1;
+ HEAP32[i2 >> 2] = 0;
+ i2 = 1;
+ }
+ HEAP32[i17 >> 2] = i1;
+ HEAP8[i17 + 4 >> 0] = i2;
+ STACKTOP = i18;
+ return;
+}
+
function __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEE20__node_insert_uniqueEPNS_11__hash_nodeIS4_PvEE(i16, i15, i1) {
i16 = i16 | 0;
i15 = i15 | 0;
i1 = i1 | 0;
var i2 = 0, i3 = 0, i4 = 0, d5 = 0.0, d6 = 0.0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0;
- i8 = HEAP32[i1 + 8 >> 2] | 0;
- i2 = i8 * 33 ^ 5381;
+ i9 = HEAP32[i1 + 8 >> 2] | 0;
+ i2 = i9 * 33 ^ 5381;
i14 = i1 + 4 | 0;
HEAP32[i14 >> 2] = i2;
i13 = i15 + 4 | 0;
i7 = HEAP32[i13 >> 2] | 0;
i12 = (i7 | 0) == 0;
L1 : do if (!i12) {
- i9 = i7 + -1 | 0;
- i10 = (i9 & i7 | 0) == 0;
- if (i10) i3 = i9 & i2; else i3 = (i2 >>> 0) % (i7 >>> 0) | 0;
+ i10 = i7 + -1 | 0;
+ i8 = (i10 & i7 | 0) == 0;
+ if (i8) i3 = i10 & i2; else i3 = (i2 >>> 0) % (i7 >>> 0) | 0;
i2 = HEAP32[(HEAP32[i15 >> 2] | 0) + (i3 << 2) >> 2] | 0;
if (!i2) i11 = 12; else while (1) {
i4 = HEAP32[i2 >> 2] | 0;
@@ -47787,12 +46988,12 @@ function __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_
break L1;
}
i2 = HEAP32[i4 + 4 >> 2] | 0;
- if (i10) i2 = i2 & i9; else i2 = (i2 >>> 0) % (i7 >>> 0) | 0;
+ if (i8) i2 = i2 & i10; else i2 = (i2 >>> 0) % (i7 >>> 0) | 0;
if ((i2 | 0) != (i3 | 0)) {
i11 = 12;
break L1;
}
- if ((HEAP32[i4 + 8 >> 2] | 0) == (i8 | 0)) {
+ if ((HEAP32[i4 + 8 >> 2] | 0) == (i9 | 0)) {
i2 = 0;
i1 = i4;
break;
@@ -47804,12 +47005,12 @@ function __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_
} while (0);
if ((i11 | 0) == 12) {
i8 = i15 + 12 | 0;
- d6 = +(((HEAP32[i8 >> 2] | 0) + 1 | 0) >>> 0);
- d5 = +HEAPF32[i15 + 16 >> 2];
- do if (i12 | d6 > +(i7 >>> 0) * d5) {
+ d5 = +(((HEAP32[i8 >> 2] | 0) + 1 | 0) >>> 0);
+ d6 = +HEAPF32[i15 + 16 >> 2];
+ do if (i12 | d5 > +(i7 >>> 0) * d6) {
if (i7 >>> 0 > 2) i2 = (i7 + -1 & i7 | 0) == 0; else i2 = 0;
i4 = (i2 & 1 | i7 << 1) ^ 1;
- i2 = ~~+Math_ceil(+(d6 / d5)) >>> 0;
+ i2 = ~~+Math_ceil(+(d5 / d6)) >>> 0;
__ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEE6rehashEj(i15, i4 >>> 0 < i2 >>> 0 ? i2 : i4);
i4 = HEAP32[i13 >> 2] | 0;
i2 = HEAP32[i14 >> 2] | 0;
@@ -47858,58 +47059,58 @@ function __ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i23 = 0, i24 = 0, i25 = 0;
i18 = STACKTOP;
STACKTOP = STACKTOP + 176 | 0;
- i16 = i18 + 76 | 0;
+ i12 = i18 + 76 | 0;
i7 = i18 + 48 | 0;
i6 = i18 + 32 | 0;
i3 = i18 + 24 | 0;
i2 = i18 + 8 | 0;
- i4 = i18;
+ i5 = i18;
i10 = i18 + 138 | 0;
i8 = i18 + 72 | 0;
i11 = i18 + 80 | 0;
- i14 = i18 + 68 | 0;
- i13 = i18 + 64 | 0;
- i17 = i18 + 60 | 0;
- i15 = i18 + 56 | 0;
- i5 = i4;
- HEAP32[i5 >> 2] = 37;
- HEAP32[i5 + 4 >> 2] = 0;
- i5 = __ZNSt3__114__num_put_base14__format_floatEPcPKcj(i4 + 1 | 0, 31408, HEAP32[i22 + 4 >> 2] | 0) | 0;
+ i17 = i18 + 68 | 0;
+ i16 = i18 + 64 | 0;
+ i13 = i18 + 60 | 0;
+ i14 = i18 + 56 | 0;
+ i4 = i5;
+ HEAP32[i4 >> 2] = 37;
+ HEAP32[i4 + 4 >> 2] = 0;
+ i4 = __ZNSt3__114__num_put_base14__format_floatEPcPKcj(i5 + 1 | 0, 32872, HEAP32[i22 + 4 >> 2] | 0) | 0;
HEAP32[i8 >> 2] = i10;
i1 = __ZNSt3__16__clocEv() | 0;
- if (i5) {
+ if (i4) {
HEAP32[i2 >> 2] = HEAP32[i22 + 8 >> 2];
HEAPF64[i2 + 8 >> 3] = d9;
- i1 = __ZNSt3__112__snprintf_lEPcjP15__locale_structPKcz(i10, 30, i1, i4, i2) | 0;
+ i1 = __ZNSt3__112__snprintf_lEPcjP15__locale_structPKcz(i10, 30, i1, i5, i2) | 0;
} else {
HEAPF64[i3 >> 3] = d9;
- i1 = __ZNSt3__112__snprintf_lEPcjP15__locale_structPKcz(i10, 30, i1, i4, i3) | 0;
+ i1 = __ZNSt3__112__snprintf_lEPcjP15__locale_structPKcz(i10, 30, i1, i5, i3) | 0;
}
if ((i1 | 0) > 29) {
i1 = __ZNSt3__16__clocEv() | 0;
- if (i5) {
+ if (i4) {
HEAP32[i6 >> 2] = HEAP32[i22 + 8 >> 2];
HEAPF64[i6 + 8 >> 3] = d9;
- i2 = __ZNSt3__112__asprintf_lEPPcP15__locale_structPKcz(i8, i1, i4, i6) | 0;
+ i2 = __ZNSt3__112__asprintf_lEPPcP15__locale_structPKcz(i8, i1, i5, i6) | 0;
} else {
HEAPF64[i7 >> 3] = d9;
- i2 = __ZNSt3__112__asprintf_lEPPcP15__locale_structPKcz(i8, i1, i4, i7) | 0;
+ i2 = __ZNSt3__112__asprintf_lEPPcP15__locale_structPKcz(i8, i1, i5, i7) | 0;
}
i1 = HEAP32[i8 >> 2] | 0;
if (!i1) __ZSt17__throw_bad_allocv(); else {
i19 = i1;
i23 = i1;
- i12 = i2;
+ i15 = i2;
}
} else {
i19 = HEAP32[i8 >> 2] | 0;
i23 = 0;
- i12 = i1;
+ i15 = i1;
}
- i2 = i19 + i12 | 0;
+ i2 = i19 + i15 | 0;
i3 = __ZNSt3__114__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE(i19, i2, i22) | 0;
if ((i19 | 0) != (i10 | 0)) {
- i1 = _malloc(i12 << 1) | 0;
+ i1 = _malloc(i15 << 1) | 0;
if (!i1) __ZSt17__throw_bad_allocv(); else {
i20 = i19;
i24 = i1;
@@ -47921,20 +47122,109 @@ function __ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6
i25 = 0;
}
i19 = __ZNKSt3__18ios_base6getlocEv(i22) | 0;
- HEAP32[i17 >> 2] = i19;
- __ZNSt3__19__num_putIcE23__widen_and_group_floatEPcS2_S2_S2_RS2_S3_RKNS_6localeE(i20, i3, i2, i24, i14, i13, i17);
+ HEAP32[i13 >> 2] = i19;
+ __ZNSt3__19__num_putIcE23__widen_and_group_floatEPcS2_S2_S2_RS2_S3_RKNS_6localeE(i20, i3, i2, i24, i17, i16, i13);
__ZNSt3__114__shared_count16__release_sharedEv(i19) | 0;
- HEAP32[i15 >> 2] = HEAP32[i26 >> 2];
- i20 = HEAP32[i14 >> 2] | 0;
- i26 = HEAP32[i13 >> 2] | 0;
- HEAP32[i16 >> 2] = HEAP32[i15 >> 2];
- i26 = __ZNSt3__116__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i16, i24, i20, i26, i22, i21) | 0;
+ HEAP32[i14 >> 2] = HEAP32[i26 >> 2];
+ i20 = HEAP32[i17 >> 2] | 0;
+ i26 = HEAP32[i16 >> 2] | 0;
+ HEAP32[i12 >> 2] = HEAP32[i14 >> 2];
+ i26 = __ZNSt3__116__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i12, i24, i20, i26, i22, i21) | 0;
_free(i25);
_free(i23);
STACKTOP = i18;
return i26 | 0;
}
+function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__get_white_spaceERS4_S4_RjRKNS_5ctypeIwEE(i1, i5, i6, i7, i4) {
+ i1 = i1 | 0;
+ i5 = i5 | 0;
+ i6 = i6 | 0;
+ i7 = i7 | 0;
+ i4 = i4 | 0;
+ var i2 = 0, i3 = 0, i8 = 0;
+ L1 : while (1) {
+ i1 = HEAP32[i5 >> 2] | 0;
+ do if (i1) {
+ i2 = HEAP32[i1 + 12 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0;
+ if ((i1 | 0) == -1) {
+ HEAP32[i5 >> 2] = 0;
+ i3 = 1;
+ break;
+ } else {
+ i3 = (HEAP32[i5 >> 2] | 0) == 0;
+ break;
+ }
+ } else i3 = 1; while (0);
+ i2 = HEAP32[i6 >> 2] | 0;
+ do if (i2) {
+ i1 = HEAP32[i2 + 12 >> 2] | 0;
+ if ((i1 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i1 = HEAP32[i1 >> 2] | 0;
+ if ((i1 | 0) != -1) if (i3) {
+ i3 = i2;
+ break;
+ } else {
+ i3 = i2;
+ break L1;
+ } else {
+ HEAP32[i6 >> 2] = 0;
+ i8 = 15;
+ break;
+ }
+ } else i8 = 15; while (0);
+ if ((i8 | 0) == 15) {
+ i8 = 0;
+ if (i3) {
+ i3 = 0;
+ break;
+ } else i3 = 0;
+ }
+ i1 = HEAP32[i5 >> 2] | 0;
+ i2 = HEAP32[i1 + 12 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0;
+ if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i4 >> 2] | 0) + 12 >> 2] & 31](i4, 8192, i1) | 0)) break;
+ i1 = HEAP32[i5 >> 2] | 0;
+ i2 = i1 + 12 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) {
+ FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
+ continue;
+ } else {
+ HEAP32[i2 >> 2] = i3 + 4;
+ continue;
+ }
+ }
+ i1 = HEAP32[i5 >> 2] | 0;
+ do if (i1) {
+ i2 = HEAP32[i1 + 12 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0;
+ if ((i1 | 0) == -1) {
+ HEAP32[i5 >> 2] = 0;
+ i2 = 1;
+ break;
+ } else {
+ i2 = (HEAP32[i5 >> 2] | 0) == 0;
+ break;
+ }
+ } else i2 = 1; while (0);
+ do if (i3) {
+ i1 = HEAP32[i3 + 12 >> 2] | 0;
+ if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
+ if ((i1 | 0) != -1) if (i2) break; else {
+ i8 = 39;
+ break;
+ } else {
+ HEAP32[i6 >> 2] = 0;
+ i8 = 37;
+ break;
+ }
+ } else i8 = 37; while (0);
+ if ((i8 | 0) == 37 ? i2 : 0) i8 = 39;
+ if ((i8 | 0) == 39) HEAP32[i7 >> 2] = HEAP32[i7 >> 2] | 2;
+ return;
+}
+
function __ZNSt3__19__num_getIwE19__stage2_float_loopEwRbRcPcRS4_wwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSE_RjPw(i4, i9, i12, i7, i10, i2, i3, i8, i13, i14, i11, i5) {
i4 = i4 | 0;
i9 = i9 | 0;
@@ -47992,7 +47282,7 @@ function __ZNSt3__19__num_getIwE19__stage2_float_loopEwRbRcPcRS4_wwRKNS_12basic_
i2 = i1 - i5 | 0;
i1 = i2 >> 2;
if ((i2 | 0) <= 124) {
- i3 = HEAP8[31159 + i1 >> 0] | 0;
+ i3 = HEAP8[32623 + i1 >> 0] | 0;
switch (i1 | 0) {
case 24:
case 25:
@@ -48037,63 +47327,63 @@ function __ZNSt3__19__num_getIwE19__stage2_float_loopEwRbRcPcRS4_wwRKNS_12basic_
function _load_asm2wasm(i1) {
i1 = i1 | 0;
- var i2 = 0, i3 = 0, d4 = 0.0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0;
+ var d2 = 0.0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i6 = i8 + 24 | 0;
- i3 = i8 + 28 | 0;
+ i5 = i8 + 24 | 0;
+ i4 = i8 + 28 | 0;
i7 = i8 + 4 | 0;
- i5 = i8;
+ i6 = i8;
__ZL12prepare2wasmv();
- HEAP8[i3 >> 0] = 0;
- i1 = __ZN4wasm20Asm2WasmPreProcessor7processEPc(i3, i1) | 0;
- if (HEAP8[40892] | 0) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 13475) | 0;
+ HEAP8[i4 >> 0] = 0;
+ i1 = __ZN4wasm20Asm2WasmPreProcessor7processEPc(i4, i1) | 0;
+ if (HEAP8[42364] | 0) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 13994) | 0;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEEC2Ev(i7);
- i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseToplevelEPc(i7, i1) | 0;
- i10 = __Znwj(160) | 0;
- _memset(i10 | 0, 0, 160) | 0;
+ i3 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseToplevelEPc(i7, i1) | 0;
+ i10 = __Znwj(164) | 0;
+ _memset(i10 | 0, 0, 164) | 0;
__ZN4wasm16AllocatingModuleC2Ev(i10);
- HEAP32[9224] = i10;
+ HEAP32[9592] = i10;
i10 = _emscripten_asm_const_i(0) | 0;
- i9 = HEAP32[9224] | 0;
+ i9 = HEAP32[9592] | 0;
HEAP32[i9 + 108 >> 2] = i10;
- i1 = HEAP8[i3 >> 0] | 0;
+ i1 = HEAP8[i4 >> 0] | 0;
HEAP32[i9 + 112 >> 2] = i1 << 24 >> 24 == 0 ? i10 : -1;
- if (HEAP8[40892] | 0) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 13533) | 0;
+ if (HEAP8[42364] | 0) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 14052) | 0;
i10 = __Znwj(120) | 0;
- __ZN4wasm15Asm2WasmBuilderC2ERNS_16AllocatingModuleEbi(i10, HEAP32[9224] | 0, i1 << 24 >> 24 != 0, HEAP32[9219] | 0);
- HEAP32[9220] = i10;
- HEAP32[i5 >> 2] = i2;
- HEAP32[i6 >> 2] = HEAP32[i5 >> 2];
- __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i10, i6);
- if (HEAP8[40892] | 0) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 13545) | 0;
- __ZN4wasm15Asm2WasmBuilder8optimizeEv(HEAP32[9220] | 0);
- if (HEAP8[40892] | 0) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 13560) | 0;
- i2 = HEAP32[9220] | 0;
- i3 = i2 + 52 | 0;
- i2 = HEAP32[i2 + 48 >> 2] | 0;
+ __ZN4wasm15Asm2WasmBuilderC2ERNS_16AllocatingModuleEbi(i10, HEAP32[9592] | 0, i1 << 24 >> 24 != 0, HEAP32[9587] | 0);
+ HEAP32[9588] = i10;
+ HEAP32[i6 >> 2] = i3;
+ HEAP32[i5 >> 2] = HEAP32[i6 >> 2];
+ __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i10, i5);
+ if (HEAP8[42364] | 0) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 14064) | 0;
+ __ZN4wasm15Asm2WasmBuilder8optimizeEv(HEAP32[9588] | 0);
+ if (HEAP8[42364] | 0) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 14079) | 0;
+ i4 = HEAP32[9588] | 0;
+ i1 = i4 + 52 | 0;
+ i4 = HEAP32[i4 + 48 >> 2] | 0;
L13 : while (1) {
- if ((i2 | 0) == (i3 | 0)) {
+ if ((i4 | 0) == (i1 | 0)) {
i1 = 11;
break;
}
- L16 : do if (HEAP8[i2 + 28 >> 0] | 0) {
- d4 = +_emscripten_asm_const_dii(1, HEAP32[i2 + 32 >> 2] | 0, HEAP32[i2 + 36 >> 2] | 0);
- i1 = HEAP32[i2 + 20 >> 2] | 0;
- switch (HEAP32[i2 + 24 >> 2] | 0) {
+ L16 : do if (HEAP8[i4 + 28 >> 0] | 0) {
+ d2 = +_emscripten_asm_const_dii(1, HEAP32[i4 + 32 >> 2] | 0, HEAP32[i4 + 36 >> 2] | 0);
+ i3 = HEAP32[i4 + 20 >> 2] | 0;
+ switch (HEAP32[i4 + 24 >> 2] | 0) {
case 1:
{
- _emscripten_asm_const_iid(2, i1 | 0, +d4) | 0;
+ _emscripten_asm_const_iid(2, i3 | 0, +d2) | 0;
break L16;
}
case 3:
{
- _emscripten_asm_const_iid(3, i1 | 0, +d4) | 0;
+ _emscripten_asm_const_iid(3, i3 | 0, +d2) | 0;
break L16;
}
case 4:
{
- _emscripten_asm_const_iid(4, i1 | 0, +d4) | 0;
+ _emscripten_asm_const_iid(4, i3 | 0, +d2) | 0;
break L16;
}
default:
@@ -48103,7 +47393,7 @@ function _load_asm2wasm(i1) {
}
}
} while (0);
- i2 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i2) | 0;
+ i4 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i4) | 0;
}
if ((i1 | 0) == 11) {
__ZNSt3__113__vector_baseINS_6vectorIN6cashew6ParserINS2_3RefENS2_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS7_EEEENS8_ISA_EEED2Ev(i7);
@@ -48112,142 +47402,59 @@ function _load_asm2wasm(i1) {
} else if ((i1 | 0) == 17) _abort();
}
-function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__get_white_spaceERS4_S4_RjRKNS_5ctypeIwEE(i1, i5, i6, i7, i4) {
- i1 = i1 | 0;
+function __ZN4wasm12FunctionType5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjb(i5, i9, i1, i8) {
i5 = i5 | 0;
- i6 = i6 | 0;
- i7 = i7 | 0;
- i4 = i4 | 0;
- var i2 = 0, i3 = 0, i8 = 0;
- L1 : while (1) {
- i1 = HEAP32[i5 >> 2] | 0;
- do if (i1) {
- i2 = HEAP32[i1 + 12 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0;
- if ((i1 | 0) == -1) {
- HEAP32[i5 >> 2] = 0;
- i2 = 1;
- break;
- } else {
- i2 = (HEAP32[i5 >> 2] | 0) == 0;
- break;
- }
- } else i2 = 1; while (0);
- i3 = HEAP32[i6 >> 2] | 0;
- do if (i3) {
- i1 = HEAP32[i3 + 12 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
- if ((i1 | 0) != -1) if (i2) break; else break L1; else {
- HEAP32[i6 >> 2] = 0;
- i8 = 15;
- break;
- }
- } else i8 = 15; while (0);
- if ((i8 | 0) == 15) {
- i8 = 0;
- if (i2) {
- i3 = 0;
- break;
- } else i3 = 0;
- }
- i1 = HEAP32[i5 >> 2] | 0;
- i2 = HEAP32[i1 + 12 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0;
- if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i4 >> 2] | 0) + 12 >> 2] & 31](i4, 8192, i1) | 0)) break;
- i1 = HEAP32[i5 >> 2] | 0;
- i3 = i1 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) {
- FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
- continue;
- } else {
- HEAP32[i3 >> 2] = i2 + 4;
- continue;
- }
- }
- i1 = HEAP32[i5 >> 2] | 0;
- do if (i1) {
- i2 = HEAP32[i1 + 12 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0;
- if ((i1 | 0) == -1) {
- HEAP32[i5 >> 2] = 0;
- i2 = 1;
- break;
- } else {
- i2 = (HEAP32[i5 >> 2] | 0) == 0;
- break;
- }
- } else i2 = 1; while (0);
- do if (i3) {
- i1 = HEAP32[i3 + 12 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0;
- if ((i1 | 0) != -1) if (i2) break; else {
- i8 = 39;
- break;
- } else {
- HEAP32[i6 >> 2] = 0;
- i8 = 37;
- break;
- }
- } else i8 = 37; while (0);
- if ((i8 | 0) == 37 ? i2 : 0) i8 = 39;
- if ((i8 | 0) == 39) HEAP32[i7 >> 2] = HEAP32[i7 >> 2] | 2;
- return;
-}
-
-function __ZN4wasm12FunctionType5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjb(i5, i8, i1, i7) {
- i5 = i5 | 0;
- i8 = i8 | 0;
+ i9 = i9 | 0;
i1 = i1 | 0;
- i7 = i7 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i6 = 0, i9 = 0;
+ i8 = i8 | 0;
+ var i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0;
i6 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i2 = i6 + 4 | 0;
- i1 = i6;
- if (i7) {
- i4 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i8, 12205, 0) | 0, 32) | 0;
- HEAP32[i1 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i4, i2) | 0, 17575) | 0;
+ i1 = i6 + 4 | 0;
+ i2 = i6;
+ if (i8) {
+ i4 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i9, 12779, 0) | 0, 32) | 0;
+ HEAP32[i2 >> 2] = HEAP32[i5 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i4, i1) | 0, 18169) | 0;
}
i2 = i5 + 8 | 0;
i1 = i5 + 12 | 0;
do if ((HEAP32[i1 >> 2] | 0) != (HEAP32[i2 >> 2] | 0)) {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i8, 32) | 0;
- __Z17printMinorOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKc(i8, 12151) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i9, 32) | 0;
+ __Z17printMinorOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKc(i9, 12725) | 0;
i4 = HEAP32[i1 >> 2] | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
L6 : while (1) {
- if ((i1 | 0) == (i4 | 0)) {
+ if ((i3 | 0) == (i4 | 0)) {
i1 = 6;
break;
}
- i2 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i8, 32) | 0;
- switch (HEAP32[i1 >> 2] | 0) {
+ i2 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i9, 32) | 0;
+ switch (HEAP32[i3 >> 2] | 0) {
case 0:
{
- i3 = 16812;
+ i1 = 17406;
break;
}
case 1:
{
- i3 = 16817;
+ i1 = 17411;
break;
}
case 2:
{
- i3 = 16821;
+ i1 = 17415;
break;
}
case 3:
{
- i3 = 16825;
+ i1 = 17419;
break;
}
case 4:
{
- i3 = 16829;
+ i1 = 17423;
break;
}
default:
@@ -48256,52 +47463,52 @@ function __ZN4wasm12FunctionType5printERNSt3__113basic_ostreamIcNS1_11char_trait
break L6;
}
}
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i2, i3) | 0;
- i1 = i1 + 4 | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i2, i1) | 0;
+ i3 = i3 + 4 | 0;
}
if ((i1 | 0) == 6) {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i8, 41) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i9, 41) | 0;
break;
}
} while (0);
- i2 = i5 + 4 | 0;
- if (HEAP32[i2 >> 2] | 0) {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i8, 32) | 0;
- i1 = __Z17printMinorOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKc(i8, 17582) | 0;
- switch (HEAP32[i2 >> 2] | 0) {
+ i1 = i5 + 4 | 0;
+ if (HEAP32[i1 >> 2] | 0) {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i9, 32) | 0;
+ i2 = __Z17printMinorOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKc(i9, 18176) | 0;
+ switch (HEAP32[i1 >> 2] | 0) {
case 0:
{
- i9 = 16812;
+ i7 = 17406;
break;
}
case 1:
{
- i9 = 16817;
+ i7 = 17411;
break;
}
case 2:
{
- i9 = 16821;
+ i7 = 17415;
break;
}
case 3:
{
- i9 = 16825;
+ i7 = 17419;
break;
}
case 4:
{
- i9 = 16829;
+ i7 = 17423;
break;
}
default:
{}
}
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i1, i9) | 0, 41) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i2, i7) | 0, 41) | 0;
}
- if (i7) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 17590) | 0;
+ if (i8) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i9, 18184) | 0;
STACKTOP = i6;
- return i8 | 0;
+ return i9 | 0;
}
function __ZN4wasm11MergeBlocks10visitBlockEPNS_5BlockE(i1, i2) {
@@ -48311,41 +47518,41 @@ function __ZN4wasm11MergeBlocks10visitBlockEPNS_5BlockE(i1, i2) {
i15 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
i14 = i15 + 4 | 0;
- i12 = i15;
- i13 = i2 + 12 | 0;
+ i13 = i15;
+ i12 = i2 + 12 | 0;
i7 = i2 + 16 | 0;
i8 = i14 + 4 | 0;
i9 = i14 + 8 | 0;
i10 = i14 + 8 | 0;
- i11 = (i13 | 0) == (i14 | 0);
+ i11 = (i12 | 0) == (i14 | 0);
i1 = 0;
while (1) {
- i2 = HEAP32[i13 >> 2] | 0;
+ i2 = HEAP32[i12 >> 2] | 0;
if (i1 >>> 0 >= (HEAP32[i7 >> 2] | 0) - i2 >> 2 >>> 0) break;
- i6 = __ZN4wasm10Expression8dyn_castINS_5BlockEEEPT_v(HEAP32[i2 + (i1 << 2) >> 2] | 0) | 0;
- if (i6 | 0 ? (HEAP32[i6 + 8 >> 2] | 0) == 0 : 0) {
+ i5 = __ZN4wasm10Expression8dyn_castINS_5BlockEEEPT_v(HEAP32[i2 + (i1 << 2) >> 2] | 0) | 0;
+ if (i5 | 0 ? (HEAP32[i5 + 8 >> 2] | 0) == 0 : 0) {
HEAP32[i14 >> 2] = 0;
HEAP32[i8 >> 2] = 0;
HEAP32[i9 >> 2] = 0;
i4 = 0;
while (1) {
if (i4 >>> 0 >= i1 >>> 0) break;
- i3 = (HEAP32[i13 >> 2] | 0) + (i4 << 2) | 0;
- i2 = HEAP32[i8 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i10 >> 2] | 0)) __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i14, i3); else {
- HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
+ i2 = (HEAP32[i12 >> 2] | 0) + (i4 << 2) | 0;
+ i3 = HEAP32[i8 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i10 >> 2] | 0)) __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i14, i2); else {
+ HEAP32[i3 >> 2] = HEAP32[i2 >> 2];
HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 4;
}
i4 = i4 + 1 | 0;
}
- i5 = HEAP32[i6 + 16 >> 2] | 0;
- i4 = HEAP32[i6 + 12 >> 2] | 0;
+ i6 = HEAP32[i5 + 16 >> 2] | 0;
+ i4 = HEAP32[i5 + 12 >> 2] | 0;
while (1) {
- if ((i4 | 0) == (i5 | 0)) break;
+ if ((i4 | 0) == (i6 | 0)) break;
i2 = HEAP32[i4 >> 2] | 0;
- HEAP32[i12 >> 2] = i2;
+ HEAP32[i13 >> 2] = i2;
i3 = HEAP32[i8 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i10 >> 2] | 0)) __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i14, i12); else {
+ if ((i3 | 0) == (HEAP32[i10 >> 2] | 0)) __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i14, i13); else {
HEAP32[i3 >> 2] = i2;
HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 4;
}
@@ -48353,20 +47560,20 @@ function __ZN4wasm11MergeBlocks10visitBlockEPNS_5BlockE(i1, i2) {
}
while (1) {
i1 = i1 + 1 | 0;
- i2 = HEAP32[i13 >> 2] | 0;
+ i2 = HEAP32[i12 >> 2] | 0;
if (i1 >>> 0 >= (HEAP32[i7 >> 2] | 0) - i2 >> 2 >>> 0) break;
- i3 = i2 + (i1 << 2) | 0;
- i2 = HEAP32[i8 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i10 >> 2] | 0)) {
- __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i14, i3);
+ i2 = i2 + (i1 << 2) | 0;
+ i3 = HEAP32[i8 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i10 >> 2] | 0)) {
+ __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i14, i2);
continue;
} else {
- HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i2 >> 2];
HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 4;
continue;
}
}
- if (!i11) __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE6assignIPS3_EENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIS3_NS_15iterator_traitsISA_E9referenceEEE5valueEvE4typeESA_SA_(i13, HEAP32[i14 >> 2] | 0, HEAP32[i8 >> 2] | 0);
+ if (!i11) __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE6assignIPS3_EENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIS3_NS_15iterator_traitsISA_E9referenceEEE5valueEvE4typeESA_SA_(i12, HEAP32[i14 >> 2] | 0, HEAP32[i8 >> 2] | 0);
__ZNSt3__113__vector_baseIPN4wasm10ExpressionENS_9allocatorIS3_EEED2Ev(i14);
i1 = 0;
continue;
@@ -48377,59 +47584,271 @@ function __ZN4wasm11MergeBlocks10visitBlockEPNS_5BlockE(i1, i2) {
return;
}
-function __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE6sentryC2ERS3_b(i15, i14, i4) {
+function __ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEEEvE5visitEPNS_10ExpressionE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ if (!i1) ___assert_fail(27822, 27572, 1310, 27827);
+ do switch (HEAP32[i1 >> 2] | 0) {
+ case 0:
+ {
+ _abort();
+ break;
+ }
+ case 1:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE10visitBlockEPNS_5BlockE(i2, i1);
+ break;
+ }
+ case 2:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE7visitIfEPNS_2IfE(i2, i1);
+ break;
+ }
+ case 3:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 16 | 0);
+ break;
+ }
+ case 4:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE10visitBreakEPNS_5BreakE(i2, i1);
+ break;
+ }
+ case 5:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE11visitSwitchEPNS_6SwitchE(i2, i1);
+ break;
+ }
+ case 6:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE9visitCallEPNS_4CallE(i2, i1);
+ break;
+ }
+ case 7:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE15visitCallImportEPNS_10CallImportE(i2, i1);
+ break;
+ }
+ case 8:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE17visitCallIndirectEPNS_12CallIndirectE(i2, i1);
+ break;
+ }
+ case 20:
+ case 19:
+ case 13:
+ case 9:
+ break;
+ case 10:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 12 | 0);
+ break;
+ }
+ case 11:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 24 | 0);
+ break;
+ }
+ case 12:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE10visitStoreEPNS_5StoreE(i2, i1);
+ break;
+ }
+ case 14:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 12 | 0);
+ break;
+ }
+ case 15:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE11visitBinaryEPNS_6BinaryE(i2, i1);
+ break;
+ }
+ case 16:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE11visitSelectEPNS_6SelectE(i2, i1);
+ break;
+ }
+ case 17:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 8 | 0);
+ break;
+ }
+ case 18:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE9visitHostEPNS_4HostE(i2, i1);
+ break;
+ }
+ default:
+ {}
+ } while (0);
+ return;
+}
+
+function __ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEEEvE5visitEPNS_10ExpressionE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ if (!i1) ___assert_fail(27822, 27572, 1310, 27827);
+ do switch (HEAP32[i1 >> 2] | 0) {
+ case 0:
+ {
+ _abort();
+ break;
+ }
+ case 1:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE10visitBlockEPNS_5BlockE(i2, i1);
+ break;
+ }
+ case 2:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE7visitIfEPNS_2IfE(i2, i1);
+ break;
+ }
+ case 3:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 16 | 0);
+ break;
+ }
+ case 4:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE10visitBreakEPNS_5BreakE(i2, i1);
+ break;
+ }
+ case 5:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE11visitSwitchEPNS_6SwitchE(i2, i1);
+ break;
+ }
+ case 6:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE9visitCallEPNS_4CallE(i2, i1);
+ break;
+ }
+ case 7:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE15visitCallImportEPNS_10CallImportE(i2, i1);
+ break;
+ }
+ case 8:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE17visitCallIndirectEPNS_12CallIndirectE(i2, i1);
+ break;
+ }
+ case 20:
+ case 19:
+ case 13:
+ case 9:
+ break;
+ case 10:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 12 | 0);
+ break;
+ }
+ case 11:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 24 | 0);
+ break;
+ }
+ case 12:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE10visitStoreEPNS_5StoreE(i2, i1);
+ break;
+ }
+ case 14:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 12 | 0);
+ break;
+ }
+ case 15:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE11visitBinaryEPNS_6BinaryE(i2, i1);
+ break;
+ }
+ case 16:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE11visitSelectEPNS_6SelectE(i2, i1);
+ break;
+ }
+ case 17:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 8 | 0);
+ break;
+ }
+ case 18:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE9visitHostEPNS_4HostE(i2, i1);
+ break;
+ }
+ default:
+ {}
+ } while (0);
+ return;
+}
+
+function __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE6sentryC2ERS3_b(i15, i14, i6) {
i15 = i15 | 0;
i14 = i14 | 0;
- i4 = i4 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i16 = 0;
+ i6 = i6 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i16 = 0;
i16 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i16;
+ i4 = i16;
HEAP8[i15 >> 0] = 0;
- i3 = i14 + (HEAP32[(HEAP32[i14 >> 2] | 0) + -12 >> 2] | 0) | 0;
- i2 = i3 + 16 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if (!i1) {
- i1 = HEAP32[i3 + 72 >> 2] | 0;
+ i1 = i14 + (HEAP32[(HEAP32[i14 >> 2] | 0) + -12 >> 2] | 0) | 0;
+ i2 = i1 + 16 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if (!i3) {
+ i1 = HEAP32[i1 + 72 >> 2] | 0;
if (i1 | 0) __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i1) | 0;
- do if (!i4 ? (i5 = i14 + (HEAP32[(HEAP32[i14 >> 2] | 0) + -12 >> 2] | 0) | 0, HEAP32[i5 + 4 >> 2] & 4096 | 0) : 0) {
- i12 = __ZNKSt3__18ios_base6getlocEv(i5) | 0;
- HEAP32[i6 >> 2] = i12;
- i12 = __ZNKSt3__16locale9use_facetERNS0_2idE(i6, 38964) | 0;
- __ZNSt3__16localeD2Ev(i6);
+ do if (!i6 ? (i5 = i14 + (HEAP32[(HEAP32[i14 >> 2] | 0) + -12 >> 2] | 0) | 0, HEAP32[i5 + 4 >> 2] & 4096 | 0) : 0) {
+ i5 = __ZNKSt3__18ios_base6getlocEv(i5) | 0;
+ HEAP32[i4 >> 2] = i5;
+ i5 = __ZNKSt3__16locale9use_facetERNS0_2idE(i4, 40436) | 0;
+ __ZNSt3__16localeD2Ev(i4);
i1 = HEAP32[i14 + (HEAP32[(HEAP32[i14 >> 2] | 0) + -12 >> 2] | 0) + 24 >> 2] | 0;
- i12 = i12 + 8 | 0;
- i4 = i1;
- i13 = (i1 | 0) == 0;
- i10 = i4 + 12 | 0;
- i8 = i4 + 16 | 0;
+ i4 = i5 + 8 | 0;
i5 = i1;
+ i6 = (i1 | 0) == 0;
+ i7 = i5 + 12 | 0;
+ i8 = i5 + 16 | 0;
+ i9 = i1;
i2 = i1;
- i11 = i2 + 12 | 0;
- i9 = i2 + 16 | 0;
- i6 = i1;
- i7 = i1;
+ i10 = i2 + 12 | 0;
+ i11 = i2 + 16 | 0;
+ i12 = i1;
+ i13 = i1;
while (1) {
- if (i13) {
+ if (i6) {
i2 = 0;
i1 = 0;
break;
}
- if ((HEAP32[i10 >> 2] | 0) == (HEAP32[i8 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 36 >> 2] & 127](i4) | 0) == -1 : 0) {
+ if ((HEAP32[i7 >> 2] | 0) == (HEAP32[i8 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i9 >> 2] | 0) + 36 >> 2] & 127](i5) | 0) == -1 : 0) {
i2 = 0;
i1 = 0;
break;
}
- i3 = HEAP32[i11 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i9 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i3 = HEAPU8[i3 >> 0] | 0;
+ i3 = HEAP32[i10 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i11 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i12 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i3 = HEAPU8[i3 >> 0] | 0;
if ((i3 & 255) << 24 >> 24 <= -1) break;
- if (!(HEAP16[(HEAP32[i12 >> 2] | 0) + (i3 << 24 >> 24 << 1) >> 1] & 8192)) break;
- i3 = HEAP32[i11 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i9 >> 2] | 0)) {
- FUNCTION_TABLE_ii[HEAP32[(HEAP32[i7 >> 2] | 0) + 40 >> 2] & 127](i2) | 0;
+ if (!(HEAP16[(HEAP32[i4 >> 2] | 0) + (i3 << 24 >> 24 << 1) >> 1] & 8192)) break;
+ i3 = HEAP32[i10 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i11 >> 2] | 0)) {
+ FUNCTION_TABLE_ii[HEAP32[(HEAP32[i13 >> 2] | 0) + 40 >> 2] & 127](i2) | 0;
continue;
} else {
- HEAP32[i11 >> 2] = i3 + 1;
+ HEAP32[i10 >> 2] = i3 + 1;
continue;
}
}
@@ -48442,11 +47861,223 @@ function __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE6sentryC2ERS3_b(i15, i1
HEAP32[i13 >> 2] = HEAP32[i13 >> 2] | (HEAP32[i12 + 24 >> 2] | 0) == 0 | 6;
} while (0);
HEAP8[i15 >> 0] = (HEAP32[i14 + (HEAP32[(HEAP32[i14 >> 2] | 0) + -12 >> 2] | 0) + 16 >> 2] | 0) == 0 & 1;
- } else HEAP32[i2 >> 2] = i1 | (HEAP32[i3 + 24 >> 2] | 0) == 0 | 4;
+ } else HEAP32[i2 >> 2] = i3 | (HEAP32[i1 + 24 >> 2] | 0) == 0 | 4;
STACKTOP = i16;
return;
}
+function __ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEEEvE5visitEPNS_10ExpressionE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ if (!i1) ___assert_fail(27822, 27572, 1310, 27827);
+ do switch (HEAP32[i1 >> 2] | 0) {
+ case 0:
+ {
+ _abort();
+ break;
+ }
+ case 1:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE10visitBlockEPNS_5BlockE(i2, i1);
+ break;
+ }
+ case 2:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE7visitIfEPNS_2IfE(i2, i1);
+ break;
+ }
+ case 3:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 16 | 0);
+ break;
+ }
+ case 4:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE10visitBreakEPNS_5BreakE(i2, i1);
+ break;
+ }
+ case 5:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE11visitSwitchEPNS_6SwitchE(i2, i1);
+ break;
+ }
+ case 6:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE9visitCallEPNS_4CallE(i2, i1);
+ break;
+ }
+ case 7:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE15visitCallImportEPNS_10CallImportE(i2, i1);
+ break;
+ }
+ case 8:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE17visitCallIndirectEPNS_12CallIndirectE(i2, i1);
+ break;
+ }
+ case 20:
+ case 19:
+ case 13:
+ case 9:
+ break;
+ case 10:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 12 | 0);
+ break;
+ }
+ case 11:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 24 | 0);
+ break;
+ }
+ case 12:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE10visitStoreEPNS_5StoreE(i2, i1);
+ break;
+ }
+ case 14:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 12 | 0);
+ break;
+ }
+ case 15:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE11visitBinaryEPNS_6BinaryE(i2, i1);
+ break;
+ }
+ case 16:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE11visitSelectEPNS_6SelectE(i2, i1);
+ break;
+ }
+ case 17:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 8 | 0);
+ break;
+ }
+ case 18:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE9visitHostEPNS_4HostE(i2, i1);
+ break;
+ }
+ default:
+ {}
+ } while (0);
+ return;
+}
+
+function __ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEEEvE5visitEPNS_10ExpressionE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ if (!i1) ___assert_fail(27822, 27572, 1310, 27827);
+ do switch (HEAP32[i1 >> 2] | 0) {
+ case 0:
+ {
+ _abort();
+ break;
+ }
+ case 1:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEE10visitBlockEPNS_5BlockE(i2, i1);
+ break;
+ }
+ case 2:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEE7visitIfEPNS_2IfE(i2, i1);
+ break;
+ }
+ case 3:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 16 | 0);
+ break;
+ }
+ case 4:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEE10visitBreakEPNS_5BreakE(i2, i1);
+ break;
+ }
+ case 5:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEE11visitSwitchEPNS_6SwitchE(i2, i1);
+ break;
+ }
+ case 6:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEE9visitCallEPNS_4CallE(i2, i1);
+ break;
+ }
+ case 7:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEE15visitCallImportEPNS_10CallImportE(i2, i1);
+ break;
+ }
+ case 8:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEE17visitCallIndirectEPNS_12CallIndirectE(i2, i1);
+ break;
+ }
+ case 20:
+ case 19:
+ case 13:
+ case 9:
+ break;
+ case 10:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 12 | 0);
+ break;
+ }
+ case 11:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 24 | 0);
+ break;
+ }
+ case 12:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEE10visitStoreEPNS_5StoreE(i2, i1);
+ break;
+ }
+ case 14:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 12 | 0);
+ break;
+ }
+ case 15:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEE11visitBinaryEPNS_6BinaryE(i2, i1);
+ break;
+ }
+ case 16:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEE11visitSelectEPNS_6SelectE(i2, i1);
+ break;
+ }
+ case 17:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 8 | 0);
+ break;
+ }
+ case 18:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEE9visitHostEPNS_4HostE(i2, i1);
+ break;
+ }
+ default:
+ {}
+ } while (0);
+ return;
+}
+
function __ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwd(i1, i24, i19, i18, d7) {
i1 = i1 | 0;
i24 = i24 | 0;
@@ -48456,7 +48087,7 @@ function __ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i25 = 0;
i21 = STACKTOP;
STACKTOP = STACKTOP + 336 | 0;
- i14 = i21 + 296 | 0;
+ i10 = i21 + 296 | 0;
i5 = i21 + 32 | 0;
i3 = i21 + 24 | 0;
i2 = i21 + 8 | 0;
@@ -48464,14 +48095,14 @@ function __ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6
i8 = i21 + 300 | 0;
i6 = i21 + 292 | 0;
i9 = i21 + 64 | 0;
- i12 = i21 + 60 | 0;
- i11 = i21 + 56 | 0;
- i15 = i21 + 52 | 0;
- i13 = i21 + 48 | 0;
+ i15 = i21 + 60 | 0;
+ i14 = i21 + 56 | 0;
+ i11 = i21 + 52 | 0;
+ i12 = i21 + 48 | 0;
i25 = i4;
HEAP32[i25 >> 2] = 37;
HEAP32[i25 + 4 >> 2] = 0;
- i25 = __ZNSt3__114__num_put_base14__format_floatEPcPKcj(i4 + 1 | 0, 44980, HEAP32[i19 + 4 >> 2] | 0) | 0;
+ i25 = __ZNSt3__114__num_put_base14__format_floatEPcPKcj(i4 + 1 | 0, 46453, HEAP32[i19 + 4 >> 2] | 0) | 0;
HEAP32[i6 >> 2] = i8;
i1 = __ZNSt3__16__clocEv() | 0;
if (i25) {
@@ -48491,17 +48122,17 @@ function __ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6
if (!i1) __ZSt17__throw_bad_allocv(); else {
i16 = i1;
i22 = i1;
- i10 = i2;
+ i13 = i2;
}
} else {
i16 = HEAP32[i6 >> 2] | 0;
i22 = 0;
- i10 = i1;
+ i13 = i1;
}
- i2 = i16 + i10 | 0;
+ i2 = i16 + i13 | 0;
i3 = __ZNSt3__114__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE(i16, i2, i19) | 0;
if ((i16 | 0) != (i8 | 0)) {
- i1 = _malloc(i10 << 3) | 0;
+ i1 = _malloc(i13 << 3) | 0;
if (!i1) __ZSt17__throw_bad_allocv(); else {
i17 = i16;
i20 = i1;
@@ -48513,14 +48144,14 @@ function __ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6
i23 = 0;
}
i25 = __ZNKSt3__18ios_base6getlocEv(i19) | 0;
- HEAP32[i15 >> 2] = i25;
- __ZNSt3__19__num_putIwE23__widen_and_group_floatEPcS2_S2_PwRS3_S4_RKNS_6localeE(i17, i3, i2, i20, i12, i11, i15);
+ HEAP32[i11 >> 2] = i25;
+ __ZNSt3__19__num_putIwE23__widen_and_group_floatEPcS2_S2_PwRS3_S4_RKNS_6localeE(i17, i3, i2, i20, i15, i14, i11);
__ZNSt3__114__shared_count16__release_sharedEv(i25) | 0;
- HEAP32[i13 >> 2] = HEAP32[i24 >> 2];
- i25 = HEAP32[i12 >> 2] | 0;
- i1 = HEAP32[i11 >> 2] | 0;
- HEAP32[i14 >> 2] = HEAP32[i13 >> 2];
- i1 = __ZNSt3__116__pad_and_outputIwNS_11char_traitsIwEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i14, i20, i25, i1, i19, i18) | 0;
+ HEAP32[i12 >> 2] = HEAP32[i24 >> 2];
+ i25 = HEAP32[i15 >> 2] | 0;
+ i1 = HEAP32[i14 >> 2] | 0;
+ HEAP32[i10 >> 2] = HEAP32[i12 >> 2];
+ i1 = __ZNSt3__116__pad_and_outputIwNS_11char_traitsIwEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i10, i20, i25, i1, i19, i18) | 0;
HEAP32[i24 >> 2] = i1;
if (i23 | 0) _free(i23);
_free(i22);
@@ -48528,93 +48159,109 @@ function __ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6
return i1 | 0;
}
-function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__get_white_spaceERS4_S4_RjRKNS_5ctypeIcEE(i2, i5, i6, i7, i1) {
+function __ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEEEvE5visitEPNS_10ExpressionE(i2, i1) {
i2 = i2 | 0;
- i5 = i5 | 0;
- i6 = i6 | 0;
- i7 = i7 | 0;
i1 = i1 | 0;
- var i3 = 0, i4 = 0, i8 = 0;
- i4 = i1 + 8 | 0;
- L1 : while (1) {
- i1 = HEAP32[i5 >> 2] | 0;
- do if (i1) {
- if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) {
- HEAP32[i5 >> 2] = 0;
- i1 = 0;
- break;
- } else {
- i1 = HEAP32[i5 >> 2] | 0;
- break;
- }
- } else i1 = 0; while (0);
- i2 = (i1 | 0) == 0;
- i1 = HEAP32[i6 >> 2] | 0;
- do if (i1) {
- if ((HEAP32[i1 + 12 >> 2] | 0) != (HEAP32[i1 + 16 >> 2] | 0)) if (i2) break; else {
- i2 = i1;
- break L1;
- }
- if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) != -1) if (i2) break; else {
- i2 = i1;
- break L1;
- } else {
- HEAP32[i6 >> 2] = 0;
- i8 = 12;
- break;
- }
- } else i8 = 12; while (0);
- if ((i8 | 0) == 12) {
- i8 = 0;
- if (i2) {
- i2 = 0;
- break;
- } else i1 = 0;
+ if (!i1) ___assert_fail(27822, 27572, 1310, 27827);
+ do switch (HEAP32[i1 >> 2] | 0) {
+ case 0:
+ {
+ _abort();
+ break;
}
- i3 = HEAP32[i5 >> 2] | 0;
- i2 = HEAP32[i3 + 12 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAPU8[i2 >> 0] | 0;
- if ((i2 & 255) << 24 >> 24 <= -1) {
- i2 = i1;
+ case 1:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE10visitBlockEPNS_5BlockE(i2, i1);
break;
}
- if (!(HEAP16[(HEAP32[i4 >> 2] | 0) + (i2 << 24 >> 24 << 1) >> 1] & 8192)) {
- i2 = i1;
+ case 2:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE7visitIfEPNS_2IfE(i2, i1);
break;
}
- i1 = HEAP32[i5 >> 2] | 0;
- i3 = i1 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) {
- FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
- continue;
- } else {
- HEAP32[i3 >> 2] = i2 + 1;
- continue;
+ case 3:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 16 | 0);
+ break;
}
- }
- i1 = HEAP32[i5 >> 2] | 0;
- do if (i1) {
- if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) {
- HEAP32[i5 >> 2] = 0;
- i1 = 0;
+ case 4:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE10visitBreakEPNS_5BreakE(i2, i1);
break;
- } else {
- i1 = HEAP32[i5 >> 2] | 0;
+ }
+ case 5:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE11visitSwitchEPNS_6SwitchE(i2, i1);
break;
}
- } else i1 = 0; while (0);
- i1 = (i1 | 0) == 0;
- do if (i2) {
- if ((HEAP32[i2 + 12 >> 2] | 0) == (HEAP32[i2 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) == -1 : 0) {
- HEAP32[i6 >> 2] = 0;
- i8 = 32;
+ case 6:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE9visitCallEPNS_4CallE(i2, i1);
break;
}
- if (!i1) i8 = 33;
- } else i8 = 32; while (0);
- if ((i8 | 0) == 32 ? i1 : 0) i8 = 33;
- if ((i8 | 0) == 33) HEAP32[i7 >> 2] = HEAP32[i7 >> 2] | 2;
+ case 7:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE15visitCallImportEPNS_10CallImportE(i2, i1);
+ break;
+ }
+ case 8:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE17visitCallIndirectEPNS_12CallIndirectE(i2, i1);
+ break;
+ }
+ case 20:
+ case 19:
+ case 13:
+ case 9:
+ break;
+ case 10:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 12 | 0);
+ break;
+ }
+ case 11:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 24 | 0);
+ break;
+ }
+ case 12:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE10visitStoreEPNS_5StoreE(i2, i1);
+ break;
+ }
+ case 14:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 12 | 0);
+ break;
+ }
+ case 15:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE11visitBinaryEPNS_6BinaryE(i2, i1);
+ break;
+ }
+ case 16:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE11visitSelectEPNS_6SelectE(i2, i1);
+ break;
+ }
+ case 17:
+ {
+ i2 = HEAP32[i2 + 4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 8 | 0);
+ break;
+ }
+ case 18:
+ {
+ __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE9visitHostEPNS_4HostE(i2, i1);
+ break;
+ }
+ default:
+ {}
+ } while (0);
return;
}
@@ -48627,7 +48274,7 @@ function __ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i21 = 0, i22 = 0, i23 = 0, i25 = 0;
i16 = STACKTOP;
STACKTOP = STACKTOP + 160 | 0;
- i14 = i16 + 68 | 0;
+ i10 = i16 + 68 | 0;
i5 = i16 + 32 | 0;
i3 = i16 + 24 | 0;
i2 = i16 + 8 | 0;
@@ -48635,14 +48282,14 @@ function __ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6
i8 = i16 + 130 | 0;
i6 = i16 + 64 | 0;
i9 = i16 + 72 | 0;
- i12 = i16 + 60 | 0;
- i11 = i16 + 56 | 0;
- i15 = i16 + 52 | 0;
- i13 = i16 + 48 | 0;
+ i15 = i16 + 60 | 0;
+ i14 = i16 + 56 | 0;
+ i11 = i16 + 52 | 0;
+ i12 = i16 + 48 | 0;
i25 = i4;
HEAP32[i25 >> 2] = 37;
HEAP32[i25 + 4 >> 2] = 0;
- i25 = __ZNSt3__114__num_put_base14__format_floatEPcPKcj(i4 + 1 | 0, 44980, HEAP32[i20 + 4 >> 2] | 0) | 0;
+ i25 = __ZNSt3__114__num_put_base14__format_floatEPcPKcj(i4 + 1 | 0, 46453, HEAP32[i20 + 4 >> 2] | 0) | 0;
HEAP32[i6 >> 2] = i8;
i1 = __ZNSt3__16__clocEv() | 0;
if (i25) {
@@ -48662,17 +48309,17 @@ function __ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6
if (!i1) __ZSt17__throw_bad_allocv(); else {
i17 = i1;
i21 = i1;
- i10 = i2;
+ i13 = i2;
}
} else {
i17 = HEAP32[i6 >> 2] | 0;
i21 = 0;
- i10 = i1;
+ i13 = i1;
}
- i2 = i17 + i10 | 0;
+ i2 = i17 + i13 | 0;
i3 = __ZNSt3__114__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE(i17, i2, i20) | 0;
if ((i17 | 0) != (i8 | 0)) {
- i1 = _malloc(i10 << 1) | 0;
+ i1 = _malloc(i13 << 1) | 0;
if (!i1) __ZSt17__throw_bad_allocv(); else {
i18 = i17;
i22 = i1;
@@ -48684,14 +48331,14 @@ function __ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6
i23 = 0;
}
i25 = __ZNKSt3__18ios_base6getlocEv(i20) | 0;
- HEAP32[i15 >> 2] = i25;
- __ZNSt3__19__num_putIcE23__widen_and_group_floatEPcS2_S2_S2_RS2_S3_RKNS_6localeE(i18, i3, i2, i22, i12, i11, i15);
+ HEAP32[i11 >> 2] = i25;
+ __ZNSt3__19__num_putIcE23__widen_and_group_floatEPcS2_S2_S2_RS2_S3_RKNS_6localeE(i18, i3, i2, i22, i15, i14, i11);
__ZNSt3__114__shared_count16__release_sharedEv(i25) | 0;
- HEAP32[i13 >> 2] = HEAP32[i24 >> 2];
- i24 = HEAP32[i12 >> 2] | 0;
- i25 = HEAP32[i11 >> 2] | 0;
- HEAP32[i14 >> 2] = HEAP32[i13 >> 2];
- i25 = __ZNSt3__116__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i14, i22, i24, i25, i20, i19) | 0;
+ HEAP32[i12 >> 2] = HEAP32[i24 >> 2];
+ i24 = HEAP32[i15 >> 2] | 0;
+ i25 = HEAP32[i14 >> 2] | 0;
+ HEAP32[i10 >> 2] = HEAP32[i12 >> 2];
+ i25 = __ZNSt3__116__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i10, i22, i24, i25, i20, i19) | 0;
_free(i23);
_free(i21);
STACKTOP = i16;
@@ -48720,31 +48367,31 @@ function __ZNSt3__110__stdinbufIcE9__getcharEb(i11, i14) {
i1 = HEAP32[i11 + 44 >> 2] | 0;
i1 = (i1 | 0) > 1 ? i1 : 1;
i10 = i11 + 32 | 0;
- i2 = 0;
+ i3 = 0;
while (1) {
- if ((i2 | 0) >= (i1 | 0)) {
+ if ((i3 | 0) >= (i1 | 0)) {
i15 = 8;
break;
}
- i3 = _getc(HEAP32[i10 >> 2] | 0) | 0;
- if ((i3 | 0) == -1) {
+ i2 = _getc(HEAP32[i10 >> 2] | 0) | 0;
+ if ((i2 | 0) == -1) {
i1 = -1;
break;
}
- HEAP8[i13 + i2 >> 0] = i3;
- i2 = i2 + 1 | 0;
+ HEAP8[i13 + i3 >> 0] = i2;
+ i3 = i3 + 1 | 0;
}
if ((i15 | 0) == 8) {
do if (!(HEAP8[i11 + 53 >> 0] | 0)) {
- i6 = i11 + 40 | 0;
- i5 = i11 + 36 | 0;
+ i5 = i11 + 40 | 0;
+ i6 = i11 + 36 | 0;
i7 = i12 + 1 | 0;
L11 : while (1) {
- i17 = HEAP32[i6 >> 2] | 0;
- i2 = i17;
- i3 = HEAP32[i2 >> 2] | 0;
- i2 = HEAP32[i2 + 4 >> 2] | 0;
- i18 = HEAP32[i5 >> 2] | 0;
+ i17 = HEAP32[i5 >> 2] | 0;
+ i3 = i17;
+ i2 = HEAP32[i3 >> 2] | 0;
+ i3 = HEAP32[i3 + 4 >> 2] | 0;
+ i18 = HEAP32[i6 >> 2] | 0;
i4 = i13 + i1 | 0;
switch (FUNCTION_TABLE_iiiiiiiii[HEAP32[(HEAP32[i18 >> 2] | 0) + 16 >> 2] & 15](i18, i17, i13, i4, i8, i12, i7, i9) | 0) {
case 3:
@@ -48762,9 +48409,9 @@ function __ZNSt3__110__stdinbufIcE9__getcharEb(i11, i14) {
default:
break L11;
}
- i18 = HEAP32[i6 >> 2] | 0;
- HEAP32[i18 >> 2] = i3;
- HEAP32[i18 + 4 >> 2] = i2;
+ i18 = HEAP32[i5 >> 2] | 0;
+ HEAP32[i18 >> 2] = i2;
+ HEAP32[i18 + 4 >> 2] = i3;
if ((i1 | 0) == 8) {
i15 = 17;
break;
@@ -48853,14 +48500,14 @@ function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
break;
}
i1 = HEAP32[i6 >> 2] | 0;
- i3 = i1 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) {
+ i2 = i1 + 12 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) {
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
i1 = HEAP32[i6 >> 2] | 0;
if (!i1) i1 = 0; else i5 = 21;
} else {
- HEAP32[i3 >> 2] = i2 + 1;
+ HEAP32[i2 >> 2] = i3 + 1;
i5 = 21;
}
do if ((i5 | 0) == 21) if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) {
@@ -48891,17 +48538,17 @@ function __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2
i15 = i15 | 0;
i1 = i1 | 0;
var i2 = 0, i3 = 0, i4 = 0, d5 = 0.0, d6 = 0.0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0;
- i8 = HEAP32[i1 + 8 >> 2] | 0;
- i2 = i8 * 33 ^ 5381;
+ i9 = HEAP32[i1 + 8 >> 2] | 0;
+ i2 = i9 * 33 ^ 5381;
i14 = i1 + 4 | 0;
HEAP32[i14 >> 2] = i2;
i13 = i15 + 4 | 0;
i7 = HEAP32[i13 >> 2] | 0;
i12 = (i7 | 0) == 0;
L1 : do if (!i12) {
- i9 = i7 + -1 | 0;
- i10 = (i9 & i7 | 0) == 0;
- if (i10) i3 = i9 & i2; else i3 = (i2 >>> 0) % (i7 >>> 0) | 0;
+ i10 = i7 + -1 | 0;
+ i8 = (i10 & i7 | 0) == 0;
+ if (i8) i3 = i10 & i2; else i3 = (i2 >>> 0) % (i7 >>> 0) | 0;
i2 = HEAP32[(HEAP32[i15 >> 2] | 0) + (i3 << 2) >> 2] | 0;
if (!i2) i11 = 12; else while (1) {
i4 = HEAP32[i2 >> 2] | 0;
@@ -48910,12 +48557,12 @@ function __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2
break L1;
}
i2 = HEAP32[i4 + 4 >> 2] | 0;
- if (i10) i2 = i2 & i9; else i2 = (i2 >>> 0) % (i7 >>> 0) | 0;
+ if (i8) i2 = i2 & i10; else i2 = (i2 >>> 0) % (i7 >>> 0) | 0;
if ((i2 | 0) != (i3 | 0)) {
i11 = 12;
break L1;
}
- if ((HEAP32[i4 + 8 >> 2] | 0) == (i8 | 0)) {
+ if ((HEAP32[i4 + 8 >> 2] | 0) == (i9 | 0)) {
i2 = 0;
i1 = i4;
break;
@@ -48927,12 +48574,12 @@ function __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2
} while (0);
if ((i11 | 0) == 12) {
i8 = i15 + 12 | 0;
- d6 = +(((HEAP32[i8 >> 2] | 0) + 1 | 0) >>> 0);
- d5 = +HEAPF32[i15 + 16 >> 2];
- do if (i12 | d6 > +(i7 >>> 0) * d5) {
+ d5 = +(((HEAP32[i8 >> 2] | 0) + 1 | 0) >>> 0);
+ d6 = +HEAPF32[i15 + 16 >> 2];
+ do if (i12 | d5 > +(i7 >>> 0) * d6) {
if (i7 >>> 0 > 2) i2 = (i7 + -1 & i7 | 0) == 0; else i2 = 0;
i4 = (i2 & 1 | i7 << 1) ^ 1;
- i2 = ~~+Math_ceil(+(d6 / d5)) >>> 0;
+ i2 = ~~+Math_ceil(+(d5 / d6)) >>> 0;
__ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE6rehashEj(i15, i4 >>> 0 < i2 >>> 0 ? i2 : i4);
i4 = HEAP32[i13 >> 2] | 0;
i2 = HEAP32[i14 >> 2] | 0;
@@ -48972,6 +48619,85 @@ function __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2
return;
}
+function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterCurlyERPc(i12, i14) {
+ i12 = i12 | 0;
+ i14 = i14 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i13 = 0, i15 = 0, i16 = 0;
+ i16 = STACKTOP;
+ STACKTOP = STACKTOP + 48 | 0;
+ i4 = i16 + 36 | 0;
+ i3 = i16 + 32 | 0;
+ i2 = i16 + 28 | 0;
+ i11 = i16;
+ i5 = i16 + 24 | 0;
+ i6 = i16 + 20 | 0;
+ i9 = i16 + 16 | 0;
+ __ZNSt3__16vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE6resizeEj(i12, (((HEAP32[i12 + 4 >> 2] | 0) - (HEAP32[i12 >> 2] | 0) | 0) / 12 | 0) + 1 | 0);
+ i13 = __ZN6cashew12ValueBuilder10makeObjectEv() | 0;
+ i7 = i11 + 12 | 0;
+ i8 = i11 + 8 | 0;
+ L1 : while (1) {
+ __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i14);
+ i1 = HEAP32[i14 >> 2] | 0;
+ switch (HEAP8[i1 >> 0] | 0) {
+ case 0:
+ {
+ i15 = 3;
+ break L1;
+ }
+ case 125:
+ {
+ i10 = i1;
+ break L1;
+ }
+ default:
+ {}
+ }
+ __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i11, i1);
+ if ((HEAP32[i7 >> 2] & -2 | 0) != 2) {
+ i15 = 5;
+ break;
+ }
+ HEAP32[i14 >> 2] = (HEAP32[i14 >> 2] | 0) + (HEAP32[i8 >> 2] | 0);
+ __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i14);
+ i1 = HEAP32[i14 >> 2] | 0;
+ if ((HEAP8[i1 >> 0] | 0) != 58) {
+ i15 = 7;
+ break;
+ }
+ HEAP32[i14 >> 2] = i1 + 1;
+ i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i12, i14, 23908) | 0;
+ HEAP32[i5 >> 2] = i13;
+ HEAP32[i6 >> 2] = HEAP32[i11 >> 2];
+ HEAP32[i9 >> 2] = i1;
+ HEAP32[i2 >> 2] = HEAP32[i5 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
+ HEAP32[i4 >> 2] = HEAP32[i9 >> 2];
+ __ZN6cashew12ValueBuilder14appendToObjectENS_3RefENS_7IStringES1_(i2, i3, i4);
+ __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i14);
+ i1 = HEAP32[i14 >> 2] | 0;
+ switch (HEAP8[i1 >> 0] | 0) {
+ case 125:
+ {
+ i15 = 11;
+ break L1;
+ }
+ case 44:
+ break;
+ default:
+ {
+ i15 = 10;
+ break L1;
+ }
+ }
+ HEAP32[i14 >> 2] = i1 + 1;
+ }
+ if ((i15 | 0) == 3) ___assert_fail(23796, 22821, 692, 23852); else if ((i15 | 0) == 5) ___assert_fail(23868, 22821, 695, 23852); else if ((i15 | 0) == 7) ___assert_fail(23335, 22821, 698, 23852); else if ((i15 | 0) == 10) _abort(); else if ((i15 | 0) == 11) i10 = i1;
+ HEAP32[i14 >> 2] = i10 + 1;
+ STACKTOP = i16;
+ return i13 | 0;
+}
+
function __ZNSt3__110__stdinbufIwE9__getcharEb(i11, i14) {
i11 = i11 | 0;
i14 = i14 | 0;
@@ -48994,31 +48720,31 @@ function __ZNSt3__110__stdinbufIwE9__getcharEb(i11, i14) {
i1 = HEAP32[i11 + 44 >> 2] | 0;
i1 = (i1 | 0) > 1 ? i1 : 1;
i10 = i11 + 32 | 0;
- i2 = 0;
+ i3 = 0;
while (1) {
- if ((i2 | 0) >= (i1 | 0)) {
+ if ((i3 | 0) >= (i1 | 0)) {
i15 = 8;
break;
}
- i3 = _getc(HEAP32[i10 >> 2] | 0) | 0;
- if ((i3 | 0) == -1) {
+ i2 = _getc(HEAP32[i10 >> 2] | 0) | 0;
+ if ((i2 | 0) == -1) {
i1 = -1;
break;
}
- HEAP8[i13 + i2 >> 0] = i3;
- i2 = i2 + 1 | 0;
+ HEAP8[i13 + i3 >> 0] = i2;
+ i3 = i3 + 1 | 0;
}
if ((i15 | 0) == 8) {
do if (!(HEAP8[i11 + 53 >> 0] | 0)) {
- i6 = i11 + 40 | 0;
- i5 = i11 + 36 | 0;
+ i5 = i11 + 40 | 0;
+ i6 = i11 + 36 | 0;
i7 = i12 + 4 | 0;
L11 : while (1) {
- i17 = HEAP32[i6 >> 2] | 0;
- i2 = i17;
- i3 = HEAP32[i2 >> 2] | 0;
- i2 = HEAP32[i2 + 4 >> 2] | 0;
- i18 = HEAP32[i5 >> 2] | 0;
+ i17 = HEAP32[i5 >> 2] | 0;
+ i3 = i17;
+ i2 = HEAP32[i3 >> 2] | 0;
+ i3 = HEAP32[i3 + 4 >> 2] | 0;
+ i18 = HEAP32[i6 >> 2] | 0;
i4 = i13 + i1 | 0;
switch (FUNCTION_TABLE_iiiiiiiii[HEAP32[(HEAP32[i18 >> 2] | 0) + 16 >> 2] & 15](i18, i17, i13, i4, i8, i12, i7, i9) | 0) {
case 3:
@@ -49036,9 +48762,9 @@ function __ZNSt3__110__stdinbufIwE9__getcharEb(i11, i14) {
default:
break L11;
}
- i18 = HEAP32[i6 >> 2] | 0;
- HEAP32[i18 >> 2] = i3;
- HEAP32[i18 + 4 >> 2] = i2;
+ i18 = HEAP32[i5 >> 2] | 0;
+ HEAP32[i18 >> 2] = i2;
+ HEAP32[i18 + 4 >> 2] = i3;
if ((i1 | 0) == 8) {
i15 = 17;
break;
@@ -49082,85 +48808,6 @@ function __ZNSt3__110__stdinbufIwE9__getcharEb(i11, i14) {
return i1 | 0;
}
-function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterCurlyERPc(i11, i14) {
- i11 = i11 | 0;
- i14 = i14 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i13 = 0, i15 = 0, i16 = 0;
- i16 = STACKTOP;
- STACKTOP = STACKTOP + 48 | 0;
- i8 = i16 + 36 | 0;
- i6 = i16 + 32 | 0;
- i4 = i16 + 28 | 0;
- i9 = i16;
- i3 = i16 + 24 | 0;
- i5 = i16 + 20 | 0;
- i7 = i16 + 16 | 0;
- __ZNSt3__16vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE6resizeEj(i11, (((HEAP32[i11 + 4 >> 2] | 0) - (HEAP32[i11 >> 2] | 0) | 0) / 12 | 0) + 1 | 0);
- i13 = __ZN6cashew12ValueBuilder10makeObjectEv() | 0;
- i12 = i9 + 12 | 0;
- i10 = i9 + 8 | 0;
- L1 : while (1) {
- __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i14);
- i1 = HEAP32[i14 >> 2] | 0;
- switch (HEAP8[i1 >> 0] | 0) {
- case 0:
- {
- i15 = 3;
- break L1;
- }
- case 125:
- {
- i2 = i1;
- break L1;
- }
- default:
- {}
- }
- __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i9, i1);
- if ((HEAP32[i12 >> 2] & -2 | 0) != 2) {
- i15 = 5;
- break;
- }
- HEAP32[i14 >> 2] = (HEAP32[i14 >> 2] | 0) + (HEAP32[i10 >> 2] | 0);
- __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i14);
- i1 = HEAP32[i14 >> 2] | 0;
- if ((HEAP8[i1 >> 0] | 0) != 58) {
- i15 = 7;
- break;
- }
- HEAP32[i14 >> 2] = i1 + 1;
- i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i11, i14, 23320) | 0;
- HEAP32[i3 >> 2] = i13;
- HEAP32[i5 >> 2] = HEAP32[i9 >> 2];
- HEAP32[i7 >> 2] = i1;
- HEAP32[i4 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i6 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i8 >> 2] = HEAP32[i7 >> 2];
- __ZN6cashew12ValueBuilder14appendToObjectENS_3RefENS_7IStringES1_(i4, i6, i8);
- __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i14);
- i1 = HEAP32[i14 >> 2] | 0;
- switch (HEAP8[i1 >> 0] | 0) {
- case 125:
- {
- i15 = 11;
- break L1;
- }
- case 44:
- break;
- default:
- {
- i15 = 10;
- break L1;
- }
- }
- HEAP32[i14 >> 2] = i1 + 1;
- }
- if ((i15 | 0) == 3) ___assert_fail(23208, 22233, 692, 23264); else if ((i15 | 0) == 5) ___assert_fail(23280, 22233, 695, 23264); else if ((i15 | 0) == 7) ___assert_fail(22747, 22233, 698, 23264); else if ((i15 | 0) == 10) _abort(); else if ((i15 | 0) == 11) i2 = i1;
- HEAP32[i14 >> 2] = i2 + 1;
- STACKTOP = i16;
- return i13 | 0;
-}
-
function __ZN4wasm15Asm2WasmBuilder16parseAsmBinaryOpEN6cashew7IStringENS1_3RefES3_P7AsmData(i10, i1, i4, i9, i3) {
i10 = i10 | 0;
i1 = i1 | 0;
@@ -49170,294 +48817,172 @@ function __ZN4wasm15Asm2WasmBuilder16parseAsmBinaryOpEN6cashew7IStringENS1_3RefE
var i2 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0;
i15 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i13 = i15 + 28 | 0;
+ i12 = i15 + 28 | 0;
i2 = i15 + 24 | 0;
- i7 = i15 + 20 | 0;
- i8 = i15 + 16 | 0;
- i11 = i15 + 4 | 0;
- i12 = i15;
- i5 = HEAP32[i1 >> 2] | 0;
- i6 = i5;
- do if ((i5 | 0) != (HEAP32[9264] | 0)) if ((i5 | 0) != (HEAP32[9265] | 0)) if ((i5 | 0) != (HEAP32[9279] | 0)) if ((i5 | 0) != (HEAP32[9267] | 0)) if ((i5 | 0) != (HEAP32[9266] | 0)) if ((i5 | 0) != (HEAP32[9268] | 0)) if ((i5 | 0) != (HEAP32[9281] | 0)) if ((i5 | 0) != (HEAP32[9280] | 0)) if ((i5 | 0) != (HEAP32[9282] | 0)) if ((i5 | 0) != (HEAP32[9275] | 0)) if ((i5 | 0) != (HEAP32[9276] | 0)) {
+ i5 = i15 + 20 | 0;
+ i6 = i15 + 16 | 0;
+ i13 = i15 + 4 | 0;
+ i14 = i15;
+ i7 = HEAP32[i1 >> 2] | 0;
+ i8 = i7;
+ do if ((i7 | 0) != (HEAP32[9632] | 0)) if ((i7 | 0) != (HEAP32[9633] | 0)) if ((i7 | 0) != (HEAP32[9647] | 0)) if ((i7 | 0) != (HEAP32[9635] | 0)) if ((i7 | 0) != (HEAP32[9634] | 0)) if ((i7 | 0) != (HEAP32[9636] | 0)) if ((i7 | 0) != (HEAP32[9649] | 0)) if ((i7 | 0) != (HEAP32[9648] | 0)) if ((i7 | 0) != (HEAP32[9650] | 0)) if ((i7 | 0) != (HEAP32[9643] | 0)) if ((i7 | 0) != (HEAP32[9644] | 0)) {
i4 = HEAP32[i4 >> 2] | 0;
HEAP32[i2 >> 2] = i4;
- HEAP32[i13 >> 2] = HEAP32[i2 >> 2];
- i2 = (__ZN4wasm15Asm2WasmBuilder14detectWasmTypeEN6cashew3RefEP7AsmData(i10, i13, i3) | 0) == 1;
- HEAP32[i7 >> 2] = i4;
- HEAP32[i13 >> 2] = HEAP32[i7 >> 2];
- if (__ZN4wasm15Asm2WasmBuilder18isUnsignedCoercionEN6cashew3RefE(i10, i13) | 0) i1 = 1; else {
- HEAP32[i8 >> 2] = HEAP32[i9 >> 2];
- HEAP32[i13 >> 2] = HEAP32[i8 >> 2];
- i1 = __ZN4wasm15Asm2WasmBuilder18isUnsignedCoercionEN6cashew3RefE(i10, i13) | 0;
+ HEAP32[i12 >> 2] = HEAP32[i2 >> 2];
+ i2 = (__ZN4wasm15Asm2WasmBuilder14detectWasmTypeEN6cashew3RefEP7AsmData(i10, i12, i3) | 0) == 1;
+ HEAP32[i5 >> 2] = i4;
+ HEAP32[i12 >> 2] = HEAP32[i5 >> 2];
+ if (__ZN4wasm15Asm2WasmBuilder18isUnsignedCoercionEN6cashew3RefE(i10, i12) | 0) i1 = 1; else {
+ HEAP32[i6 >> 2] = HEAP32[i9 >> 2];
+ HEAP32[i12 >> 2] = HEAP32[i6 >> 2];
+ i1 = __ZN4wasm15Asm2WasmBuilder18isUnsignedCoercionEN6cashew3RefE(i10, i12) | 0;
}
- if ((i5 | 0) == (HEAP32[9277] | 0)) {
- i14 = i2 ? (i1 ? 4 : 3) : 13;
+ if ((i7 | 0) == (HEAP32[9645] | 0)) {
+ i11 = i2 ? (i1 ? 4 : 3) : 13;
break;
}
- if ((i5 | 0) == (HEAP32[9278] | 0)) {
- i14 = i2 & i1 ? 6 : 5;
+ if ((i7 | 0) == (HEAP32[9646] | 0)) {
+ i11 = i2 & i1 ? 6 : 5;
break;
}
- if ((i5 | 0) == (HEAP32[9272] | 0)) {
- i14 = i2 ? (i1 ? 26 : 25) : 30;
+ if ((i7 | 0) == (HEAP32[9640] | 0)) {
+ i11 = i2 ? (i1 ? 26 : 25) : 30;
break;
}
- if ((i5 | 0) == (HEAP32[9274] | 0)) {
- i14 = i2 ? (i1 ? 24 : 23) : 29;
+ if ((i7 | 0) == (HEAP32[9642] | 0)) {
+ i11 = i2 ? (i1 ? 24 : 23) : 29;
break;
}
- if ((i5 | 0) == (HEAP32[9273] | 0)) {
- i14 = i2 ? (i1 ? 22 : 21) : 28;
+ if ((i7 | 0) == (HEAP32[9641] | 0)) {
+ i11 = i2 ? (i1 ? 22 : 21) : 28;
break;
}
- if ((i5 | 0) == (HEAP32[9271] | 0)) {
+ if ((i7 | 0) == (HEAP32[9639] | 0)) {
STACKTOP = i15;
return (i2 ? (i1 ? 20 : 19) : 27) | 0;
} else {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i11, 21413, 18);
- HEAP32[i12 >> 2] = i6;
- HEAP32[i13 >> 2] = HEAP32[i12 >> 2];
- __ZN4wasmL8abort_onENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew7IStringE(i11, i13);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i13, 22001, 18);
+ HEAP32[i14 >> 2] = i8;
+ HEAP32[i12 >> 2] = HEAP32[i14 >> 2];
+ __ZN4wasmL8abort_onENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew7IStringE(i13, i12);
}
- } else i14 = 18; else i14 = 17; else i14 = 11; else i14 = 12; else i14 = 10; else i14 = 9; else i14 = 8; else i14 = 7; else i14 = 2; else i14 = 1; else i14 = 0; while (0);
+ } else i11 = 18; else i11 = 17; else i11 = 11; else i11 = 12; else i11 = 10; else i11 = 9; else i11 = 8; else i11 = 7; else i11 = 2; else i11 = 1; else i11 = 0; while (0);
STACKTOP = i15;
- return i14 | 0;
+ return i11 | 0;
}
-function __ZN4wasm15Asm2WasmBuilder13detectAsmTypeEN6cashew3RefEP7AsmData(i9, i4, i6) {
+function __ZN4wasm15Asm2WasmBuilder13detectAsmTypeEN6cashew3RefEP7AsmData(i9, i5, i6) {
i9 = i9 | 0;
- i4 = i4 | 0;
+ i5 = i5 | 0;
i6 = i6 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0;
i11 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i7 = i11 + 12 | 0;
- i2 = i11 + 8 | 0;
- i1 = i11 + 4 | 0;
+ i8 = i11 + 12 | 0;
+ i1 = i11 + 8 | 0;
+ i2 = i11 + 4 | 0;
i3 = i11;
- do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 0) | 0, 36932) | 0) {
- i5 = __ZN6cashew3RefixEj(i4, 1) | 0;
- i5 = __ZN6cashew5Value10getIStringEv(HEAP32[i5 >> 2] | 0) | 0;
- HEAP32[i7 >> 2] = HEAP32[i5 >> 2];
- if (__ZNKSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmData5LocalEEENS_22__unordered_map_hasherIS3_S6_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S6_NS_8equal_toIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS6_PvEEEERKT_(i6, i7) | 0) {
+ do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i5, 0) | 0, 38404) | 0) {
+ i4 = __ZN6cashew3RefixEj(i5, 1) | 0;
+ i4 = __ZN6cashew5Value10getIStringEv(HEAP32[i4 >> 2] | 0) | 0;
+ HEAP32[i8 >> 2] = HEAP32[i4 >> 2];
+ if (__ZNKSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmData5LocalEEENS_22__unordered_map_hasherIS3_S6_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S6_NS_8equal_toIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS6_PvEEEERKT_(i6, i8) | 0) {
i10 = 11;
break;
}
i1 = i9 + 48 | 0;
- if ((__ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i1, i7) | 0) == (i9 + 52 | 0)) ___assert_fail(20770, 12455, 270, 21490); else {
- i8 = (__ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEEixERSA_(i1, i7) | 0) + 4 | 0;
- i8 = __ZN4wasm13wasmToAsmTypeENS_8WasmTypeE(HEAP32[i8 >> 2] | 0) | 0;
+ if ((__ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i1, i8) | 0) == (i9 + 52 | 0)) ___assert_fail(21358, 13029, 270, 22078); else {
+ i7 = (__ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEEixERSA_(i1, i8) | 0) + 4 | 0;
+ i7 = __ZN4wasm13wasmToAsmTypeENS_8WasmTypeE(HEAP32[i7 >> 2] | 0) | 0;
break;
}
- } else if ((__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 0) | 0, 36980) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 1) | 0, 0) | 0, 36932) | 0 : 0) ? (i5 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 1) | 0, 1) | 0, i5 = __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i9 + 60 | 0, __ZN6cashew5Value10getIStringEv(HEAP32[i5 >> 2] | 0) | 0) | 0, (i5 | 0) != (i9 + 64 | 0)) : 0) i8 = HEAP32[i5 + 28 >> 2] | 0; else i10 = 11; while (0);
+ } else if ((__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i5, 0) | 0, 38452) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i5, 1) | 0, 0) | 0, 38404) | 0 : 0) ? (i4 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i5, 1) | 0, 1) | 0, i4 = __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i9 + 60 | 0, __ZN6cashew5Value10getIStringEv(HEAP32[i4 >> 2] | 0) | 0) | 0, (i4 | 0) != (i9 + 64 | 0)) : 0) i7 = HEAP32[i4 + 28 >> 2] | 0; else i10 = 11; while (0);
if ((i10 | 0) == 11) {
- HEAP32[i1 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i5 >> 2];
HEAP32[i3 >> 2] = HEAP32[i9 + 80 >> 2];
- HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
- HEAP32[i7 >> 2] = HEAP32[i3 >> 2];
- i8 = __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i2, i6, 0, i7) | 0;
+ HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i8 >> 2] = HEAP32[i3 >> 2];
+ i7 = __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i1, i6, 0, i8) | 0;
}
STACKTOP = i11;
- return i8 | 0;
-}
-
-function __ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEEEvE5visitEPNS_10ExpressionE(i2, i1) {
- i2 = i2 | 0;
- i1 = i1 | 0;
- if (!i1) ___assert_fail(26470, 26220, 1229, 26475);
- do switch (HEAP32[i1 >> 2] | 0) {
- case 0:
- {
- _abort();
- break;
- }
- case 1:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE10visitBlockEPNS_5BlockE(i2, i1);
- break;
- }
- case 2:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE7visitIfEPNS_2IfE(i2, i1);
- break;
- }
- case 3:
- {
- i2 = HEAP32[i2 + 4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 16 | 0);
- break;
- }
- case 4:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE10visitBreakEPNS_5BreakE(i2, i1);
- break;
- }
- case 5:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE11visitSwitchEPNS_6SwitchE(i2, i1);
- break;
- }
- case 6:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE9visitCallEPNS_4CallE(i2, i1);
- break;
- }
- case 7:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE15visitCallImportEPNS_10CallImportE(i2, i1);
- break;
- }
- case 8:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE17visitCallIndirectEPNS_12CallIndirectE(i2, i1);
- break;
- }
- case 19:
- case 18:
- case 13:
- case 9:
- break;
- case 10:
- {
- i2 = HEAP32[i2 + 4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 12 | 0);
- break;
- }
- case 11:
- {
- i2 = HEAP32[i2 + 4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 24 | 0);
- break;
- }
- case 12:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE10visitStoreEPNS_5StoreE(i2, i1);
- break;
- }
- case 14:
- {
- i2 = HEAP32[i2 + 4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 12 | 0);
- break;
- }
- case 15:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE11visitBinaryEPNS_6BinaryE(i2, i1);
- break;
- }
- case 16:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE11visitSelectEPNS_6SelectE(i2, i1);
- break;
- }
- case 17:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE9visitHostEPNS_4HostE(i2, i1);
- break;
- }
- default:
- {}
- } while (0);
- return;
+ return i7 | 0;
}
-function __ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEEEvE5visitEPNS_10ExpressionE(i2, i1) {
+function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__get_white_spaceERS4_S4_RjRKNS_5ctypeIcEE(i2, i5, i6, i7, i1) {
i2 = i2 | 0;
+ i5 = i5 | 0;
+ i6 = i6 | 0;
+ i7 = i7 | 0;
i1 = i1 | 0;
- if (!i1) ___assert_fail(26470, 26220, 1229, 26475);
- do switch (HEAP32[i1 >> 2] | 0) {
- case 0:
- {
- _abort();
- break;
- }
- case 1:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE10visitBlockEPNS_5BlockE(i2, i1);
- break;
- }
- case 2:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE7visitIfEPNS_2IfE(i2, i1);
- break;
- }
- case 3:
- {
- i2 = HEAP32[i2 + 4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 16 | 0);
- break;
- }
- case 4:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE10visitBreakEPNS_5BreakE(i2, i1);
- break;
- }
- case 5:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE11visitSwitchEPNS_6SwitchE(i2, i1);
- break;
- }
- case 6:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE9visitCallEPNS_4CallE(i2, i1);
- break;
- }
- case 7:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE15visitCallImportEPNS_10CallImportE(i2, i1);
- break;
- }
- case 8:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE17visitCallIndirectEPNS_12CallIndirectE(i2, i1);
- break;
- }
- case 19:
- case 18:
- case 13:
- case 9:
- break;
- case 10:
- {
- i2 = HEAP32[i2 + 4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 12 | 0);
- break;
- }
- case 11:
- {
- i2 = HEAP32[i2 + 4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 24 | 0);
- break;
- }
- case 12:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE10visitStoreEPNS_5StoreE(i2, i1);
- break;
+ var i3 = 0, i4 = 0, i8 = 0;
+ i4 = i1 + 8 | 0;
+ L1 : while (1) {
+ i1 = HEAP32[i5 >> 2] | 0;
+ do if (i1) {
+ if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) {
+ HEAP32[i5 >> 2] = 0;
+ i1 = 0;
+ break;
+ } else {
+ i1 = HEAP32[i5 >> 2] | 0;
+ break;
+ }
+ } else i1 = 0; while (0);
+ i1 = (i1 | 0) == 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ do if (i2) {
+ if ((HEAP32[i2 + 12 >> 2] | 0) != (HEAP32[i2 + 16 >> 2] | 0)) if (i1) break; else break L1;
+ if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) != -1) if (i1) break; else break L1; else {
+ HEAP32[i6 >> 2] = 0;
+ i8 = 12;
+ break;
+ }
+ } else i8 = 12; while (0);
+ if ((i8 | 0) == 12) {
+ i8 = 0;
+ if (i1) {
+ i2 = 0;
+ break;
+ } else i2 = 0;
}
- case 14:
- {
- i2 = HEAP32[i2 + 4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 12 | 0);
- break;
+ i1 = HEAP32[i5 >> 2] | 0;
+ i3 = HEAP32[i1 + 12 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAPU8[i3 >> 0] | 0;
+ if ((i1 & 255) << 24 >> 24 <= -1) break;
+ if (!(HEAP16[(HEAP32[i4 >> 2] | 0) + (i1 << 24 >> 24 << 1) >> 1] & 8192)) break;
+ i1 = HEAP32[i5 >> 2] | 0;
+ i2 = i1 + 12 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) {
+ FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0;
+ continue;
+ } else {
+ HEAP32[i2 >> 2] = i3 + 1;
+ continue;
}
- case 15:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE11visitBinaryEPNS_6BinaryE(i2, i1);
+ }
+ i1 = HEAP32[i5 >> 2] | 0;
+ do if (i1) {
+ if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) {
+ HEAP32[i5 >> 2] = 0;
+ i1 = 0;
break;
- }
- case 16:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE11visitSelectEPNS_6SelectE(i2, i1);
+ } else {
+ i1 = HEAP32[i5 >> 2] | 0;
break;
}
- case 17:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE9visitHostEPNS_4HostE(i2, i1);
+ } else i1 = 0; while (0);
+ i1 = (i1 | 0) == 0;
+ do if (i2) {
+ if ((HEAP32[i2 + 12 >> 2] | 0) == (HEAP32[i2 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) == -1 : 0) {
+ HEAP32[i6 >> 2] = 0;
+ i8 = 32;
break;
}
- default:
- {}
- } while (0);
+ if (!i1) i8 = 33;
+ } else i8 = 32; while (0);
+ if ((i8 | 0) == 32 ? i1 : 0) i8 = 33;
+ if ((i8 | 0) == 33) HEAP32[i7 >> 2] = HEAP32[i7 >> 2] | 2;
return;
}
@@ -49561,104 +49086,67 @@ function __ZNSt3__1L12ucs4_to_utf8EPKjS1_RS1_PhS3_RS3_mNS_12codecvt_modeE(i1, i8
return i1 | 0;
}
-function __ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEEEvE5visitEPNS_10ExpressionE(i2, i1) {
- i2 = i2 | 0;
- i1 = i1 | 0;
- if (!i1) ___assert_fail(26470, 26220, 1229, 26475);
- do switch (HEAP32[i1 >> 2] | 0) {
- case 0:
- {
- _abort();
- break;
- }
- case 1:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE10visitBlockEPNS_5BlockE(i2, i1);
- break;
- }
- case 2:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE7visitIfEPNS_2IfE(i2, i1);
- break;
- }
- case 3:
- {
- i2 = HEAP32[i2 + 4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 16 | 0);
- break;
- }
- case 4:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE10visitBreakEPNS_5BreakE(i2, i1);
- break;
- }
- case 5:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE11visitSwitchEPNS_6SwitchE(i2, i1);
- break;
- }
- case 6:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE9visitCallEPNS_4CallE(i2, i1);
- break;
- }
- case 7:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE15visitCallImportEPNS_10CallImportE(i2, i1);
- break;
- }
- case 8:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE17visitCallIndirectEPNS_12CallIndirectE(i2, i1);
- break;
- }
- case 19:
- case 18:
- case 13:
- case 9:
- break;
- case 10:
- {
- i2 = HEAP32[i2 + 4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 12 | 0);
- break;
- }
- case 11:
- {
- i2 = HEAP32[i2 + 4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 24 | 0);
- break;
- }
- case 12:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE10visitStoreEPNS_5StoreE(i2, i1);
- break;
- }
- case 14:
- {
- i2 = HEAP32[i2 + 4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 12 | 0);
- break;
- }
- case 15:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE11visitBinaryEPNS_6BinaryE(i2, i1);
- break;
- }
- case 16:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE11visitSelectEPNS_6SelectE(i2, i1);
- break;
- }
- case 17:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE9visitHostEPNS_4HostE(i2, i1);
- break;
+function __ZN4wasm18ensureFunctionTypeENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleER10MixedArena(i12, i13, i3) {
+ i12 = i12 | 0;
+ i13 = i13 | 0;
+ i3 = i3 | 0;
+ var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i14 = 0;
+ i14 = STACKTOP;
+ STACKTOP = STACKTOP + 32 | 0;
+ i4 = i14 + 24 | 0;
+ i1 = i14 + 12 | 0;
+ i10 = i14 + 8 | 0;
+ i2 = i14 + 4 | 0;
+ i11 = i14;
+ __ZNSt3__1plIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_12basic_stringIT_T0_T1_EEPKS6_RKS9_(i1, 13001, i12);
+ __ZN6cashew7IStringC2EPKcb(i4, (HEAP8[i1 >> 0] & 1) == 0 ? i1 + 1 | 0 : HEAP32[i1 + 8 >> 2] | 0, 0);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1);
+ i1 = i13 + 48 | 0;
+ i4 = HEAP32[i4 >> 2] | 0;
+ HEAP32[i10 >> 2] = i4;
+ if ((__ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_(i1, i10) | 0) == (i13 + 52 | 0)) {
+ i1 = __ZN10MixedArena5allocIN4wasm12FunctionTypeEEEPT_v(i3) | 0;
+ HEAP32[i1 >> 2] = i4;
+ i2 = HEAP16[i12 >> 1] | 0;
+ if (!(i2 & 1)) {
+ i10 = i12 + 8 | 0;
+ i2 = (i2 & 65535) >>> 8 & 255;
+ } else {
+ i2 = i12 + 8 | 0;
+ i10 = i2;
+ i2 = HEAP8[HEAP32[i2 >> 2] >> 0] | 0;
+ }
+ i9 = i12 + 1 | 0;
+ i4 = __ZN4wasm13sigToWasmTypeEc(i2) | 0;
+ HEAP32[i1 + 4 >> 2] = i4;
+ i4 = i1 + 8 | 0;
+ i5 = i1 + 12 | 0;
+ i6 = i1 + 16 | 0;
+ i7 = i12 + 4 | 0;
+ i8 = 1;
+ while (1) {
+ i2 = HEAP8[i12 >> 0] | 0;
+ i3 = (i2 & 1) == 0;
+ if (i3) i2 = (i2 & 255) >>> 1; else i2 = HEAP32[i7 >> 2] | 0;
+ if (i8 >>> 0 >= i2 >>> 0) break;
+ if (i3) i2 = i9; else i2 = HEAP32[i10 >> 2] | 0;
+ i2 = __ZN4wasm13sigToWasmTypeEc(HEAP8[i2 + i8 >> 0] | 0) | 0;
+ HEAP32[i11 >> 2] = i2;
+ i3 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 < (HEAP32[i6 >> 2] | 0) >>> 0) {
+ HEAP32[i3 >> 2] = i2;
+ HEAP32[i5 >> 2] = i3 + 4;
+ } else __ZNSt3__16vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i4, i11);
+ i8 = i8 + 1 | 0;
}
- default:
- {}
- } while (0);
- return;
+ __ZN4wasm6Module15addFunctionTypeEPNS_12FunctionTypeE(i13, i1);
+ } else {
+ HEAP32[i2 >> 2] = i4;
+ i1 = __ZNSt3__13mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixEOS2_(i1, i2) | 0;
+ i1 = HEAP32[i1 >> 2] | 0;
+ }
+ STACKTOP = i14;
+ return i1 | 0;
}
function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner10visitStoreEPNS_5StoreE(i1, i4, i2) {
@@ -49714,6 +49202,73 @@ function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vect
return;
}
+function __ZNSt3__18ios_base4InitC2Ev(i1) {
+ i1 = i1 | 0;
+ var i2 = 0, i3 = 0, i4 = 0;
+ i3 = HEAP32[1066] | 0;
+ __ZNSt3__110__stdinbufIcEC2EP8_IO_FILEP11__mbstate_t(40068, i3, 40124);
+ HEAP32[9847] = 8608;
+ HEAP32[9849] = 8628;
+ HEAP32[9848] = 0;
+ __ZNSt3__18ios_base4initEPv(39396, 40068);
+ HEAP32[9867] = 0;
+ HEAP32[9868] = -1;
+ i2 = HEAP32[1036] | 0;
+ __ZNSt3__111__stdoutbufIcEC2EP8_IO_FILEP11__mbstate_t(40172, i2, 40132);
+ HEAP32[9869] = 8688;
+ HEAP32[9870] = 8708;
+ __ZNSt3__18ios_base4initEPv(39480, 40172);
+ HEAP32[9888] = 0;
+ HEAP32[9889] = -1;
+ i1 = HEAP32[1007] | 0;
+ __ZNSt3__111__stdoutbufIcEC2EP8_IO_FILEP11__mbstate_t(40220, i1, 40140);
+ HEAP32[9890] = 8688;
+ HEAP32[9891] = 8708;
+ __ZNSt3__18ios_base4initEPv(39564, 40220);
+ HEAP32[9909] = 0;
+ HEAP32[9910] = -1;
+ i4 = HEAP32[39560 + (HEAP32[(HEAP32[9890] | 0) + -12 >> 2] | 0) + 24 >> 2] | 0;
+ HEAP32[9911] = 8688;
+ HEAP32[9912] = 8708;
+ __ZNSt3__18ios_base4initEPv(39648, i4);
+ HEAP32[9930] = 0;
+ HEAP32[9931] = -1;
+ HEAP32[39388 + (HEAP32[(HEAP32[9847] | 0) + -12 >> 2] | 0) + 72 >> 2] = 39476;
+ i4 = 39560 + (HEAP32[(HEAP32[9890] | 0) + -12 >> 2] | 0) + 4 | 0;
+ HEAP32[i4 >> 2] = HEAP32[i4 >> 2] | 8192;
+ HEAP32[39560 + (HEAP32[(HEAP32[9890] | 0) + -12 >> 2] | 0) + 72 >> 2] = 39476;
+ __ZNSt3__110__stdinbufIwEC2EP8_IO_FILEP11__mbstate_t(40268, i3, 40148);
+ HEAP32[9932] = 8648;
+ HEAP32[9934] = 8668;
+ HEAP32[9933] = 0;
+ __ZNSt3__18ios_base4initEPv(39736, 40268);
+ HEAP32[9952] = 0;
+ HEAP32[9953] = -1;
+ __ZNSt3__111__stdoutbufIwEC2EP8_IO_FILEP11__mbstate_t(40324, i2, 40156);
+ HEAP32[9954] = 8728;
+ HEAP32[9955] = 8748;
+ __ZNSt3__18ios_base4initEPv(39820, 40324);
+ HEAP32[9973] = 0;
+ HEAP32[9974] = -1;
+ __ZNSt3__111__stdoutbufIwEC2EP8_IO_FILEP11__mbstate_t(40372, i1, 40164);
+ HEAP32[9975] = 8728;
+ HEAP32[9976] = 8748;
+ __ZNSt3__18ios_base4initEPv(39904, 40372);
+ HEAP32[9994] = 0;
+ HEAP32[9995] = -1;
+ i1 = HEAP32[39900 + (HEAP32[(HEAP32[9975] | 0) + -12 >> 2] | 0) + 24 >> 2] | 0;
+ HEAP32[9996] = 8728;
+ HEAP32[9997] = 8748;
+ __ZNSt3__18ios_base4initEPv(39988, i1);
+ HEAP32[10015] = 0;
+ HEAP32[10016] = -1;
+ HEAP32[39728 + (HEAP32[(HEAP32[9932] | 0) + -12 >> 2] | 0) + 72 >> 2] = 39816;
+ i1 = 39900 + (HEAP32[(HEAP32[9975] | 0) + -12 >> 2] | 0) + 4 | 0;
+ HEAP32[i1 >> 2] = HEAP32[i1 >> 2] | 8192;
+ HEAP32[39900 + (HEAP32[(HEAP32[9975] | 0) + -12 >> 2] | 0) + 72 >> 2] = 39816;
+ return;
+}
+
function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner11visitSelectEPNS_6SelectE(i1, i6, i3) {
i1 = i1 | 0;
i6 = i6 | 0;
@@ -49721,15 +49276,15 @@ function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vect
var i2 = 0, i4 = 0, i5 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 80 | 0;
- i2 = i7 + 48 | 0;
- i5 = i7 + 24 | 0;
- i4 = i7;
- __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i2, i6, HEAP32[i3 + 8 >> 2] | 0);
- if (!(HEAP32[i2 + 16 >> 2] | 0)) {
- __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i5, i6, HEAP32[i3 + 12 >> 2] | 0);
- if (!(HEAP32[i5 + 16 >> 2] | 0)) {
- __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i4, i6, HEAP32[i3 + 16 >> 2] | 0);
- if (!(HEAP32[i4 + 16 >> 2] | 0)) {
+ i5 = i7 + 48 | 0;
+ i4 = i7 + 24 | 0;
+ i2 = i7;
+ __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i5, i6, HEAP32[i3 + 8 >> 2] | 0);
+ if (!(HEAP32[i5 + 16 >> 2] | 0)) {
+ __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i4, i6, HEAP32[i3 + 12 >> 2] | 0);
+ if (!(HEAP32[i4 + 16 >> 2] | 0)) {
+ __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i2, i6, HEAP32[i3 + 16 >> 2] | 0);
+ if (!(HEAP32[i2 + 16 >> 2] | 0)) {
i6 = (__ZN4wasm7Literal6geti32Ev(i2) | 0) != 0;
i6 = i6 ? i5 : i4;
HEAP32[i1 >> 2] = HEAP32[i6 >> 2];
@@ -49739,101 +49294,34 @@ function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vect
HEAP32[i1 + 16 >> 2] = HEAP32[i6 + 16 >> 2];
HEAP32[i1 + 20 >> 2] = HEAP32[i6 + 20 >> 2];
} else {
- HEAP32[i1 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i1 + 4 >> 2] = HEAP32[i4 + 4 >> 2];
- HEAP32[i1 + 8 >> 2] = HEAP32[i4 + 8 >> 2];
- HEAP32[i1 + 12 >> 2] = HEAP32[i4 + 12 >> 2];
- HEAP32[i1 + 16 >> 2] = HEAP32[i4 + 16 >> 2];
- HEAP32[i1 + 20 >> 2] = HEAP32[i4 + 20 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i1 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i1 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ HEAP32[i1 + 12 >> 2] = HEAP32[i2 + 12 >> 2];
+ HEAP32[i1 + 16 >> 2] = HEAP32[i2 + 16 >> 2];
+ HEAP32[i1 + 20 >> 2] = HEAP32[i2 + 20 >> 2];
}
} else {
- HEAP32[i1 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i1 + 4 >> 2] = HEAP32[i5 + 4 >> 2];
- HEAP32[i1 + 8 >> 2] = HEAP32[i5 + 8 >> 2];
- HEAP32[i1 + 12 >> 2] = HEAP32[i5 + 12 >> 2];
- HEAP32[i1 + 16 >> 2] = HEAP32[i5 + 16 >> 2];
- HEAP32[i1 + 20 >> 2] = HEAP32[i5 + 20 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i1 + 4 >> 2] = HEAP32[i4 + 4 >> 2];
+ HEAP32[i1 + 8 >> 2] = HEAP32[i4 + 8 >> 2];
+ HEAP32[i1 + 12 >> 2] = HEAP32[i4 + 12 >> 2];
+ HEAP32[i1 + 16 >> 2] = HEAP32[i4 + 16 >> 2];
+ HEAP32[i1 + 20 >> 2] = HEAP32[i4 + 20 >> 2];
}
} else {
- HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i1 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i1 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- HEAP32[i1 + 12 >> 2] = HEAP32[i2 + 12 >> 2];
- HEAP32[i1 + 16 >> 2] = HEAP32[i2 + 16 >> 2];
- HEAP32[i1 + 20 >> 2] = HEAP32[i2 + 20 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i5 >> 2];
+ HEAP32[i1 + 4 >> 2] = HEAP32[i5 + 4 >> 2];
+ HEAP32[i1 + 8 >> 2] = HEAP32[i5 + 8 >> 2];
+ HEAP32[i1 + 12 >> 2] = HEAP32[i5 + 12 >> 2];
+ HEAP32[i1 + 16 >> 2] = HEAP32[i5 + 16 >> 2];
+ HEAP32[i1 + 20 >> 2] = HEAP32[i5 + 20 >> 2];
}
STACKTOP = i7;
return;
}
-function __ZNSt3__18ios_base4InitC2Ev(i1) {
- i1 = i1 | 0;
- var i2 = 0, i3 = 0, i4 = 0;
- i3 = HEAP32[865] | 0;
- __ZNSt3__110__stdinbufIcEC2EP8_IO_FILEP11__mbstate_t(38596, i3, 38652);
- HEAP32[9479] = 8040;
- HEAP32[9481] = 8060;
- HEAP32[9480] = 0;
- __ZNSt3__18ios_base4initEPv(37924, 38596);
- HEAP32[9499] = 0;
- HEAP32[9500] = -1;
- i2 = HEAP32[923] | 0;
- __ZNSt3__111__stdoutbufIcEC2EP8_IO_FILEP11__mbstate_t(38700, i2, 38660);
- HEAP32[9501] = 8120;
- HEAP32[9502] = 8140;
- __ZNSt3__18ios_base4initEPv(38008, 38700);
- HEAP32[9520] = 0;
- HEAP32[9521] = -1;
- i1 = HEAP32[894] | 0;
- __ZNSt3__111__stdoutbufIcEC2EP8_IO_FILEP11__mbstate_t(38748, i1, 38668);
- HEAP32[9522] = 8120;
- HEAP32[9523] = 8140;
- __ZNSt3__18ios_base4initEPv(38092, 38748);
- HEAP32[9541] = 0;
- HEAP32[9542] = -1;
- i4 = HEAP32[38088 + (HEAP32[(HEAP32[9522] | 0) + -12 >> 2] | 0) + 24 >> 2] | 0;
- HEAP32[9543] = 8120;
- HEAP32[9544] = 8140;
- __ZNSt3__18ios_base4initEPv(38176, i4);
- HEAP32[9562] = 0;
- HEAP32[9563] = -1;
- HEAP32[37916 + (HEAP32[(HEAP32[9479] | 0) + -12 >> 2] | 0) + 72 >> 2] = 38004;
- i4 = 38088 + (HEAP32[(HEAP32[9522] | 0) + -12 >> 2] | 0) + 4 | 0;
- HEAP32[i4 >> 2] = HEAP32[i4 >> 2] | 8192;
- HEAP32[38088 + (HEAP32[(HEAP32[9522] | 0) + -12 >> 2] | 0) + 72 >> 2] = 38004;
- __ZNSt3__110__stdinbufIwEC2EP8_IO_FILEP11__mbstate_t(38796, i3, 38676);
- HEAP32[9564] = 8080;
- HEAP32[9566] = 8100;
- HEAP32[9565] = 0;
- __ZNSt3__18ios_base4initEPv(38264, 38796);
- HEAP32[9584] = 0;
- HEAP32[9585] = -1;
- __ZNSt3__111__stdoutbufIwEC2EP8_IO_FILEP11__mbstate_t(38852, i2, 38684);
- HEAP32[9586] = 8160;
- HEAP32[9587] = 8180;
- __ZNSt3__18ios_base4initEPv(38348, 38852);
- HEAP32[9605] = 0;
- HEAP32[9606] = -1;
- __ZNSt3__111__stdoutbufIwEC2EP8_IO_FILEP11__mbstate_t(38900, i1, 38692);
- HEAP32[9607] = 8160;
- HEAP32[9608] = 8180;
- __ZNSt3__18ios_base4initEPv(38432, 38900);
- HEAP32[9626] = 0;
- HEAP32[9627] = -1;
- i1 = HEAP32[38428 + (HEAP32[(HEAP32[9607] | 0) + -12 >> 2] | 0) + 24 >> 2] | 0;
- HEAP32[9628] = 8160;
- HEAP32[9629] = 8180;
- __ZNSt3__18ios_base4initEPv(38516, i1);
- HEAP32[9647] = 0;
- HEAP32[9648] = -1;
- HEAP32[38256 + (HEAP32[(HEAP32[9564] | 0) + -12 >> 2] | 0) + 72 >> 2] = 38344;
- i1 = 38428 + (HEAP32[(HEAP32[9607] | 0) + -12 >> 2] | 0) + 4 | 0;
- HEAP32[i1 >> 2] = HEAP32[i1 >> 2] | 8192;
- HEAP32[38428 + (HEAP32[(HEAP32[9607] | 0) + -12 >> 2] | 0) + 72 >> 2] = 38344;
- return;
-}
-
-function _pop_arg_334(i2, i3, i1) {
+function _pop_arg_529(i2, i3, i1) {
i2 = i2 | 0;
i3 = i3 | 0;
i1 = i1 | 0;
@@ -49943,191 +49431,78 @@ function _pop_arg_334(i2, i3, i1) {
return;
}
-function __ZN4wasm18ensureFunctionTypeENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleER10MixedArena(i12, i13, i1) {
- i12 = i12 | 0;
- i13 = i13 | 0;
- i1 = i1 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i14 = 0;
- i14 = STACKTOP;
- STACKTOP = STACKTOP + 32 | 0;
- i4 = i14 + 24 | 0;
- i2 = i14 + 12 | 0;
- i10 = i14 + 8 | 0;
- i3 = i14 + 4 | 0;
- i11 = i14;
- __ZNSt3__1plIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_12basic_stringIT_T0_T1_EEPKS6_RKS9_(i2, 12427, i12);
- __ZN6cashew7IStringC2EPKcb(i4, (HEAP8[i2 >> 0] & 1) == 0 ? i2 + 1 | 0 : HEAP32[i2 + 8 >> 2] | 0, 0);
+function __ZN4wasm15Asm2WasmBuilder8optimizeEv(i10) {
+ i10 = i10 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0;
+ i11 = STACKTOP;
+ STACKTOP = STACKTOP + 96 | 0;
+ i8 = i11 + 80 | 0;
+ i9 = i11 + 60 | 0;
+ i1 = i11 + 48 | 0;
+ i2 = i11 + 36 | 0;
+ i3 = i11 + 24 | 0;
+ i4 = i11 + 12 | 0;
+ i5 = i11;
+ HEAP32[i8 + 4 >> 2] = 0;
+ HEAP32[i8 >> 2] = 2664;
+ i7 = HEAP32[i10 >> 2] | 0;
+ i6 = i7 + 88 | 0;
+ i7 = HEAP32[i7 + 84 >> 2] | 0;
+ while (1) {
+ if ((i7 | 0) == (i6 | 0)) break;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i8 >> 2] | 0) + 12 >> 2] & 127](i8, HEAP32[i7 + 20 >> 2] | 0);
+ i7 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i7) | 0;
+ }
+ HEAP32[i9 >> 2] = HEAP32[i10 + 4 >> 2];
+ HEAP32[i9 + 4 >> 2] = 0;
+ HEAP32[i9 + 8 >> 2] = 0;
+ HEAP32[i9 + 12 >> 2] = 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i1, 24930, 17);
+ __ZN4wasm10PassRunner3addENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i9, i1);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i2, 25664, 19);
+ __ZN4wasm10PassRunner3addENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i9, i2);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i2);
- i2 = i13 + 48 | 0;
- i4 = HEAP32[i4 >> 2] | 0;
- HEAP32[i10 >> 2] = i4;
- if ((__ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_(i2, i10) | 0) == (i13 + 52 | 0)) {
- i1 = __ZN10MixedArena5allocIN4wasm12FunctionTypeEEEPT_v(i1) | 0;
- HEAP32[i1 >> 2] = i4;
- i2 = HEAP16[i12 >> 1] | 0;
- if (!(i2 & 1)) {
- i2 = (i2 & 65535) >>> 8 & 255;
- i9 = i12 + 8 | 0;
- } else {
- i9 = i12 + 8 | 0;
- i2 = HEAP8[HEAP32[i9 >> 2] >> 0] | 0;
- }
- i10 = i12 + 1 | 0;
- i8 = __ZN4wasm13sigToWasmTypeEc(i2) | 0;
- HEAP32[i1 + 4 >> 2] = i8;
- i8 = i1 + 8 | 0;
- i4 = i1 + 12 | 0;
- i5 = i1 + 16 | 0;
- i6 = i12 + 4 | 0;
- i7 = 1;
- while (1) {
- i2 = HEAP8[i12 >> 0] | 0;
- i3 = (i2 & 1) == 0;
- if (i3) i2 = (i2 & 255) >>> 1; else i2 = HEAP32[i6 >> 2] | 0;
- if (i7 >>> 0 >= i2 >>> 0) break;
- if (i3) i2 = i10; else i2 = HEAP32[i9 >> 2] | 0;
- i3 = __ZN4wasm13sigToWasmTypeEc(HEAP8[i2 + i7 >> 0] | 0) | 0;
- HEAP32[i11 >> 2] = i3;
- i2 = HEAP32[i4 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i5 >> 2] | 0) >>> 0) {
- HEAP32[i2 >> 2] = i3;
- HEAP32[i4 >> 2] = i2 + 4;
- } else __ZNSt3__16vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i8, i11);
- i7 = i7 + 1 | 0;
- }
- __ZN4wasm6Module15addFunctionTypeEPNS_12FunctionTypeE(i13, i1);
- } else {
- HEAP32[i3 >> 2] = i4;
- i1 = __ZNSt3__13mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixEOS2_(i2, i3) | 0;
- i1 = HEAP32[i1 >> 2] | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i3, 24228, 12);
+ __ZN4wasm10PassRunner3addENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i9, i3);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i3);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i4, 27163, 15);
+ __ZN4wasm10PassRunner3addENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i9, i4);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i4);
+ if ((HEAP32[i10 + 12 >> 2] | 0) >>> 0 < 1024) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i5, 26399, 15);
+ __ZN4wasm10PassRunner3addENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i9, i5);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5);
}
- STACKTOP = i14;
- return i1 | 0;
-}
-
-function __ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEEEvE5visitEPNS_10ExpressionE(i2, i1) {
- i2 = i2 | 0;
- i1 = i1 | 0;
- if (!i1) ___assert_fail(26470, 26220, 1229, 26475);
- do switch (HEAP32[i1 >> 2] | 0) {
- case 0:
- {
- _abort();
- break;
- }
- case 1:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE10visitBlockEPNS_5BlockE(i2, i1);
- break;
- }
- case 2:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE7visitIfEPNS_2IfE(i2, i1);
- break;
- }
- case 3:
- {
- i2 = HEAP32[i2 + 4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 16 | 0);
- break;
- }
- case 4:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE10visitBreakEPNS_5BreakE(i2, i1);
- break;
- }
- case 5:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE11visitSwitchEPNS_6SwitchE(i2, i1);
- break;
- }
- case 6:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE9visitCallEPNS_4CallE(i2, i1);
- break;
- }
- case 7:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE15visitCallImportEPNS_10CallImportE(i2, i1);
- break;
- }
- case 8:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE17visitCallIndirectEPNS_12CallIndirectE(i2, i1);
- break;
- }
- case 19:
- case 18:
- case 13:
- case 9:
- break;
- case 10:
- {
- i2 = HEAP32[i2 + 4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 12 | 0);
- break;
- }
- case 11:
- {
- i2 = HEAP32[i2 + 4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 24 | 0);
- break;
- }
- case 12:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE10visitStoreEPNS_5StoreE(i2, i1);
- break;
- }
- case 14:
- {
- i2 = HEAP32[i2 + 4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 12 | 0);
- break;
- }
- case 15:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE11visitBinaryEPNS_6BinaryE(i2, i1);
- break;
- }
- case 16:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE11visitSelectEPNS_6SelectE(i2, i1);
- break;
- }
- case 17:
- {
- __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE9visitHostEPNS_4HostE(i2, i1);
- break;
- }
- default:
- {}
- } while (0);
+ __ZN4wasm10PassRunner3runEPNS_6ModuleE(i9, HEAP32[i10 >> 2] | 0);
+ __ZN4wasm10PassRunnerD2Ev(i9);
+ STACKTOP = i11;
return;
}
-function _scanexp(i6, i3) {
- i6 = i6 | 0;
+function _scanexp(i8, i3) {
+ i8 = i8 | 0;
i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0;
- i7 = i6 + 4 | 0;
- i1 = HEAP32[i7 >> 2] | 0;
- i8 = i6 + 100 | 0;
- if (i1 >>> 0 < (HEAP32[i8 >> 2] | 0) >>> 0) {
- HEAP32[i7 >> 2] = i1 + 1;
+ var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0;
+ i6 = i8 + 4 | 0;
+ i1 = HEAP32[i6 >> 2] | 0;
+ i7 = i8 + 100 | 0;
+ if (i1 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
+ HEAP32[i6 >> 2] = i1 + 1;
i1 = HEAPU8[i1 >> 0] | 0;
- } else i1 = ___shgetc(i6) | 0;
+ } else i1 = ___shgetc(i8) | 0;
switch (i1 | 0) {
case 43:
case 45:
{
i2 = (i1 | 0) == 45 & 1;
- i1 = HEAP32[i7 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i8 >> 2] | 0) >>> 0) {
- HEAP32[i7 >> 2] = i1 + 1;
+ i1 = HEAP32[i6 >> 2] | 0;
+ if (i1 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
+ HEAP32[i6 >> 2] = i1 + 1;
i1 = HEAPU8[i1 >> 0] | 0;
- } else i1 = ___shgetc(i6) | 0;
- if ((i3 | 0) != 0 & (i1 + -48 | 0) >>> 0 > 9 ? (HEAP32[i8 >> 2] | 0) != 0 : 0) {
- HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + -1;
+ } else i1 = ___shgetc(i8) | 0;
+ if ((i3 | 0) != 0 & (i1 + -48 | 0) >>> 0 > 9 ? (HEAP32[i7 >> 2] | 0) != 0 : 0) {
+ HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + -1;
i5 = i2;
} else i5 = i2;
break;
@@ -50135,22 +49510,22 @@ function _scanexp(i6, i3) {
default:
i5 = 0;
}
- if ((i1 + -48 | 0) >>> 0 > 9) if (!(HEAP32[i8 >> 2] | 0)) {
+ if ((i1 + -48 | 0) >>> 0 > 9) if (!(HEAP32[i7 >> 2] | 0)) {
i2 = -2147483648;
i1 = 0;
} else {
- HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + -1;
+ HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + -1;
i2 = -2147483648;
i1 = 0;
} else {
i2 = 0;
do {
i2 = i1 + -48 + (i2 * 10 | 0) | 0;
- i1 = HEAP32[i7 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i8 >> 2] | 0) >>> 0) {
- HEAP32[i7 >> 2] = i1 + 1;
+ i1 = HEAP32[i6 >> 2] | 0;
+ if (i1 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
+ HEAP32[i6 >> 2] = i1 + 1;
i1 = HEAPU8[i1 >> 0] | 0;
- } else i1 = ___shgetc(i6) | 0;
+ } else i1 = ___shgetc(i8) | 0;
} while ((i1 + -48 | 0) >>> 0 < 10 & (i2 | 0) < 214748364);
i3 = ((i2 | 0) < 0) << 31 >> 31;
if ((i1 + -48 | 0) >>> 0 < 10) {
@@ -50160,22 +49535,22 @@ function _scanexp(i6, i3) {
i1 = _i64Add(i1 | 0, ((i1 | 0) < 0) << 31 >> 31 | 0, -48, -1) | 0;
i2 = _i64Add(i1 | 0, tempRet0 | 0, i3 | 0, i2 | 0) | 0;
i3 = tempRet0;
- i1 = HEAP32[i7 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i8 >> 2] | 0) >>> 0) {
- HEAP32[i7 >> 2] = i1 + 1;
+ i1 = HEAP32[i6 >> 2] | 0;
+ if (i1 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
+ HEAP32[i6 >> 2] = i1 + 1;
i1 = HEAPU8[i1 >> 0] | 0;
- } else i1 = ___shgetc(i6) | 0;
+ } else i1 = ___shgetc(i8) | 0;
} while ((i1 + -48 | 0) >>> 0 < 10 & ((i3 | 0) < 21474836 | (i3 | 0) == 21474836 & i2 >>> 0 < 2061584302));
i4 = i2;
} else i4 = i2;
if ((i1 + -48 | 0) >>> 0 < 10) do {
- i1 = HEAP32[i7 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i8 >> 2] | 0) >>> 0) {
- HEAP32[i7 >> 2] = i1 + 1;
+ i1 = HEAP32[i6 >> 2] | 0;
+ if (i1 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
+ HEAP32[i6 >> 2] = i1 + 1;
i1 = HEAPU8[i1 >> 0] | 0;
- } else i1 = ___shgetc(i6) | 0;
+ } else i1 = ___shgetc(i8) | 0;
} while ((i1 + -48 | 0) >>> 0 < 10);
- if (HEAP32[i8 >> 2] | 0) HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + -1;
+ if (HEAP32[i7 >> 2] | 0) HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + -1;
i8 = (i5 | 0) != 0;
i1 = _i64Subtract(0, 0, i4 | 0, i3 | 0) | 0;
i2 = i8 ? tempRet0 : i3;
@@ -50185,162 +49560,164 @@ function _scanexp(i6, i3) {
return i1 | 0;
}
-function __ZNKSt3__18messagesIwE6do_getEiiiRKNS_12basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEE(i16, i1, i6, i8, i7, i2) {
- i16 = i16 | 0;
+function __ZNKSt3__18messagesIwE6do_getEiiiRKNS_12basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEE(i17, i1, i7, i9, i8, i2) {
+ i17 = i17 | 0;
i1 = i1 | 0;
- i6 = i6 | 0;
- i8 = i8 | 0;
i7 = i7 | 0;
+ i9 = i9 | 0;
+ i8 = i8 | 0;
i2 = i2 | 0;
- var i3 = 0, i4 = 0, i5 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0;
- i15 = STACKTOP;
+ var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0;
+ i16 = STACKTOP;
STACKTOP = STACKTOP + 176 | 0;
- i11 = i15 + 168 | 0;
- i10 = i15 + 40 | 0;
- i9 = i15 + 36 | 0;
- i13 = i15 + 32 | 0;
- i12 = i15;
- i5 = i15 + 24 | 0;
- i14 = i15 + 16 | 0;
+ i13 = i16 + 168 | 0;
+ i12 = i16 + 40 | 0;
+ i11 = i16 + 36 | 0;
+ i15 = i16 + 32 | 0;
+ i14 = i16;
+ i6 = i16 + 24 | 0;
+ i10 = i16 + 16 | 0;
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i12 + (i1 << 2) >> 2] = 0;
+ HEAP32[i14 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- HEAP32[i5 + 4 >> 2] = 0;
- HEAP32[i5 >> 2] = 10388;
- i4 = HEAP8[i2 >> 0] | 0;
- i1 = (i4 & 1) == 0;
- i3 = i2 + 4 | 0;
- i2 = i1 ? i3 : HEAP32[i2 + 8 >> 2] | 0;
- i3 = i2 + ((i1 ? (i4 & 255) >>> 1 : HEAP32[i3 >> 2] | 0) << 2) | 0;
- i4 = i10 + 32 | 0;
+ HEAP32[i6 + 4 >> 2] = 0;
+ HEAP32[i6 >> 2] = 10956;
+ i5 = HEAP8[i2 >> 0] | 0;
+ i1 = (i5 & 1) == 0;
+ i4 = i2 + 4 | 0;
+ i2 = i1 ? i4 : HEAP32[i2 + 8 >> 2] | 0;
+ i4 = i2 + ((i1 ? (i5 & 255) >>> 1 : HEAP32[i4 >> 2] | 0) << 2) | 0;
+ i5 = i12 + 32 | 0;
i1 = 0;
while (1) {
- if (!((i1 | 0) != 2 & i2 >>> 0 < i3 >>> 0)) break;
- HEAP32[i13 >> 2] = i2;
- i2 = FUNCTION_TABLE_iiiiiiiii[HEAP32[(HEAP32[i5 >> 2] | 0) + 12 >> 2] & 15](i5, i11, i2, i3, i13, i10, i4, i9) | 0;
- i1 = i10;
+ if (!((i1 | 0) != 2 & i2 >>> 0 < i4 >>> 0)) break;
+ HEAP32[i15 >> 2] = i2;
+ i3 = FUNCTION_TABLE_iiiiiiiii[HEAP32[(HEAP32[i6 >> 2] | 0) + 12 >> 2] & 15](i6, i13, i2, i4, i15, i12, i5, i11) | 0;
+ i1 = i12;
while (1) {
- if (i1 >>> 0 >= (HEAP32[i9 >> 2] | 0) >>> 0) break;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i12, HEAP8[i1 >> 0] | 0);
+ if (i1 >>> 0 >= (HEAP32[i11 >> 2] | 0) >>> 0) break;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i14, HEAP8[i1 >> 0] | 0);
i1 = i1 + 1 | 0;
}
- i1 = i2;
- i2 = HEAP32[i13 >> 2] | 0;
+ i2 = HEAP32[i15 >> 2] | 0;
+ i1 = i3;
}
- i2 = _catgets((i6 | 0) == -1 ? -1 : i6 << 1, i8, i7, (HEAP8[i12 >> 0] & 1) == 0 ? i12 + 1 | 0 : HEAP32[i12 + 8 >> 2] | 0) | 0;
+ i2 = _catgets((i7 | 0) == -1 ? -1 : i7 << 1, i9, i8, (HEAP8[i14 >> 0] & 1) == 0 ? i14 + 1 | 0 : HEAP32[i14 + 8 >> 2] | 0) | 0;
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i16 + (i1 << 2) >> 2] = 0;
+ HEAP32[i17 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- HEAP32[i14 + 4 >> 2] = 0;
- HEAP32[i14 >> 2] = 10436;
+ HEAP32[i10 + 4 >> 2] = 0;
+ HEAP32[i10 >> 2] = 11004;
i4 = i2 + (_strlen(i2) | 0) | 0;
- i6 = i4;
- i5 = i10 + 128 | 0;
+ i5 = i4;
+ i6 = i12 + 128 | 0;
i1 = 0;
while (1) {
if (!((i1 | 0) != 2 & i2 >>> 0 < i4 >>> 0)) break;
- HEAP32[i13 >> 2] = i2;
- i3 = FUNCTION_TABLE_iiiiiiiii[HEAP32[(HEAP32[i14 >> 2] | 0) + 16 >> 2] & 15](i14, i11, i2, (i6 - i2 | 0) > 32 ? i2 + 32 | 0 : i4, i13, i10, i5, i9) | 0;
- i1 = i10;
+ HEAP32[i15 >> 2] = i2;
+ i3 = FUNCTION_TABLE_iiiiiiiii[HEAP32[(HEAP32[i10 >> 2] | 0) + 16 >> 2] & 15](i10, i13, i2, (i5 - i2 | 0) > 32 ? i2 + 32 | 0 : i4, i15, i12, i6, i11) | 0;
+ i1 = i12;
while (1) {
- if (i1 >>> 0 >= (HEAP32[i9 >> 2] | 0) >>> 0) break;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9push_backEw(i16, HEAP32[i1 >> 2] | 0);
+ if (i1 >>> 0 >= (HEAP32[i11 >> 2] | 0) >>> 0) break;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9push_backEw(i17, HEAP32[i1 >> 2] | 0);
i1 = i1 + 4 | 0;
}
- i2 = HEAP32[i13 >> 2] | 0;
+ i2 = HEAP32[i15 >> 2] | 0;
i1 = i3;
}
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i12);
- STACKTOP = i15;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i14);
+ STACKTOP = i16;
return;
}
-function __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE8overflowEi(i17, i13) {
- i17 = i17 | 0;
- i13 = i13 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i14 = 0, i15 = 0, i16 = 0, i18 = 0;
- i18 = STACKTOP;
+function __ZN4wasm4Load7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i7, i6, i5) {
+ i7 = i7 | 0;
+ i6 = i6 | 0;
+ i5 = i5 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i8 = 0;
+ i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i11 = i18;
- do if ((i13 | 0) != -1) {
- i14 = i17 + 12 | 0;
- i12 = i17 + 8 | 0;
- i16 = (HEAP32[i14 >> 2] | 0) - (HEAP32[i12 >> 2] | 0) | 0;
- i15 = i17 + 24 | 0;
- i9 = HEAP32[i15 >> 2] | 0;
- i8 = i17 + 28 | 0;
- i1 = HEAP32[i8 >> 2] | 0;
- if ((i9 | 0) == (i1 | 0)) {
- i3 = i17 + 48 | 0;
- if (!(HEAP32[i3 >> 2] & 16)) {
- i1 = -1;
- break;
- }
- i6 = i17 + 20 | 0;
- i5 = HEAP32[i6 >> 2] | 0;
- i10 = i17 + 44 | 0;
- i7 = (HEAP32[i10 >> 2] | 0) - i5 | 0;
- i4 = i17 + 32 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i4, 0);
- if (!(HEAP8[i4 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i4 >> 2] & -2) + -1 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i4, i1, 0);
- i1 = HEAP8[i4 >> 0] | 0;
- if (!(i1 & 1)) {
- i2 = (i1 & 255) >>> 1;
- i1 = i4 + 1 | 0;
- } else {
- i2 = HEAP32[i17 + 36 >> 2] | 0;
- i1 = HEAP32[i17 + 40 >> 2] | 0;
- }
- i4 = i1 + i2 | 0;
- HEAP32[i6 >> 2] = i1;
- HEAP32[i8 >> 2] = i4;
- i6 = i1 + (i9 - i5) | 0;
- HEAP32[i15 >> 2] = i6;
- i2 = i1 + i7 | 0;
- HEAP32[i10 >> 2] = i2;
- i5 = i10;
- i7 = i6;
- i6 = i4;
- i1 = i10;
- } else {
- i3 = i17 + 44 | 0;
- i5 = i3;
- i7 = i9;
- i2 = HEAP32[i3 >> 2] | 0;
- i6 = i1;
- i1 = i3;
- i3 = i17 + 48 | 0;
+ i4 = i8;
+ HEAP32[i4 >> 2] = i5;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i6, 40) | 0;
+ i2 = __Z12prepareColorRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEE(i6) | 0;
+ i3 = i7 + 4 | 0;
+ switch (HEAP32[i3 >> 2] | 0) {
+ case 0:
+ {
+ i1 = 17406;
+ break;
}
- i4 = i7 + 1 | 0;
- HEAP32[i11 >> 2] = i4;
- i2 = HEAP32[(i4 >>> 0 < i2 >>> 0 ? i1 : i11) >> 2] | 0;
- HEAP32[i5 >> 2] = i2;
- if (HEAP32[i3 >> 2] & 8 | 0) {
- i1 = i17 + 32 | 0;
- if (!(HEAP8[i1 >> 0] & 1)) i1 = i1 + 1 | 0; else i1 = HEAP32[i17 + 40 >> 2] | 0;
- HEAP32[i12 >> 2] = i1;
- HEAP32[i14 >> 2] = i1 + i16;
- HEAP32[i17 + 16 >> 2] = i2;
+ case 1:
+ {
+ i1 = 17411;
+ break;
}
- if ((i7 | 0) == (i6 | 0)) {
- i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i17 >> 2] | 0) + 52 >> 2] & 31](i17, i13 & 255) | 0;
+ case 2:
+ {
+ i1 = 17415;
break;
- } else {
- HEAP32[i15 >> 2] = i4;
- HEAP8[i7 >> 0] = i13;
- i1 = i13 & 255;
+ }
+ case 3:
+ {
+ i1 = 17419;
break;
}
- } else i1 = 0; while (0);
- STACKTOP = i18;
- return i1 | 0;
+ case 4:
+ {
+ i1 = 17423;
+ break;
+ }
+ default:
+ {}
+ }
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i2, i1) | 0, 17371) | 0;
+ i1 = HEAP32[i7 + 8 >> 2] | 0;
+ if (!(i1 >>> 0 >= 4 ? !(i1 >>> 0 < 8 & (HEAP32[i3 >> 2] | 0) == 2) : 0)) {
+ switch (i1 | 0) {
+ case 1:
+ {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i6, 56) | 0;
+ break;
+ }
+ case 2:
+ {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17377) | 0;
+ break;
+ }
+ case 4:
+ {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17380) | 0;
+ break;
+ }
+ default:
+ _abort();
+ }
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, HEAP8[i7 + 12 >> 0] | 0 ? 17383 : 17386) | 0;
+ }
+ i1 = i7 + 16 | 0;
+ if (HEAP32[i1 >> 2] | 0) {
+ i3 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17389) | 0;
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj(i3, HEAP32[i1 >> 2] | 0) | 0;
+ }
+ i1 = i7 + 20 | 0;
+ if (HEAP32[i1 >> 2] | 0) {
+ i3 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i6, 17398) | 0;
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj(i3, HEAP32[i1 >> 2] | 0) | 0;
+ }
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i6, 10) | 0;
+ i5 = i5 + 1 | 0;
+ HEAP32[i4 >> 2] = i5;
+ __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i6, i5, HEAP32[i7 + 24 >> 2] | 0) | 0;
+ i7 = __Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i6, i4) | 0;
+ STACKTOP = i8;
+ return i7 | 0;
}
function __ZN4wasm17SExpressionParser11parseStringEv(i8) {
@@ -50439,8 +49816,8 @@ function __ZN10__cxxabiv112_GLOBAL__N_114parse_decltypeINS0_2DbEEEPKcS4_S4_RT_(i
var i2 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0;
i10 = STACKTOP;
STACKTOP = STACKTOP + 64 | 0;
- i7 = i10 + 40 | 0;
- i5 = i10 + 24 | 0;
+ i5 = i10 + 40 | 0;
+ i6 = i10 + 24 | 0;
i8 = i10 + 12 | 0;
i9 = i10;
L1 : do if ((i4 - i1 | 0) > 3 ? (HEAP8[i1 >> 0] | 0) == 68 : 0) {
@@ -50452,37 +49829,37 @@ function __ZN10__cxxabiv112_GLOBAL__N_114parse_decltypeINS0_2DbEEEPKcS4_S4_RT_(i
break L1;
}
i11 = i1 + 2 | 0;
- i6 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i11, i4, i3) | 0;
- if ((!((i6 | 0) == (i11 | 0) | (i6 | 0) == (i4 | 0)) ? (HEAP8[i6 >> 0] | 0) == 69 : 0) ? (i2 = HEAP32[i3 + 4 >> 2] | 0, (HEAP32[i3 >> 2] | 0) != (i2 | 0)) : 0) {
+ i7 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i11, i4, i3) | 0;
+ if ((!((i7 | 0) == (i11 | 0) | (i7 | 0) == (i4 | 0)) ? (HEAP8[i7 >> 0] | 0) == 69 : 0) ? (i2 = HEAP32[i3 + 4 >> 2] | 0, (HEAP32[i3 >> 2] | 0) != (i2 | 0)) : 0) {
i3 = i2 + -24 | 0;
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i9, i3);
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i9, 0, 34996) | 0;
- HEAP32[i8 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i8 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i8 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i9, 0, 36460) | 0;
+ HEAP32[i8 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i8 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i8 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i8, 34358) | 0;
- HEAP32[i5 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i5 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i5 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i8, 35822) | 0;
+ HEAP32[i6 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i6 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i6 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i7, i5);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i7);
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i5);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i5, i6);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i5);
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i5);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i6);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i8);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i9);
- i1 = i6 + 1 | 0;
+ i1 = i7 + 1 | 0;
}
} while (0);
STACKTOP = i10;
@@ -50497,48 +49874,48 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17parseAfterKeywor
var i2 = 0;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i4);
i1 = HEAP32[i1 >> 2] | 0;
- do if ((i1 | 0) != (HEAP32[9294] | 0)) {
- if ((i1 | 0) == (HEAP32[9234] | 0)) {
+ do if ((i1 | 0) != (HEAP32[9662] | 0)) {
+ if ((i1 | 0) == (HEAP32[9602] | 0)) {
i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE8parseVarERPcPKcb(i5, i4, i3, 0) | 0;
break;
}
- if ((i1 | 0) == (HEAP32[9235] | 0)) {
+ if ((i1 | 0) == (HEAP32[9603] | 0)) {
i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE8parseVarERPcPKcb(i5, i4, i3, 1) | 0;
break;
}
- if ((i1 | 0) == (HEAP32[9238] | 0)) {
+ if ((i1 | 0) == (HEAP32[9606] | 0)) {
i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE11parseReturnERPcPKc(i5, i4, i3) | 0;
break;
}
- if ((i1 | 0) == (HEAP32[9239] | 0)) {
+ if ((i1 | 0) == (HEAP32[9607] | 0)) {
i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE7parseIfERPcPKc(i5, i4, i3) | 0;
break;
}
- if ((i1 | 0) == (HEAP32[9242] | 0)) {
+ if ((i1 | 0) == (HEAP32[9610] | 0)) {
i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE7parseDoERPcPKc(i5, i4, i3) | 0;
break;
}
- if ((i1 | 0) == (HEAP32[9241] | 0)) {
+ if ((i1 | 0) == (HEAP32[9609] | 0)) {
i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10parseWhileERPcPKc(i5, i4, i3) | 0;
break;
}
- if ((i1 | 0) == (HEAP32[9249] | 0)) {
+ if ((i1 | 0) == (HEAP32[9617] | 0)) {
i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10parseBreakERPcPKc(i5, i4, i3) | 0;
break;
}
- if ((i1 | 0) == (HEAP32[9250] | 0)) {
+ if ((i1 | 0) == (HEAP32[9618] | 0)) {
i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseContinueERPcPKc(i5, i4, i3) | 0;
break;
}
- if ((i1 | 0) == (HEAP32[9251] | 0)) {
+ if ((i1 | 0) == (HEAP32[9619] | 0)) {
i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE11parseSwitchERPcPKc(i5, i4, i3) | 0;
break;
}
- if ((i1 | 0) == (HEAP32[9306] | 0)) {
+ if ((i1 | 0) == (HEAP32[9674] | 0)) {
i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE8parseNewERPcPKc(i5, i4, i3) | 0;
break;
}
- if ((i1 | 0) == (HEAP32[9243] | 0)) {
+ if ((i1 | 0) == (HEAP32[9611] | 0)) {
i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE8parseForERPcPKc(i5, i4, i3) | 0;
break;
} else {
@@ -50549,88 +49926,168 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17parseAfterKeywor
return i2 | 0;
}
+function __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE8overflowEi(i16, i15) {
+ i16 = i16 | 0;
+ i15 = i15 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i17 = 0;
+ i17 = STACKTOP;
+ STACKTOP = STACKTOP + 16 | 0;
+ i10 = i17;
+ do if ((i15 | 0) != -1) {
+ i11 = i16 + 12 | 0;
+ i12 = i16 + 8 | 0;
+ i13 = (HEAP32[i11 >> 2] | 0) - (HEAP32[i12 >> 2] | 0) | 0;
+ i14 = i16 + 24 | 0;
+ i7 = HEAP32[i14 >> 2] | 0;
+ i8 = i16 + 28 | 0;
+ i1 = HEAP32[i8 >> 2] | 0;
+ if ((i7 | 0) == (i1 | 0)) {
+ i6 = i16 + 48 | 0;
+ if (!(HEAP32[i6 >> 2] & 16)) {
+ i1 = -1;
+ break;
+ }
+ i3 = i16 + 20 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ i9 = i16 + 44 | 0;
+ i5 = (HEAP32[i9 >> 2] | 0) - i4 | 0;
+ i2 = i16 + 32 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i2, 0);
+ if (!(HEAP8[i2 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i2 >> 2] & -2) + -1 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i2, i1, 0);
+ i1 = HEAP8[i2 >> 0] | 0;
+ if (!(i1 & 1)) {
+ i2 = i2 + 1 | 0;
+ i1 = (i1 & 255) >>> 1;
+ } else {
+ i2 = HEAP32[i16 + 40 >> 2] | 0;
+ i1 = HEAP32[i16 + 36 >> 2] | 0;
+ }
+ i1 = i2 + i1 | 0;
+ HEAP32[i3 >> 2] = i2;
+ HEAP32[i8 >> 2] = i1;
+ i7 = i2 + (i7 - i4) | 0;
+ HEAP32[i14 >> 2] = i7;
+ i2 = i2 + i5 | 0;
+ HEAP32[i9 >> 2] = i2;
+ i8 = i9;
+ i3 = i9;
+ i5 = i1;
+ } else {
+ i2 = i16 + 44 | 0;
+ i8 = i2;
+ i6 = i16 + 48 | 0;
+ i3 = i2;
+ i2 = HEAP32[i2 >> 2] | 0;
+ i5 = i1;
+ }
+ i4 = i7 + 1 | 0;
+ HEAP32[i10 >> 2] = i4;
+ i2 = HEAP32[(i4 >>> 0 < i2 >>> 0 ? i3 : i10) >> 2] | 0;
+ HEAP32[i8 >> 2] = i2;
+ if (HEAP32[i6 >> 2] & 8 | 0) {
+ i1 = i16 + 32 | 0;
+ if (!(HEAP8[i1 >> 0] & 1)) i1 = i1 + 1 | 0; else i1 = HEAP32[i16 + 40 >> 2] | 0;
+ HEAP32[i12 >> 2] = i1;
+ HEAP32[i11 >> 2] = i1 + i13;
+ HEAP32[i16 + 16 >> 2] = i2;
+ }
+ if ((i7 | 0) == (i5 | 0)) {
+ i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i16 >> 2] | 0) + 52 >> 2] & 31](i16, i15 & 255) | 0;
+ break;
+ } else {
+ HEAP32[i14 >> 2] = i4;
+ HEAP8[i7 >> 0] = i15;
+ i1 = i15 & 255;
+ break;
+ }
+ } else i1 = 0; while (0);
+ STACKTOP = i17;
+ return i1 | 0;
+}
+
function __ZN4wasm22SExpressionWasmBuilder9parseTypeERNS_7ElementE(i13, i2) {
i13 = i13 | 0;
i2 = i2 | 0;
var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i14 = 0;
i14 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i12 = i14;
- i11 = __ZN10MixedArena5allocIN4wasm12FunctionTypeEEEPT_v(HEAP32[i13 + 4 >> 2] | 0) | 0;
+ i11 = i14;
+ i12 = __ZN10MixedArena5allocIN4wasm12FunctionTypeEEEPT_v(HEAP32[i13 + 4 >> 2] | 0) | 0;
i10 = __ZN4wasm7Element4listEv(i2) | 0;
if (!(HEAP8[HEAP32[(HEAP32[i10 >> 2] | 0) + 4 >> 2] >> 0] | 0)) {
i1 = __ZN4wasm7Element4listEv(i2) | 0;
i1 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] | 0) | 0;
- HEAP32[i11 >> 2] = i1;
+ HEAP32[i12 >> 2] = i1;
i1 = 2;
} else i1 = 1;
- i6 = __ZN4wasm7ElementixEj(i2, i1) | 0;
- if (!(HEAP8[i6 >> 0] | 0)) ___assert_fail(16159, 16023, 1044, 16173);
- i10 = i11 + 4 | 0;
- i2 = i11 + 12 | 0;
- i3 = i11 + 16 | 0;
- i9 = i11 + 8 | 0;
- i7 = 1;
+ i1 = __ZN4wasm7ElementixEj(i2, i1) | 0;
+ if (!(HEAP8[i1 >> 0] | 0)) ___assert_fail(16742, 16606, 1042, 16756);
+ i2 = i12 + 4 | 0;
+ i3 = i12 + 12 | 0;
+ i4 = i12 + 16 | 0;
+ i5 = i12 + 8 | 0;
+ i9 = 1;
while (1) {
- if (i7 >>> 0 >= (__ZN4wasm7Element4sizeEv(i6) | 0) >>> 0) break;
- i5 = __ZN4wasm7ElementixEj(i6, i7) | 0;
- i8 = __ZN4wasm7Element4listEv(i5) | 0;
- i8 = __ZN4wasm7Element3strEv(HEAP32[HEAP32[i8 >> 2] >> 2] | 0) | 0;
- L10 : do if ((i8 | 0) != (HEAP32[9182] | 0)) {
- i8 = __ZN4wasm7Element4listEv(i5) | 0;
- i8 = __ZN4wasm7Element3strEv(HEAP32[HEAP32[i8 >> 2] >> 2] | 0) | 0;
- if ((i8 | 0) == (HEAP32[9183] | 0)) {
- i8 = __ZN4wasm7Element4listEv(i5) | 0;
- i8 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i13, __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i8 >> 2] | 0) + 4 >> 2] | 0) | 0, 0, 0) | 0;
- HEAP32[i10 >> 2] = i8;
+ if (i9 >>> 0 >= (__ZN4wasm7Element4sizeEv(i1) | 0) >>> 0) break;
+ i6 = __ZN4wasm7ElementixEj(i1, i9) | 0;
+ i10 = __ZN4wasm7Element4listEv(i6) | 0;
+ i10 = __ZN4wasm7Element3strEv(HEAP32[HEAP32[i10 >> 2] >> 2] | 0) | 0;
+ L10 : do if ((i10 | 0) != (HEAP32[9549] | 0)) {
+ i10 = __ZN4wasm7Element4listEv(i6) | 0;
+ i10 = __ZN4wasm7Element3strEv(HEAP32[HEAP32[i10 >> 2] >> 2] | 0) | 0;
+ if ((i10 | 0) == (HEAP32[9550] | 0)) {
+ i10 = __ZN4wasm7Element4listEv(i6) | 0;
+ i10 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i13, __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i10 >> 2] | 0) + 4 >> 2] | 0) | 0, 0, 0) | 0;
+ HEAP32[i2 >> 2] = i10;
}
} else {
- i8 = 1;
+ i10 = 1;
while (1) {
- if (i8 >>> 0 >= (__ZN4wasm7Element4sizeEv(i5) | 0) >>> 0) break L10;
- i4 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i13, __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i5, i8) | 0) | 0, 0, 0) | 0;
- HEAP32[i12 >> 2] = i4;
- i1 = HEAP32[i2 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i3 >> 2] | 0) >>> 0) {
- HEAP32[i1 >> 2] = i4;
- HEAP32[i2 >> 2] = i1 + 4;
- } else __ZNSt3__16vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i9, i12);
- i8 = i8 + 1 | 0;
+ if (i10 >>> 0 >= (__ZN4wasm7Element4sizeEv(i6) | 0) >>> 0) break L10;
+ i7 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i13, __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i6, i10) | 0) | 0, 0, 0) | 0;
+ HEAP32[i11 >> 2] = i7;
+ i8 = HEAP32[i3 >> 2] | 0;
+ if (i8 >>> 0 < (HEAP32[i4 >> 2] | 0) >>> 0) {
+ HEAP32[i8 >> 2] = i7;
+ HEAP32[i3 >> 2] = i8 + 4;
+ } else __ZNSt3__16vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i5, i11);
+ i10 = i10 + 1 | 0;
}
} while (0);
- i7 = i7 + 1 | 0;
+ i9 = i9 + 1 | 0;
}
- __ZN4wasm6Module15addFunctionTypeEPNS_12FunctionTypeE(HEAP32[i13 >> 2] | 0, i11);
+ __ZN4wasm6Module15addFunctionTypeEPNS_12FunctionTypeE(HEAP32[i13 >> 2] | 0, i12);
STACKTOP = i14;
return;
}
-function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRb(i10, i11, i1, i2, i12, i14) {
+function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRb(i10, i11, i8, i9, i12, i14) {
i10 = i10 | 0;
i11 = i11 | 0;
- i1 = i1 | 0;
- i2 = i2 | 0;
+ i8 = i8 | 0;
+ i9 = i9 | 0;
i12 = i12 | 0;
i14 = i14 | 0;
- var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i13 = 0, i15 = 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i13 = 0, i15 = 0;
i15 = STACKTOP;
STACKTOP = STACKTOP + 64 | 0;
- i6 = i15 + 48 | 0;
- i4 = i15 + 24 | 0;
+ i2 = i15 + 48 | 0;
+ i1 = i15 + 24 | 0;
i13 = i15 + 16 | 0;
i3 = i15 + 20 | 0;
- i7 = i15 + 12 | 0;
- i8 = i15 + 8 | 0;
- i9 = i15 + 4 | 0;
- i5 = i15;
- if (!(HEAP32[i2 + 4 >> 2] & 1)) {
+ i4 = i15 + 12 | 0;
+ i5 = i15 + 8 | 0;
+ i6 = i15 + 4 | 0;
+ i7 = i15;
+ if (!(HEAP32[i9 + 4 >> 2] & 1)) {
HEAP32[i13 >> 2] = -1;
- i9 = HEAP32[(HEAP32[i10 >> 2] | 0) + 16 >> 2] | 0;
+ i7 = HEAP32[(HEAP32[i10 >> 2] | 0) + 16 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i11 >> 2];
- HEAP32[i7 >> 2] = HEAP32[i1 >> 2];
- HEAP32[i4 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i6 >> 2] = HEAP32[i7 >> 2];
- i1 = FUNCTION_TABLE_iiiiiii[i9 & 63](i10, i4, i6, i2, i12, i13) | 0;
+ HEAP32[i4 >> 2] = HEAP32[i8 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
+ i1 = FUNCTION_TABLE_iiiiiii[i7 & 63](i10, i1, i2, i9, i12, i13) | 0;
HEAP32[i11 >> 2] = i1;
switch (HEAP32[i13 >> 2] | 0) {
case 0:
@@ -50650,54 +50107,55 @@ function __ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6
}
}
} else {
- i10 = __ZNKSt3__18ios_base6getlocEv(i2) | 0;
- HEAP32[i8 >> 2] = i10;
- i13 = __ZNKSt3__16locale9use_facetERNS0_2idE(i8, 38996) | 0;
+ i10 = __ZNKSt3__18ios_base6getlocEv(i9) | 0;
+ HEAP32[i5 >> 2] = i10;
+ i13 = __ZNKSt3__16locale9use_facetERNS0_2idE(i5, 40468) | 0;
__ZNSt3__114__shared_count16__release_sharedEv(i10) | 0;
- i8 = __ZNKSt3__18ios_base6getlocEv(i2) | 0;
- HEAP32[i9 >> 2] = i8;
- i10 = __ZNKSt3__16locale9use_facetERNS0_2idE(i9, 39004) | 0;
- __ZNSt3__114__shared_count16__release_sharedEv(i8) | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i10 >> 2] | 0) + 24 >> 2] & 127](i4, i10);
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i10 >> 2] | 0) + 28 >> 2] & 127](i4 + 12 | 0, i10);
- HEAP32[i5 >> 2] = HEAP32[i1 >> 2];
- HEAP32[i6 >> 2] = HEAP32[i5 >> 2];
- i1 = (__ZNSt3__114__scan_keywordINS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEPKNS_12basic_stringIwS3_NS_9allocatorIwEEEENS_5ctypeIwEEEET0_RT_SE_SD_SD_RKT1_Rjb(i11, i6, i4, i4 + 24 | 0, i13, i12, 1) | 0) == (i4 | 0) & 1;
- HEAP8[i14 >> 0] = i1;
- i1 = HEAP32[i11 >> 2] | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i4 + 12 | 0);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i4);
+ i9 = __ZNKSt3__18ios_base6getlocEv(i9) | 0;
+ HEAP32[i6 >> 2] = i9;
+ i10 = __ZNKSt3__16locale9use_facetERNS0_2idE(i6, 40476) | 0;
+ __ZNSt3__114__shared_count16__release_sharedEv(i9) | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i10 >> 2] | 0) + 24 >> 2] & 127](i1, i10);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i10 >> 2] | 0) + 28 >> 2] & 127](i1 + 12 | 0, i10);
+ HEAP32[i7 >> 2] = HEAP32[i8 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i7 >> 2];
+ i13 = (__ZNSt3__114__scan_keywordINS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEPKNS_12basic_stringIwS3_NS_9allocatorIwEEEENS_5ctypeIwEEEET0_RT_SE_SD_SD_RKT1_Rjb(i11, i2, i1, i1 + 24 | 0, i13, i12, 1) | 0) == (i1 | 0) & 1;
+ HEAP8[i14 >> 0] = i13;
+ i14 = HEAP32[i11 >> 2] | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i1 + 12 | 0);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i1);
+ i1 = i14;
}
STACKTOP = i15;
return i1 | 0;
}
-function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRb(i10, i11, i1, i2, i12, i14) {
+function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRb(i10, i11, i8, i9, i12, i14) {
i10 = i10 | 0;
i11 = i11 | 0;
- i1 = i1 | 0;
- i2 = i2 | 0;
+ i8 = i8 | 0;
+ i9 = i9 | 0;
i12 = i12 | 0;
i14 = i14 | 0;
- var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i13 = 0, i15 = 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i13 = 0, i15 = 0;
i15 = STACKTOP;
STACKTOP = STACKTOP + 64 | 0;
- i6 = i15 + 48 | 0;
- i4 = i15 + 24 | 0;
+ i2 = i15 + 48 | 0;
+ i1 = i15 + 24 | 0;
i13 = i15 + 16 | 0;
i3 = i15 + 20 | 0;
- i7 = i15 + 12 | 0;
- i8 = i15 + 8 | 0;
- i9 = i15 + 4 | 0;
- i5 = i15;
- if (!(HEAP32[i2 + 4 >> 2] & 1)) {
+ i4 = i15 + 12 | 0;
+ i5 = i15 + 8 | 0;
+ i6 = i15 + 4 | 0;
+ i7 = i15;
+ if (!(HEAP32[i9 + 4 >> 2] & 1)) {
HEAP32[i13 >> 2] = -1;
- i9 = HEAP32[(HEAP32[i10 >> 2] | 0) + 16 >> 2] | 0;
+ i7 = HEAP32[(HEAP32[i10 >> 2] | 0) + 16 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i11 >> 2];
- HEAP32[i7 >> 2] = HEAP32[i1 >> 2];
- HEAP32[i4 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i6 >> 2] = HEAP32[i7 >> 2];
- i1 = FUNCTION_TABLE_iiiiiii[i9 & 63](i10, i4, i6, i2, i12, i13) | 0;
+ HEAP32[i4 >> 2] = HEAP32[i8 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
+ i1 = FUNCTION_TABLE_iiiiiii[i7 & 63](i10, i1, i2, i9, i12, i13) | 0;
HEAP32[i11 >> 2] = i1;
switch (HEAP32[i13 >> 2] | 0) {
case 0:
@@ -50717,23 +50175,24 @@ function __ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6
}
}
} else {
- i10 = __ZNKSt3__18ios_base6getlocEv(i2) | 0;
- HEAP32[i8 >> 2] = i10;
- i13 = __ZNKSt3__16locale9use_facetERNS0_2idE(i8, 38964) | 0;
+ i10 = __ZNKSt3__18ios_base6getlocEv(i9) | 0;
+ HEAP32[i5 >> 2] = i10;
+ i13 = __ZNKSt3__16locale9use_facetERNS0_2idE(i5, 40436) | 0;
__ZNSt3__114__shared_count16__release_sharedEv(i10) | 0;
- i8 = __ZNKSt3__18ios_base6getlocEv(i2) | 0;
- HEAP32[i9 >> 2] = i8;
- i10 = __ZNKSt3__16locale9use_facetERNS0_2idE(i9, 38976) | 0;
- __ZNSt3__114__shared_count16__release_sharedEv(i8) | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i10 >> 2] | 0) + 24 >> 2] & 127](i4, i10);
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i10 >> 2] | 0) + 28 >> 2] & 127](i4 + 12 | 0, i10);
- HEAP32[i5 >> 2] = HEAP32[i1 >> 2];
- HEAP32[i6 >> 2] = HEAP32[i5 >> 2];
- i1 = (__ZNSt3__114__scan_keywordINS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEPKNS_12basic_stringIcS3_NS_9allocatorIcEEEENS_5ctypeIcEEEET0_RT_SE_SD_SD_RKT1_Rjb(i11, i6, i4, i4 + 24 | 0, i13, i12, 1) | 0) == (i4 | 0) & 1;
- HEAP8[i14 >> 0] = i1;
- i1 = HEAP32[i11 >> 2] | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i4 + 12 | 0);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i4);
+ i9 = __ZNKSt3__18ios_base6getlocEv(i9) | 0;
+ HEAP32[i6 >> 2] = i9;
+ i10 = __ZNKSt3__16locale9use_facetERNS0_2idE(i6, 40448) | 0;
+ __ZNSt3__114__shared_count16__release_sharedEv(i9) | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i10 >> 2] | 0) + 24 >> 2] & 127](i1, i10);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i10 >> 2] | 0) + 28 >> 2] & 127](i1 + 12 | 0, i10);
+ HEAP32[i7 >> 2] = HEAP32[i8 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i7 >> 2];
+ i13 = (__ZNSt3__114__scan_keywordINS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEPKNS_12basic_stringIcS3_NS_9allocatorIcEEEENS_5ctypeIcEEEET0_RT_SE_SD_SD_RKT1_Rjb(i11, i2, i1, i1 + 24 | 0, i13, i12, 1) | 0) == (i1 | 0) & 1;
+ HEAP8[i14 >> 0] = i13;
+ i14 = HEAP32[i11 >> 2] | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1 + 12 | 0);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1);
+ i1 = i14;
}
STACKTOP = i15;
return i1 | 0;
@@ -50744,54 +50203,54 @@ function __ZN4wasm22SExpressionWasmBuilder8makeLoadERNS_7ElementENS_8WasmTypeE(i
i7 = i7 | 0;
i1 = i1 | 0;
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
- i3 = __ZN4wasm7Element4listEv(i7) | 0;
- i3 = _strchr(__ZN4wasm7Element5c_strEv(HEAP32[HEAP32[i3 >> 2] >> 2] | 0) | 0, 46) | 0;
- i2 = i3 + 5 | 0;
+ i2 = __ZN4wasm7Element4listEv(i7) | 0;
+ i2 = _strchr(__ZN4wasm7Element5c_strEv(HEAP32[HEAP32[i2 >> 2] >> 2] | 0) | 0, 46) | 0;
+ i3 = i2 + 5 | 0;
i8 = __ZN10MixedArena5allocIN4wasm4LoadEEEPT_v(HEAP32[i9 + 4 >> 2] | 0) | 0;
HEAP32[i8 + 4 >> 2] = i1;
i6 = __ZN4wasm15getWasmTypeSizeENS_8WasmTypeE(i1) | 0;
i1 = i8 + 8 | 0;
HEAP32[i1 >> 2] = i6;
- L1 : do switch (HEAP8[i2 >> 0] | 0) {
+ L1 : do switch (HEAP8[i3 >> 0] | 0) {
case 56:
{
HEAP32[i1 >> 2] = 1;
- i4 = i3 + 6 | 0;
+ i4 = i2 + 6 | 0;
break;
}
case 49:
{
- if ((HEAP8[i3 + 6 >> 0] | 0) == 54) {
+ if ((HEAP8[i2 + 6 >> 0] | 0) == 54) {
HEAP32[i1 >> 2] = 2;
- i4 = i3 + 7 | 0;
+ i4 = i2 + 7 | 0;
break L1;
- } else ___assert_fail(17256, 16023, 727, 17272);
+ } else ___assert_fail(17850, 16606, 715, 17866);
break;
}
case 51:
{
- if ((HEAP8[i3 + 6 >> 0] | 0) == 50) {
+ if ((HEAP8[i2 + 6 >> 0] | 0) == 50) {
HEAP32[i1 >> 2] = 4;
- i4 = i3 + 7 | 0;
+ i4 = i2 + 7 | 0;
break L1;
- } else ___assert_fail(17281, 16023, 731, 17272);
+ } else ___assert_fail(17875, 16606, 719, 17866);
break;
}
default:
- i4 = i2;
+ i4 = i3;
} while (0);
if (!(HEAP8[i4 >> 0] | 0)) i1 = 0; else i1 = (HEAP8[i4 + 1 >> 0] | 0) == 115 & 1;
HEAP8[i8 + 12 >> 0] = i1;
- i5 = i8 + 16 | 0;
- HEAP32[i5 >> 2] = 0;
- i3 = i8 + 20 | 0;
+ i3 = i8 + 16 | 0;
HEAP32[i3 >> 2] = 0;
- i6 = i9 + 8 | 0;
- i4 = 1;
+ i4 = i8 + 20 | 0;
+ HEAP32[i4 >> 2] = 0;
+ i5 = i9 + 8 | 0;
+ i6 = 1;
while (1) {
- i2 = __ZN4wasm7ElementixEj(i7, i4) | 0;
+ i2 = __ZN4wasm7ElementixEj(i7, i6) | 0;
i2 = (HEAP8[i2 >> 0] | 0) == 0;
- i1 = __ZN4wasm7ElementixEj(i7, i4) | 0;
+ i1 = __ZN4wasm7ElementixEj(i7, i6) | 0;
if (!i2) {
i2 = 22;
break;
@@ -50807,23 +50266,23 @@ function __ZN4wasm22SExpressionWasmBuilder8makeLoadERNS_7ElementENS_8WasmTypeE(i
case 97:
{
i2 = _atoi(i1) | 0;
- HEAP32[i3 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
break;
}
case 111:
{
i1 = _atoll(i1) | 0;
i2 = tempRet0;
- if (i2 >>> 0 > 0 | (i2 | 0) == 0 & i1 >>> 0 > 4294967295) __ZNKSt3__18functionIFvvEEclEv(i6);
- HEAP32[i5 >> 2] = i1;
+ if (i2 >>> 0 > 0 | (i2 | 0) == 0 & i1 >>> 0 > 4294967295) __ZNKSt3__18functionIFvvEEclEv(i5);
+ HEAP32[i3 >> 2] = i1;
break;
}
default:
- __ZNKSt3__18functionIFvvEEclEv(i6);
+ __ZNKSt3__18functionIFvvEEclEv(i5);
}
- i4 = i4 + 1 | 0;
+ i6 = i6 + 1 | 0;
}
- if ((i2 | 0) == 14) ___assert_fail(17129, 16023, 742, 17272); else if ((i2 | 0) == 22) {
+ if ((i2 | 0) == 14) ___assert_fail(17723, 16606, 730, 17866); else if ((i2 | 0) == 22) {
i9 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i9, i1) | 0;
HEAP32[i8 + 24 >> 2] = i9;
return i8 | 0;
@@ -50831,6 +50290,120 @@ function __ZN4wasm22SExpressionWasmBuilder8makeLoadERNS_7ElementENS_8WasmTypeE(i
return 0;
}
+function __ZZN4wasm14ModuleInstance15getFinalAddressINS_5StoreEEEjPT_NS_7LiteralEENKUljjPKcE_clEjjS7_(i1, i7, i9, i8) {
+ i1 = i1 | 0;
+ i7 = i7 | 0;
+ i9 = i9 | 0;
+ i8 = i8 | 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i10 = 0, i11 = 0;
+ i11 = STACKTOP;
+ STACKTOP = STACKTOP + 176 | 0;
+ i5 = i11 + 160 | 0;
+ i10 = i11 + 16 | 0;
+ i6 = i11;
+ i3 = HEAP32[i1 >> 2] | 0;
+ if (i7 >>> 0 > i9 >>> 0) {
+ i2 = i10 + 64 | 0;
+ i1 = i10 + 8 | 0;
+ HEAP32[i1 >> 2] = 2988;
+ i4 = i10 + 12 | 0;
+ HEAP32[i10 >> 2] = 3128;
+ HEAP32[i2 >> 2] = 3148;
+ HEAP32[i10 + 4 >> 2] = 0;
+ __ZNSt3__18ios_base4initEPv(i10 + 64 | 0, i4);
+ HEAP32[i10 + 136 >> 2] = 0;
+ HEAP32[i10 + 140 >> 2] = -1;
+ HEAP32[i10 >> 2] = 2968;
+ HEAP32[i2 >> 2] = 3008;
+ HEAP32[i1 >> 2] = 2988;
+ __ZNSt3__115basic_streambufIcNS_11char_traitsIcEEEC2Ev(i4);
+ HEAP32[i4 >> 2] = 2816;
+ i1 = i10 + 44 | 0;
+ i2 = 0;
+ while (1) {
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
+ }
+ HEAP32[i10 + 56 >> 2] = 0;
+ HEAP32[i10 + 60 >> 2] = 24;
+ i1 = 0;
+ while (1) {
+ if ((i1 | 0) == 3) break;
+ HEAP32[i5 + (i1 << 2) >> 2] = 0;
+ i1 = i1 + 1 | 0;
+ }
+ __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE(i4, i5);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5);
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i10 + 8 | 0, i8) | 0, 20431) | 0, i7) | 0, 20434) | 0, i9) | 0;
+ i9 = HEAP32[i3 + 12 >> 2] | 0;
+ i8 = HEAP32[(HEAP32[i9 >> 2] | 0) + 20 >> 2] | 0;
+ __ZNKSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strEv(i6, i4);
+ FUNCTION_TABLE_vii[i8 & 127](i9, (HEAP8[i6 >> 0] & 1) == 0 ? i6 + 1 | 0 : HEAP32[i6 + 8 >> 2] | 0);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i6);
+ __ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i10);
+ }
+ STACKTOP = i11;
+ return;
+}
+
+function __ZZN4wasm14ModuleInstance15getFinalAddressINS_4LoadEEEjPT_NS_7LiteralEENKUljjPKcE_clEjjS7_(i1, i7, i9, i8) {
+ i1 = i1 | 0;
+ i7 = i7 | 0;
+ i9 = i9 | 0;
+ i8 = i8 | 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i10 = 0, i11 = 0;
+ i11 = STACKTOP;
+ STACKTOP = STACKTOP + 176 | 0;
+ i5 = i11 + 160 | 0;
+ i10 = i11 + 16 | 0;
+ i6 = i11;
+ i3 = HEAP32[i1 >> 2] | 0;
+ if (i7 >>> 0 > i9 >>> 0) {
+ i2 = i10 + 64 | 0;
+ i1 = i10 + 8 | 0;
+ HEAP32[i1 >> 2] = 2988;
+ i4 = i10 + 12 | 0;
+ HEAP32[i10 >> 2] = 3128;
+ HEAP32[i2 >> 2] = 3148;
+ HEAP32[i10 + 4 >> 2] = 0;
+ __ZNSt3__18ios_base4initEPv(i10 + 64 | 0, i4);
+ HEAP32[i10 + 136 >> 2] = 0;
+ HEAP32[i10 + 140 >> 2] = -1;
+ HEAP32[i10 >> 2] = 2968;
+ HEAP32[i2 >> 2] = 3008;
+ HEAP32[i1 >> 2] = 2988;
+ __ZNSt3__115basic_streambufIcNS_11char_traitsIcEEEC2Ev(i4);
+ HEAP32[i4 >> 2] = 2816;
+ i1 = i10 + 44 | 0;
+ i2 = 0;
+ while (1) {
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
+ }
+ HEAP32[i10 + 56 >> 2] = 0;
+ HEAP32[i10 + 60 >> 2] = 24;
+ i1 = 0;
+ while (1) {
+ if ((i1 | 0) == 3) break;
+ HEAP32[i5 + (i1 << 2) >> 2] = 0;
+ i1 = i1 + 1 | 0;
+ }
+ __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE(i4, i5);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5);
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i10 + 8 | 0, i8) | 0, 20431) | 0, i7) | 0, 20434) | 0, i9) | 0;
+ i9 = HEAP32[i3 + 12 >> 2] | 0;
+ i8 = HEAP32[(HEAP32[i9 >> 2] | 0) + 20 >> 2] | 0;
+ __ZNKSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strEv(i6, i4);
+ FUNCTION_TABLE_vii[i8 & 127](i9, (HEAP8[i6 >> 0] & 1) == 0 ? i6 + 1 | 0 : HEAP32[i6 + 8 >> 2] | 0);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i6);
+ __ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i10);
+ }
+ STACKTOP = i11;
+ return;
+}
+
function __ZN4wasm22SExpressionWasmBuilder9makeBlockERNS_7ElementE(i9, i8) {
i9 = i9 | 0;
i8 = i8 | 0;
@@ -50838,7 +50411,7 @@ function __ZN4wasm22SExpressionWasmBuilder9makeBlockERNS_7ElementE(i9, i8) {
i12 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
i1 = i12 + 4 | 0;
- i7 = i12;
+ i6 = i12;
i11 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i9 + 4 >> 2] | 0) | 0;
i10 = __ZN4wasm7Element4listEv(i8) | 0;
i2 = i11 + 8 | 0;
@@ -50848,42 +50421,42 @@ function __ZN4wasm22SExpressionWasmBuilder9makeBlockERNS_7ElementE(i9, i8) {
HEAP32[i2 >> 2] = i3;
i3 = 2;
} else {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i1, 26579, 5);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i1, 27931, 5);
i3 = __ZN4wasm22SExpressionWasmBuilder15getPrefixedNameENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i9, i1) | 0;
HEAP32[i11 + 8 >> 2] = i3;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1);
i3 = 1;
}
- i10 = i9 + 80 | 0;
+ i10 = i9 + 84 | 0;
i1 = HEAP32[i10 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i9 + 84 >> 2] | 0)) __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i9 + 76 | 0, i2); else {
+ if ((i1 | 0) == (HEAP32[i9 + 88 >> 2] | 0)) __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i9 + 80 | 0, i2); else {
HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
HEAP32[i10 >> 2] = (HEAP32[i10 >> 2] | 0) + 4;
}
i5 = i11 + 16 | 0;
i4 = i11 + 20 | 0;
- i6 = i11 + 12 | 0;
+ i7 = i11 + 12 | 0;
while (1) {
if (i3 >>> 0 >= (__ZN4wasm7Element4sizeEv(i8) | 0) >>> 0) break;
- i2 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i9, __ZN4wasm7ElementixEj(i8, i3) | 0) | 0;
- HEAP32[i7 >> 2] = i2;
- i1 = HEAP32[i5 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i4 >> 2] | 0) >>> 0) {
- HEAP32[i1 >> 2] = i2;
+ i1 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i9, __ZN4wasm7ElementixEj(i8, i3) | 0) | 0;
+ HEAP32[i6 >> 2] = i1;
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i4 >> 2] | 0) >>> 0) {
+ HEAP32[i2 >> 2] = i1;
HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i6, i7);
+ } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i7, i6);
i3 = i3 + 1 | 0;
}
- i1 = HEAP32[i10 >> 2] | 0;
- i2 = i1 + -4 | 0;
+ i2 = HEAP32[i10 >> 2] | 0;
+ i1 = i2 + -4 | 0;
while (1) {
- if ((i1 | 0) == (i2 | 0)) break;
- i9 = i1 + -4 | 0;
+ if ((i2 | 0) == (i1 | 0)) break;
+ i9 = i2 + -4 | 0;
HEAP32[i10 >> 2] = i9;
- i1 = i9;
+ i2 = i9;
}
i1 = HEAP32[i5 >> 2] | 0;
- if ((i1 | 0) != (HEAP32[i6 >> 2] | 0)) HEAP32[i11 + 4 >> 2] = HEAP32[(HEAP32[i1 + -4 >> 2] | 0) + 4 >> 2];
+ if ((i1 | 0) != (HEAP32[i7 >> 2] | 0)) HEAP32[i11 + 4 >> 2] = HEAP32[(HEAP32[i1 + -4 >> 2] | 0) + 4 >> 2];
STACKTOP = i12;
return i11 | 0;
}
@@ -50895,38 +50468,38 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseCallES1_RPc(
var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0;
i14 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i8 = i14 + 16 | 0;
- i6 = i14 + 12 | 0;
- i2 = i14 + 8 | 0;
- i5 = i14 + 4 | 0;
+ i5 = i14 + 16 | 0;
+ i4 = i14 + 12 | 0;
+ i1 = i14 + 8 | 0;
+ i6 = i14 + 4 | 0;
i7 = i14;
- i13 = i10 + 4 | 0;
- __ZNSt3__16vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE6resizeEj(i10, (((HEAP32[i13 >> 2] | 0) - (HEAP32[i10 >> 2] | 0) | 0) / 12 | 0) + 1 | 0);
- i1 = HEAP32[i9 >> 2] | 0;
- if ((HEAP8[i1 >> 0] | 0) != 40) ___assert_fail(22391, 22233, 611, 22883);
- HEAP32[i9 >> 2] = i1 + 1;
- HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i8 >> 2] = HEAP32[i2 >> 2];
- i3 = __ZN6cashew12ValueBuilder8makeCallENS_3RefE(i8) | 0;
+ i12 = i10 + 4 | 0;
+ __ZNSt3__16vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE6resizeEj(i10, (((HEAP32[i12 >> 2] | 0) - (HEAP32[i10 >> 2] | 0) | 0) / 12 | 0) + 1 | 0);
+ i2 = HEAP32[i9 >> 2] | 0;
+ if ((HEAP8[i2 >> 0] | 0) != 40) ___assert_fail(22979, 22821, 611, 23471);
+ HEAP32[i9 >> 2] = i2 + 1;
+ HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i5 >> 2] = HEAP32[i1 >> 2];
+ i3 = __ZN6cashew12ValueBuilder8makeCallENS_3RefE(i5) | 0;
L4 : while (1) {
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i9);
i1 = HEAP32[i9 >> 2] | 0;
if ((HEAP8[i1 >> 0] | 0) == 41) {
- i4 = i1;
+ i8 = i1;
break;
}
- HEAP32[i5 >> 2] = i3;
- i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i10, i9, 22893) | 0;
+ HEAP32[i6 >> 2] = i3;
+ i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i10, i9, 23481) | 0;
HEAP32[i7 >> 2] = i1;
- HEAP32[i6 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i8 >> 2] = HEAP32[i7 >> 2];
- __ZN6cashew12ValueBuilder12appendToCallENS_3RefES1_(i6, i8);
+ HEAP32[i4 >> 2] = HEAP32[i6 >> 2];
+ HEAP32[i5 >> 2] = HEAP32[i7 >> 2];
+ __ZN6cashew12ValueBuilder12appendToCallENS_3RefES1_(i4, i5);
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i9);
i1 = HEAP32[i9 >> 2] | 0;
switch (HEAP8[i1 >> 0] | 0) {
case 41:
{
- i4 = i1;
+ i8 = i1;
break L4;
}
case 44:
@@ -50940,49 +50513,49 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseCallES1_RPc(
HEAP32[i9 >> 2] = i1 + 1;
}
if ((i11 | 0) == 7) _abort();
- HEAP32[i9 >> 2] = i4 + 1;
- i1 = HEAP32[i13 >> 2] | 0;
+ HEAP32[i9 >> 2] = i8 + 1;
+ i1 = HEAP32[i12 >> 2] | 0;
i2 = i1 + -12 | 0;
- if ((HEAP32[i1 + -8 >> 2] | 0) == (HEAP32[i2 >> 2] | 0)) i12 = i1; else ___assert_fail(22896, 22233, 627, 22883);
+ if ((HEAP32[i1 + -8 >> 2] | 0) == (HEAP32[i2 >> 2] | 0)) i13 = i1; else ___assert_fail(23484, 22821, 627, 23471);
while (1) {
- if ((i12 | 0) == (i2 | 0)) break;
- i11 = i12 + -12 | 0;
- HEAP32[i13 >> 2] = i11;
+ if ((i13 | 0) == (i2 | 0)) break;
+ i11 = i13 + -12 | 0;
+ HEAP32[i12 >> 2] = i11;
__ZNSt3__113__vector_baseIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEED2Ev(i11);
- i12 = HEAP32[i13 >> 2] | 0;
+ i13 = HEAP32[i12 >> 2] | 0;
}
STACKTOP = i14;
return i3 | 0;
}
-function __ZNSt3__19__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i7, i12, i10, i11, i14, i2, i1, i4, i5, i8) {
+function __ZNSt3__19__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i7, i13, i11, i12, i14, i3, i2, i4, i5, i8) {
i7 = i7 | 0;
- i12 = i12 | 0;
- i10 = i10 | 0;
+ i13 = i13 | 0;
i11 = i11 | 0;
+ i12 = i12 | 0;
i14 = i14 | 0;
+ i3 = i3 | 0;
i2 = i2 | 0;
- i1 = i1 | 0;
i4 = i4 | 0;
i5 = i5 | 0;
i8 = i8 | 0;
- var i3 = 0, i6 = 0, i9 = 0, i13 = 0;
- i9 = HEAP32[i11 >> 2] | 0;
- i13 = (i9 | 0) == (i10 | 0);
- do if (i13) {
- i3 = (HEAP8[i8 + 24 >> 0] | 0) == i7 << 24 >> 24;
- if (!i3 ? (HEAP8[i8 + 25 >> 0] | 0) != i7 << 24 >> 24 : 0) {
+ var i1 = 0, i6 = 0, i9 = 0, i10 = 0;
+ i9 = HEAP32[i12 >> 2] | 0;
+ i10 = (i9 | 0) == (i11 | 0);
+ do if (i10) {
+ i1 = (HEAP8[i8 + 24 >> 0] | 0) == i7 << 24 >> 24;
+ if (!i1 ? (HEAP8[i8 + 25 >> 0] | 0) != i7 << 24 >> 24 : 0) {
i6 = 5;
break;
}
- HEAP32[i11 >> 2] = i10 + 1;
- HEAP8[i10 >> 0] = i3 ? 43 : 45;
+ HEAP32[i12 >> 2] = i11 + 1;
+ HEAP8[i11 >> 0] = i1 ? 43 : 45;
HEAP32[i14 >> 2] = 0;
i1 = 0;
} else i6 = 5; while (0);
L6 : do if ((i6 | 0) == 5) {
- i6 = HEAP8[i1 >> 0] | 0;
- if (i7 << 24 >> 24 == i2 << 24 >> 24 ? (((i6 & 1) == 0 ? (i6 & 255) >>> 1 : HEAP32[i1 + 4 >> 2] | 0) | 0) != 0 : 0) {
+ i6 = HEAP8[i2 >> 0] | 0;
+ if (i7 << 24 >> 24 == i3 << 24 >> 24 ? (((i6 & 1) == 0 ? (i6 & 255) >>> 1 : HEAP32[i2 + 4 >> 2] | 0) | 0) != 0 : 0) {
i1 = HEAP32[i5 >> 2] | 0;
if ((i1 - i4 | 0) >= 160) {
i1 = 0;
@@ -51007,11 +50580,11 @@ function __ZNSt3__19__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stri
}
i1 = i1 - i8 | 0;
if ((i1 | 0) > 23) i1 = -1; else {
- switch (i12 | 0) {
+ switch (i13 | 0) {
case 10:
case 8:
{
- if ((i1 | 0) >= (i12 | 0)) {
+ if ((i1 | 0) >= (i13 | 0)) {
i1 = -1;
break L6;
}
@@ -51020,11 +50593,11 @@ function __ZNSt3__19__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stri
case 16:
{
if ((i1 | 0) >= 22) {
- if (i13) {
+ if (i10) {
i1 = -1;
break L6;
}
- if ((i9 - i10 | 0) >= 3) {
+ if ((i9 - i11 | 0) >= 3) {
i1 = -1;
break L6;
}
@@ -51033,8 +50606,8 @@ function __ZNSt3__19__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stri
break L6;
}
HEAP32[i14 >> 2] = 0;
- i1 = HEAP8[31159 + i1 >> 0] | 0;
- HEAP32[i11 >> 2] = i9 + 1;
+ i1 = HEAP8[32623 + i1 >> 0] | 0;
+ HEAP32[i12 >> 2] = i9 + 1;
HEAP8[i9 >> 0] = i1;
i1 = 0;
break L6;
@@ -51044,8 +50617,8 @@ function __ZNSt3__19__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stri
default:
{}
}
- i1 = HEAP8[31159 + i1 >> 0] | 0;
- HEAP32[i11 >> 2] = i9 + 1;
+ i1 = HEAP8[32623 + i1 >> 0] | 0;
+ HEAP32[i12 >> 2] = i9 + 1;
HEAP8[i9 >> 0] = i1;
HEAP32[i14 >> 2] = (HEAP32[i14 >> 2] | 0) + 1;
i1 = 0;
@@ -51054,34 +50627,34 @@ function __ZNSt3__19__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stri
return i1 | 0;
}
-function __ZNSt3__19__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i7, i12, i10, i11, i14, i2, i1, i4, i5, i8) {
+function __ZNSt3__19__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i7, i13, i11, i12, i14, i3, i2, i4, i5, i8) {
i7 = i7 | 0;
- i12 = i12 | 0;
- i10 = i10 | 0;
+ i13 = i13 | 0;
i11 = i11 | 0;
+ i12 = i12 | 0;
i14 = i14 | 0;
+ i3 = i3 | 0;
i2 = i2 | 0;
- i1 = i1 | 0;
i4 = i4 | 0;
i5 = i5 | 0;
i8 = i8 | 0;
- var i3 = 0, i6 = 0, i9 = 0, i13 = 0;
- i9 = HEAP32[i11 >> 2] | 0;
- i13 = (i9 | 0) == (i10 | 0);
- do if (i13) {
- i3 = (HEAP32[i8 + 96 >> 2] | 0) == (i7 | 0);
- if (!i3 ? (HEAP32[i8 + 100 >> 2] | 0) != (i7 | 0) : 0) {
+ var i1 = 0, i6 = 0, i9 = 0, i10 = 0;
+ i9 = HEAP32[i12 >> 2] | 0;
+ i10 = (i9 | 0) == (i11 | 0);
+ do if (i10) {
+ i1 = (HEAP32[i8 + 96 >> 2] | 0) == (i7 | 0);
+ if (!i1 ? (HEAP32[i8 + 100 >> 2] | 0) != (i7 | 0) : 0) {
i6 = 5;
break;
}
- HEAP32[i11 >> 2] = i10 + 1;
- HEAP8[i10 >> 0] = i3 ? 43 : 45;
+ HEAP32[i12 >> 2] = i11 + 1;
+ HEAP8[i11 >> 0] = i1 ? 43 : 45;
HEAP32[i14 >> 2] = 0;
i1 = 0;
} else i6 = 5; while (0);
L6 : do if ((i6 | 0) == 5) {
- i6 = HEAP8[i1 >> 0] | 0;
- if ((i7 | 0) == (i2 | 0) ? (((i6 & 1) == 0 ? (i6 & 255) >>> 1 : HEAP32[i1 + 4 >> 2] | 0) | 0) != 0 : 0) {
+ i6 = HEAP8[i2 >> 0] | 0;
+ if ((i7 | 0) == (i3 | 0) ? (((i6 & 1) == 0 ? (i6 & 255) >>> 1 : HEAP32[i2 + 4 >> 2] | 0) | 0) != 0 : 0) {
i1 = HEAP32[i5 >> 2] | 0;
if ((i1 - i4 | 0) >= 160) {
i1 = 0;
@@ -51104,14 +50677,14 @@ function __ZNSt3__19__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stri
if ((HEAP32[i1 >> 2] | 0) == (i7 | 0)) break;
i1 = i1 + 4 | 0;
}
- i2 = i1 - i8 | 0;
- i1 = i2 >> 2;
- if ((i2 | 0) > 92) i1 = -1; else {
- switch (i12 | 0) {
+ i1 = i1 - i8 | 0;
+ i2 = i1 >> 2;
+ if ((i1 | 0) > 92) i1 = -1; else {
+ switch (i13 | 0) {
case 10:
case 8:
{
- if ((i1 | 0) >= (i12 | 0)) {
+ if ((i2 | 0) >= (i13 | 0)) {
i1 = -1;
break L6;
}
@@ -51119,12 +50692,12 @@ function __ZNSt3__19__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stri
}
case 16:
{
- if ((i2 | 0) >= 88) {
- if (i13) {
+ if ((i1 | 0) >= 88) {
+ if (i10) {
i1 = -1;
break L6;
}
- if ((i9 - i10 | 0) >= 3) {
+ if ((i9 - i11 | 0) >= 3) {
i1 = -1;
break L6;
}
@@ -51133,8 +50706,8 @@ function __ZNSt3__19__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stri
break L6;
}
HEAP32[i14 >> 2] = 0;
- i1 = HEAP8[31159 + i1 >> 0] | 0;
- HEAP32[i11 >> 2] = i9 + 1;
+ i1 = HEAP8[32623 + i2 >> 0] | 0;
+ HEAP32[i12 >> 2] = i9 + 1;
HEAP8[i9 >> 0] = i1;
i1 = 0;
break L6;
@@ -51144,8 +50717,8 @@ function __ZNSt3__19__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stri
default:
{}
}
- i1 = HEAP8[31159 + i1 >> 0] | 0;
- HEAP32[i11 >> 2] = i9 + 1;
+ i1 = HEAP8[32623 + i2 >> 0] | 0;
+ HEAP32[i12 >> 2] = i9 + 1;
HEAP8[i9 >> 0] = i1;
HEAP32[i14 >> 2] = (HEAP32[i14 >> 2] | 0) + 1;
i1 = 0;
@@ -51154,47 +50727,99 @@ function __ZNSt3__19__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stri
return i1 | 0;
}
-function __ZN4wasm5Store7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i6, i5, i3) {
+function __ZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEE(i8, i7, i3, i5) {
+ i8 = i8 | 0;
+ i7 = i7 | 0;
+ i3 = i3 | 0;
+ i5 = i5 | 0;
+ var i1 = 0, i2 = 0, i4 = 0, i6 = 0, i9 = 0, i10 = 0, i11 = 0;
+ i11 = STACKTOP;
+ STACKTOP = STACKTOP + 64 | 0;
+ i2 = i11 + 36 | 0;
+ i10 = i11 + 40 | 0;
+ i6 = i11;
+ i4 = i11 + 24 | 0;
+ i9 = i7 + 4 | 0;
+ i1 = HEAP32[i9 >> 2] | 0;
+ if (i1 >>> 0 > 250) {
+ i1 = HEAP32[i7 + 12 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i1 >> 2] | 0) + 20 >> 2] & 127](i1, 19734);
+ i1 = HEAP32[i9 >> 2] | 0;
+ }
+ HEAP32[i9 >> 2] = i1 + 1;
+ i1 = (HEAP32[i7 >> 2] | 0) + 84 | 0;
+ HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
+ i1 = __ZNSt3__13mapIN4wasm4NameEPNS1_8FunctionENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixEOS2_(i1, i2) | 0;
+ i1 = HEAP32[i1 >> 2] | 0;
+ if (!i1) ___assert_fail(28260, 19746, 750, 19769);
+ __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN13FunctionScopeC2EPNS_8FunctionES9_(i10, i1, i5);
+ HEAP32[i4 >> 2] = 2948;
+ HEAP32[i4 + 4 >> 2] = i7;
+ HEAP32[i4 + 8 >> 2] = i10;
+ __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i6, i4, HEAP32[i1 + 36 >> 2] | 0);
+ i7 = HEAP32[i6 + 16 >> 2] | 0;
+ if (!((i7 | 0) == 0 | (i7 | 0) == (HEAP32[9586] | 0))) ___assert_fail(19782, 19746, 758, 19769);
+ HEAP32[i8 >> 2] = HEAP32[i6 >> 2];
+ HEAP32[i8 + 4 >> 2] = HEAP32[i6 + 4 >> 2];
+ HEAP32[i8 + 8 >> 2] = HEAP32[i6 + 8 >> 2];
+ HEAP32[i8 + 12 >> 2] = HEAP32[i6 + 12 >> 2];
+ i2 = HEAP32[i1 + 4 >> 2] | 0;
+ if (!i2) {
+ HEAP32[i8 >> 2] = 0;
+ i1 = i8 + 8 | 0;
+ HEAP32[i1 >> 2] = 0;
+ HEAP32[i1 + 4 >> 2] = 0;
+ i1 = 0;
+ } else i1 = HEAP32[i8 >> 2] | 0;
+ if ((i2 | 0) == (i1 | 0)) {
+ HEAP32[i9 >> 2] = (HEAP32[i9 >> 2] | 0) + -1;
+ __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm7LiteralEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEED2Ev(i10);
+ STACKTOP = i11;
+ return;
+ } else ___assert_fail(19830, 19746, 761, 19769);
+}
+
+function __ZN4wasm5Store7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i6, i5, i4) {
i6 = i6 | 0;
i5 = i5 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i7 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i7;
- HEAP32[i4 >> 2] = i3;
+ i3 = i7;
+ HEAP32[i3 >> 2] = i4;
__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i5, 40) | 0;
- i1 = __Z12prepareColorRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEE(i5) | 0;
+ i2 = __Z12prepareColorRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEE(i5) | 0;
switch (HEAP32[i6 + 4 >> 2] | 0) {
case 0:
{
- i2 = 16812;
+ i1 = 17406;
break;
}
case 1:
{
- i2 = 16817;
+ i1 = 17411;
break;
}
case 2:
{
- i2 = 16821;
+ i1 = 17415;
break;
}
case 3:
{
- i2 = 16825;
+ i1 = 17419;
break;
}
case 4:
{
- i2 = 16829;
+ i1 = 17423;
break;
}
default:
{}
}
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i1, i2) | 0, 16833) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i2, i1) | 0, 17427) | 0;
i1 = HEAP32[i6 + 8 >> 2] | 0;
L8 : do if (i1 >>> 0 < 4) switch (i1 | 0) {
case 1:
@@ -51204,7 +50829,7 @@ function __ZN4wasm5Store7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEE
}
case 2:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 16786) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17377) | 0;
break L8;
}
default:
@@ -51212,205 +50837,20 @@ function __ZN4wasm5Store7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEE
} while (0);
i1 = i6 + 12 | 0;
if (HEAP32[i1 >> 2] | 0) {
- i2 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 16795) | 0;
+ i2 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17389) | 0;
__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj(i2, HEAP32[i1 >> 2] | 0) | 0;
}
i1 = i6 + 16 | 0;
if (HEAP32[i1 >> 2] | 0) {
- i2 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 16804) | 0;
+ i2 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 17398) | 0;
__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj(i2, HEAP32[i1 >> 2] | 0) | 0;
}
__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i5, 10) | 0;
- i3 = i3 + 1 | 0;
- HEAP32[i4 >> 2] = i3;
- __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i5, i3, HEAP32[i6 + 20 >> 2] | 0) | 0;
- __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i5, i3, HEAP32[i6 + 24 >> 2] | 0) | 0;
- i6 = __Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i5, i4) | 0;
- STACKTOP = i7;
- return i6 | 0;
-}
-
-function _wcsrtombs(i3, i7, i1, i2) {
- i3 = i3 | 0;
- i7 = i7 | 0;
- i1 = i1 | 0;
- i2 = i2 | 0;
- var i4 = 0, i5 = 0, i6 = 0, i8 = 0, i9 = 0;
- i9 = STACKTOP;
- STACKTOP = STACKTOP + 16 | 0;
- i8 = i9;
- L1 : do if (!i3) {
- i2 = HEAP32[i7 >> 2] | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if (!i1) i1 = 0; else {
- i3 = i1;
- i1 = 0;
- i4 = i2;
- do {
- if (i3 >>> 0 > 127) {
- i2 = _wcrtomb(i8, i3, 0) | 0;
- if ((i2 | 0) == -1) {
- i1 = -1;
- break L1;
- }
- } else i2 = 1;
- i1 = i2 + i1 | 0;
- i4 = i4 + 4 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- } while ((i3 | 0) != 0);
- }
- } else {
- L9 : do if (i1 >>> 0 > 3) {
- i6 = HEAP32[i7 >> 2] | 0;
- i2 = i1;
- while (1) {
- i4 = HEAP32[i6 >> 2] | 0;
- if ((i4 + -1 | 0) >>> 0 > 126) {
- if (!i4) break;
- i5 = _wcrtomb(i3, i4, 0) | 0;
- if ((i5 | 0) == -1) {
- i1 = -1;
- break L1;
- }
- i4 = i6;
- i2 = i2 - i5 | 0;
- i3 = i3 + i5 | 0;
- } else {
- HEAP8[i3 >> 0] = i4;
- i4 = HEAP32[i7 >> 2] | 0;
- i2 = i2 + -1 | 0;
- i3 = i3 + 1 | 0;
- }
- i6 = i4 + 4 | 0;
- HEAP32[i7 >> 2] = i6;
- if (i2 >>> 0 <= 3) break L9;
- }
- HEAP8[i3 >> 0] = 0;
- HEAP32[i7 >> 2] = 0;
- i1 = i1 - i2 | 0;
- break L1;
- } else i2 = i1; while (0);
- if (i2) {
- i6 = HEAP32[i7 >> 2] | 0;
- while (1) {
- i4 = HEAP32[i6 >> 2] | 0;
- if ((i4 + -1 | 0) >>> 0 > 126) {
- if (!i4) {
- i4 = 19;
- break;
- }
- i5 = _wcrtomb(i8, i4, 0) | 0;
- if ((i5 | 0) == -1) {
- i1 = -1;
- break L1;
- }
- if (i2 >>> 0 < i5 >>> 0) {
- i4 = 22;
- break;
- }
- _wcrtomb(i3, HEAP32[i6 >> 2] | 0, 0) | 0;
- i4 = i6;
- i2 = i2 - i5 | 0;
- i3 = i3 + i5 | 0;
- } else {
- HEAP8[i3 >> 0] = i4;
- i4 = HEAP32[i7 >> 2] | 0;
- i2 = i2 + -1 | 0;
- i3 = i3 + 1 | 0;
- }
- i6 = i4 + 4 | 0;
- HEAP32[i7 >> 2] = i6;
- if (!i2) break L1;
- }
- if ((i4 | 0) == 19) {
- HEAP8[i3 >> 0] = 0;
- HEAP32[i7 >> 2] = 0;
- i1 = i1 - i2 | 0;
- break;
- } else if ((i4 | 0) == 22) {
- i1 = i1 - i2 | 0;
- break;
- }
- }
- } while (0);
- STACKTOP = i9;
- return i1 | 0;
-}
-
-function __ZN4wasm4Load7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i6, i5, i3) {
- i6 = i6 | 0;
- i5 = i5 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i7 = 0;
- i7 = STACKTOP;
- STACKTOP = STACKTOP + 16 | 0;
- i4 = i7;
- HEAP32[i4 >> 2] = i3;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i5, 40) | 0;
- i1 = __Z12prepareColorRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEE(i5) | 0;
- switch (HEAP32[i6 + 4 >> 2] | 0) {
- case 0:
- {
- i2 = 16812;
- break;
- }
- case 1:
- {
- i2 = 16817;
- break;
- }
- case 2:
- {
- i2 = 16821;
- break;
- }
- case 3:
- {
- i2 = 16825;
- break;
- }
- case 4:
- {
- i2 = 16829;
- break;
- }
- default:
- {}
- }
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i1, i2) | 0, 16780) | 0;
- i1 = HEAP32[i6 + 8 >> 2] | 0;
- if (i1 >>> 0 < 4) {
- switch (i1 | 0) {
- case 1:
- {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i5, 56) | 0;
- break;
- }
- case 2:
- {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 16786) | 0;
- break;
- }
- default:
- _abort();
- }
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, HEAP8[i6 + 12 >> 0] | 0 ? 16789 : 16792) | 0;
- }
- i1 = i6 + 16 | 0;
- if (HEAP32[i1 >> 2] | 0) {
- i2 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 16795) | 0;
- __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj(i2, HEAP32[i1 >> 2] | 0) | 0;
- }
- i1 = i6 + 20 | 0;
- if (HEAP32[i1 >> 2] | 0) {
- i2 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 16804) | 0;
- __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj(i2, HEAP32[i1 >> 2] | 0) | 0;
- }
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i5, 10) | 0;
- i3 = i3 + 1 | 0;
- HEAP32[i4 >> 2] = i3;
- __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i5, i3, HEAP32[i6 + 24 >> 2] | 0) | 0;
- i6 = __Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i5, i4) | 0;
+ i4 = i4 + 1 | 0;
+ HEAP32[i3 >> 2] = i4;
+ __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i5, i4, HEAP32[i6 + 20 >> 2] | 0) | 0;
+ __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i5, i4, HEAP32[i6 + 24 >> 2] | 0) | 0;
+ i6 = __Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i5, i3) | 0;
STACKTOP = i7;
return i6 | 0;
}
@@ -51422,46 +50862,46 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE8parseForERPcPKc(i
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i16 = 0;
i16 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i12 = i16 + 28 | 0;
- i10 = i16 + 24 | 0;
- i8 = i16 + 20 | 0;
- i6 = i16 + 16 | 0;
- i5 = i16 + 12 | 0;
- i7 = i16 + 8 | 0;
- i9 = i16 + 4 | 0;
- i11 = i16;
+ i8 = i16 + 28 | 0;
+ i7 = i16 + 24 | 0;
+ i6 = i16 + 20 | 0;
+ i5 = i16 + 16 | 0;
+ i9 = i16 + 12 | 0;
+ i10 = i16 + 8 | 0;
+ i11 = i16 + 4 | 0;
+ i12 = i16;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i14);
i1 = HEAP32[i14 >> 2] | 0;
- if ((HEAP8[i1 >> 0] | 0) != 40) ___assert_fail(22391, 22233, 498, 22862);
+ if ((HEAP8[i1 >> 0] | 0) != 40) ___assert_fail(22979, 22821, 498, 23450);
HEAP32[i14 >> 2] = i1 + 1;
- i4 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i15, i14, 22200) | 0;
+ i4 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i15, i14, 22788) | 0;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i14);
i1 = HEAP32[i14 >> 2] | 0;
- if ((HEAP8[i1 >> 0] | 0) != 59) ___assert_fail(22871, 22233, 502, 22862);
+ if ((HEAP8[i1 >> 0] | 0) != 59) ___assert_fail(23459, 22821, 502, 23450);
HEAP32[i14 >> 2] = i1 + 1;
- i3 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i15, i14, 22200) | 0;
+ i3 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i15, i14, 22788) | 0;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i14);
i1 = HEAP32[i14 >> 2] | 0;
- if ((HEAP8[i1 >> 0] | 0) != 59) ___assert_fail(22871, 22233, 506, 22862);
+ if ((HEAP8[i1 >> 0] | 0) != 59) ___assert_fail(23459, 22821, 506, 23450);
HEAP32[i14 >> 2] = i1 + 1;
- i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i15, i14, 34358) | 0;
+ i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i15, i14, 35822) | 0;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i14);
- i1 = HEAP32[i14 >> 2] | 0;
- if ((HEAP8[i1 >> 0] | 0) == 41) {
- HEAP32[i14 >> 2] = i1 + 1;
+ i2 = HEAP32[i14 >> 2] | 0;
+ if ((HEAP8[i2 >> 0] | 0) == 41) {
+ HEAP32[i14 >> 2] = i2 + 1;
i15 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE19parseMaybeBracketedERPcPKc(i15, i14, i13) | 0;
- HEAP32[i5 >> 2] = i4;
- HEAP32[i7 >> 2] = i3;
- HEAP32[i9 >> 2] = i2;
- HEAP32[i11 >> 2] = i15;
- HEAP32[i6 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i8 >> 2] = HEAP32[i7 >> 2];
- HEAP32[i10 >> 2] = HEAP32[i9 >> 2];
- HEAP32[i12 >> 2] = HEAP32[i11 >> 2];
- i15 = __ZN6cashew12ValueBuilder7makeForENS_3RefES1_S1_S1_(i6, i8, i10, i12) | 0;
+ HEAP32[i9 >> 2] = i4;
+ HEAP32[i10 >> 2] = i3;
+ HEAP32[i11 >> 2] = i1;
+ HEAP32[i12 >> 2] = i15;
+ HEAP32[i5 >> 2] = HEAP32[i9 >> 2];
+ HEAP32[i6 >> 2] = HEAP32[i10 >> 2];
+ HEAP32[i7 >> 2] = HEAP32[i11 >> 2];
+ HEAP32[i8 >> 2] = HEAP32[i12 >> 2];
+ i15 = __ZN6cashew12ValueBuilder7makeForENS_3RefES1_S1_S1_(i5, i6, i7, i8) | 0;
STACKTOP = i16;
return i15 | 0;
- } else ___assert_fail(22613, 22233, 510, 22862);
+ } else ___assert_fail(23201, 22821, 510, 23450);
return 0;
}
@@ -51472,12 +50912,12 @@ function __ZN4wasm4Loop7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEE
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0, i9 = 0, i10 = 0, i11 = 0;
i10 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i10 + 12 | 0;
+ i3 = i10 + 12 | 0;
i7 = i10 + 8 | 0;
i1 = i10 + 4 | 0;
- i3 = i10;
+ i4 = i10;
HEAP32[i7 >> 2] = i5;
- __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i8, 16665, 0) | 0;
+ __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i8, 17249, 0) | 0;
i2 = i6 + 8 | 0;
do if (!(HEAP32[i2 >> 2] | 0)) {
i1 = i6 + 12 | 0;
@@ -51485,9 +50925,9 @@ function __ZN4wasm4Loop7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEE
} else {
i11 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i8, 32) | 0;
HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i4 >> 2] = HEAP32[i1 >> 2];
- __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i11, i4) | 0;
- if (!(HEAP32[i6 + 12 >> 2] | 0)) ___assert_fail(16670, 26220, 440, 16678); else {
+ HEAP32[i3 >> 2] = HEAP32[i1 >> 2];
+ __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i11, i3) | 0;
+ if (!(HEAP32[i6 + 12 >> 2] | 0)) ___assert_fail(17254, 27572, 478, 17262); else {
i1 = i6 + 12 | 0;
i9 = 6;
break;
@@ -51495,20 +50935,20 @@ function __ZN4wasm4Loop7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEE
} while (0);
if ((i9 | 0) == 6) {
i11 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i8, 32) | 0;
- HEAP32[i3 >> 2] = HEAP32[i1 >> 2];
- HEAP32[i4 >> 2] = HEAP32[i3 >> 2];
- __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i11, i4) | 0;
+ HEAP32[i4 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i4 >> 2];
+ __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i11, i3) | 0;
}
__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i8, 10) | 0;
i4 = i5 + 1 | 0;
HEAP32[i7 >> 2] = i4;
i1 = i6 + 16 | 0;
- i3 = __ZN4wasm10Expression8dyn_castINS_5BlockEEEPT_v(HEAP32[i1 >> 2] | 0) | 0;
- L10 : do if ((i3 | 0) != 0 ? (HEAP32[i3 + 8 >> 2] | 0) == 0 : 0) {
- i2 = HEAP32[i3 + 16 >> 2] | 0;
- i1 = HEAP32[i3 + 12 >> 2] | 0;
+ i2 = __ZN4wasm10Expression8dyn_castINS_5BlockEEEPT_v(HEAP32[i1 >> 2] | 0) | 0;
+ L10 : do if ((i2 | 0) != 0 ? (HEAP32[i2 + 8 >> 2] | 0) == 0 : 0) {
+ i3 = HEAP32[i2 + 16 >> 2] | 0;
+ i1 = HEAP32[i2 + 12 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i2 | 0)) break L10;
+ if ((i1 | 0) == (i3 | 0)) break L10;
__ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i8, i4, HEAP32[i1 >> 2] | 0) | 0;
i1 = i1 + 4 | 0;
}
@@ -51519,57 +50959,56 @@ function __ZN4wasm4Loop7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEE
return i11 | 0;
}
-function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE8parseVarERPcPKcb(i13, i15, i2, i3) {
+function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE8parseVarERPcPKcb(i13, i15, i1, i2) {
i13 = i13 | 0;
i15 = i15 | 0;
+ i1 = i1 | 0;
i2 = i2 | 0;
- i3 = i3 | 0;
- var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i14 = 0, i16 = 0;
+ var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i14 = 0, i16 = 0;
i14 = STACKTOP;
STACKTOP = STACKTOP + 48 | 0;
- i8 = i14 + 36 | 0;
- i10 = i14 + 32 | 0;
- i6 = i14 + 28 | 0;
- i12 = i14;
- i5 = i14 + 24 | 0;
- i9 = i14 + 20 | 0;
- i7 = i14 + 16 | 0;
- i11 = __ZN6cashew12ValueBuilder7makeVarEb(i3) | 0;
- i4 = i12 + 12 | 0;
- i3 = i12 + 8 | 0;
+ i6 = i14 + 36 | 0;
+ i5 = i14 + 32 | 0;
+ i4 = i14 + 28 | 0;
+ i11 = i14;
+ i7 = i14 + 24 | 0;
+ i8 = i14 + 20 | 0;
+ i9 = i14 + 16 | 0;
+ i10 = __ZN6cashew12ValueBuilder7makeVarEb(i2) | 0;
+ i2 = i11 + 12 | 0;
+ i3 = i11 + 8 | 0;
L1 : while (1) {
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i15);
- i2 = HEAP32[i15 >> 2] | 0;
- if ((HEAP8[i2 >> 0] | 0) == 59) {
- i1 = i2;
+ i1 = HEAP32[i15 >> 2] | 0;
+ if ((HEAP8[i1 >> 0] | 0) == 59) {
+ i12 = i1;
break;
}
- __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i12, i2);
- if ((HEAP32[i4 >> 2] | 0) != 2) {
+ __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i11, i1);
+ if ((HEAP32[i2 >> 2] | 0) != 2) {
i16 = 4;
break;
}
HEAP32[i15 >> 2] = (HEAP32[i15 >> 2] | 0) + (HEAP32[i3 >> 2] | 0);
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i15);
- i2 = HEAP32[i15 >> 2] | 0;
- if ((HEAP8[i2 >> 0] | 0) == 61) {
- HEAP32[i15 >> 2] = i2 + 1;
+ i1 = HEAP32[i15 >> 2] | 0;
+ if ((HEAP8[i1 >> 0] | 0) == 61) {
+ HEAP32[i15 >> 2] = i1 + 1;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i15);
- i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i13, i15, 22538) | 0;
- } else i2 = 0;
- HEAP32[i5 >> 2] = i11;
- HEAP32[i9 >> 2] = HEAP32[i12 >> 2];
- HEAP32[i7 >> 2] = i2;
- HEAP32[i6 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i10 >> 2] = HEAP32[i9 >> 2];
- HEAP32[i8 >> 2] = HEAP32[i7 >> 2];
- __ZN6cashew12ValueBuilder11appendToVarENS_3RefENS_7IStringES1_(i6, i10, i8);
+ i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i13, i15, 23126) | 0;
+ } else i1 = 0;
+ HEAP32[i7 >> 2] = i10;
+ HEAP32[i8 >> 2] = HEAP32[i11 >> 2];
+ HEAP32[i9 >> 2] = i1;
+ HEAP32[i4 >> 2] = HEAP32[i7 >> 2];
+ HEAP32[i5 >> 2] = HEAP32[i8 >> 2];
+ HEAP32[i6 >> 2] = HEAP32[i9 >> 2];
+ __ZN6cashew12ValueBuilder11appendToVarENS_3RefENS_7IStringES1_(i4, i5, i6);
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i15);
- i2 = HEAP32[i15 >> 2] | 0;
- switch (HEAP8[i2 >> 0] | 0) {
+ i1 = HEAP32[i15 >> 2] | 0;
+ switch (HEAP8[i1 >> 0] | 0) {
case 59:
{
- i1 = i2;
i16 = 10;
break L1;
}
@@ -51581,12 +51020,115 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE8parseVarERPcPKcb(
break L1;
}
}
- HEAP32[i15 >> 2] = i2 + 1;
+ HEAP32[i15 >> 2] = i1 + 1;
}
- if ((i16 | 0) == 4) ___assert_fail(22510, 22233, 434, 22529); else if ((i16 | 0) == 9) _abort();
- HEAP32[i15 >> 2] = i1 + 1;
+ if ((i16 | 0) == 4) ___assert_fail(23098, 22821, 434, 23117); else if ((i16 | 0) == 9) _abort(); else if ((i16 | 0) == 10) i12 = i1;
+ HEAP32[i15 >> 2] = i12 + 1;
STACKTOP = i14;
- return i11 | 0;
+ return i10 | 0;
+}
+
+function _wcsrtombs(i3, i6, i1, i2) {
+ i3 = i3 | 0;
+ i6 = i6 | 0;
+ i1 = i1 | 0;
+ i2 = i2 | 0;
+ var i4 = 0, i5 = 0, i7 = 0, i8 = 0;
+ i8 = STACKTOP;
+ STACKTOP = STACKTOP + 16 | 0;
+ i7 = i8;
+ L1 : do if (!i3) {
+ i3 = HEAP32[i6 >> 2] | 0;
+ i2 = HEAP32[i3 >> 2] | 0;
+ if (!i2) i1 = 0; else {
+ i1 = 0;
+ do {
+ if (i2 >>> 0 > 127) {
+ i2 = _wcrtomb(i7, i2, 0) | 0;
+ if ((i2 | 0) == -1) {
+ i1 = -1;
+ break L1;
+ }
+ } else i2 = 1;
+ i1 = i2 + i1 | 0;
+ i3 = i3 + 4 | 0;
+ i2 = HEAP32[i3 >> 2] | 0;
+ } while ((i2 | 0) != 0);
+ }
+ } else {
+ L9 : do if (i1 >>> 0 > 3) {
+ i2 = i1;
+ i4 = HEAP32[i6 >> 2] | 0;
+ while (1) {
+ i5 = HEAP32[i4 >> 2] | 0;
+ if ((i5 + -1 | 0) >>> 0 > 126) {
+ if (!i5) break;
+ i5 = _wcrtomb(i3, i5, 0) | 0;
+ if ((i5 | 0) == -1) {
+ i1 = -1;
+ break L1;
+ }
+ i3 = i3 + i5 | 0;
+ i2 = i2 - i5 | 0;
+ } else {
+ HEAP8[i3 >> 0] = i5;
+ i3 = i3 + 1 | 0;
+ i2 = i2 + -1 | 0;
+ i4 = HEAP32[i6 >> 2] | 0;
+ }
+ i4 = i4 + 4 | 0;
+ HEAP32[i6 >> 2] = i4;
+ if (i2 >>> 0 <= 3) break L9;
+ }
+ HEAP8[i3 >> 0] = 0;
+ HEAP32[i6 >> 2] = 0;
+ i1 = i1 - i2 | 0;
+ break L1;
+ } else i2 = i1; while (0);
+ if (i2) {
+ i4 = HEAP32[i6 >> 2] | 0;
+ while (1) {
+ i5 = HEAP32[i4 >> 2] | 0;
+ if ((i5 + -1 | 0) >>> 0 > 126) {
+ if (!i5) {
+ i4 = 19;
+ break;
+ }
+ i5 = _wcrtomb(i7, i5, 0) | 0;
+ if ((i5 | 0) == -1) {
+ i1 = -1;
+ break L1;
+ }
+ if (i2 >>> 0 < i5 >>> 0) {
+ i4 = 22;
+ break;
+ }
+ _wcrtomb(i3, HEAP32[i4 >> 2] | 0, 0) | 0;
+ i3 = i3 + i5 | 0;
+ i2 = i2 - i5 | 0;
+ } else {
+ HEAP8[i3 >> 0] = i5;
+ i3 = i3 + 1 | 0;
+ i2 = i2 + -1 | 0;
+ i4 = HEAP32[i6 >> 2] | 0;
+ }
+ i4 = i4 + 4 | 0;
+ HEAP32[i6 >> 2] = i4;
+ if (!i2) break L1;
+ }
+ if ((i4 | 0) == 19) {
+ HEAP8[i3 >> 0] = 0;
+ HEAP32[i6 >> 2] = 0;
+ i1 = i1 - i2 | 0;
+ break;
+ } else if ((i4 | 0) == 22) {
+ i1 = i1 - i2 | 0;
+ break;
+ }
+ }
+ } while (0);
+ STACKTOP = i8;
+ return i1 | 0;
}
function __ZN4wasm22SExpressionWasmBuilder9makeStoreERNS_7ElementENS_8WasmTypeE(i9, i8, i1) {
@@ -51612,7 +51154,7 @@ function __ZN4wasm22SExpressionWasmBuilder9makeStoreERNS_7ElementENS_8WasmTypeE(
if ((HEAP8[i2 + 7 >> 0] | 0) == 54) {
HEAP32[i1 >> 2] = 2;
break L1;
- } else ___assert_fail(17256, 16023, 766, 17303);
+ } else ___assert_fail(17850, 16606, 754, 17897);
break;
}
case 51:
@@ -51620,16 +51162,16 @@ function __ZN4wasm22SExpressionWasmBuilder9makeStoreERNS_7ElementENS_8WasmTypeE(
if ((HEAP8[i2 + 7 >> 0] | 0) == 50) {
HEAP32[i1 >> 2] = 4;
break L1;
- } else ___assert_fail(17281, 16023, 770, 17303);
+ } else ___assert_fail(17875, 16606, 758, 17897);
break;
}
default:
{}
} while (0);
- i5 = i7 + 12 | 0;
- HEAP32[i5 >> 2] = 0;
- i4 = i7 + 16 | 0;
+ i4 = i7 + 12 | 0;
HEAP32[i4 >> 2] = 0;
+ i5 = i7 + 16 | 0;
+ HEAP32[i5 >> 2] = 0;
i6 = i9 + 8 | 0;
i1 = 1;
while (1) {
@@ -51651,13 +51193,13 @@ function __ZN4wasm22SExpressionWasmBuilder9makeStoreERNS_7ElementENS_8WasmTypeE(
case 97:
{
i3 = _atoi(i2) | 0;
- HEAP32[i4 >> 2] = i3;
+ HEAP32[i5 >> 2] = i3;
break;
}
case 111:
{
i3 = _atoi(i2) | 0;
- HEAP32[i5 >> 2] = i3;
+ HEAP32[i4 >> 2] = i3;
break;
}
default:
@@ -51665,7 +51207,7 @@ function __ZN4wasm22SExpressionWasmBuilder9makeStoreERNS_7ElementENS_8WasmTypeE(
}
i1 = i1 + 1 | 0;
}
- if ((i2 | 0) == 12) ___assert_fail(17129, 16023, 780, 17303); else if ((i2 | 0) == 18) {
+ if ((i2 | 0) == 12) ___assert_fail(17723, 16606, 768, 17897); else if ((i2 | 0) == 18) {
i6 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i9, i3) | 0;
HEAP32[i7 + 20 >> 2] = i6;
i9 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i9, __ZN4wasm7ElementixEj(i8, i1 + 1 | 0) | 0) | 0;
@@ -51675,186 +51217,36 @@ function __ZN4wasm22SExpressionWasmBuilder9makeStoreERNS_7ElementENS_8WasmTypeE(
return 0;
}
-function __ZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEE(i8, i7, i2, i4) {
- i8 = i8 | 0;
- i7 = i7 | 0;
- i2 = i2 | 0;
- i4 = i4 | 0;
- var i1 = 0, i3 = 0, i5 = 0, i6 = 0, i9 = 0, i10 = 0, i11 = 0;
- i11 = STACKTOP;
- STACKTOP = STACKTOP + 64 | 0;
- i3 = i11 + 36 | 0;
- i10 = i11 + 40 | 0;
- i5 = i11;
- i6 = i11 + 24 | 0;
- i9 = i7 + 4 | 0;
- i1 = HEAP32[i9 >> 2] | 0;
- if (i1 >>> 0 > 250) {
- i1 = HEAP32[i7 + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i1 >> 2] | 0) + 20 >> 2] & 127](i1, 19219);
- i1 = HEAP32[i9 >> 2] | 0;
- }
- HEAP32[i9 >> 2] = i1 + 1;
- i1 = (HEAP32[i7 >> 2] | 0) + 84 | 0;
- HEAP32[i3 >> 2] = HEAP32[i2 >> 2];
- i1 = __ZNSt3__13mapIN4wasm4NameEPNS1_8FunctionENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixEOS2_(i1, i3) | 0;
- i1 = HEAP32[i1 >> 2] | 0;
- if (!i1) ___assert_fail(26908, 19231, 733, 19254);
- __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN13FunctionScopeC2EPNS_8FunctionES9_(i10, i1, i4);
- HEAP32[i6 >> 2] = 2748;
- HEAP32[i6 + 4 >> 2] = i7;
- HEAP32[i6 + 8 >> 2] = i10;
- __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i5, i6, HEAP32[i1 + 36 >> 2] | 0);
- if (HEAP32[i5 + 16 >> 2] | 0) ___assert_fail(19267, 19231, 741, 19254);
- HEAP32[i8 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i8 + 4 >> 2] = HEAP32[i5 + 4 >> 2];
- HEAP32[i8 + 8 >> 2] = HEAP32[i5 + 8 >> 2];
- HEAP32[i8 + 12 >> 2] = HEAP32[i5 + 12 >> 2];
- i2 = HEAP32[i1 + 4 >> 2] | 0;
- if (!i2) {
- HEAP32[i8 >> 2] = 0;
- HEAPF64[i8 + 8 >> 3] = 0.0;
- i1 = 0;
- } else i1 = HEAP32[i8 >> 2] | 0;
- if ((i2 | 0) == (i1 | 0)) {
- HEAP32[i9 >> 2] = (HEAP32[i9 >> 2] | 0) + -1;
- __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm7LiteralEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEED2Ev(i10);
- STACKTOP = i11;
- return;
- } else ___assert_fail(19284, 19231, 744, 19254);
-}
-
-function __ZN4wasm5Break7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i7, i1, i6) {
- i7 = i7 | 0;
- i1 = i1 | 0;
- i6 = i6 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0, i10 = 0;
- i10 = STACKTOP;
- STACKTOP = STACKTOP + 16 | 0;
- i4 = i10 + 12 | 0;
- i8 = i10 + 8 | 0;
- i2 = i10 + 4 | 0;
- i3 = i10;
- HEAP32[i8 >> 2] = i6;
- i5 = i7 + 8 | 0;
- do if (!(HEAP32[i5 >> 2] | 0)) {
- i2 = __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i1, 16686, 0) | 0;
- HEAP32[i3 >> 2] = HEAP32[i7 + 12 >> 2];
- HEAP32[i4 >> 2] = HEAP32[i3 >> 2];
- __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i2, i4) | 0;
- i2 = i7 + 16 | 0;
- i7 = HEAP32[i2 >> 2] | 0;
- if (i7 | 0 ? (HEAP32[i7 >> 2] | 0) != 18 : 0) {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i1, 10) | 0;
- i3 = i6 + 1 | 0;
- HEAP32[i8 >> 2] = i3;
- i9 = 7;
- break;
- }
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i1, 34358) | 0;
- } else {
- __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i1, 12236, 0) | 0;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i1, 10) | 0;
- i3 = i6 + 1 | 0;
- HEAP32[i8 >> 2] = i3;
- __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i1, i3, HEAP32[i5 >> 2] | 0) | 0;
- i9 = __Z8doIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEj(i1, i3) | 0;
- HEAP32[i2 >> 2] = HEAP32[i7 + 12 >> 2];
- HEAP32[i4 >> 2] = HEAP32[i2 >> 2];
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i9, i4) | 0, 10) | 0;
- i2 = i7 + 16 | 0;
- i9 = 7;
- } while (0);
- if ((i9 | 0) == 7) {
- i2 = HEAP32[i2 >> 2] | 0;
- if (i2 | 0 ? (HEAP32[i2 >> 2] | 0) != 18 : 0) __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i1, i3, i2) | 0;
- i1 = __Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i1, i8) | 0;
- }
- STACKTOP = i10;
- return i1 | 0;
-}
-
-function __ZN4wasm7Literal11printDoubleERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEd(i5, d3) {
- i5 = i5 | 0;
- d3 = +d3;
- var i1 = 0, i2 = 0, i4 = 0, i6 = 0, d7 = 0.0;
- HEAPF64[tempDoublePtr >> 3] = d3;
- i4 = HEAP32[tempDoublePtr >> 2] | 0;
- i1 = HEAP32[tempDoublePtr + 4 >> 2] | 0;
- i2 = (i1 | 0) < 0;
- do if (d3 == 0.0 & i2) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 20506) | 0; else {
- d7 = +Math_abs(+d3);
- HEAPF64[tempDoublePtr >> 3] = d7;
- i6 = HEAP32[tempDoublePtr + 4 >> 2] | 0;
- if (i6 >>> 0 > 2146435072 | (i6 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0) {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, i2 ? 35428 : 44980) | 0, 30290) | 0;
- i1 = i1 & 524287;
- if ((i4 | 0) == 0 & (i1 | 0) == 0) break;
- i6 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 20502) | 0;
- i5 = i6 + (HEAP32[(HEAP32[i6 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0;
- HEAP32[i5 >> 2] = HEAP32[i5 >> 2] & -75 | 8;
- i6 = __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEy(i6, i4, i1) | 0;
- i6 = i6 + (HEAP32[(HEAP32[i6 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0;
- HEAP32[i6 >> 2] = HEAP32[i6 >> 2] & -75 | 2;
- break;
- }
- i6 = i1 & 2146435072;
- if (!(i6 >>> 0 < 2146435072 | (i6 | 0) == 2146435072 & 0 < 0)) {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, i2 ? 12242 : 30281) | 0;
- break;
- }
- i2 = __ZN6cashew9JSPrinter11numToStringEdb(d3, 1) | 0;
- switch (HEAP8[i2 >> 0] | 0) {
- case 46:
- {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i5, 48) | 0;
- i1 = i2;
- break;
- }
- case 45:
- {
- i1 = i2 + 1 | 0;
- if ((HEAP8[i1 >> 0] | 0) == 46) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 20506) | 0; else i1 = i2;
- break;
- }
- default:
- i1 = i2;
- }
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, i1) | 0;
- } while (0);
- return;
-}
-
-function ___stdio_write(i12, i2, i1) {
- i12 = i12 | 0;
+function ___stdio_write(i14, i2, i1) {
+ i14 = i14 | 0;
i2 = i2 | 0;
i1 = i1 | 0;
- var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i13 = 0, i14 = 0, i15 = 0;
+ var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i15 = 0;
i15 = STACKTOP;
STACKTOP = STACKTOP + 48 | 0;
i11 = i15 + 16 | 0;
i10 = i15;
i3 = i15 + 32 | 0;
- i13 = i12 + 28 | 0;
- i4 = HEAP32[i13 >> 2] | 0;
+ i12 = i14 + 28 | 0;
+ i4 = HEAP32[i12 >> 2] | 0;
HEAP32[i3 >> 2] = i4;
- i14 = i12 + 20 | 0;
- i4 = (HEAP32[i14 >> 2] | 0) - i4 | 0;
+ i13 = i14 + 20 | 0;
+ i4 = (HEAP32[i13 >> 2] | 0) - i4 | 0;
HEAP32[i3 + 4 >> 2] = i4;
HEAP32[i3 + 8 >> 2] = i2;
HEAP32[i3 + 12 >> 2] = i1;
- i8 = i12 + 60 | 0;
- i9 = i12 + 44 | 0;
+ i8 = i14 + 60 | 0;
+ i9 = i14 + 44 | 0;
i2 = 2;
i4 = i4 + i1 | 0;
while (1) {
- if (!(HEAP32[9341] | 0)) {
+ if (!(HEAP32[9709] | 0)) {
HEAP32[i11 >> 2] = HEAP32[i8 >> 2];
HEAP32[i11 + 4 >> 2] = i3;
HEAP32[i11 + 8 >> 2] = i2;
i6 = ___syscall_ret(___syscall146(146, i11 | 0) | 0) | 0;
} else {
- _pthread_cleanup_push(169, i12 | 0);
+ _pthread_cleanup_push(189, i14 | 0);
HEAP32[i10 >> 2] = HEAP32[i8 >> 2];
HEAP32[i10 + 4 >> 2] = i3;
HEAP32[i10 + 8 >> 2] = i2;
@@ -51872,13 +51264,13 @@ function ___stdio_write(i12, i2, i1) {
i4 = i4 - i6 | 0;
i5 = HEAP32[i3 + 4 >> 2] | 0;
if (i6 >>> 0 <= i5 >>> 0) if ((i2 | 0) == 2) {
- HEAP32[i13 >> 2] = (HEAP32[i13 >> 2] | 0) + i6;
+ HEAP32[i12 >> 2] = (HEAP32[i12 >> 2] | 0) + i6;
i7 = i5;
i2 = 2;
} else i7 = i5; else {
i7 = HEAP32[i9 >> 2] | 0;
+ HEAP32[i12 >> 2] = i7;
HEAP32[i13 >> 2] = i7;
- HEAP32[i14 >> 2] = i7;
i7 = HEAP32[i3 + 12 >> 2] | 0;
i6 = i6 - i5 | 0;
i3 = i3 + 8 | 0;
@@ -51889,64 +51281,112 @@ function ___stdio_write(i12, i2, i1) {
}
if ((i4 | 0) == 6) {
i11 = HEAP32[i9 >> 2] | 0;
- HEAP32[i12 + 16 >> 2] = i11 + (HEAP32[i12 + 48 >> 2] | 0);
- i12 = i11;
- HEAP32[i13 >> 2] = i12;
- HEAP32[i14 >> 2] = i12;
+ HEAP32[i14 + 16 >> 2] = i11 + (HEAP32[i14 + 48 >> 2] | 0);
+ i14 = i11;
+ HEAP32[i12 >> 2] = i14;
+ HEAP32[i13 >> 2] = i14;
} else if ((i4 | 0) == 8) {
- HEAP32[i12 + 16 >> 2] = 0;
+ HEAP32[i14 + 16 >> 2] = 0;
+ HEAP32[i12 >> 2] = 0;
HEAP32[i13 >> 2] = 0;
- HEAP32[i14 >> 2] = 0;
- HEAP32[i12 >> 2] = HEAP32[i12 >> 2] | 32;
+ HEAP32[i14 >> 2] = HEAP32[i14 >> 2] | 32;
if ((i2 | 0) == 2) i1 = 0; else i1 = i1 - (HEAP32[i3 + 4 >> 2] | 0) | 0;
}
STACKTOP = i15;
return i1 | 0;
}
-function __ZN4wasm15Asm2WasmBuilder8optimizeEv(i9) {
- i9 = i9 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0;
- i10 = STACKTOP;
- STACKTOP = STACKTOP + 80 | 0;
- i7 = i10 + 72 | 0;
- i8 = i10 + 48 | 0;
- i3 = i10 + 36 | 0;
- i4 = i10 + 24 | 0;
- i5 = i10 + 12 | 0;
- i6 = i10;
- HEAP32[i7 + 4 >> 2] = 0;
- HEAP32[i7 >> 2] = 2464;
- i1 = HEAP32[i9 >> 2] | 0;
- i2 = i1 + 88 | 0;
- i1 = HEAP32[i1 + 84 >> 2] | 0;
- while (1) {
- if ((i1 | 0) == (i2 | 0)) break;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i7 >> 2] | 0) + 12 >> 2] & 127](i7, HEAP32[i1 + 20 >> 2] | 0);
- i1 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i1) | 0;
- }
- HEAP32[i8 >> 2] = HEAP32[i9 + 4 >> 2];
- HEAP32[i8 + 4 >> 2] = 0;
- HEAP32[i8 + 8 >> 2] = 0;
- HEAP32[i8 + 12 >> 2] = 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i3, 24342, 17);
- __ZN4wasm10PassRunner3addENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i8, i3);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i3);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i4, 25076, 19);
- __ZN4wasm10PassRunner3addENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i8, i4);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i4);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i5, 23640, 12);
- __ZN4wasm10PassRunner3addENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i8, i5);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i6, 25811, 15);
- __ZN4wasm10PassRunner3addENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i8, i6);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i6);
- __ZN4wasm10PassRunner3runEPNS_6ModuleE(i8, HEAP32[i9 >> 2] | 0);
- __ZN4wasm10PassRunnerD2Ev(i8);
- STACKTOP = i10;
+function __ZN4wasm7Literal11printDoubleERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEd(i5, d3) {
+ i5 = i5 | 0;
+ d3 = +d3;
+ var i1 = 0, i2 = 0, i4 = 0, i6 = 0, d7 = 0.0;
+ HEAPF64[tempDoublePtr >> 3] = d3;
+ i4 = HEAP32[tempDoublePtr >> 2] | 0;
+ i1 = HEAP32[tempDoublePtr + 4 >> 2] | 0;
+ i2 = (i1 | 0) < 0;
+ do if (d3 == 0.0 & i2) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 21073) | 0; else {
+ d7 = +Math_abs(+d3);
+ HEAPF64[tempDoublePtr >> 3] = d7;
+ i6 = HEAP32[tempDoublePtr + 4 >> 2] | 0;
+ if (i6 >>> 0 > 2146435072 | (i6 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0) {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, i2 ? 36892 : 46453) | 0, 31696) | 0;
+ i1 = i1 & 1048575;
+ if ((i4 | 0) == 0 & (i1 | 0) == 0) break;
+ i6 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 21069) | 0;
+ i5 = i6 + (HEAP32[(HEAP32[i6 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0;
+ HEAP32[i5 >> 2] = HEAP32[i5 >> 2] & -75 | 8;
+ i6 = __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEy(i6, i4, i1) | 0;
+ i6 = i6 + (HEAP32[(HEAP32[i6 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0;
+ HEAP32[i6 >> 2] = HEAP32[i6 >> 2] & -75 | 2;
+ break;
+ }
+ i6 = i1 & 2146435072;
+ if (!(i6 >>> 0 < 2146435072 | (i6 | 0) == 2146435072 & 0 < 0)) {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, i2 ? 12816 : 29271) | 0;
+ break;
+ }
+ i1 = __ZN6cashew9JSPrinter11numToStringEdb(d3, 1) | 0;
+ switch (HEAP8[i1 >> 0] | 0) {
+ case 46:
+ {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i5, 48) | 0;
+ break;
+ }
+ case 45:
+ {
+ i2 = i1 + 1 | 0;
+ if ((HEAP8[i2 >> 0] | 0) == 46) {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 21073) | 0;
+ i1 = i2;
+ }
+ break;
+ }
+ default:
+ {}
+ }
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, i1) | 0;
+ } while (0);
return;
}
+function __ZNKSt3__120__time_get_c_storageIcE7__weeksEv(i1) {
+ i1 = i1 | 0;
+ var i2 = 0;
+ if ((HEAP8[37416] | 0) == 0 ? ___cxa_guard_acquire(37416) | 0 : 0) {
+ if ((HEAP8[37424] | 0) == 0 ? ___cxa_guard_acquire(37424) | 0 : 0) {
+ i1 = 40508;
+ do {
+ i2 = 0;
+ while (1) {
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
+ }
+ i1 = i1 + 12 | 0;
+ } while ((i1 | 0) != 40676);
+ ___cxa_atexit(194, 0, ___dso_handle | 0) | 0;
+ ___cxa_guard_release(37424);
+ }
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40508, 33140) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40520, 33147) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40532, 33154) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40544, 33162) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40556, 33172) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40568, 33181) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40580, 33188) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40592, 33197) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40604, 33201) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40616, 33205) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40628, 33209) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40640, 33213) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40652, 33217) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40664, 33221) | 0;
+ HEAP32[10169] = 40508;
+ ___cxa_guard_release(37416);
+ }
+ return HEAP32[10169] | 0;
+}
+
function __ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEEclEOS5_Oj(i9, i1, i2) {
i9 = i9 | 0;
i1 = i1 | 0;
@@ -51954,497 +51394,287 @@ function __ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunction
var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0, i12 = 0;
i11 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i7 = i11 + 24 | 0;
- i3 = i11 + 20 | 0;
- i5 = i11 + 8 | 0;
- i6 = i11 + 4 | 0;
- i4 = i11;
+ i4 = i11 + 24 | 0;
+ i5 = i11 + 20 | 0;
+ i6 = i11 + 8 | 0;
+ i7 = i11 + 4 | 0;
+ i8 = i11;
i2 = HEAP32[i2 >> 2] | 0;
- HEAP32[i4 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i8 >> 2] = HEAP32[i1 >> 2];
i1 = HEAP32[i9 + 4 >> 2] | 0;
i2 = __ZN4wasm15Asm2WasmBuilder12bytesToShiftEj(i1, i2) | 0;
- if (((__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 0) | 0, 36948) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 1) | 0, 37120) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 3) | 0, 0) | 0, 36988) | 0 : 0) ? (i12 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 3) | 0, 1) | 0, (__ZN6cashew5Value10getIntegerEv(HEAP32[i12 >> 2] | 0) | 0) == (i2 | 0)) : 0) {
- i8 = HEAP32[i9 + 8 >> 2] | 0;
- i12 = __ZN6cashew3RefixEj(i4, 2) | 0;
- HEAP32[i3 >> 2] = HEAP32[i12 >> 2];
- HEAP32[i7 >> 2] = HEAP32[i3 >> 2];
- i8 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i8, i7) | 0;
+ if (((__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i8, 0) | 0, 38420) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i8, 1) | 0, 38592) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i8, 3) | 0, 0) | 0, 38460) | 0 : 0) ? (i12 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i8, 3) | 0, 1) | 0, (__ZN6cashew5Value10getIntegerEv(HEAP32[i12 >> 2] | 0) | 0) == (i2 | 0)) : 0) {
+ i3 = HEAP32[i9 + 8 >> 2] | 0;
+ i12 = __ZN6cashew3RefixEj(i8, 2) | 0;
+ HEAP32[i5 >> 2] = HEAP32[i12 >> 2];
+ HEAP32[i4 >> 2] = HEAP32[i5 >> 2];
+ i3 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i3, i4) | 0;
} else i10 = 6;
- do if ((i10 | 0) == 6) if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 0) | 0, 36988) | 0) {
- i12 = __ZN6cashew3RefixEj(i4, 1) | 0;
+ do if ((i10 | 0) == 6) if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i8, 0) | 0, 38460) | 0) {
+ i12 = __ZN6cashew3RefixEj(i8, 1) | 0;
i12 = (__ZN6cashew5Value10getIntegerEv(HEAP32[i12 >> 2] | 0) | 0) << i2;
- i8 = __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(HEAP32[i1 + 4 >> 2] | 0) | 0;
- HEAP32[i8 + 8 >> 2] = 1;
- HEAP32[i8 + 16 >> 2] = i12;
+ i3 = __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(HEAP32[i1 + 4 >> 2] | 0) | 0;
+ HEAP32[i3 + 8 >> 2] = 1;
+ HEAP32[i3 + 16 >> 2] = i12;
break;
} else {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i5, 21924, 20);
- HEAP32[i6 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i7 >> 2] = HEAP32[i6 >> 2];
- __ZN4wasmL8abort_onENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew3RefE(i5, i7);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i6, 22512, 20);
+ HEAP32[i7 >> 2] = HEAP32[i8 >> 2];
+ HEAP32[i4 >> 2] = HEAP32[i7 >> 2];
+ __ZN4wasmL8abort_onENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew3RefE(i6, i4);
} while (0);
STACKTOP = i11;
- return i8 | 0;
-}
-
-function __ZNKSt3__120__time_get_c_storageIcE7__weeksEv(i1) {
- i1 = i1 | 0;
- var i2 = 0;
- if ((HEAP8[35952] | 0) == 0 ? ___cxa_guard_acquire(35952) | 0 : 0) {
- if ((HEAP8[35960] | 0) == 0 ? ___cxa_guard_acquire(35960) | 0 : 0) {
- i2 = 39036;
- do {
- i1 = 0;
- while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
- }
- i2 = i2 + 12 | 0;
- } while ((i2 | 0) != 39204);
- ___cxa_atexit(173, 0, ___dso_handle | 0) | 0;
- ___cxa_guard_release(35960);
- }
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39036, 31676) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39048, 31683) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39060, 31690) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39072, 31698) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39084, 31708) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39096, 31717) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39108, 31724) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39120, 31733) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39132, 31737) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39144, 31741) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39156, 31745) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39168, 31749) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39180, 31753) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39192, 31757) | 0;
- HEAP32[9801] = 39036;
- ___cxa_guard_release(35952);
- }
- return HEAP32[9801] | 0;
+ return i3 | 0;
}
function __ZNKSt3__120__time_get_c_storageIwE7__weeksEv(i1) {
i1 = i1 | 0;
var i2 = 0;
- if ((HEAP8[36032] | 0) == 0 ? ___cxa_guard_acquire(36032) | 0 : 0) {
- if ((HEAP8[36040] | 0) == 0 ? ___cxa_guard_acquire(36040) | 0 : 0) {
- i2 = 39848;
+ if ((HEAP8[37496] | 0) == 0 ? ___cxa_guard_acquire(37496) | 0 : 0) {
+ if ((HEAP8[37504] | 0) == 0 ? ___cxa_guard_acquire(37504) | 0 : 0) {
+ i1 = 41320;
do {
- i1 = 0;
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = i2 + 12 | 0;
- } while ((i2 | 0) != 40016);
- ___cxa_atexit(177, 0, ___dso_handle | 0) | 0;
- ___cxa_guard_release(36040);
- }
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(39848, 8844) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(39860, 8872) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(39872, 8900) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(39884, 8932) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(39896, 8972) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(39908, 9008) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(39920, 9036) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(39932, 9072) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(39944, 9088) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(39956, 9104) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(39968, 9120) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(39980, 9136) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(39992, 9152) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40004, 9168) | 0;
- HEAP32[10004] = 39848;
- ___cxa_guard_release(36032);
- }
- return HEAP32[10004] | 0;
-}
-
-function __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS6_PNS_11__tree_nodeIS6_SG_EEiEESJ_RKT_(i6, i1, i8, i5) {
- i6 = i6 | 0;
- i1 = i1 | 0;
- i8 = i8 | 0;
- i5 = i5 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i7 = 0;
- i4 = i6 + 4 | 0;
- i1 = HEAP32[i1 >> 2] | 0;
- i2 = i1;
- do if ((i1 | 0) != (i4 | 0) ? (i3 = i1 + 16 | 0, !(__ZNK6cashew7IStringltERKS0_(i5, i3) | 0)) : 0) {
- if (__ZNK6cashew7IStringltERKS0_(i3, i5) | 0) i3 = 1; else {
- HEAP32[i8 >> 2] = i2;
- i1 = i8;
- break;
- }
- while (1) {
- if ((i3 | 0) <= 0) break;
- i3 = i3 + -1 | 0;
- i2 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i2) | 0;
- }
- i3 = i2;
- if ((i3 | 0) != (i4 | 0) ? !(__ZNK6cashew7IStringltERKS0_(i5, i3 + 16 | 0) | 0) : 0) {
- i1 = __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i6, i8, i5) | 0;
- break;
- }
- i3 = i1 + 4 | 0;
- if (!(HEAP32[i3 >> 2] | 0)) {
- HEAP32[i8 >> 2] = i1;
- i1 = i3;
- break;
- } else {
- i1 = i2;
- HEAP32[i8 >> 2] = i1;
- break;
- }
- } else i7 = 3; while (0);
- do if ((i7 | 0) == 3) {
- if ((i1 | 0) != (HEAP32[i6 >> 2] | 0)) {
- i2 = __ZNSt3__111__tree_prevIPNS_16__tree_node_baseIPvEEEET_S5_(i1) | 0;
- if (!(__ZNK6cashew7IStringltERKS0_(i2 + 16 | 0, i5) | 0)) {
- i1 = __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i6, i8, i5) | 0;
- break;
- }
- }
- if (!(HEAP32[i1 >> 2] | 0)) {
- HEAP32[i8 >> 2] = i1;
- break;
- } else {
- i1 = i2;
- HEAP32[i8 >> 2] = i1;
- i1 = i1 + 4 | 0;
- break;
- }
- } while (0);
- return i1 | 0;
-}
-
-function __ZN4wasm15Asm2WasmBuilder22getBuiltinFunctionTypeENS_4NameES1_PNSt3__16vectorIPNS_10ExpressionENS2_9allocatorIS5_EEEE(i9, i6, i5, i7) {
+ i1 = i1 + 12 | 0;
+ } while ((i1 | 0) != 41488);
+ ___cxa_atexit(198, 0, ___dso_handle | 0) | 0;
+ ___cxa_guard_release(37504);
+ }
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41320, 9412) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41332, 9440) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41344, 9468) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41356, 9500) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41368, 9540) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41380, 9576) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41392, 9604) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41404, 9640) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41416, 9656) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41428, 9672) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41440, 9688) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41452, 9704) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41464, 9720) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41476, 9736) | 0;
+ HEAP32[10372] = 41320;
+ ___cxa_guard_release(37496);
+ }
+ return HEAP32[10372] | 0;
+}
+
+function __ZN4wasm15Asm2WasmBuilder22getBuiltinFunctionTypeENS_4NameES1_PNSt3__16vectorIPNS_10ExpressionENS2_9allocatorIS5_EEEE(i9, i7, i6, i8) {
i9 = i9 | 0;
- i6 = i6 | 0;
- i5 = i5 | 0;
i7 = i7 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i8 = 0, i10 = 0;
+ i6 = i6 | 0;
+ i8 = i8 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i10 = 0;
i10 = STACKTOP;
STACKTOP = STACKTOP + 48 | 0;
i2 = i10 + 24 | 0;
i3 = i10 + 12 | 0;
- i4 = i10;
- L1 : do if ((HEAP32[i6 >> 2] | 0) == (HEAP32[9172] | 0) ? (HEAP32[i5 >> 2] | 0) == (HEAP32[9173] | 0) : 0) {
- if (i7 | 0 ? (i1 = HEAP32[i7 >> 2] | 0, ((HEAP32[i7 + 4 >> 2] | 0) - i1 | 0) == 4) : 0) switch (HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] | 0) {
+ i5 = i10;
+ L1 : do if ((HEAP32[i7 >> 2] | 0) == (HEAP32[9538] | 0) ? (HEAP32[i6 >> 2] | 0) == (HEAP32[9539] | 0) : 0) {
+ if (i8 | 0 ? (i4 = HEAP32[i8 >> 2] | 0, ((HEAP32[i8 + 4 >> 2] | 0) - i4 | 0) == 4) : 0) switch (HEAP32[(HEAP32[i4 >> 2] | 0) + 4 >> 2] | 0) {
case 1:
{
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i2, 14785, 2);
- i8 = __ZN4wasm18ensureFunctionTypeENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleER10MixedArena(i2, HEAP32[i9 >> 2] | 0, HEAP32[i9 + 4 >> 2] | 0) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i2, 15304, 2);
+ i1 = __ZN4wasm18ensureFunctionTypeENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleER10MixedArena(i2, HEAP32[i9 >> 2] | 0, HEAP32[i9 + 4 >> 2] | 0) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i2);
break L1;
}
case 3:
{
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i3, 14788, 2);
- i8 = __ZN4wasm18ensureFunctionTypeENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleER10MixedArena(i3, HEAP32[i9 >> 2] | 0, HEAP32[i9 + 4 >> 2] | 0) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i3, 15307, 2);
+ i1 = __ZN4wasm18ensureFunctionTypeENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleER10MixedArena(i3, HEAP32[i9 >> 2] | 0, HEAP32[i9 + 4 >> 2] | 0) | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i3);
break L1;
}
case 4:
{
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i4, 14791, 2);
- i8 = __ZN4wasm18ensureFunctionTypeENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleER10MixedArena(i4, HEAP32[i9 >> 2] | 0, HEAP32[i9 + 4 >> 2] | 0) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i4);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i5, 15310, 2);
+ i1 = __ZN4wasm18ensureFunctionTypeENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleER10MixedArena(i5, HEAP32[i9 >> 2] | 0, HEAP32[i9 + 4 >> 2] | 0) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5);
break L1;
}
default:
{
- i8 = 0;
+ i1 = 0;
break L1;
}
}
- ___assert_fail(14728, 12455, 406, 14762);
- } else i8 = 0; while (0);
+ ___assert_fail(15247, 13029, 406, 15281);
+ } else i1 = 0; while (0);
STACKTOP = i10;
- return i8 | 0;
-}
-
-function ___cxx_global_array_dtor_112(i1) {
- i1 = i1 | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40588);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40576);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40564);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40552);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40540);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40528);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40516);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40504);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40492);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40480);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40468);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40456);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40444);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40432);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40420);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40408);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40396);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40384);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40372);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40360);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40348);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40336);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40324);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40312);
- return;
+ return i1 | 0;
}
function ___cxx_global_array_dtor_109(i1) {
i1 = i1 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39776);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39764);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39752);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39740);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39728);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39716);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39704);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39692);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39680);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39668);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39656);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39644);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39632);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39620);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39608);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39596);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39584);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39572);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39560);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39548);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39536);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39524);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39512);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39500);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(41248);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(41236);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(41224);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(41212);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(41200);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(41188);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(41176);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(41164);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(41152);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(41140);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(41128);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(41116);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(41104);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(41092);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(41080);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(41068);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(41056);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(41044);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(41032);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(41020);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(41008);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40996);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40984);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40972);
return;
}
function ___cxx_global_array_dtor_85(i1) {
i1 = i1 | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40296);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40284);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40272);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40260);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40248);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40236);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40224);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40212);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40200);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40188);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40176);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40164);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40152);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40140);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40128);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40116);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40104);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40092);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40080);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40068);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40056);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40044);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40032);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40020);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41768);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41756);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41744);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41732);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41720);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41708);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41696);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41684);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41672);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41660);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41648);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41636);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41624);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41612);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41600);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41588);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41576);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41564);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41552);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41540);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41528);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41516);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41504);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41492);
return;
}
function ___cxx_global_array_dtor_61(i1) {
i1 = i1 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39484);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39472);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39460);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39448);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39436);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39424);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39412);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39400);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39388);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39376);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39364);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39352);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39340);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39328);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39316);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39304);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39292);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39280);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39268);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39256);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39244);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39232);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39220);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39208);
- return;
-}
-
-function __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS6_PNS_11__tree_nodeIS6_SG_EEiEESJ_RKT_(i6, i1, i8, i5) {
- i6 = i6 | 0;
- i1 = i1 | 0;
- i8 = i8 | 0;
- i5 = i5 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i7 = 0;
- i4 = i6 + 4 | 0;
- i1 = HEAP32[i1 >> 2] | 0;
- i2 = i1;
- do if ((i1 | 0) != (i4 | 0) ? (i3 = i1 + 16 | 0, !(__ZNK6cashew7IStringltERKS0_(i5, i3) | 0)) : 0) {
- if (__ZNK6cashew7IStringltERKS0_(i3, i5) | 0) i3 = 1; else {
- HEAP32[i8 >> 2] = i2;
- i1 = i8;
- break;
- }
- while (1) {
- if ((i3 | 0) <= 0) break;
- i3 = i3 + -1 | 0;
- i2 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i2) | 0;
- }
- i3 = i2;
- if ((i3 | 0) != (i4 | 0) ? !(__ZNK6cashew7IStringltERKS0_(i5, i3 + 16 | 0) | 0) : 0) {
- i1 = __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i6, i8, i5) | 0;
- break;
- }
- i3 = i1 + 4 | 0;
- if (!(HEAP32[i3 >> 2] | 0)) {
- HEAP32[i8 >> 2] = i1;
- i1 = i3;
- break;
- } else {
- i1 = i2;
- HEAP32[i8 >> 2] = i1;
- break;
- }
- } else i7 = 3; while (0);
- do if ((i7 | 0) == 3) {
- if ((i1 | 0) != (HEAP32[i6 >> 2] | 0)) {
- i2 = __ZNSt3__111__tree_prevIPNS_16__tree_node_baseIPvEEEET_S5_(i1) | 0;
- if (!(__ZNK6cashew7IStringltERKS0_(i2 + 16 | 0, i5) | 0)) {
- i1 = __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i6, i8, i5) | 0;
- break;
- }
- }
- if (!(HEAP32[i1 >> 2] | 0)) {
- HEAP32[i8 >> 2] = i1;
- break;
- } else {
- i1 = i2;
- HEAP32[i8 >> 2] = i1;
- i1 = i1 + 4 | 0;
- break;
- }
- } while (0);
- return i1 | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40956);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40944);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40932);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40920);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40908);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40896);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40884);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40872);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40860);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40848);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40836);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40824);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40812);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40800);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40788);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40776);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40764);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40752);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40740);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40728);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40716);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40704);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40692);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40680);
+ return;
}
-function __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS6_PNS_11__tree_nodeIS6_SG_EEiEESJ_RKT_(i6, i1, i8, i5) {
- i6 = i6 | 0;
+function ___cxx_global_array_dtor_112(i1) {
i1 = i1 | 0;
- i8 = i8 | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(42060);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(42048);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(42036);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(42024);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(42012);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(42e3);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41988);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41976);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41964);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41952);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41940);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41928);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41916);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41904);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41892);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41880);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41868);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41856);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41844);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41832);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41820);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41808);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41796);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41784);
+ return;
+}
+
+function __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS6_PNS_11__tree_nodeIS6_SG_EEiEESJ_RKT_(i5, i1, i8, i4) {
i5 = i5 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i7 = 0;
- i4 = i6 + 4 | 0;
- i1 = HEAP32[i1 >> 2] | 0;
- i2 = i1;
- do if ((i1 | 0) != (i4 | 0) ? (i3 = i1 + 16 | 0, !(__ZNK6cashew7IStringltERKS0_(i5, i3) | 0)) : 0) {
- if (__ZNK6cashew7IStringltERKS0_(i3, i5) | 0) i3 = 1; else {
- HEAP32[i8 >> 2] = i2;
- i1 = i8;
- break;
- }
- while (1) {
- if ((i3 | 0) <= 0) break;
- i3 = i3 + -1 | 0;
- i2 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i2) | 0;
- }
- i3 = i2;
- if ((i3 | 0) != (i4 | 0) ? !(__ZNK6cashew7IStringltERKS0_(i5, i3 + 16 | 0) | 0) : 0) {
- i1 = __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i6, i8, i5) | 0;
- break;
- }
- i3 = i1 + 4 | 0;
- if (!(HEAP32[i3 >> 2] | 0)) {
- HEAP32[i8 >> 2] = i1;
- i1 = i3;
- break;
- } else {
- i1 = i2;
- HEAP32[i8 >> 2] = i1;
- break;
- }
- } else i7 = 3; while (0);
- do if ((i7 | 0) == 3) {
- if ((i1 | 0) != (HEAP32[i6 >> 2] | 0)) {
- i2 = __ZNSt3__111__tree_prevIPNS_16__tree_node_baseIPvEEEET_S5_(i1) | 0;
- if (!(__ZNK6cashew7IStringltERKS0_(i2 + 16 | 0, i5) | 0)) {
- i1 = __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i6, i8, i5) | 0;
- break;
- }
- }
- if (!(HEAP32[i1 >> 2] | 0)) {
- HEAP32[i8 >> 2] = i1;
- break;
- } else {
- i1 = i2;
- HEAP32[i8 >> 2] = i1;
- i1 = i1 + 4 | 0;
- break;
- }
- } while (0);
- return i1 | 0;
-}
-
-function __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS6_PNS_11__tree_nodeIS6_SG_EEiEESJ_RKT_(i6, i1, i8, i5) {
- i6 = i6 | 0;
i1 = i1 | 0;
i8 = i8 | 0;
- i5 = i5 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i7 = 0;
- i4 = i6 + 4 | 0;
- i1 = HEAP32[i1 >> 2] | 0;
- i2 = i1;
- do if ((i1 | 0) != (i4 | 0) ? (i3 = i1 + 16 | 0, !(__ZNK6cashew7IStringltERKS0_(i5, i3) | 0)) : 0) {
- if (__ZNK6cashew7IStringltERKS0_(i3, i5) | 0) i3 = 1; else {
- HEAP32[i8 >> 2] = i2;
+ i4 = i4 | 0;
+ var i2 = 0, i3 = 0, i6 = 0, i7 = 0;
+ i3 = i5 + 4 | 0;
+ i6 = HEAP32[i1 >> 2] | 0;
+ i1 = i6;
+ do if ((i6 | 0) != (i3 | 0) ? (i2 = i6 + 16 | 0, !(__ZNK6cashew7IStringltERKS0_(i4, i2) | 0)) : 0) {
+ if (__ZNK6cashew7IStringltERKS0_(i2, i4) | 0) i2 = 1; else {
+ HEAP32[i8 >> 2] = i1;
i1 = i8;
break;
}
while (1) {
- if ((i3 | 0) <= 0) break;
- i3 = i3 + -1 | 0;
- i2 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i2) | 0;
+ if ((i2 | 0) <= 0) break;
+ i2 = i2 + -1 | 0;
+ i1 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i1) | 0;
}
- i3 = i2;
- if ((i3 | 0) != (i4 | 0) ? !(__ZNK6cashew7IStringltERKS0_(i5, i3 + 16 | 0) | 0) : 0) {
- i1 = __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i6, i8, i5) | 0;
+ i2 = i1;
+ if ((i2 | 0) != (i3 | 0) ? !(__ZNK6cashew7IStringltERKS0_(i4, i2 + 16 | 0) | 0) : 0) {
+ i1 = __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i5, i8, i4) | 0;
break;
}
- i3 = i1 + 4 | 0;
- if (!(HEAP32[i3 >> 2] | 0)) {
- HEAP32[i8 >> 2] = i1;
- i1 = i3;
+ i2 = i6 + 4 | 0;
+ if (!(HEAP32[i2 >> 2] | 0)) {
+ HEAP32[i8 >> 2] = i6;
+ i1 = i2;
break;
} else {
- i1 = i2;
HEAP32[i8 >> 2] = i1;
break;
}
} else i7 = 3; while (0);
do if ((i7 | 0) == 3) {
- if ((i1 | 0) != (HEAP32[i6 >> 2] | 0)) {
- i2 = __ZNSt3__111__tree_prevIPNS_16__tree_node_baseIPvEEEET_S5_(i1) | 0;
- if (!(__ZNK6cashew7IStringltERKS0_(i2 + 16 | 0, i5) | 0)) {
- i1 = __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i6, i8, i5) | 0;
+ if ((i6 | 0) != (HEAP32[i5 >> 2] | 0)) {
+ i1 = __ZNSt3__111__tree_prevIPNS_16__tree_node_baseIPvEEEET_S5_(i6) | 0;
+ if (!(__ZNK6cashew7IStringltERKS0_(i1 + 16 | 0, i4) | 0)) {
+ i1 = __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i5, i8, i4) | 0;
break;
}
}
- if (!(HEAP32[i1 >> 2] | 0)) {
- HEAP32[i8 >> 2] = i1;
+ if (!(HEAP32[i6 >> 2] | 0)) {
+ HEAP32[i8 >> 2] = i6;
+ i1 = i6;
break;
} else {
- i1 = i2;
HEAP32[i8 >> 2] = i1;
i1 = i1 + 4 | 0;
break;
@@ -52479,33 +51709,34 @@ function __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmD
if (i9) i2 = i2 & i8; else i2 = (i2 >>> 0) % (i10 >>> 0) | 0;
HEAP32[(HEAP32[i11 >> 2] | 0) + (i2 << 2) >> 2] = i3;
while (1) {
- i4 = i1;
+ i7 = i1;
L21 : while (1) while (1) {
- i1 = HEAP32[i4 >> 2] | 0;
+ i1 = HEAP32[i7 >> 2] | 0;
if (!i1) break L1;
i3 = HEAP32[i1 + 4 >> 2] | 0;
- if (i9) i7 = i3 & i8; else i7 = (i3 >>> 0) % (i10 >>> 0) | 0;
- if ((i7 | 0) == (i2 | 0)) {
- i4 = i1;
+ if (i9) i6 = i3 & i8; else i6 = (i3 >>> 0) % (i10 >>> 0) | 0;
+ if ((i6 | 0) == (i2 | 0)) {
+ i7 = i1;
continue L21;
}
- i3 = (HEAP32[i11 >> 2] | 0) + (i7 << 2) | 0;
- if (!(HEAP32[i3 >> 2] | 0)) {
- i2 = i7;
+ i4 = (HEAP32[i11 >> 2] | 0) + (i6 << 2) | 0;
+ if (!(HEAP32[i4 >> 2] | 0)) {
+ i2 = i6;
+ i3 = i7;
break L21;
}
- i6 = i1 + 8 | 0;
+ i5 = i1 + 8 | 0;
i3 = i1;
while (1) {
- i5 = HEAP32[i3 >> 2] | 0;
- if (!i5) break;
- if ((HEAP32[i6 >> 2] | 0) == (HEAP32[i5 + 8 >> 2] | 0)) i3 = i5; else break;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if (!i4) break;
+ if ((HEAP32[i5 >> 2] | 0) == (HEAP32[i4 + 8 >> 2] | 0)) i3 = i4; else break;
}
- HEAP32[i4 >> 2] = i5;
- HEAP32[i3 >> 2] = HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i7 << 2) >> 2] >> 2];
- HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i7 << 2) >> 2] >> 2] = i1;
+ HEAP32[i7 >> 2] = i4;
+ HEAP32[i3 >> 2] = HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i6 << 2) >> 2] >> 2];
+ HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i6 << 2) >> 2] >> 2] = i1;
}
- HEAP32[i3 >> 2] = i4;
+ HEAP32[i4 >> 2] = i3;
}
}
} else {
@@ -52517,6 +51748,62 @@ function __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmD
return;
}
+function __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS6_PNS_11__tree_nodeIS6_SG_EEiEESJ_RKT_(i5, i1, i8, i4) {
+ i5 = i5 | 0;
+ i1 = i1 | 0;
+ i8 = i8 | 0;
+ i4 = i4 | 0;
+ var i2 = 0, i3 = 0, i6 = 0, i7 = 0;
+ i3 = i5 + 4 | 0;
+ i6 = HEAP32[i1 >> 2] | 0;
+ i1 = i6;
+ do if ((i6 | 0) != (i3 | 0) ? (i2 = i6 + 16 | 0, !(__ZNK6cashew7IStringltERKS0_(i4, i2) | 0)) : 0) {
+ if (__ZNK6cashew7IStringltERKS0_(i2, i4) | 0) i2 = 1; else {
+ HEAP32[i8 >> 2] = i1;
+ i1 = i8;
+ break;
+ }
+ while (1) {
+ if ((i2 | 0) <= 0) break;
+ i2 = i2 + -1 | 0;
+ i1 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i1) | 0;
+ }
+ i2 = i1;
+ if ((i2 | 0) != (i3 | 0) ? !(__ZNK6cashew7IStringltERKS0_(i4, i2 + 16 | 0) | 0) : 0) {
+ i1 = __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i5, i8, i4) | 0;
+ break;
+ }
+ i2 = i6 + 4 | 0;
+ if (!(HEAP32[i2 >> 2] | 0)) {
+ HEAP32[i8 >> 2] = i6;
+ i1 = i2;
+ break;
+ } else {
+ HEAP32[i8 >> 2] = i1;
+ break;
+ }
+ } else i7 = 3; while (0);
+ do if ((i7 | 0) == 3) {
+ if ((i6 | 0) != (HEAP32[i5 >> 2] | 0)) {
+ i1 = __ZNSt3__111__tree_prevIPNS_16__tree_node_baseIPvEEEET_S5_(i6) | 0;
+ if (!(__ZNK6cashew7IStringltERKS0_(i1 + 16 | 0, i4) | 0)) {
+ i1 = __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i5, i8, i4) | 0;
+ break;
+ }
+ }
+ if (!(HEAP32[i6 >> 2] | 0)) {
+ HEAP32[i8 >> 2] = i6;
+ i1 = i6;
+ break;
+ } else {
+ HEAP32[i8 >> 2] = i1;
+ i1 = i1 + 4 | 0;
+ break;
+ }
+ } while (0);
+ return i1 | 0;
+}
+
function __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEE8__rehashEj(i11, i10) {
i11 = i11 | 0;
i10 = i10 | 0;
@@ -52543,33 +51830,34 @@ function __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_
if (i9) i2 = i2 & i8; else i2 = (i2 >>> 0) % (i10 >>> 0) | 0;
HEAP32[(HEAP32[i11 >> 2] | 0) + (i2 << 2) >> 2] = i3;
while (1) {
- i4 = i1;
+ i7 = i1;
L21 : while (1) while (1) {
- i1 = HEAP32[i4 >> 2] | 0;
+ i1 = HEAP32[i7 >> 2] | 0;
if (!i1) break L1;
i3 = HEAP32[i1 + 4 >> 2] | 0;
- if (i9) i7 = i3 & i8; else i7 = (i3 >>> 0) % (i10 >>> 0) | 0;
- if ((i7 | 0) == (i2 | 0)) {
- i4 = i1;
+ if (i9) i6 = i3 & i8; else i6 = (i3 >>> 0) % (i10 >>> 0) | 0;
+ if ((i6 | 0) == (i2 | 0)) {
+ i7 = i1;
continue L21;
}
- i3 = (HEAP32[i11 >> 2] | 0) + (i7 << 2) | 0;
- if (!(HEAP32[i3 >> 2] | 0)) {
- i2 = i7;
+ i4 = (HEAP32[i11 >> 2] | 0) + (i6 << 2) | 0;
+ if (!(HEAP32[i4 >> 2] | 0)) {
+ i2 = i6;
+ i3 = i7;
break L21;
}
- i6 = i1 + 8 | 0;
+ i5 = i1 + 8 | 0;
i3 = i1;
while (1) {
- i5 = HEAP32[i3 >> 2] | 0;
- if (!i5) break;
- if ((HEAP32[i6 >> 2] | 0) == (HEAP32[i5 + 8 >> 2] | 0)) i3 = i5; else break;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if (!i4) break;
+ if ((HEAP32[i5 >> 2] | 0) == (HEAP32[i4 + 8 >> 2] | 0)) i3 = i4; else break;
}
- HEAP32[i4 >> 2] = i5;
- HEAP32[i3 >> 2] = HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i7 << 2) >> 2] >> 2];
- HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i7 << 2) >> 2] >> 2] = i1;
+ HEAP32[i7 >> 2] = i4;
+ HEAP32[i3 >> 2] = HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i6 << 2) >> 2] >> 2];
+ HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i6 << 2) >> 2] >> 2] = i1;
}
- HEAP32[i3 >> 2] = i4;
+ HEAP32[i4 >> 2] = i3;
}
}
} else {
@@ -52581,6 +51869,118 @@ function __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_
return;
}
+function __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS6_PNS_11__tree_nodeIS6_SG_EEiEESJ_RKT_(i5, i1, i8, i4) {
+ i5 = i5 | 0;
+ i1 = i1 | 0;
+ i8 = i8 | 0;
+ i4 = i4 | 0;
+ var i2 = 0, i3 = 0, i6 = 0, i7 = 0;
+ i3 = i5 + 4 | 0;
+ i6 = HEAP32[i1 >> 2] | 0;
+ i1 = i6;
+ do if ((i6 | 0) != (i3 | 0) ? (i2 = i6 + 16 | 0, !(__ZNK6cashew7IStringltERKS0_(i4, i2) | 0)) : 0) {
+ if (__ZNK6cashew7IStringltERKS0_(i2, i4) | 0) i2 = 1; else {
+ HEAP32[i8 >> 2] = i1;
+ i1 = i8;
+ break;
+ }
+ while (1) {
+ if ((i2 | 0) <= 0) break;
+ i2 = i2 + -1 | 0;
+ i1 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i1) | 0;
+ }
+ i2 = i1;
+ if ((i2 | 0) != (i3 | 0) ? !(__ZNK6cashew7IStringltERKS0_(i4, i2 + 16 | 0) | 0) : 0) {
+ i1 = __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i5, i8, i4) | 0;
+ break;
+ }
+ i2 = i6 + 4 | 0;
+ if (!(HEAP32[i2 >> 2] | 0)) {
+ HEAP32[i8 >> 2] = i6;
+ i1 = i2;
+ break;
+ } else {
+ HEAP32[i8 >> 2] = i1;
+ break;
+ }
+ } else i7 = 3; while (0);
+ do if ((i7 | 0) == 3) {
+ if ((i6 | 0) != (HEAP32[i5 >> 2] | 0)) {
+ i1 = __ZNSt3__111__tree_prevIPNS_16__tree_node_baseIPvEEEET_S5_(i6) | 0;
+ if (!(__ZNK6cashew7IStringltERKS0_(i1 + 16 | 0, i4) | 0)) {
+ i1 = __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i5, i8, i4) | 0;
+ break;
+ }
+ }
+ if (!(HEAP32[i6 >> 2] | 0)) {
+ HEAP32[i8 >> 2] = i6;
+ i1 = i6;
+ break;
+ } else {
+ HEAP32[i8 >> 2] = i1;
+ i1 = i1 + 4 | 0;
+ break;
+ }
+ } while (0);
+ return i1 | 0;
+}
+
+function __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS6_PNS_11__tree_nodeIS6_SG_EEiEESJ_RKT_(i5, i1, i8, i4) {
+ i5 = i5 | 0;
+ i1 = i1 | 0;
+ i8 = i8 | 0;
+ i4 = i4 | 0;
+ var i2 = 0, i3 = 0, i6 = 0, i7 = 0;
+ i3 = i5 + 4 | 0;
+ i6 = HEAP32[i1 >> 2] | 0;
+ i1 = i6;
+ do if ((i6 | 0) != (i3 | 0) ? (i2 = i6 + 16 | 0, !(__ZNK6cashew7IStringltERKS0_(i4, i2) | 0)) : 0) {
+ if (__ZNK6cashew7IStringltERKS0_(i2, i4) | 0) i2 = 1; else {
+ HEAP32[i8 >> 2] = i1;
+ i1 = i8;
+ break;
+ }
+ while (1) {
+ if ((i2 | 0) <= 0) break;
+ i2 = i2 + -1 | 0;
+ i1 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i1) | 0;
+ }
+ i2 = i1;
+ if ((i2 | 0) != (i3 | 0) ? !(__ZNK6cashew7IStringltERKS0_(i4, i2 + 16 | 0) | 0) : 0) {
+ i1 = __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i5, i8, i4) | 0;
+ break;
+ }
+ i2 = i6 + 4 | 0;
+ if (!(HEAP32[i2 >> 2] | 0)) {
+ HEAP32[i8 >> 2] = i6;
+ i1 = i2;
+ break;
+ } else {
+ HEAP32[i8 >> 2] = i1;
+ break;
+ }
+ } else i7 = 3; while (0);
+ do if ((i7 | 0) == 3) {
+ if ((i6 | 0) != (HEAP32[i5 >> 2] | 0)) {
+ i1 = __ZNSt3__111__tree_prevIPNS_16__tree_node_baseIPvEEEET_S5_(i6) | 0;
+ if (!(__ZNK6cashew7IStringltERKS0_(i1 + 16 | 0, i4) | 0)) {
+ i1 = __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i5, i8, i4) | 0;
+ break;
+ }
+ }
+ if (!(HEAP32[i6 >> 2] | 0)) {
+ HEAP32[i8 >> 2] = i6;
+ i1 = i6;
+ break;
+ } else {
+ HEAP32[i8 >> 2] = i1;
+ i1 = i1 + 4 | 0;
+ break;
+ }
+ } while (0);
+ return i1 | 0;
+}
+
function __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i6, i3, i5, i2) {
i6 = i6 | 0;
i3 = i3 | 0;
@@ -52700,18 +52100,18 @@ function __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE6assignIPS2_EENS_
i1 = i1 | 0;
i7 = i7 | 0;
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0;
- i5 = i1;
- i3 = i7 - i5 >> 3;
+ i4 = i1;
+ i3 = i7 - i4 >> 3;
i2 = i6 + 8 | 0;
- i4 = HEAP32[i6 >> 2] | 0;
- L1 : do if (i3 >>> 0 <= (HEAP32[i2 >> 2] | 0) - i4 >> 3 >>> 0) {
+ i5 = HEAP32[i6 >> 2] | 0;
+ L1 : do if (i3 >>> 0 <= (HEAP32[i2 >> 2] | 0) - i5 >> 3 >>> 0) {
i6 = i6 + 4 | 0;
- i2 = (HEAP32[i6 >> 2] | 0) - i4 >> 3;
+ i2 = (HEAP32[i6 >> 2] | 0) - i5 >> 3;
i8 = i3 >>> 0 > i2 >>> 0;
i3 = i1 + (i2 << 3) | 0;
- i2 = (i8 ? i3 : i7) - i5 | 0;
- _memmove(i4 | 0, i1 | 0, i2 | 0) | 0;
- i2 = i4 + (i2 >> 3 << 3) | 0;
+ i2 = (i8 ? i3 : i7) - i4 | 0;
+ _memmove(i5 | 0, i1 | 0, i2 | 0) | 0;
+ i2 = i5 + (i2 >> 3 << 3) | 0;
if (i8) {
i1 = i3;
while (1) {
@@ -52763,8 +52163,8 @@ function __ZZ11instantiateEN19JSExternalInterface10callImportEPN4wasm6ImportERNS
i7 = i7 | 0;
i4 = i4 | 0;
var d1 = 0.0, i3 = 0, i5 = 0;
- if (HEAP8[40892] | 0) {
- i3 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38004, 17913) | 0;
+ if (HEAP8[42364] | 0) {
+ i3 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39476, 18515) | 0;
__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i3, HEAP32[i7 >> 2] | 0) | 0, 10) | 0;
}
_emscripten_asm_const_v(14);
@@ -52798,7 +52198,7 @@ function __ZZ11instantiateEN19JSExternalInterface10callImportEPN4wasm6ImportERNS
}
if ((i5 | 0) == 10) _abort();
d1 = +_emscripten_asm_const_dii(15, HEAP32[i7 + 4 >> 2] | 0, HEAP32[i7 + 8 >> 2] | 0);
- if (HEAP8[40892] | 0) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEd(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38004, 18238) | 0, d1) | 0, 10) | 0;
+ if (HEAP8[42364] | 0) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEd(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39476, 18840) | 0, d1) | 0, 10) | 0;
switch (HEAP32[(HEAP32[i7 + 12 >> 2] | 0) + 4 >> 2] | 0) {
case 0:
{
@@ -52837,23 +52237,23 @@ function __ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunction
var i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0;
i14 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i12 = i14 + 16 | 0;
+ i10 = i14 + 16 | 0;
i3 = i14 + 12 | 0;
- i13 = i14 + 8 | 0;
- i11 = i14 + 4 | 0;
- i10 = i14;
+ i11 = i14 + 8 | 0;
+ i12 = i14 + 4 | 0;
+ i13 = i14;
i6 = HEAP32[i1 >> 2] | 0;
i4 = HEAP32[i2 >> 2] | 0;
- HEAP32[i10 >> 2] = i6;
+ HEAP32[i13 >> 2] = i6;
i1 = HEAP32[i5 + 4 >> 2] | 0;
i2 = __ZN6cashew5Value4sizeEv(i6) | 0;
do if ((i2 | 0) == (i4 | 0)) i1 = __ZN10MixedArena5allocIN4wasm3NopEEEPT_v(HEAP32[i1 + 4 >> 2] | 0) | 0; else {
if ((i2 - i4 | 0) == 1) {
i1 = HEAP32[i5 + 8 >> 2] | 0;
- i13 = __ZN6cashew3RefixEj(i10, i4) | 0;
+ i13 = __ZN6cashew3RefixEj(i13, i4) | 0;
HEAP32[i3 >> 2] = HEAP32[i13 >> 2];
- HEAP32[i12 >> 2] = HEAP32[i3 >> 2];
- i1 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i1, i12) | 0;
+ HEAP32[i10 >> 2] = HEAP32[i3 >> 2];
+ i1 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i1, i10) | 0;
break;
}
i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i1 + 4 >> 2] | 0) | 0;
@@ -52864,18 +52264,18 @@ function __ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunction
i2 = i6;
while (1) {
if (i4 >>> 0 >= (__ZN6cashew5Value4sizeEv(i2) | 0) >>> 0) break;
- i3 = HEAP32[i5 >> 2] | 0;
- i2 = __ZN6cashew3RefixEj(i10, i4) | 0;
- HEAP32[i11 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i12 >> 2] = HEAP32[i11 >> 2];
- i3 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i3, i12) | 0;
- HEAP32[i13 >> 2] = i3;
- i2 = HEAP32[i7 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i8 >> 2] | 0) >>> 0) {
- HEAP32[i2 >> 2] = i3;
+ i2 = HEAP32[i5 >> 2] | 0;
+ i3 = __ZN6cashew3RefixEj(i13, i4) | 0;
+ HEAP32[i12 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i10 >> 2] = HEAP32[i12 >> 2];
+ i2 = __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i10) | 0;
+ HEAP32[i11 >> 2] = i2;
+ i3 = HEAP32[i7 >> 2] | 0;
+ if (i3 >>> 0 < (HEAP32[i8 >> 2] | 0) >>> 0) {
+ HEAP32[i3 >> 2] = i2;
HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i9, i13);
- i2 = HEAP32[i10 >> 2] | 0;
+ } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i9, i11);
+ i2 = HEAP32[i13 >> 2] | 0;
i4 = i4 + 1 | 0;
}
} while (0);
@@ -52883,64 +52283,173 @@ function __ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunction
return i1 | 0;
}
-function __ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcb(i5, i9, i2, i1, i6) {
+function __ZN4wasm5Break7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i5, i1, i6) {
i5 = i5 | 0;
- i9 = i9 | 0;
- i2 = i2 | 0;
i1 = i1 | 0;
i6 = i6 | 0;
- var i3 = 0, i4 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0;
+ var i2 = 0, i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0;
+ i10 = STACKTOP;
+ STACKTOP = STACKTOP + 16 | 0;
+ i2 = i10 + 12 | 0;
+ i9 = i10 + 8 | 0;
+ i3 = i10 + 4 | 0;
+ i4 = i10;
+ HEAP32[i9 >> 2] = i6;
+ i8 = i5 + 8 | 0;
+ do if (!(HEAP32[i8 >> 2] | 0)) {
+ i3 = __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i1, 17277, 0) | 0;
+ HEAP32[i4 >> 2] = HEAP32[i5 + 12 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
+ __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i3, i2) | 0;
+ i2 = i5 + 16 | 0;
+ i5 = HEAP32[i2 >> 2] | 0;
+ if (i5 | 0 ? (HEAP32[i5 >> 2] | 0) != 19 : 0) {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i1, 10) | 0;
+ i7 = 7;
+ break;
+ }
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i1, 35822) | 0;
+ } else {
+ i7 = __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i1, 17270, 0) | 0;
+ HEAP32[i3 >> 2] = HEAP32[i5 + 12 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
+ __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i7, i2) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i1, 10) | 0;
+ i2 = i5 + 16 | 0;
+ i7 = 7;
+ } while (0);
+ if ((i7 | 0) == 7) {
+ i3 = i6 + 1 | 0;
+ HEAP32[i9 >> 2] = i3;
+ i2 = HEAP32[i2 >> 2] | 0;
+ if (i2 | 0 ? (HEAP32[i2 >> 2] | 0) != 19 : 0) __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i1, i3, i2) | 0;
+ i2 = HEAP32[i8 >> 2] | 0;
+ if (i2 | 0) __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i1, i3, i2) | 0;
+ i1 = __Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i1, i9) | 0;
+ }
+ STACKTOP = i10;
+ return i1 | 0;
+}
+
+function __ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcb(i5, i10, i4, i3, i6) {
+ i5 = i5 | 0;
+ i10 = i10 | 0;
+ i4 = i4 | 0;
+ i3 = i3 | 0;
+ i6 = i6 | 0;
+ var i1 = 0, i2 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0;
i11 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i10 = i11 + 8 | 0;
- i3 = i11 + 4 | 0;
- i4 = i11;
- if (!(HEAP32[i2 + 4 >> 2] & 1)) {
+ i9 = i11 + 8 | 0;
+ i1 = i11 + 4 | 0;
+ i2 = i11;
+ if (!(HEAP32[i4 + 4 >> 2] & 1)) {
i8 = HEAP32[(HEAP32[i5 >> 2] | 0) + 24 >> 2] | 0;
- HEAP32[i3 >> 2] = HEAP32[i9 >> 2];
- HEAP32[i10 >> 2] = HEAP32[i3 >> 2];
- i1 = FUNCTION_TABLE_iiiiii[i8 & 31](i5, i10, i2, i1, i6 & 1) | 0;
+ HEAP32[i1 >> 2] = HEAP32[i10 >> 2];
+ HEAP32[i9 >> 2] = HEAP32[i1 >> 2];
+ i1 = FUNCTION_TABLE_iiiiii[i8 & 31](i5, i9, i4, i3, i6 & 1) | 0;
} else {
- i2 = __ZNKSt3__18ios_base6getlocEv(i2) | 0;
- HEAP32[i4 >> 2] = i2;
- i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i4, 38976) | 0;
- __ZNSt3__114__shared_count16__release_sharedEv(i2) | 0;
+ i8 = __ZNKSt3__18ios_base6getlocEv(i4) | 0;
+ HEAP32[i2 >> 2] = i8;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 40448) | 0;
+ __ZNSt3__114__shared_count16__release_sharedEv(i8) | 0;
i2 = HEAP32[i1 >> 2] | 0;
- if (i6) FUNCTION_TABLE_vii[HEAP32[i2 + 24 >> 2] & 127](i10, i1); else FUNCTION_TABLE_vii[HEAP32[i2 + 28 >> 2] & 127](i10, i1);
- i4 = HEAP8[i10 >> 0] | 0;
- i8 = i10 + 1 | 0;
- i5 = i10 + 8 | 0;
- i6 = HEAP32[i5 >> 2] | 0;
- i7 = i10 + 4 | 0;
+ if (i6) FUNCTION_TABLE_vii[HEAP32[i2 + 24 >> 2] & 127](i9, i1); else FUNCTION_TABLE_vii[HEAP32[i2 + 28 >> 2] & 127](i9, i1);
+ i4 = HEAP8[i9 >> 0] | 0;
+ i5 = i9 + 1 | 0;
+ i6 = i9 + 8 | 0;
+ i8 = HEAP32[i6 >> 2] | 0;
+ i7 = i9 + 4 | 0;
i1 = i4;
- i2 = i6;
- i6 = (i4 & 1) == 0 ? i8 : i6;
+ i2 = i8;
+ i8 = (i4 & 1) == 0 ? i5 : i8;
while (1) {
i4 = (i1 & 1) == 0;
- if ((i6 | 0) == ((i4 ? i8 : i2) + (i4 ? (i1 & 255) >>> 1 : HEAP32[i7 >> 2] | 0) | 0)) break;
- i1 = HEAP8[i6 >> 0] | 0;
- i2 = HEAP32[i9 >> 2] | 0;
+ if ((i8 | 0) == ((i4 ? i5 : i2) + (i4 ? (i1 & 255) >>> 1 : HEAP32[i7 >> 2] | 0) | 0)) break;
+ i1 = HEAP8[i8 >> 0] | 0;
+ i2 = HEAP32[i10 >> 2] | 0;
do if (i2 | 0) {
- i4 = i2 + 24 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if ((i3 | 0) != (HEAP32[i2 + 28 >> 2] | 0)) {
- HEAP32[i4 >> 2] = i3 + 1;
- HEAP8[i3 >> 0] = i1;
+ i3 = i2 + 24 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if ((i4 | 0) != (HEAP32[i2 + 28 >> 2] | 0)) {
+ HEAP32[i3 >> 2] = i4 + 1;
+ HEAP8[i4 >> 0] = i1;
break;
}
- if ((FUNCTION_TABLE_iii[HEAP32[(HEAP32[i2 >> 2] | 0) + 52 >> 2] & 31](i2, i1 & 255) | 0) == -1) HEAP32[i9 >> 2] = 0;
+ if ((FUNCTION_TABLE_iii[HEAP32[(HEAP32[i2 >> 2] | 0) + 52 >> 2] & 31](i2, i1 & 255) | 0) == -1) HEAP32[i10 >> 2] = 0;
} while (0);
- i1 = HEAP8[i10 >> 0] | 0;
- i2 = HEAP32[i5 >> 2] | 0;
- i6 = i6 + 1 | 0;
+ i1 = HEAP8[i9 >> 0] | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ i8 = i8 + 1 | 0;
}
- i1 = HEAP32[i9 >> 2] | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10);
+ i1 = HEAP32[i10 >> 2] | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i9);
}
STACKTOP = i11;
return i1 | 0;
}
+function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner10visitBreakEPNS_5BreakE(i11, i10, i9) {
+ i11 = i11 | 0;
+ i10 = i10 | 0;
+ i9 = i9 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i12 = 0;
+ i12 = STACKTOP;
+ STACKTOP = STACKTOP + 32 | 0;
+ i2 = i12;
+ i7 = i9 + 12 | 0;
+ i1 = HEAP32[i9 + 16 >> 2] | 0;
+ if (i1) {
+ __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i2, i10, i1);
+ i6 = HEAP32[i2 >> 2] | 0;
+ i5 = HEAP32[i2 + 4 >> 2] | 0;
+ i4 = i2 + 8 | 0;
+ i3 = HEAP32[i4 >> 2] | 0;
+ i4 = HEAP32[i4 + 4 >> 2] | 0;
+ i1 = HEAP32[i2 + 16 >> 2] | 0;
+ if (!i1) i8 = 4; else {
+ HEAP32[i11 >> 2] = i6;
+ HEAP32[i11 + 4 >> 2] = i5;
+ i10 = i11 + 8 | 0;
+ HEAP32[i10 >> 2] = i3;
+ HEAP32[i10 + 4 >> 2] = i4;
+ HEAP32[i11 + 16 >> 2] = i1;
+ }
+ } else {
+ i3 = 0;
+ i4 = 0;
+ i6 = 0;
+ i5 = 0;
+ i8 = 4;
+ }
+ do if ((i8 | 0) == 4) {
+ i2 = HEAP32[i7 >> 2] | 0;
+ i1 = HEAP32[i9 + 8 >> 2] | 0;
+ if (i1 | 0) {
+ __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i11, i10, i1);
+ i1 = i11 + 16 | 0;
+ if (HEAP32[i1 >> 2] | 0) break;
+ i10 = __ZN4wasm7Literal10getIntegerEv(i11) | 0;
+ if ((i10 | 0) == 0 & (tempRet0 | 0) == 0) {
+ HEAP32[i11 >> 2] = 0;
+ i11 = i11 + 8 | 0;
+ HEAP32[i11 >> 2] = 0;
+ HEAP32[i11 + 4 >> 2] = 0;
+ HEAP32[i1 >> 2] = 0;
+ break;
+ }
+ }
+ HEAP32[i11 >> 2] = i6;
+ HEAP32[i11 + 4 >> 2] = i5;
+ i10 = i11 + 8 | 0;
+ HEAP32[i10 >> 2] = i3;
+ HEAP32[i10 + 4 >> 2] = i4;
+ HEAP32[i11 + 16 >> 2] = i2;
+ } while (0);
+ STACKTOP = i12;
+ return;
+}
+
function __ZNSt3__16vectorINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEE8__appendEj(i8, i6) {
i8 = i8 | 0;
i6 = i6 | 0;
@@ -52949,32 +52458,32 @@ function __ZNSt3__16vectorINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS
STACKTOP = STACKTOP + 32 | 0;
i7 = i9;
i2 = HEAP32[i8 + 8 >> 2] | 0;
- i5 = i8 + 4 | 0;
- i1 = HEAP32[i5 >> 2] | 0;
+ i4 = i8 + 4 | 0;
+ i1 = HEAP32[i4 >> 2] | 0;
if (((i2 - i1 | 0) / 20 | 0) >>> 0 < i6 >>> 0) {
- i4 = HEAP32[i8 >> 2] | 0;
- i3 = ((i1 - i4 | 0) / 20 | 0) + i6 | 0;
+ i5 = HEAP32[i8 >> 2] | 0;
+ i3 = ((i1 - i5 | 0) / 20 | 0) + i6 | 0;
if (i3 >>> 0 > 214748364) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i8);
- i1 = (i2 - i4 | 0) / 20 | 0;
+ i1 = (i2 - i5 | 0) / 20 | 0;
if (i1 >>> 0 < 107374182) {
i1 = i1 << 1;
i1 = i1 >>> 0 < i3 >>> 0 ? i3 : i1;
} else i1 = 214748364;
- __ZNSt3__114__split_bufferINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEERNS8_ISD_EEEC2EjjSF_(i7, i1, ((HEAP32[i5 >> 2] | 0) - i4 | 0) / 20 | 0, i8 + 8 | 0);
- i2 = i7 + 8 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- i3 = i6;
- i4 = i1;
+ __ZNSt3__114__split_bufferINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEERNS8_ISD_EEEC2EjjSF_(i7, i1, ((HEAP32[i4 >> 2] | 0) - i5 | 0) / 20 | 0, i8 + 8 | 0);
+ i3 = i7 + 8 | 0;
+ i2 = HEAP32[i3 >> 2] | 0;
+ i1 = i6;
+ i4 = i2;
while (1) {
HEAP32[i4 >> 2] = 0;
HEAP32[i4 + 4 >> 2] = 0;
HEAP32[i4 + 8 >> 2] = 0;
HEAP32[i4 + 12 >> 2] = 0;
HEAPF32[i4 + 16 >> 2] = 1.0;
- i3 = i3 + -1 | 0;
- if (!i3) break; else i4 = i4 + 20 | 0;
+ i1 = i1 + -1 | 0;
+ if (!i1) break; else i4 = i4 + 20 | 0;
}
- HEAP32[i2 >> 2] = i1 + (i6 * 20 | 0);
+ HEAP32[i3 >> 2] = i2 + (i6 * 20 | 0);
__ZNSt3__16vectorINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEE26__swap_out_circular_bufferERNS_14__split_bufferISD_RSE_EE(i8, i7);
__ZNSt3__114__split_bufferINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEERNS8_ISD_EEED2Ev(i7);
} else __ZNSt3__16vectorINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEE18__construct_at_endEj(i8, i6);
@@ -52989,33 +52498,33 @@ function __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_7Literal
switch (HEAP32[i1 >> 2] | 0) {
case 0:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i2, 16812) | 0, 20494) | 0;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i2, 26923) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i2, 17406) | 0, 21061) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i2, 28275) | 0;
break;
}
case 1:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i2, 16817) | 0, 20494) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i2, 17411) | 0, 21061) | 0;
__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEi(i2, HEAP32[i1 + 8 >> 2] | 0) | 0;
break;
}
case 2:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i2, 16821) | 0, 20494) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i2, 17415) | 0, 21061) | 0;
i1 = i1 + 8 | 0;
__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEx(i2, HEAP32[i1 >> 2] | 0, HEAP32[i1 + 4 >> 2] | 0) | 0;
break;
}
case 3:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i2, 16825) | 0, 20494) | 0;
- __ZN4wasm7Literal10printFloatERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEf(i2, +HEAPF32[i1 + 8 >> 2]);
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i2, 17419) | 0, 21061) | 0;
+ __ZN4wasm7Literal10printFloatERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEf(i2, +__ZN4wasm7Literal6getf32Ev(i1));
break;
}
case 4:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i2, 16829) | 0, 20494) | 0;
- __ZN4wasm7Literal11printDoubleERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEd(i2, +HEAPF64[i1 + 8 >> 3]);
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i2, 17423) | 0, 21061) | 0;
+ __ZN4wasm7Literal11printDoubleERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEd(i2, +__ZN4wasm7Literal6getf64Ev(i1));
break;
}
default:
@@ -53024,59 +52533,98 @@ function __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_7Literal
return __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i2, 41) | 0;
}
-function __ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwb(i5, i8, i2, i1, i6) {
- i5 = i5 | 0;
- i8 = i8 | 0;
+function _mbsnrtowcs(i2, i12, i3, i1, i9) {
i2 = i2 | 0;
+ i12 = i12 | 0;
+ i3 = i3 | 0;
i1 = i1 | 0;
- i6 = i6 | 0;
- var i3 = 0, i4 = 0, i7 = 0, i9 = 0, i10 = 0;
- i10 = STACKTOP;
- STACKTOP = STACKTOP + 32 | 0;
- i9 = i10 + 8 | 0;
- i3 = i10 + 4 | 0;
- i4 = i10;
- if (!(HEAP32[i2 + 4 >> 2] & 1)) {
- i7 = HEAP32[(HEAP32[i5 >> 2] | 0) + 24 >> 2] | 0;
- HEAP32[i3 >> 2] = HEAP32[i8 >> 2];
- HEAP32[i9 >> 2] = HEAP32[i3 >> 2];
- i1 = FUNCTION_TABLE_iiiiii[i7 & 31](i5, i9, i2, i1, i6 & 1) | 0;
+ i9 = i9 | 0;
+ var i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0, i13 = 0, i14 = 0;
+ i13 = STACKTOP;
+ STACKTOP = STACKTOP + 1040 | 0;
+ i8 = i13 + 8 | 0;
+ i11 = i13;
+ i7 = HEAP32[i12 >> 2] | 0;
+ HEAP32[i11 >> 2] = i7;
+ i10 = (i2 | 0) != 0;
+ i1 = i10 ? i1 : 256;
+ i2 = i10 ? i2 : i8;
+ i4 = i7;
+ L1 : do if ((i1 | 0) != 0 & (i7 | 0) != 0) {
+ i6 = i1;
+ i7 = i4;
+ i1 = 0;
+ while (1) {
+ i4 = i3 >>> 2;
+ i5 = i4 >>> 0 >= i6 >>> 0;
+ if (!(i3 >>> 0 > 131 | i5)) {
+ i4 = i7;
+ break L1;
+ }
+ i4 = i5 ? i6 : i4;
+ i3 = i3 - i4 | 0;
+ i4 = _mbsrtowcs(i2, i11, i4, i9) | 0;
+ if ((i4 | 0) == -1) {
+ i1 = i3;
+ break;
+ }
+ i14 = (i2 | 0) == (i8 | 0);
+ i7 = i14 ? 0 : i4;
+ i5 = i6 - i7 | 0;
+ i2 = i14 ? i2 : i2 + (i4 << 2) | 0;
+ i1 = i4 + i1 | 0;
+ i4 = HEAP32[i11 >> 2] | 0;
+ if ((i6 | 0) != (i7 | 0) & (i4 | 0) != 0) {
+ i6 = i5;
+ i7 = i4;
+ } else {
+ i6 = i5;
+ break L1;
+ }
+ }
+ i3 = i1;
+ i6 = 0;
+ i4 = HEAP32[i11 >> 2] | 0;
+ i1 = -1;
} else {
- i2 = __ZNKSt3__18ios_base6getlocEv(i2) | 0;
- HEAP32[i4 >> 2] = i2;
- i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i4, 39004) | 0;
- __ZNSt3__114__shared_count16__release_sharedEv(i2) | 0;
- i2 = HEAP32[i1 >> 2] | 0;
- if (i6) FUNCTION_TABLE_vii[HEAP32[i2 + 24 >> 2] & 127](i9, i1); else FUNCTION_TABLE_vii[HEAP32[i2 + 28 >> 2] & 127](i9, i1);
- i4 = HEAP8[i9 >> 0] | 0;
- i5 = i9 + 4 | 0;
- i6 = i9 + 8 | 0;
- i7 = HEAP32[i6 >> 2] | 0;
- i1 = i4;
- i2 = i7;
- i7 = (i4 & 1) == 0 ? i5 : i7;
+ i6 = i1;
+ i1 = 0;
+ } while (0);
+ L8 : do if ((i4 | 0) != 0 ? (i6 | 0) != 0 & (i3 | 0) != 0 : 0) {
+ i5 = i4;
+ i4 = i2;
while (1) {
- i4 = (i1 & 1) == 0;
- if ((i7 | 0) == ((i4 ? i5 : i2) + ((i4 ? (i1 & 255) >>> 1 : HEAP32[i5 >> 2] | 0) << 2) | 0)) break;
- i1 = HEAP32[i7 >> 2] | 0;
- i2 = HEAP32[i8 >> 2] | 0;
- if (i2 | 0) {
- i4 = i2 + 24 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i2 + 28 >> 2] | 0)) i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i2 >> 2] | 0) + 52 >> 2] & 31](i2, i1) | 0; else {
- HEAP32[i4 >> 2] = i3 + 4;
- HEAP32[i3 >> 2] = i1;
- }
- if ((i1 | 0) == -1) HEAP32[i8 >> 2] = 0;
+ i2 = _mbrtowc(i4, i5, i3, i9) | 0;
+ if ((i2 + 2 | 0) >>> 0 < 3) break;
+ i5 = (HEAP32[i11 >> 2] | 0) + i2 | 0;
+ HEAP32[i11 >> 2] = i5;
+ i6 = i6 + -1 | 0;
+ i1 = i1 + 1 | 0;
+ if (!((i6 | 0) != 0 & (i3 | 0) != (i2 | 0))) break L8; else {
+ i3 = i3 - i2 | 0;
+ i4 = i4 + 4 | 0;
}
- i1 = HEAP8[i9 >> 0] | 0;
- i2 = HEAP32[i6 >> 2] | 0;
- i7 = i7 + 4 | 0;
}
- i1 = HEAP32[i8 >> 2] | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i9);
- }
- STACKTOP = i10;
+ switch (i2 | 0) {
+ case -1:
+ {
+ i1 = -1;
+ break L8;
+ }
+ case 0:
+ {
+ HEAP32[i11 >> 2] = 0;
+ break L8;
+ }
+ default:
+ {
+ HEAP32[i9 >> 2] = 0;
+ break L8;
+ }
+ }
+ } while (0);
+ if (i10) HEAP32[i12 >> 2] = HEAP32[i11 >> 2];
+ STACKTOP = i13;
return i1 | 0;
}
@@ -53106,33 +52654,34 @@ function __ZNSt3__112__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CString
if (i9) i2 = i2 & i8; else i2 = (i2 >>> 0) % (i10 >>> 0) | 0;
HEAP32[(HEAP32[i11 >> 2] | 0) + (i2 << 2) >> 2] = i3;
while (1) {
- i4 = i1;
+ i7 = i1;
L21 : while (1) while (1) {
- i1 = HEAP32[i4 >> 2] | 0;
+ i1 = HEAP32[i7 >> 2] | 0;
if (!i1) break L1;
i3 = HEAP32[i1 + 4 >> 2] | 0;
- if (i9) i7 = i3 & i8; else i7 = (i3 >>> 0) % (i10 >>> 0) | 0;
- if ((i7 | 0) == (i2 | 0)) {
- i4 = i1;
+ if (i9) i6 = i3 & i8; else i6 = (i3 >>> 0) % (i10 >>> 0) | 0;
+ if ((i6 | 0) == (i2 | 0)) {
+ i7 = i1;
continue L21;
}
- i3 = (HEAP32[i11 >> 2] | 0) + (i7 << 2) | 0;
- if (!(HEAP32[i3 >> 2] | 0)) {
- i2 = i7;
+ i4 = (HEAP32[i11 >> 2] | 0) + (i6 << 2) | 0;
+ if (!(HEAP32[i4 >> 2] | 0)) {
+ i2 = i6;
+ i3 = i7;
break L21;
}
- i6 = i1 + 8 | 0;
+ i5 = i1 + 8 | 0;
i3 = i1;
while (1) {
- i5 = HEAP32[i3 >> 2] | 0;
- if (!i5) break;
- if (!(_strcmp(HEAP32[i6 >> 2] | 0, HEAP32[i5 + 8 >> 2] | 0) | 0)) i3 = i5; else break;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if (!i4) break;
+ if (!(_strcmp(HEAP32[i5 >> 2] | 0, HEAP32[i4 + 8 >> 2] | 0) | 0)) i3 = i4; else break;
}
- HEAP32[i4 >> 2] = i5;
- HEAP32[i3 >> 2] = HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i7 << 2) >> 2] >> 2];
- HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i7 << 2) >> 2] >> 2] = i1;
+ HEAP32[i7 >> 2] = i4;
+ HEAP32[i3 >> 2] = HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i6 << 2) >> 2] >> 2];
+ HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i6 << 2) >> 2] >> 2] = i1;
}
- HEAP32[i3 >> 2] = i4;
+ HEAP32[i4 >> 2] = i3;
}
}
} else {
@@ -53144,6 +52693,62 @@ function __ZNSt3__112__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CString
return;
}
+function __ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwb(i5, i9, i4, i3, i6) {
+ i5 = i5 | 0;
+ i9 = i9 | 0;
+ i4 = i4 | 0;
+ i3 = i3 | 0;
+ i6 = i6 | 0;
+ var i1 = 0, i2 = 0, i7 = 0, i8 = 0, i10 = 0;
+ i10 = STACKTOP;
+ STACKTOP = STACKTOP + 32 | 0;
+ i8 = i10 + 8 | 0;
+ i1 = i10 + 4 | 0;
+ i2 = i10;
+ if (!(HEAP32[i4 + 4 >> 2] & 1)) {
+ i7 = HEAP32[(HEAP32[i5 >> 2] | 0) + 24 >> 2] | 0;
+ HEAP32[i1 >> 2] = HEAP32[i9 >> 2];
+ HEAP32[i8 >> 2] = HEAP32[i1 >> 2];
+ i1 = FUNCTION_TABLE_iiiiii[i7 & 31](i5, i8, i4, i3, i6 & 1) | 0;
+ } else {
+ i7 = __ZNKSt3__18ios_base6getlocEv(i4) | 0;
+ HEAP32[i2 >> 2] = i7;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 40476) | 0;
+ __ZNSt3__114__shared_count16__release_sharedEv(i7) | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ if (i6) FUNCTION_TABLE_vii[HEAP32[i2 + 24 >> 2] & 127](i8, i1); else FUNCTION_TABLE_vii[HEAP32[i2 + 28 >> 2] & 127](i8, i1);
+ i4 = HEAP8[i8 >> 0] | 0;
+ i5 = i8 + 4 | 0;
+ i6 = i8 + 8 | 0;
+ i7 = HEAP32[i6 >> 2] | 0;
+ i1 = i4;
+ i2 = i7;
+ i7 = (i4 & 1) == 0 ? i5 : i7;
+ while (1) {
+ i4 = (i1 & 1) == 0;
+ if ((i7 | 0) == ((i4 ? i5 : i2) + ((i4 ? (i1 & 255) >>> 1 : HEAP32[i5 >> 2] | 0) << 2) | 0)) break;
+ i1 = HEAP32[i7 >> 2] | 0;
+ i2 = HEAP32[i9 >> 2] | 0;
+ if (i2 | 0) {
+ i3 = i2 + 24 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if ((i4 | 0) == (HEAP32[i2 + 28 >> 2] | 0)) i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i2 >> 2] | 0) + 52 >> 2] & 31](i2, i1) | 0; else {
+ HEAP32[i3 >> 2] = i4 + 4;
+ HEAP32[i4 >> 2] = i1;
+ }
+ if ((i1 | 0) == -1) HEAP32[i9 >> 2] = 0;
+ }
+ i1 = HEAP8[i8 >> 0] | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ i7 = i7 + 4 | 0;
+ }
+ i1 = HEAP32[i9 >> 2] | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i8);
+ }
+ STACKTOP = i10;
+ return i1 | 0;
+}
+
function __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE8__rehashEj(i11, i10) {
i11 = i11 | 0;
i10 = i10 | 0;
@@ -53170,33 +52775,34 @@ function __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2
if (i9) i2 = i2 & i8; else i2 = (i2 >>> 0) % (i10 >>> 0) | 0;
HEAP32[(HEAP32[i11 >> 2] | 0) + (i2 << 2) >> 2] = i3;
while (1) {
- i4 = i1;
+ i7 = i1;
L21 : while (1) while (1) {
- i1 = HEAP32[i4 >> 2] | 0;
+ i1 = HEAP32[i7 >> 2] | 0;
if (!i1) break L1;
i3 = HEAP32[i1 + 4 >> 2] | 0;
- if (i9) i7 = i3 & i8; else i7 = (i3 >>> 0) % (i10 >>> 0) | 0;
- if ((i7 | 0) == (i2 | 0)) {
- i4 = i1;
+ if (i9) i6 = i3 & i8; else i6 = (i3 >>> 0) % (i10 >>> 0) | 0;
+ if ((i6 | 0) == (i2 | 0)) {
+ i7 = i1;
continue L21;
}
- i3 = (HEAP32[i11 >> 2] | 0) + (i7 << 2) | 0;
- if (!(HEAP32[i3 >> 2] | 0)) {
- i2 = i7;
+ i4 = (HEAP32[i11 >> 2] | 0) + (i6 << 2) | 0;
+ if (!(HEAP32[i4 >> 2] | 0)) {
+ i2 = i6;
+ i3 = i7;
break L21;
}
- i6 = i1 + 8 | 0;
+ i5 = i1 + 8 | 0;
i3 = i1;
while (1) {
- i5 = HEAP32[i3 >> 2] | 0;
- if (!i5) break;
- if ((HEAP32[i6 >> 2] | 0) == (HEAP32[i5 + 8 >> 2] | 0)) i3 = i5; else break;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if (!i4) break;
+ if ((HEAP32[i5 >> 2] | 0) == (HEAP32[i4 + 8 >> 2] | 0)) i3 = i4; else break;
}
- HEAP32[i4 >> 2] = i5;
- HEAP32[i3 >> 2] = HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i7 << 2) >> 2] >> 2];
- HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i7 << 2) >> 2] >> 2] = i1;
+ HEAP32[i7 >> 2] = i4;
+ HEAP32[i3 >> 2] = HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i6 << 2) >> 2] >> 2];
+ HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i6 << 2) >> 2] >> 2] = i1;
}
- HEAP32[i3 >> 2] = i4;
+ HEAP32[i4 >> 2] = i3;
}
}
} else {
@@ -53208,83 +52814,83 @@ function __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2
return;
}
-function __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__18functionIFPNS_4PassEvEEE(i9, i5, i4, i3) {
+function __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__18functionIFPNS_4PassEvEEE(i9, i8, i7, i6) {
i9 = i9 | 0;
- i5 = i5 | 0;
- i4 = i4 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0;
+ i8 = i8 | 0;
+ i7 = i7 | 0;
+ i6 = i6 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i10 = 0;
i10 = STACKTOP;
STACKTOP = STACKTOP + 112 | 0;
- i8 = i10 + 88 | 0;
- i6 = i10 + 76 | 0;
- i7 = i10 + 24 | 0;
- i1 = i10 + 64 | 0;
- i2 = i10;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i8, i5, _strlen(i5) | 0);
- if ((__ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE4findIS7_EENS_15__tree_iteratorISB_PNS_11__tree_nodeISB_PvEEiEERKT_(i9, i8) | 0) == (i9 + 4 | 0)) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i8);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i6, i5, _strlen(i5) | 0);
- i9 = __ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoENS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEEixEOS6_(i9, i6) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i1, i4, _strlen(i4) | 0);
- __ZNSt3__18functionIFPN4wasm4PassEvEEC2ERKS5_(i2, i3);
- __ZN4wasm12PassRegistry8PassInfoC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS2_8functionIFPNS_4PassEvEEE(i7, i1, i2);
- __ZN4wasm12PassRegistry8PassInfoaSEOS1_(i9, i7) | 0;
- __ZN4wasm12PassRegistry8PassInfoD2Ev(i7);
- __ZNSt3__18functionIFPN4wasm4PassEvEED2Ev(i2);
+ i1 = i10 + 88 | 0;
+ i2 = i10 + 76 | 0;
+ i3 = i10 + 24 | 0;
+ i4 = i10 + 64 | 0;
+ i5 = i10;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i1, i8, _strlen(i8) | 0);
+ if ((__ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE4findIS7_EENS_15__tree_iteratorISB_PNS_11__tree_nodeISB_PvEEiEERKT_(i9, i1) | 0) == (i9 + 4 | 0)) {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i6);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i2, i8, _strlen(i8) | 0);
+ i9 = __ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoENS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEEixEOS6_(i9, i2) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i4, i7, _strlen(i7) | 0);
+ __ZNSt3__18functionIFPN4wasm4PassEvEEC2ERKS5_(i5, i6);
+ __ZN4wasm12PassRegistry8PassInfoC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS2_8functionIFPNS_4PassEvEEE(i3, i4, i5);
+ __ZN4wasm12PassRegistry8PassInfoaSEOS1_(i9, i3) | 0;
+ __ZN4wasm12PassRegistry8PassInfoD2Ev(i3);
+ __ZNSt3__18functionIFPN4wasm4PassEvEED2Ev(i5);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i4);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i2);
STACKTOP = i10;
return;
- } else ___assert_fail(23565, 23605, 32, 23618);
+ } else ___assert_fail(24153, 24193, 32, 24206);
}
-function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10parseBlockERPcPKcNS_7IStringES8_(i14, i13, i12, i10, i11) {
+function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10parseBlockERPcPKcNS_7IStringES8_(i16, i15, i14, i12, i13) {
+ i16 = i16 | 0;
+ i15 = i15 | 0;
i14 = i14 | 0;
- i13 = i13 | 0;
i12 = i12 | 0;
- i10 = i10 | 0;
- i11 = i11 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i15 = 0, i16 = 0, i17 = 0;
+ i13 = i13 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i17 = 0;
i17 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i8 = i17;
- i6 = i17 + 24 | 0;
- i5 = i17 + 20 | 0;
- i7 = i17 + 16 | 0;
+ i6 = i17;
+ i5 = i17 + 24 | 0;
+ i7 = i17 + 20 | 0;
+ i8 = i17 + 16 | 0;
i9 = __ZN6cashew12ValueBuilder9makeBlockEv() | 0;
- i16 = i8 + 12 | 0;
- i15 = i8 + 12 | 0;
+ i10 = i6 + 12 | 0;
+ i11 = i6 + 12 | 0;
L1 : while (1) {
- __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i13);
- i4 = HEAP32[i13 >> 2] | 0;
- i1 = HEAP8[i4 >> 0] | 0;
- switch (i1 << 24 >> 24) {
+ __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i15);
+ i4 = HEAP32[i15 >> 2] | 0;
+ i2 = HEAP8[i4 >> 0] | 0;
+ switch (i2 << 24 >> 24) {
case 0:
break L1;
case 59:
{
- HEAP32[i13 >> 2] = i4 + 1;
+ HEAP32[i15 >> 2] = i4 + 1;
continue L1;
}
default:
- i3 = i12;
+ i1 = i14;
}
while (1) {
- i2 = HEAP8[i3 >> 0] | 0;
- if (!(i2 << 24 >> 24)) break;
- if (i2 << 24 >> 24 == i1 << 24 >> 24) break L1; else i3 = i3 + 1 | 0;
+ i3 = HEAP8[i1 >> 0] | 0;
+ if (!(i3 << 24 >> 24)) break;
+ if (i3 << 24 >> 24 == i2 << 24 >> 24) break L1; else i1 = i1 + 1 | 0;
}
- i1 = HEAP32[i10 >> 2] | 0;
- if ((i1 | 0 ? HEAP8[i1 >> 0] | 0 : 0) ? (__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i8, i4), (HEAP32[i15 >> 2] | 0) == 0 ? (HEAP32[i8 >> 2] | 0) == (i1 | 0) : 0) : 0) break;
- i1 = HEAP32[i11 >> 2] | 0;
- if ((i1 | 0 ? HEAP8[i1 >> 0] | 0 : 0) ? (__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i8, HEAP32[i13 >> 2] | 0), (HEAP32[i16 >> 2] | 0) == 0 ? (HEAP32[i8 >> 2] | 0) == (i1 | 0) : 0) : 0) break;
- i4 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE23parseElementOrStatementERPcPKc(i14, i13, i12) | 0;
- HEAP32[i5 >> 2] = i9;
- HEAP32[i7 >> 2] = i4;
- HEAP32[i6 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i8 >> 2] = HEAP32[i7 >> 2];
- __ZN6cashew12ValueBuilder13appendToBlockENS_3RefES1_(i6, i8);
+ i1 = HEAP32[i12 >> 2] | 0;
+ if ((i1 | 0 ? HEAP8[i1 >> 0] | 0 : 0) ? (__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i6, i4), (HEAP32[i11 >> 2] | 0) == 0 ? (HEAP32[i6 >> 2] | 0) == (i1 | 0) : 0) : 0) break;
+ i1 = HEAP32[i13 >> 2] | 0;
+ if ((i1 | 0 ? HEAP8[i1 >> 0] | 0 : 0) ? (__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i6, HEAP32[i15 >> 2] | 0), (HEAP32[i10 >> 2] | 0) == 0 ? (HEAP32[i6 >> 2] | 0) == (i1 | 0) : 0) : 0) break;
+ i4 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE23parseElementOrStatementERPcPKc(i16, i15, i14) | 0;
+ HEAP32[i7 >> 2] = i9;
+ HEAP32[i8 >> 2] = i4;
+ HEAP32[i5 >> 2] = HEAP32[i7 >> 2];
+ HEAP32[i6 >> 2] = HEAP32[i8 >> 2];
+ __ZN6cashew12ValueBuilder13appendToBlockENS_3RefES1_(i5, i6);
}
STACKTOP = i17;
return i9 | 0;
@@ -53298,30 +52904,30 @@ function __ZNSt3__16vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuild
STACKTOP = STACKTOP + 32 | 0;
i7 = i9;
i2 = HEAP32[i8 + 8 >> 2] | 0;
- i5 = i8 + 4 | 0;
- i1 = HEAP32[i5 >> 2] | 0;
+ i4 = i8 + 4 | 0;
+ i1 = HEAP32[i4 >> 2] | 0;
if (((i2 - i1 | 0) / 12 | 0) >>> 0 < i6 >>> 0) {
- i4 = HEAP32[i8 >> 2] | 0;
- i3 = ((i1 - i4 | 0) / 12 | 0) + i6 | 0;
+ i5 = HEAP32[i8 >> 2] | 0;
+ i3 = ((i1 - i5 | 0) / 12 | 0) + i6 | 0;
if (i3 >>> 0 > 357913941) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i8);
- i1 = (i2 - i4 | 0) / 12 | 0;
+ i1 = (i2 - i5 | 0) / 12 | 0;
if (i1 >>> 0 < 178956970) {
i1 = i1 << 1;
i1 = i1 >>> 0 < i3 >>> 0 ? i3 : i1;
} else i1 = 357913941;
- __ZNSt3__114__split_bufferINS_6vectorIN6cashew6ParserINS2_3RefENS2_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS7_EEEERNS8_ISA_EEEC2EjjSC_(i7, i1, ((HEAP32[i5 >> 2] | 0) - i4 | 0) / 12 | 0, i8 + 8 | 0);
- i2 = i7 + 8 | 0;
- i3 = HEAP32[i2 >> 2] | 0;
- i1 = i3;
- i4 = i6;
+ __ZNSt3__114__split_bufferINS_6vectorIN6cashew6ParserINS2_3RefENS2_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS7_EEEERNS8_ISA_EEEC2EjjSC_(i7, i1, ((HEAP32[i4 >> 2] | 0) - i5 | 0) / 12 | 0, i8 + 8 | 0);
+ i3 = i7 + 8 | 0;
+ i2 = HEAP32[i3 >> 2] | 0;
+ i1 = i6;
+ i4 = i2;
while (1) {
- HEAP32[i1 >> 2] = 0;
- HEAP32[i1 + 4 >> 2] = 0;
- HEAP32[i1 + 8 >> 2] = 0;
- i4 = i4 + -1 | 0;
- if (!i4) break; else i1 = i1 + 12 | 0;
+ HEAP32[i4 >> 2] = 0;
+ HEAP32[i4 + 4 >> 2] = 0;
+ HEAP32[i4 + 8 >> 2] = 0;
+ i1 = i1 + -1 | 0;
+ if (!i1) break; else i4 = i4 + 12 | 0;
}
- HEAP32[i2 >> 2] = i3 + (i6 * 12 | 0);
+ HEAP32[i3 >> 2] = i2 + (i6 * 12 | 0);
__ZNSt3__16vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS9_RSA_EE(i8, i7);
__ZNSt3__114__split_bufferINS_6vectorIN6cashew6ParserINS2_3RefENS2_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS7_EEEERNS8_ISA_EEED2Ev(i7);
} else __ZNSt3__16vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE18__construct_at_endEj(i8, i6);
@@ -53329,88 +52935,45 @@ function __ZNSt3__16vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuild
return;
}
-function _mbsnrtowcs(i3, i11, i2, i1, i9) {
- i3 = i3 | 0;
- i11 = i11 | 0;
- i2 = i2 | 0;
- i1 = i1 | 0;
- i9 = i9 | 0;
- var i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0, i12 = 0, i13 = 0, i14 = 0;
- i13 = STACKTOP;
- STACKTOP = STACKTOP + 1040 | 0;
- i8 = i13 + 8 | 0;
- i10 = i13;
- i7 = HEAP32[i11 >> 2] | 0;
- HEAP32[i10 >> 2] = i7;
- i12 = (i3 | 0) != 0;
- i5 = i12 ? i1 : 256;
- i3 = i12 ? i3 : i8;
- i1 = i7;
- L1 : do if ((i5 | 0) != 0 & (i7 | 0) != 0) {
- i4 = i1;
- i1 = 0;
- i7 = i5;
- while (1) {
- i6 = i2 >>> 2;
- i5 = i6 >>> 0 >= i7 >>> 0;
- if (!(i2 >>> 0 > 131 | i5)) {
- i5 = i7;
- break L1;
- }
- i4 = i5 ? i7 : i6;
- i2 = i2 - i4 | 0;
- i4 = _mbsrtowcs(i3, i10, i4, i9) | 0;
- if ((i4 | 0) == -1) break;
- i14 = (i3 | 0) == (i8 | 0);
- i6 = i14 ? 0 : i4;
- i5 = i7 - i6 | 0;
- i3 = i14 ? i3 : i3 + (i4 << 2) | 0;
- i1 = i4 + i1 | 0;
- i4 = HEAP32[i10 >> 2] | 0;
- if ((i7 | 0) != (i6 | 0) & (i4 | 0) != 0) i7 = i5; else break L1;
- }
- i4 = HEAP32[i10 >> 2] | 0;
- i1 = -1;
- i5 = 0;
+function __ZN4wasm22SExpressionWasmBuilder9makeBreakERNS_7ElementE(i6, i5) {
+ i6 = i6 | 0;
+ i5 = i5 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0;
+ i4 = __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(HEAP32[i6 + 4 >> 2] | 0) | 0;
+ i3 = __ZN4wasm7Element4listEv(i5) | 0;
+ do if (!(HEAP8[(HEAP32[(HEAP32[i3 >> 2] | 0) + 4 >> 2] | 0) + 20 >> 0] | 0)) {
+ i1 = __ZN4wasm7Element4listEv(i5) | 0;
+ i1 = _atol(__ZN4wasm7Element5c_strEv(HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] | 0) | 0) | 0;
+ i2 = HEAP32[i6 + 80 >> 2] | 0;
+ i3 = (HEAP32[i6 + 84 >> 2] | 0) - i2 >> 2;
+ if (i1 >>> 0 < i3 >>> 0) {
+ HEAP32[i4 + 12 >> 2] = HEAP32[i2 + (i3 + ~i1 << 2) >> 2];
+ break;
+ } else ___assert_fail(17907, 16606, 876, 17934);
} else {
- i4 = i1;
- i1 = 0;
+ i3 = __ZN4wasm7Element4listEv(i5) | 0;
+ i3 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i3 >> 2] | 0) + 4 >> 2] | 0) | 0;
+ HEAP32[i4 + 12 >> 2] = i3;
} while (0);
- L8 : do if ((i4 | 0) != 0 ? (i5 | 0) != 0 & (i2 | 0) != 0 : 0) {
- i6 = i2;
- while (1) {
- i2 = _mbrtowc(i3, i4, i6, i9) | 0;
- if ((i2 + 2 | 0) >>> 0 < 3) break;
- i4 = (HEAP32[i10 >> 2] | 0) + i2 | 0;
- HEAP32[i10 >> 2] = i4;
- i5 = i5 + -1 | 0;
- i1 = i1 + 1 | 0;
- if (!((i5 | 0) != 0 & (i6 | 0) != (i2 | 0))) break L8; else {
- i6 = i6 - i2 | 0;
- i3 = i3 + 4 | 0;
- }
- }
- switch (i2 | 0) {
- case -1:
- {
- i1 = -1;
- break L8;
- }
- case 0:
- {
- HEAP32[i10 >> 2] = 0;
- break L8;
- }
- default:
- {
- HEAP32[i9 >> 2] = 0;
- break L8;
- }
- }
+ do if ((__ZN4wasm7Element4sizeEv(i5) | 0) != 2) {
+ i3 = __ZN4wasm7Element4listEv(i5) | 0;
+ i3 = __ZN4wasm7Element3strEv(HEAP32[HEAP32[i3 >> 2] >> 2] | 0) | 0;
+ if ((i3 | 0) != (HEAP32[9561] | 0)) {
+ i5 = __ZN4wasm7Element4listEv(i5) | 0;
+ i6 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] | 0) | 0;
+ HEAP32[i4 + 16 >> 2] = i6;
+ break;
+ }
+ if ((__ZN4wasm7Element4sizeEv(i5) | 0) >>> 0 > 3) {
+ i1 = __ZN4wasm7Element4listEv(i5) | 0;
+ i1 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, HEAP32[(HEAP32[i1 >> 2] | 0) + 8 >> 2] | 0) | 0;
+ HEAP32[i4 + 16 >> 2] = i1;
+ i1 = 3;
+ } else i1 = 2;
+ i6 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, __ZN4wasm7ElementixEj(i5, i1) | 0) | 0;
+ HEAP32[i4 + 8 >> 2] = i6;
} while (0);
- if (i12) HEAP32[i11 >> 2] = HEAP32[i10 >> 2];
- STACKTOP = i13;
- return i1 | 0;
+ return i4 | 0;
}
function __ZNSt3__127__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT_S5_(i7, i1) {
@@ -53418,14 +52981,14 @@ function __ZNSt3__127__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT
i1 = i1 | 0;
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
HEAP8[i1 + 12 >> 0] = (i1 | 0) == (i7 | 0) & 1;
- i3 = i1;
+ i4 = i1;
while (1) {
- if ((i3 | 0) == (i7 | 0)) break;
- i2 = HEAP32[i3 + 8 >> 2] | 0;
+ if ((i4 | 0) == (i7 | 0)) break;
+ i2 = HEAP32[i4 + 8 >> 2] | 0;
i6 = i2 + 12 | 0;
if (HEAP8[i6 >> 0] | 0) break;
- i4 = i2 + 8 | 0;
- i1 = HEAP32[i4 >> 2] | 0;
+ i3 = i2 + 8 | 0;
+ i1 = HEAP32[i3 >> 2] | 0;
i5 = HEAP32[i1 >> 2] | 0;
if ((i5 | 0) == (i2 | 0)) {
i5 = HEAP32[i1 + 4 >> 2] | 0;
@@ -53441,7 +53004,7 @@ function __ZNSt3__127__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT
HEAP8[i6 >> 0] = 1;
HEAP8[i1 + 12 >> 0] = (i1 | 0) == (i7 | 0) & 1;
HEAP8[i5 >> 0] = 1;
- i3 = i1;
+ i4 = i1;
continue;
} else {
if (!i5) {
@@ -53456,14 +53019,14 @@ function __ZNSt3__127__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT
HEAP8[i6 >> 0] = 1;
HEAP8[i1 + 12 >> 0] = (i1 | 0) == (i7 | 0) & 1;
HEAP8[i5 >> 0] = 1;
- i3 = i1;
+ i4 = i1;
continue;
}
}
if ((i8 | 0) == 8) {
- if ((HEAP32[i2 >> 2] | 0) != (i3 | 0)) {
+ if ((HEAP32[i2 >> 2] | 0) != (i4 | 0)) {
__ZNSt3__118__tree_left_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i2);
- i1 = HEAP32[i4 >> 2] | 0;
+ i1 = HEAP32[i3 >> 2] | 0;
i2 = i1;
i1 = HEAP32[i1 + 8 >> 2] | 0;
}
@@ -53471,9 +53034,9 @@ function __ZNSt3__127__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT
HEAP8[i1 + 12 >> 0] = 0;
__ZNSt3__119__tree_right_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i1);
} else if ((i8 | 0) == 14) {
- if ((HEAP32[i2 >> 2] | 0) == (i3 | 0)) {
+ if ((HEAP32[i2 >> 2] | 0) == (i4 | 0)) {
__ZNSt3__119__tree_right_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i2);
- i1 = HEAP32[i4 >> 2] | 0;
+ i1 = HEAP32[i3 >> 2] | 0;
i2 = i1;
i1 = HEAP32[i1 + 8 >> 2] | 0;
}
@@ -53489,18 +53052,18 @@ function __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE6assignIPS3_E
i1 = i1 | 0;
i7 = i7 | 0;
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0;
- i5 = i1;
- i3 = i7 - i5 >> 2;
+ i4 = i1;
+ i3 = i7 - i4 >> 2;
i2 = i6 + 8 | 0;
- i4 = HEAP32[i6 >> 2] | 0;
- L1 : do if (i3 >>> 0 <= (HEAP32[i2 >> 2] | 0) - i4 >> 2 >>> 0) {
+ i5 = HEAP32[i6 >> 2] | 0;
+ L1 : do if (i3 >>> 0 <= (HEAP32[i2 >> 2] | 0) - i5 >> 2 >>> 0) {
i6 = i6 + 4 | 0;
- i2 = (HEAP32[i6 >> 2] | 0) - i4 >> 2;
+ i2 = (HEAP32[i6 >> 2] | 0) - i5 >> 2;
i8 = i3 >>> 0 > i2 >>> 0;
i3 = i1 + (i2 << 2) | 0;
- i2 = (i8 ? i3 : i7) - i5 | 0;
- _memmove(i4 | 0, i1 | 0, i2 | 0) | 0;
- i2 = i4 + (i2 >> 2 << 2) | 0;
+ i2 = (i8 ? i3 : i7) - i4 | 0;
+ _memmove(i5 | 0, i1 | 0, i2 | 0) | 0;
+ i2 = i5 + (i2 >> 2 << 2) | 0;
if (i8) {
i1 = i3;
while (1) {
@@ -53538,134 +53101,118 @@ function __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE6assignIPS3_E
return;
}
-function __ZNSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEjEE4swapERS7_(i9, i4) {
- i9 = i9 | 0;
+function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner7visitIfEPNS_2IfE(i3, i4, i1) {
+ i3 = i3 | 0;
i4 = i4 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0;
+ i1 = i1 | 0;
+ var i2 = 0, i5 = 0;
+ i5 = STACKTOP;
+ STACKTOP = STACKTOP + 32 | 0;
+ i2 = i5;
+ __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i2, i4, HEAP32[i1 + 8 >> 2] | 0);
+ do if (!(HEAP32[i2 + 16 >> 2] | 0)) if (!(__ZN4wasm7Literal6geti32Ev(i2) | 0)) {
+ i1 = HEAP32[i1 + 16 >> 2] | 0;
+ if (!i1) {
+ HEAP32[i3 >> 2] = 0;
+ i4 = i3 + 8 | 0;
+ HEAP32[i4 >> 2] = 0;
+ HEAP32[i4 + 4 >> 2] = 0;
+ HEAP32[i3 + 16 >> 2] = 0;
+ break;
+ } else {
+ __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i3, i4, i1);
+ break;
+ }
+ } else {
+ __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i3, i4, HEAP32[i1 + 12 >> 2] | 0);
+ if (HEAP32[i3 + 16 >> 2] | 0) break;
+ if (HEAP32[i1 + 16 >> 2] | 0) break;
+ HEAP32[i3 >> 2] = 0;
+ i4 = i3 + 8 | 0;
+ HEAP32[i4 >> 2] = 0;
+ HEAP32[i4 + 4 >> 2] = 0;
+ break;
+ } else {
+ HEAP32[i3 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i3 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i3 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ HEAP32[i3 + 12 >> 2] = HEAP32[i2 + 12 >> 2];
+ HEAP32[i3 + 16 >> 2] = HEAP32[i2 + 16 >> 2];
+ HEAP32[i3 + 20 >> 2] = HEAP32[i2 + 20 >> 2];
+ } while (0);
+ STACKTOP = i5;
+ return;
+}
+
+function __ZNSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEjEE4swapERS7_(i9, i7) {
+ i9 = i9 | 0;
+ i7 = i7 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0, i10 = 0;
i10 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i7 = i10;
- i5 = i9 + 16 | 0;
- i1 = HEAP32[i5 >> 2] | 0;
- i2 = i1;
- i6 = i4 + 16 | 0;
- i3 = HEAP32[i6 >> 2] | 0;
- i8 = (i3 | 0) == (i4 | 0);
- do if ((i1 | 0) == (i9 | 0)) if (i8) {
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i1 >> 2] | 0) + 12 >> 2] & 127](i1, i7);
- i8 = HEAP32[i5 >> 2] | 0;
- FUNCTION_TABLE_vi[HEAP32[(HEAP32[i8 >> 2] | 0) + 16 >> 2] & 255](i8);
- HEAP32[i5 >> 2] = 0;
- i8 = HEAP32[i6 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i8 >> 2] | 0) + 12 >> 2] & 127](i8, i1);
- i8 = HEAP32[i6 >> 2] | 0;
+ i8 = i10;
+ i1 = i9 + 16 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ i3 = i2;
+ i4 = i7 + 16 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ i6 = (i5 | 0) == (i7 | 0);
+ do if ((i2 | 0) == (i9 | 0)) if (i6) {
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 127](i2, i8);
+ i6 = HEAP32[i1 >> 2] | 0;
+ FUNCTION_TABLE_vi[HEAP32[(HEAP32[i6 >> 2] | 0) + 16 >> 2] & 255](i6);
+ HEAP32[i1 >> 2] = 0;
+ i6 = HEAP32[i4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 12 >> 2] & 127](i6, i2);
+ i6 = HEAP32[i4 >> 2] | 0;
+ FUNCTION_TABLE_vi[HEAP32[(HEAP32[i6 >> 2] | 0) + 16 >> 2] & 255](i6);
+ HEAP32[i4 >> 2] = 0;
+ HEAP32[i1 >> 2] = i9;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i8 >> 2] | 0) + 12 >> 2] & 127](i8, i5);
FUNCTION_TABLE_vi[HEAP32[(HEAP32[i8 >> 2] | 0) + 16 >> 2] & 255](i8);
- HEAP32[i6 >> 2] = 0;
- HEAP32[i5 >> 2] = i9;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i7 >> 2] | 0) + 12 >> 2] & 127](i7, i3);
- FUNCTION_TABLE_vi[HEAP32[(HEAP32[i7 >> 2] | 0) + 16 >> 2] & 255](i7);
- HEAP32[i6 >> 2] = i4;
+ HEAP32[i4 >> 2] = i7;
break;
} else {
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i1 >> 2] | 0) + 12 >> 2] & 127](i1, i4);
- i9 = HEAP32[i5 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 127](i2, i7);
+ i9 = HEAP32[i1 >> 2] | 0;
FUNCTION_TABLE_vi[HEAP32[(HEAP32[i9 >> 2] | 0) + 16 >> 2] & 255](i9);
- i9 = i4 + 16 | 0;
- HEAP32[i5 >> 2] = HEAP32[i9 >> 2];
- HEAP32[i9 >> 2] = i4;
+ i9 = i7 + 16 | 0;
+ HEAP32[i1 >> 2] = HEAP32[i9 >> 2];
+ HEAP32[i9 >> 2] = i7;
break;
- } else if (i8) {
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i4 >> 2] | 0) + 12 >> 2] & 127](i4, i9);
- i8 = HEAP32[i6 >> 2] | 0;
+ } else if (i6) {
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i7 >> 2] | 0) + 12 >> 2] & 127](i7, i9);
+ i8 = HEAP32[i4 >> 2] | 0;
FUNCTION_TABLE_vi[HEAP32[(HEAP32[i8 >> 2] | 0) + 16 >> 2] & 255](i8);
- HEAP32[i6 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i5 >> 2] = i9;
+ HEAP32[i4 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i1 >> 2] = i9;
break;
} else {
- HEAP32[i5 >> 2] = i3;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i1 >> 2] = i5;
+ HEAP32[i4 >> 2] = i3;
break;
} while (0);
STACKTOP = i10;
return;
}
-function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner10visitBreakEPNS_5BreakE(i9, i5, i4) {
- i9 = i9 | 0;
- i5 = i5 | 0;
- i4 = i4 | 0;
- var i1 = 0, d2 = 0.0, i3 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0;
- i10 = STACKTOP;
- STACKTOP = STACKTOP + 32 | 0;
- i6 = i10;
- i1 = HEAP32[i4 + 8 >> 2] | 0;
- if (i1) {
- __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i9, i5, i1);
- if (!(HEAP32[i9 + 16 >> 2] | 0)) {
- i8 = __ZN4wasm7Literal10getIntegerEv(i9) | 0;
- i8 = (i8 | 0) != 0 | (tempRet0 | 0) != 0;
- i3 = 4;
- }
- } else {
- i8 = 1;
- i3 = 4;
- }
- do if ((i3 | 0) == 4) {
- i7 = i4 + 12 | 0;
- i1 = HEAP32[i4 + 16 >> 2] | 0;
- if (i1) {
- __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i6, i5, i1);
- i4 = HEAP32[i6 >> 2] | 0;
- i1 = HEAP32[i6 + 4 >> 2] | 0;
- d2 = +HEAPF64[i6 + 8 >> 3];
- i3 = HEAP32[i6 + 16 >> 2] | 0;
- if (!i3) i3 = i4; else {
- HEAP32[i9 >> 2] = i4;
- HEAP32[i9 + 4 >> 2] = i1;
- HEAPF64[i9 + 8 >> 3] = d2;
- HEAP32[i9 + 16 >> 2] = i3;
- break;
- }
- } else {
- i3 = 0;
- i1 = 0;
- d2 = 0.0;
- }
- if (i8) {
- i8 = HEAP32[i7 >> 2] | 0;
- HEAP32[i9 >> 2] = i3;
- HEAP32[i9 + 4 >> 2] = i1;
- HEAPF64[i9 + 8 >> 3] = d2;
- HEAP32[i9 + 16 >> 2] = i8;
- break;
- } else {
- HEAP32[i9 >> 2] = 0;
- HEAPF64[i9 + 8 >> 3] = 0.0;
- HEAP32[i9 + 16 >> 2] = 0;
- break;
- }
- } while (0);
- STACKTOP = i10;
- return;
-}
-
function __ZNSt3__16vectorIN6cashew3RefENS_9allocatorIS2_EEE6assignIPS2_EENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIS2_NS_15iterator_traitsIS9_E9referenceEEE5valueEvE4typeES9_S9_(i6, i1, i7) {
i6 = i6 | 0;
i1 = i1 | 0;
i7 = i7 | 0;
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0;
- i5 = i1;
- i3 = i7 - i5 >> 2;
+ i4 = i1;
+ i3 = i7 - i4 >> 2;
i2 = i6 + 8 | 0;
- i4 = HEAP32[i6 >> 2] | 0;
- L1 : do if (i3 >>> 0 <= (HEAP32[i2 >> 2] | 0) - i4 >> 2 >>> 0) {
+ i5 = HEAP32[i6 >> 2] | 0;
+ L1 : do if (i3 >>> 0 <= (HEAP32[i2 >> 2] | 0) - i5 >> 2 >>> 0) {
i6 = i6 + 4 | 0;
- i2 = (HEAP32[i6 >> 2] | 0) - i4 >> 2;
+ i2 = (HEAP32[i6 >> 2] | 0) - i5 >> 2;
i8 = i3 >>> 0 > i2 >>> 0;
i3 = i1 + (i2 << 2) | 0;
- i2 = (i8 ? i3 : i7) - i5 | 0;
- _memmove(i4 | 0, i1 | 0, i2 | 0) | 0;
- i2 = i4 + (i2 >> 2 << 2) | 0;
+ i2 = (i8 ? i3 : i7) - i4 | 0;
+ _memmove(i5 | 0, i1 | 0, i2 | 0) | 0;
+ i2 = i5 + (i2 >> 2 << 2) | 0;
if (i8) {
i1 = i3;
while (1) {
@@ -53708,11 +53255,11 @@ function __ZNSt3__16vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE6assignIPS2_EENS_
i1 = i1 | 0;
i7 = i7 | 0;
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0;
- i5 = i1;
- i3 = i7 - i5 >> 2;
+ i4 = i1;
+ i3 = i7 - i4 >> 2;
i2 = i6 + 8 | 0;
- i4 = HEAP32[i6 >> 2] | 0;
- L1 : do if (i3 >>> 0 > (HEAP32[i2 >> 2] | 0) - i4 >> 2 >>> 0) {
+ i5 = HEAP32[i6 >> 2] | 0;
+ L1 : do if (i3 >>> 0 > (HEAP32[i2 >> 2] | 0) - i5 >> 2 >>> 0) {
__ZNSt3__16vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE10deallocateEv(i6);
if (i3 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i6);
i2 = (HEAP32[i2 >> 2] | 0) - (HEAP32[i6 >> 2] | 0) | 0;
@@ -53731,12 +53278,12 @@ function __ZNSt3__16vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE6assignIPS2_EENS_
}
} else {
i6 = i6 + 4 | 0;
- i2 = (HEAP32[i6 >> 2] | 0) - i4 >> 2;
+ i2 = (HEAP32[i6 >> 2] | 0) - i5 >> 2;
i8 = i3 >>> 0 > i2 >>> 0;
i3 = i1 + (i2 << 2) | 0;
- i2 = (i8 ? i3 : i7) - i5 | 0;
- _memmove(i4 | 0, i1 | 0, i2 | 0) | 0;
- i2 = i4 + (i2 >> 2 << 2) | 0;
+ i2 = (i8 ? i3 : i7) - i4 | 0;
+ _memmove(i5 | 0, i1 | 0, i2 | 0) | 0;
+ i2 = i5 + (i2 >> 2 << 2) | 0;
if (i8) {
i1 = i3;
while (1) {
@@ -53758,23 +53305,23 @@ function __ZNSt3__16vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE6assignIPS2_EENS_
return;
}
-function __ZNK10__cxxabiv120__si_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib(i3, i8, i6, i1, i4) {
+function __ZNK10__cxxabiv120__si_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib(i3, i8, i7, i2, i4) {
i3 = i3 | 0;
i8 = i8 | 0;
- i6 = i6 | 0;
- i1 = i1 | 0;
+ i7 = i7 | 0;
+ i2 = i2 | 0;
i4 = i4 | 0;
- var i2 = 0, i5 = 0, i7 = 0;
+ var i1 = 0, i5 = 0, i6 = 0;
do if ((i3 | 0) == (HEAP32[i8 + 8 >> 2] | 0)) {
- if ((HEAP32[i8 + 4 >> 2] | 0) == (i6 | 0) ? (i2 = i8 + 28 | 0, (HEAP32[i2 >> 2] | 0) != 1) : 0) HEAP32[i2 >> 2] = i1;
+ if ((HEAP32[i8 + 4 >> 2] | 0) == (i7 | 0) ? (i1 = i8 + 28 | 0, (HEAP32[i1 >> 2] | 0) != 1) : 0) HEAP32[i1 >> 2] = i2;
} else {
if ((i3 | 0) != (HEAP32[i8 >> 2] | 0)) {
- i7 = HEAP32[i3 + 8 >> 2] | 0;
- FUNCTION_TABLE_viiiii[HEAP32[(HEAP32[i7 >> 2] | 0) + 24 >> 2] & 3](i7, i8, i6, i1, i4);
+ i6 = HEAP32[i3 + 8 >> 2] | 0;
+ FUNCTION_TABLE_viiiii[HEAP32[(HEAP32[i6 >> 2] | 0) + 24 >> 2] & 3](i6, i8, i7, i2, i4);
break;
}
- if ((HEAP32[i8 + 16 >> 2] | 0) != (i6 | 0) ? (i7 = i8 + 20 | 0, (HEAP32[i7 >> 2] | 0) != (i6 | 0)) : 0) {
- HEAP32[i8 + 32 >> 2] = i1;
+ if ((HEAP32[i8 + 16 >> 2] | 0) != (i7 | 0) ? (i6 = i8 + 20 | 0, (HEAP32[i6 >> 2] | 0) != (i7 | 0)) : 0) {
+ HEAP32[i8 + 32 >> 2] = i2;
i5 = i8 + 44 | 0;
if ((HEAP32[i5 >> 2] | 0) == 4) break;
i1 = i8 + 52 | 0;
@@ -53782,7 +53329,7 @@ function __ZNK10__cxxabiv120__si_class_type_info16search_below_dstEPNS_19__dynam
i2 = i8 + 53 | 0;
HEAP8[i2 >> 0] = 0;
i3 = HEAP32[i3 + 8 >> 2] | 0;
- FUNCTION_TABLE_viiiiii[HEAP32[(HEAP32[i3 >> 2] | 0) + 20 >> 2] & 15](i3, i8, i6, i6, 1, i4);
+ FUNCTION_TABLE_viiiiii[HEAP32[(HEAP32[i3 >> 2] | 0) + 20 >> 2] & 15](i3, i8, i7, i7, 1, i4);
if (HEAP8[i2 >> 0] | 0) if (!(HEAP8[i1 >> 0] | 0)) {
i1 = 1;
i2 = 13;
@@ -53791,7 +53338,7 @@ function __ZNK10__cxxabiv120__si_class_type_info16search_below_dstEPNS_19__dynam
i2 = 13;
}
do if ((i2 | 0) == 13) {
- HEAP32[i7 >> 2] = i6;
+ HEAP32[i6 >> 2] = i7;
i7 = i8 + 40 | 0;
HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + 1;
if ((HEAP32[i8 + 36 >> 2] | 0) == 1 ? (HEAP32[i8 + 24 >> 2] | 0) == 2 : 0) {
@@ -53810,7 +53357,7 @@ function __ZNK10__cxxabiv120__si_class_type_info16search_below_dstEPNS_19__dynam
HEAP32[i5 >> 2] = i1;
break;
}
- if ((i1 | 0) == 1) HEAP32[i8 + 32 >> 2] = 1;
+ if ((i2 | 0) == 1) HEAP32[i8 + 32 >> 2] = 1;
} while (0);
return;
}
@@ -53822,39 +53369,117 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseIndexingES1
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i9 = 0, i10 = 0, i11 = 0;
i11 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i5 = i11 + 12 | 0;
- i3 = i11 + 8 | 0;
- i2 = i11 + 4 | 0;
+ i2 = i11 + 12 | 0;
+ i1 = i11 + 8 | 0;
+ i3 = i11 + 4 | 0;
i4 = i11;
- i10 = i7 + 4 | 0;
- __ZNSt3__16vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE6resizeEj(i7, (((HEAP32[i10 >> 2] | 0) - (HEAP32[i7 >> 2] | 0) | 0) / 12 | 0) + 1 | 0);
- i1 = HEAP32[i8 >> 2] | 0;
- if ((HEAP8[i1 >> 0] | 0) != 91) ___assert_fail(22965, 22233, 634, 22977);
- HEAP32[i8 >> 2] = i1 + 1;
- HEAP32[i2 >> 2] = HEAP32[i6 >> 2];
- i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i7, i8, 34354) | 0;
- HEAP32[i4 >> 2] = i1;
- HEAP32[i3 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i5 >> 2] = HEAP32[i4 >> 2];
- i3 = __ZN6cashew12ValueBuilder12makeIndexingENS_3RefES1_(i3, i5) | 0;
+ i9 = i7 + 4 | 0;
+ __ZNSt3__16vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE6resizeEj(i7, (((HEAP32[i9 >> 2] | 0) - (HEAP32[i7 >> 2] | 0) | 0) / 12 | 0) + 1 | 0);
+ i5 = HEAP32[i8 >> 2] | 0;
+ if ((HEAP8[i5 >> 0] | 0) != 91) ___assert_fail(23553, 22821, 634, 23565);
+ HEAP32[i8 >> 2] = i5 + 1;
+ HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
+ i7 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i7, i8, 35818) | 0;
+ HEAP32[i4 >> 2] = i7;
+ HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
+ i3 = __ZN6cashew12ValueBuilder12makeIndexingENS_3RefES1_(i1, i2) | 0;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i8);
i1 = HEAP32[i8 >> 2] | 0;
- if ((HEAP8[i1 >> 0] | 0) != 93) ___assert_fail(22991, 22233, 638, 22977);
+ if ((HEAP8[i1 >> 0] | 0) != 93) ___assert_fail(23579, 22821, 638, 23565);
HEAP32[i8 >> 2] = i1 + 1;
- i1 = HEAP32[i10 >> 2] | 0;
+ i1 = HEAP32[i9 >> 2] | 0;
i2 = i1 + -12 | 0;
- if ((HEAP32[i1 + -8 >> 2] | 0) == (HEAP32[i2 >> 2] | 0)) i9 = i1; else ___assert_fail(22896, 22233, 640, 22977);
+ if ((HEAP32[i1 + -8 >> 2] | 0) == (HEAP32[i2 >> 2] | 0)) i10 = i1; else ___assert_fail(23484, 22821, 640, 23565);
while (1) {
- if ((i9 | 0) == (i2 | 0)) break;
- i8 = i9 + -12 | 0;
- HEAP32[i10 >> 2] = i8;
+ if ((i10 | 0) == (i2 | 0)) break;
+ i8 = i10 + -12 | 0;
+ HEAP32[i9 >> 2] = i8;
__ZNSt3__113__vector_baseIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEED2Ev(i8);
- i9 = HEAP32[i10 >> 2] | 0;
+ i10 = HEAP32[i9 >> 2] | 0;
}
STACKTOP = i11;
return i3 | 0;
}
+function _wcsnrtombs(i3, i11, i4, i2, i1) {
+ i3 = i3 | 0;
+ i11 = i11 | 0;
+ i4 = i4 | 0;
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ var i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i13 = 0;
+ i10 = STACKTOP;
+ STACKTOP = STACKTOP + 272 | 0;
+ i7 = i10 + 8 | 0;
+ i9 = i10;
+ i6 = HEAP32[i11 >> 2] | 0;
+ HEAP32[i9 >> 2] = i6;
+ i8 = (i3 | 0) != 0;
+ i1 = i8 ? i2 : 256;
+ i2 = i8 ? i3 : i7;
+ i3 = i6;
+ L1 : do if ((i1 | 0) != 0 & (i6 | 0) != 0) {
+ i6 = i1;
+ i5 = i3;
+ i1 = 0;
+ while (1) {
+ i3 = i4 >>> 0 >= i6 >>> 0;
+ if (!(i3 | i4 >>> 0 > 32)) {
+ i3 = i5;
+ break L1;
+ }
+ i3 = i3 ? i6 : i4;
+ i4 = i4 - i3 | 0;
+ i3 = _wcsrtombs(i2, i9, i3, 0) | 0;
+ if ((i3 | 0) == -1) {
+ i1 = i4;
+ break;
+ }
+ i13 = (i2 | 0) == (i7 | 0);
+ i12 = i13 ? 0 : i3;
+ i5 = i6 - i12 | 0;
+ i2 = i13 ? i2 : i2 + i3 | 0;
+ i1 = i3 + i1 | 0;
+ i3 = HEAP32[i9 >> 2] | 0;
+ if ((i6 | 0) != (i12 | 0) & (i3 | 0) != 0) {
+ i6 = i5;
+ i5 = i3;
+ } else {
+ i6 = i5;
+ break L1;
+ }
+ }
+ i4 = i1;
+ i6 = 0;
+ i3 = HEAP32[i9 >> 2] | 0;
+ i1 = -1;
+ } else {
+ i6 = i1;
+ i1 = 0;
+ } while (0);
+ L8 : do if ((i3 | 0) != 0 ? (i6 | 0) != 0 & (i4 | 0) != 0 : 0) {
+ i5 = i3;
+ i3 = i2;
+ while (1) {
+ i2 = _wcrtomb(i3, HEAP32[i5 >> 2] | 0, 0) | 0;
+ if ((i2 + 1 | 0) >>> 0 < 2) break;
+ i5 = (HEAP32[i9 >> 2] | 0) + 4 | 0;
+ HEAP32[i9 >> 2] = i5;
+ i4 = i4 + -1 | 0;
+ i1 = i1 + 1 | 0;
+ if (!((i6 | 0) != (i2 | 0) & (i4 | 0) != 0)) break L8; else {
+ i6 = i6 - i2 | 0;
+ i3 = i3 + i2 | 0;
+ }
+ }
+ if (!i2) HEAP32[i9 >> 2] = 0; else i1 = -1;
+ } while (0);
+ if (i8) HEAP32[i11 >> 2] = HEAP32[i9 >> 2];
+ STACKTOP = i10;
+ return i1 | 0;
+}
+
function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE7parseIfERPcPKc(i7, i6, i5) {
i7 = i7 | 0;
i6 = i6 | 0;
@@ -53862,131 +53487,47 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE7parseIfERPcPKc(i7
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0;
i17 = STACKTOP;
STACKTOP = STACKTOP + 48 | 0;
- i14 = i17;
- i12 = i17 + 32 | 0;
- i10 = i17 + 28 | 0;
- i9 = i17 + 24 | 0;
- i11 = i17 + 20 | 0;
- i13 = i17 + 16 | 0;
+ i11 = i17;
+ i10 = i17 + 32 | 0;
+ i9 = i17 + 28 | 0;
+ i12 = i17 + 24 | 0;
+ i13 = i17 + 20 | 0;
+ i14 = i17 + 16 | 0;
i15 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseParennedERPc(i7, i6) | 0;
i16 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE19parseMaybeBracketedERPcPKc(i7, i6, i5) | 0;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i6);
- i1 = HEAP32[i6 >> 2] | 0;
- i2 = HEAP8[i1 >> 0] | 0;
- i4 = i5;
+ i2 = HEAP32[i6 >> 2] | 0;
+ i3 = HEAP8[i2 >> 0] | 0;
+ i1 = i5;
while (1) {
- i3 = HEAP8[i4 >> 0] | 0;
- if (!(i3 << 24 >> 24)) {
+ i4 = HEAP8[i1 >> 0] | 0;
+ if (!(i4 << 24 >> 24)) {
i8 = 4;
break;
}
- if (i3 << 24 >> 24 == i2 << 24 >> 24) {
+ if (i4 << 24 >> 24 == i3 << 24 >> 24) {
i1 = 0;
break;
- } else i4 = i4 + 1 | 0;
+ } else i1 = i1 + 1 | 0;
}
if ((i8 | 0) == 4) {
- __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i14, i1);
- if ((HEAP32[i14 + 12 >> 2] | 0) == 0 ? (HEAP32[i14 >> 2] | 0) == (HEAP32[9240] | 0) : 0) {
- HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + (HEAP32[i14 + 8 >> 2] | 0);
+ __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i11, i2);
+ if ((HEAP32[i11 + 12 >> 2] | 0) == 0 ? (HEAP32[i11 >> 2] | 0) == (HEAP32[9608] | 0) : 0) {
+ HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + (HEAP32[i11 + 8 >> 2] | 0);
i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE19parseMaybeBracketedERPcPKc(i7, i6, i5) | 0;
} else i1 = 0;
}
- HEAP32[i9 >> 2] = i15;
- HEAP32[i11 >> 2] = i16;
- HEAP32[i13 >> 2] = i1;
- HEAP32[i10 >> 2] = HEAP32[i9 >> 2];
- HEAP32[i12 >> 2] = HEAP32[i11 >> 2];
- HEAP32[i14 >> 2] = HEAP32[i13 >> 2];
- i16 = __ZN6cashew12ValueBuilder6makeIfENS_3RefES1_S1_(i10, i12, i14) | 0;
+ HEAP32[i12 >> 2] = i15;
+ HEAP32[i13 >> 2] = i16;
+ HEAP32[i14 >> 2] = i1;
+ HEAP32[i9 >> 2] = HEAP32[i12 >> 2];
+ HEAP32[i10 >> 2] = HEAP32[i13 >> 2];
+ HEAP32[i11 >> 2] = HEAP32[i14 >> 2];
+ i16 = __ZN6cashew12ValueBuilder6makeIfENS_3RefES1_S1_(i9, i10, i11) | 0;
STACKTOP = i17;
return i16 | 0;
}
-function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner7visitIfEPNS_2IfE(i3, i4, i1) {
- i3 = i3 | 0;
- i4 = i4 | 0;
- i1 = i1 | 0;
- var i2 = 0, i5 = 0;
- i5 = STACKTOP;
- STACKTOP = STACKTOP + 32 | 0;
- i2 = i5;
- __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i2, i4, HEAP32[i1 + 8 >> 2] | 0);
- do if (!(HEAP32[i2 + 16 >> 2] | 0)) if (!(__ZN4wasm7Literal6geti32Ev(i2) | 0)) {
- i1 = HEAP32[i1 + 16 >> 2] | 0;
- if (!i1) {
- HEAP32[i3 >> 2] = 0;
- HEAPF64[i3 + 8 >> 3] = 0.0;
- HEAP32[i3 + 16 >> 2] = 0;
- break;
- } else {
- __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i3, i4, i1);
- break;
- }
- } else {
- __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i3, i4, HEAP32[i1 + 12 >> 2] | 0);
- if (HEAP32[i3 + 16 >> 2] | 0) break;
- if (HEAP32[i1 + 16 >> 2] | 0) break;
- HEAP32[i3 >> 2] = 0;
- HEAPF64[i3 + 8 >> 3] = 0.0;
- break;
- } else {
- HEAP32[i3 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i3 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i3 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- HEAP32[i3 + 12 >> 2] = HEAP32[i2 + 12 >> 2];
- HEAP32[i3 + 16 >> 2] = HEAP32[i2 + 16 >> 2];
- HEAP32[i3 + 20 >> 2] = HEAP32[i2 + 20 >> 2];
- } while (0);
- STACKTOP = i5;
- return;
-}
-
-function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN13FunctionScopeC2EPNS_8FunctionES9_(i9, i8, i5) {
- i9 = i9 | 0;
- i8 = i8 | 0;
- i5 = i5 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0;
- HEAP32[i9 + 4 >> 2] = 0;
- HEAP32[i9 + 8 >> 2] = 0;
- HEAP32[i9 >> 2] = i9 + 4;
- HEAP32[i9 + 12 >> 2] = i8;
- i6 = i8 + 8 | 0;
- i4 = i5 + 4 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- i1 = HEAP32[i5 >> 2] | 0;
- if (((HEAP32[i8 + 12 >> 2] | 0) - (HEAP32[i6 >> 2] | 0) >> 3 | 0) != (i2 - i1 >> 4 | 0)) ___assert_fail(19313, 19231, 130, 19357);
- i3 = 0;
- while (1) {
- if (i3 >>> 0 >= i2 - i1 >> 4 >>> 0) break;
- i2 = HEAP32[i6 >> 2] | 0;
- if ((HEAP32[i2 + (i3 << 3) + 4 >> 2] | 0) != (HEAP32[i1 + (i3 << 4) >> 2] | 0)) {
- i7 = 7;
- break;
- }
- i1 = __ZNSt3__13mapIN6cashew7IStringEN4wasm7LiteralENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i9, i2 + (i3 << 3) | 0) | 0;
- i2 = (HEAP32[i5 >> 2] | 0) + (i3 << 4) | 0;
- HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i1 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i1 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- HEAP32[i1 + 12 >> 2] = HEAP32[i2 + 12 >> 2];
- i1 = HEAP32[i5 >> 2] | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- i3 = i3 + 1 | 0;
- }
- if ((i7 | 0) == 7) ___assert_fail(19371, 19231, 132, 19357);
- i2 = HEAP32[i8 + 24 >> 2] | 0;
- i1 = HEAP32[i8 + 20 >> 2] | 0;
- while (1) {
- if ((i1 | 0) == (i2 | 0)) break;
- i7 = HEAP32[i1 + 4 >> 2] | 0;
- i8 = __ZNSt3__13mapIN6cashew7IStringEN4wasm7LiteralENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i9, i1) | 0;
- HEAP32[i8 >> 2] = i7;
- i1 = i1 + 8 | 0;
- }
- return;
-}
-
function __ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwm(i5, i3, i2, i1, i4) {
i5 = i5 | 0;
i3 = i3 | 0;
@@ -54004,13 +53545,13 @@ function __ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6
i5 = i6 + 8 | 0;
i11 = i6 + 12 | 0;
i9 = i6 + 4 | 0;
- HEAP8[i12 >> 0] = HEAP8[31402] | 0;
- HEAP8[i12 + 1 >> 0] = HEAP8[31403] | 0;
- HEAP8[i12 + 2 >> 0] = HEAP8[31404] | 0;
- HEAP8[i12 + 3 >> 0] = HEAP8[31405] | 0;
- HEAP8[i12 + 4 >> 0] = HEAP8[31406] | 0;
- HEAP8[i12 + 5 >> 0] = HEAP8[31407] | 0;
- __ZNSt3__114__num_put_base12__format_intEPcPKcbj(i12 + 1 | 0, 34373, 0, HEAP32[i2 + 4 >> 2] | 0);
+ HEAP8[i12 >> 0] = HEAP8[32866] | 0;
+ HEAP8[i12 + 1 >> 0] = HEAP8[32867] | 0;
+ HEAP8[i12 + 2 >> 0] = HEAP8[32868] | 0;
+ HEAP8[i12 + 3 >> 0] = HEAP8[32869] | 0;
+ HEAP8[i12 + 4 >> 0] = HEAP8[32870] | 0;
+ HEAP8[i12 + 5 >> 0] = HEAP8[32871] | 0;
+ __ZNSt3__114__num_put_base12__format_intEPcPKcbj(i12 + 1 | 0, 35837, 0, HEAP32[i2 + 4 >> 2] | 0);
i13 = __ZNSt3__16__clocEv() | 0;
HEAP32[i8 >> 2] = i4;
i12 = i14 + (__ZNSt3__112__snprintf_lEPcjP15__locale_structPKcz(i14, 12, i13, i12, i8) | 0) | 0;
@@ -54045,13 +53586,13 @@ function __ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6
i5 = i6 + 8 | 0;
i11 = i6 + 12 | 0;
i9 = i6 + 4 | 0;
- HEAP8[i12 >> 0] = HEAP8[31402] | 0;
- HEAP8[i12 + 1 >> 0] = HEAP8[31403] | 0;
- HEAP8[i12 + 2 >> 0] = HEAP8[31404] | 0;
- HEAP8[i12 + 3 >> 0] = HEAP8[31405] | 0;
- HEAP8[i12 + 4 >> 0] = HEAP8[31406] | 0;
- HEAP8[i12 + 5 >> 0] = HEAP8[31407] | 0;
- __ZNSt3__114__num_put_base12__format_intEPcPKcbj(i12 + 1 | 0, 34373, 1, HEAP32[i2 + 4 >> 2] | 0);
+ HEAP8[i12 >> 0] = HEAP8[32866] | 0;
+ HEAP8[i12 + 1 >> 0] = HEAP8[32867] | 0;
+ HEAP8[i12 + 2 >> 0] = HEAP8[32868] | 0;
+ HEAP8[i12 + 3 >> 0] = HEAP8[32869] | 0;
+ HEAP8[i12 + 4 >> 0] = HEAP8[32870] | 0;
+ HEAP8[i12 + 5 >> 0] = HEAP8[32871] | 0;
+ __ZNSt3__114__num_put_base12__format_intEPcPKcbj(i12 + 1 | 0, 35837, 1, HEAP32[i2 + 4 >> 2] | 0);
i13 = __ZNSt3__16__clocEv() | 0;
HEAP32[i8 >> 2] = i4;
i12 = i14 + (__ZNSt3__112__snprintf_lEPcjP15__locale_structPKcz(i14, 12, i13, i12, i8) | 0) | 0;
@@ -54086,13 +53627,13 @@ function __ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6
i5 = i6 + 8 | 0;
i11 = i6 + 12 | 0;
i9 = i6 + 4 | 0;
- HEAP8[i12 >> 0] = HEAP8[31402] | 0;
- HEAP8[i12 + 1 >> 0] = HEAP8[31403] | 0;
- HEAP8[i12 + 2 >> 0] = HEAP8[31404] | 0;
- HEAP8[i12 + 3 >> 0] = HEAP8[31405] | 0;
- HEAP8[i12 + 4 >> 0] = HEAP8[31406] | 0;
- HEAP8[i12 + 5 >> 0] = HEAP8[31407] | 0;
- __ZNSt3__114__num_put_base12__format_intEPcPKcbj(i12 + 1 | 0, 34373, 0, HEAP32[i2 + 4 >> 2] | 0);
+ HEAP8[i12 >> 0] = HEAP8[32866] | 0;
+ HEAP8[i12 + 1 >> 0] = HEAP8[32867] | 0;
+ HEAP8[i12 + 2 >> 0] = HEAP8[32868] | 0;
+ HEAP8[i12 + 3 >> 0] = HEAP8[32869] | 0;
+ HEAP8[i12 + 4 >> 0] = HEAP8[32870] | 0;
+ HEAP8[i12 + 5 >> 0] = HEAP8[32871] | 0;
+ __ZNSt3__114__num_put_base12__format_intEPcPKcbj(i12 + 1 | 0, 35837, 0, HEAP32[i2 + 4 >> 2] | 0);
i13 = __ZNSt3__16__clocEv() | 0;
HEAP32[i8 >> 2] = i4;
i12 = i14 + (__ZNSt3__112__snprintf_lEPcjP15__locale_structPKcz(i14, 12, i13, i12, i8) | 0) | 0;
@@ -54127,13 +53668,13 @@ function __ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6
i5 = i6 + 8 | 0;
i11 = i6 + 12 | 0;
i9 = i6 + 4 | 0;
- HEAP8[i12 >> 0] = HEAP8[31402] | 0;
- HEAP8[i12 + 1 >> 0] = HEAP8[31403] | 0;
- HEAP8[i12 + 2 >> 0] = HEAP8[31404] | 0;
- HEAP8[i12 + 3 >> 0] = HEAP8[31405] | 0;
- HEAP8[i12 + 4 >> 0] = HEAP8[31406] | 0;
- HEAP8[i12 + 5 >> 0] = HEAP8[31407] | 0;
- __ZNSt3__114__num_put_base12__format_intEPcPKcbj(i12 + 1 | 0, 34373, 1, HEAP32[i2 + 4 >> 2] | 0);
+ HEAP8[i12 >> 0] = HEAP8[32866] | 0;
+ HEAP8[i12 + 1 >> 0] = HEAP8[32867] | 0;
+ HEAP8[i12 + 2 >> 0] = HEAP8[32868] | 0;
+ HEAP8[i12 + 3 >> 0] = HEAP8[32869] | 0;
+ HEAP8[i12 + 4 >> 0] = HEAP8[32870] | 0;
+ HEAP8[i12 + 5 >> 0] = HEAP8[32871] | 0;
+ __ZNSt3__114__num_put_base12__format_intEPcPKcbj(i12 + 1 | 0, 35837, 1, HEAP32[i2 + 4 >> 2] | 0);
i13 = __ZNSt3__16__clocEv() | 0;
HEAP32[i8 >> 2] = i4;
i12 = i14 + (__ZNSt3__112__snprintf_lEPcjP15__locale_structPKcz(i14, 12, i13, i12, i8) | 0) | 0;
@@ -54151,16 +53692,16 @@ function __ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6
return i5 | 0;
}
-function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner15visitCallImportEPNS_10CallImportE(i1, i6, i4) {
- i1 = i1 | 0;
+function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner15visitCallImportEPNS_10CallImportE(i2, i6, i4) {
+ i2 = i2 | 0;
i6 = i6 | 0;
i4 = i4 | 0;
- var i2 = 0, i3 = 0, i5 = 0, i7 = 0, i8 = 0;
+ var i1 = 0, i3 = 0, i5 = 0, i7 = 0, i8 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 64 | 0;
i3 = i7 + 40 | 0;
i5 = i7 + 16 | 0;
- i2 = i7;
+ i1 = i7;
HEAP32[i3 >> 2] = 0;
HEAP32[i3 + 4 >> 2] = 0;
HEAP32[i3 + 8 >> 2] = 0;
@@ -54170,58 +53711,58 @@ function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vect
i5 = HEAP32[i6 + 12 >> 2] | 0;
i8 = HEAP32[(HEAP32[i5 >> 2] | 0) + 4 >> 2] | 0;
i6 = __ZNSt3__13mapIN4wasm4NameEPNS1_6ImportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_((HEAP32[i6 >> 2] | 0) + 60 | 0, i4 + 20 | 0) | 0;
- FUNCTION_TABLE_viiii[i8 & 15](i2, i5, HEAP32[i6 >> 2] | 0, i3);
- HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i1 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i1 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- HEAP32[i1 + 12 >> 2] = HEAP32[i2 + 12 >> 2];
- HEAP32[i1 + 16 >> 2] = 0;
+ FUNCTION_TABLE_viiii[i8 & 15](i1, i5, HEAP32[i6 >> 2] | 0, i3);
+ HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i2 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i2 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ HEAP32[i2 + 12 >> 2] = HEAP32[i1 + 12 >> 2];
+ HEAP32[i2 + 16 >> 2] = 0;
} else {
- HEAP32[i1 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i1 + 4 >> 2] = HEAP32[i5 + 4 >> 2];
- HEAP32[i1 + 8 >> 2] = HEAP32[i5 + 8 >> 2];
- HEAP32[i1 + 12 >> 2] = HEAP32[i5 + 12 >> 2];
- HEAP32[i1 + 16 >> 2] = HEAP32[i5 + 16 >> 2];
- HEAP32[i1 + 20 >> 2] = HEAP32[i5 + 20 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i5 >> 2];
+ HEAP32[i2 + 4 >> 2] = HEAP32[i5 + 4 >> 2];
+ HEAP32[i2 + 8 >> 2] = HEAP32[i5 + 8 >> 2];
+ HEAP32[i2 + 12 >> 2] = HEAP32[i5 + 12 >> 2];
+ HEAP32[i2 + 16 >> 2] = HEAP32[i5 + 16 >> 2];
+ HEAP32[i2 + 20 >> 2] = HEAP32[i5 + 20 >> 2];
}
__ZNSt3__113__vector_baseIN4wasm7LiteralENS_9allocatorIS2_EEED2Ev(i3);
STACKTOP = i7;
return;
}
-function _load_s_expr2wasm(i3, i1) {
- i3 = i3 | 0;
+function _load_s_expr2wasm(i4, i1) {
+ i4 = i4 | 0;
i1 = i1 | 0;
- var i2 = 0, i4 = 0, i5 = 0, i6 = 0;
+ var i2 = 0, i3 = 0, i5 = 0, i6 = 0;
i5 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i2 = i5;
- i4 = i5 + 24 | 0;
+ i3 = i5 + 24 | 0;
__ZL12prepare2wasmv();
- if (HEAP8[40892] | 0) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 13812) | 0;
+ if (HEAP8[42364] | 0) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 14331) | 0;
i1 = __Znwj(24) | 0;
- __ZN4wasm17SExpressionParserC2EPc(i1, i3);
- HEAP32[9221] = i1;
+ __ZN4wasm17SExpressionParserC2EPc(i1, i4);
+ HEAP32[9589] = i1;
i1 = HEAP32[i1 + 20 >> 2] | 0;
- if (HEAP8[40892] | 0 ? (__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEERNS_7ElementE(38004, i1) | 0, 10) | 0, HEAP8[40892] | 0) : 0) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 13533) | 0;
- i6 = __Znwj(160) | 0;
- _memset(i6 | 0, 0, 160) | 0;
+ if (HEAP8[42364] | 0 ? (__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEERNS_7ElementE(39476, i1) | 0, 10) | 0, HEAP8[42364] | 0) : 0) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 14052) | 0;
+ i6 = __Znwj(164) | 0;
+ _memset(i6 | 0, 0, 164) | 0;
__ZN4wasm16AllocatingModuleC2Ev(i6);
- HEAP32[9224] = i6;
- i3 = __Znwj(96) | 0;
+ HEAP32[9592] = i6;
+ i4 = __Znwj(96) | 0;
i1 = __ZN4wasm7Element4listEv(i1) | 0;
i1 = HEAP32[HEAP32[i1 >> 2] >> 2] | 0;
HEAP32[i2 + 16 >> 2] = i2;
- HEAP32[i2 >> 2] = 2904;
- __ZN4wasm22SExpressionWasmBuilderC2ERNS_16AllocatingModuleERNS_7ElementENSt3__18functionIFvvEEEb(i3, i6, i1, i2, 0);
- HEAP32[9222] = i3;
+ HEAP32[i2 >> 2] = 3344;
+ __ZN4wasm22SExpressionWasmBuilderC2ERNS_16AllocatingModuleERNS_7ElementENSt3__18functionIFvvEEEb(i4, i6, i1, i2, 0);
+ HEAP32[9590] = i4;
__ZNSt3__18functionIFvvEED2Ev(i2);
i2 = _emscripten_asm_const_i(0) | 0;
- i3 = HEAP32[9224] | 0;
- HEAP32[i3 + 108 >> 2] = i2;
- HEAP32[i4 >> 2] = HEAP32[9178];
- i4 = (__ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_(i3 + 72 | 0, i4) | 0) == (i3 + 76 | 0);
- HEAP32[i3 + 112 >> 2] = i4 ? i2 : -1;
+ i4 = HEAP32[9592] | 0;
+ HEAP32[i4 + 108 >> 2] = i2;
+ HEAP32[i3 >> 2] = HEAP32[9544];
+ i3 = (__ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_(i4 + 72 | 0, i3) | 0) == (i4 + 76 | 0);
+ HEAP32[i4 + 112 >> 2] = i3 ? i2 : -1;
STACKTOP = i5;
return;
}
@@ -54232,10 +53773,10 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterBraceE
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i9 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i5 = i9 + 12 | 0;
- i3 = i9 + 8 | 0;
- i2 = i9 + 4 | 0;
- i4 = i9;
+ i3 = i9 + 12 | 0;
+ i2 = i9 + 8 | 0;
+ i4 = i9 + 4 | 0;
+ i5 = i9;
__ZNSt3__16vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE6resizeEj(i6, (((HEAP32[i6 + 4 >> 2] | 0) - (HEAP32[i6 >> 2] | 0) | 0) / 12 | 0) + 1 | 0);
i7 = __ZN6cashew12ValueBuilder9makeArrayEv() | 0;
L1 : while (1) {
@@ -54255,12 +53796,12 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterBraceE
default:
{}
}
- i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i6, i8, 23229) | 0;
- HEAP32[i2 >> 2] = i7;
- HEAP32[i4 >> 2] = i1;
- HEAP32[i3 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i5 >> 2] = HEAP32[i4 >> 2];
- __ZN6cashew12ValueBuilder13appendToArrayENS_3RefES1_(i3, i5);
+ i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i6, i8, 23817) | 0;
+ HEAP32[i4 >> 2] = i7;
+ HEAP32[i5 >> 2] = i1;
+ HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i5 >> 2];
+ __ZN6cashew12ValueBuilder13appendToArrayENS_3RefES1_(i2, i3);
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i8);
i1 = HEAP32[i8 >> 2] | 0;
switch (HEAP8[i1 >> 0] | 0) {
@@ -54279,7 +53820,7 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterBraceE
}
HEAP32[i8 >> 2] = i1 + 1;
}
- if ((i2 | 0) == 3) ___assert_fail(23208, 22233, 671, 23213); else if ((i2 | 0) == 6) _abort(); else if ((i2 | 0) == 7) {
+ if ((i2 | 0) == 3) ___assert_fail(23796, 22821, 671, 23801); else if ((i2 | 0) == 6) _abort(); else if ((i2 | 0) == 7) {
HEAP32[i8 >> 2] = i1 + 1;
STACKTOP = i9;
return i7 | 0;
@@ -54287,44 +53828,44 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterBraceE
return 0;
}
-function __ZN4wasm4Host7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i6, i5, i3) {
+function __ZN4wasm4Host7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i6, i5, i4) {
i6 = i6 | 0;
i5 = i5 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i7 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i2 = i7 + 8 | 0;
- i4 = i7 + 4 | 0;
- i1 = i7;
- HEAP32[i4 >> 2] = i3;
+ i1 = i7 + 8 | 0;
+ i2 = i7 + 4 | 0;
+ i3 = i7;
+ HEAP32[i2 >> 2] = i4;
switch (HEAP32[i6 + 8 >> 2] | 0) {
case 0:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i5, 17195, 0) | 0, 41) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i5, 17789, 0) | 0, 41) | 0;
break;
}
case 1:
{
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i5, 17204, 0) | 0, 41) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i5, 17798, 0) | 0, 41) | 0;
break;
}
case 2:
{
- __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i5, 17216, 0) | 0;
+ __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i5, 17810, 0) | 0;
__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i5, 10) | 0;
- i3 = i3 + 1 | 0;
- HEAP32[i4 >> 2] = i3;
- __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i5, i3, HEAP32[HEAP32[i6 + 16 >> 2] >> 2] | 0) | 0;
- __Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i5, i4) | 0;
+ i4 = i4 + 1 | 0;
+ HEAP32[i2 >> 2] = i4;
+ __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i5, i4, HEAP32[HEAP32[i6 + 16 >> 2] >> 2] | 0) | 0;
+ __Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i5, i2) | 0;
break;
}
case 3:
{
- i4 = __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i5, 17228, 0) | 0;
- HEAP32[i1 >> 2] = HEAP32[i6 + 12 >> 2];
- HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i4, i2) | 0, 41) | 0;
+ i4 = __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i5, 17822, 0) | 0;
+ HEAP32[i3 >> 2] = HEAP32[i6 + 12 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i4, i1) | 0, 41) | 0;
break;
}
default:
@@ -54351,18 +53892,18 @@ function __ZNSt3__116__pad_and_outputIwNS_11char_traitsIwEEEENS_19ostreambuf_ite
i5 = i2 - i13 >> 2;
i6 = i3 + 12 | 0;
i3 = HEAP32[i6 >> 2] | 0;
- i3 = (i3 | 0) > (i5 | 0) ? i3 - i5 | 0 : 0;
- i5 = i10;
- i13 = i5 - i13 | 0;
+ i5 = (i3 | 0) > (i5 | 0) ? i3 - i5 | 0 : 0;
+ i3 = i10;
+ i13 = i3 - i13 | 0;
i4 = i13 >> 2;
if ((i13 | 0) > 0 ? (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 48 >> 2] & 31](i1, i8, i4) | 0) != (i4 | 0) : 0) {
HEAP32[i11 >> 2] = 0;
i1 = 0;
break;
}
- do if ((i3 | 0) > 0) {
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEjw(i9, i3, i7);
- if ((FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 48 >> 2] & 31](i1, (HEAP8[i9 >> 0] & 1) == 0 ? i9 + 4 | 0 : HEAP32[i9 + 8 >> 2] | 0, i3) | 0) == (i3 | 0)) {
+ do if ((i5 | 0) > 0) {
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEjw(i9, i5, i7);
+ if ((FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 48 >> 2] & 31](i1, (HEAP8[i9 >> 0] & 1) == 0 ? i9 + 4 | 0 : HEAP32[i9 + 8 >> 2] | 0, i5) | 0) == (i5 | 0)) {
__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i9);
break;
} else {
@@ -54372,7 +53913,7 @@ function __ZNSt3__116__pad_and_outputIwNS_11char_traitsIwEEEENS_19ostreambuf_ite
break L1;
}
} while (0);
- i13 = i2 - i5 | 0;
+ i13 = i2 - i3 | 0;
i2 = i13 >> 2;
if ((i13 | 0) > 0 ? (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 48 >> 2] & 31](i1, i10, i2) | 0) != (i2 | 0) : 0) {
HEAP32[i11 >> 2] = 0;
@@ -54385,6 +53926,46 @@ function __ZNSt3__116__pad_and_outputIwNS_11char_traitsIwEEEENS_19ostreambuf_ite
return i1 | 0;
}
+function __ZN4wasm15RemoveUnusedBrs7visitIfEPNS_2IfE(i7, i6) {
+ i7 = i7 | 0;
+ i6 = i6 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0;
+ i8 = STACKTOP;
+ STACKTOP = STACKTOP + 16 | 0;
+ i4 = i8 + 4 | 0;
+ i5 = i8;
+ i3 = i6 + 16 | 0;
+ L1 : do if (!(HEAP32[i3 >> 2] | 0)) {
+ i1 = HEAP32[i6 + 12 >> 2] | 0;
+ if (!((i1 | 0) == 0 | (HEAP32[i1 >> 2] | 0) != 4) ? (i2 = i1 + 8 | 0, (HEAP32[i2 >> 2] | 0) == 0) : 0) {
+ HEAP32[i2 >> 2] = HEAP32[i6 + 8 >> 2];
+ HEAP32[i7 + 8 >> 2] = i1;
+ }
+ } else {
+ i1 = i6 + 4 | 0;
+ switch (HEAP32[i1 >> 2] | 0) {
+ case 0:
+ case 5:
+ break;
+ default:
+ break L1;
+ }
+ HEAP32[i5 >> 2] = i4;
+ i2 = i6 + 12 | 0;
+ if (__ZZN4wasm15RemoveUnusedBrs7visitIfEPNS_2IfEENKUlPNS_10ExpressionEbE_clES4_b(i5, HEAP32[i2 >> 2] | 0, 0) | 0 ? (i9 = __ZZN4wasm15RemoveUnusedBrs7visitIfEPNS_2IfEENKUlPNS_10ExpressionEbE_clES4_b(i5, HEAP32[i2 >> 2] | 0, 0) | 0, (i9 | 0) == (__ZZN4wasm15RemoveUnusedBrs7visitIfEPNS_2IfEENKUlPNS_10ExpressionEbE_clES4_b(i5, HEAP32[i3 >> 2] | 0, 0) | 0)) : 0) {
+ i9 = __ZN4wasm10Expression4castINS_5BreakEEEPT_v(__ZZN4wasm15RemoveUnusedBrs7visitIfEPNS_2IfEENKUlPNS_10ExpressionEE_clES4_(i4, HEAP32[i2 >> 2] | 0) | 0) | 0;
+ __ZZN4wasm15RemoveUnusedBrs7visitIfEPNS_2IfEENKUlPNS_10ExpressionEbE_clES4_b(i5, HEAP32[i2 >> 2] | 0, 1) | 0;
+ __ZZN4wasm15RemoveUnusedBrs7visitIfEPNS_2IfEENKUlPNS_10ExpressionEbE_clES4_b(i5, HEAP32[i3 >> 2] | 0, 1) | 0;
+ i5 = i9 + 16 | 0;
+ HEAP32[i1 >> 2] = HEAP32[(HEAP32[i5 >> 2] | 0) + 4 >> 2];
+ HEAP32[i5 >> 2] = i6;
+ HEAP32[i7 + 8 >> 2] = i9;
+ }
+ } while (0);
+ STACKTOP = i8;
+ return;
+}
+
function __ZZ11instantiateEN19JSExternalInterface4loadEPN4wasm4LoadEj(i3, i1, i4, i2) {
i3 = i3 | 0;
i1 = i1 | 0;
@@ -54392,7 +53973,7 @@ function __ZZ11instantiateEN19JSExternalInterface4loadEPN4wasm4LoadEj(i3, i1, i4
i2 = i2 | 0;
var d5 = 0.0;
i1 = HEAP32[i4 + 8 >> 2] | 0;
- if ((HEAP32[i4 + 20 >> 2] | 0) >>> 0 < i1 >>> 0) ___assert_fail(18351, 14162, 203, 18378);
+ if ((HEAP32[i4 + 20 >> 2] | 0) >>> 0 < i1 >>> 0) ___assert_fail(18866, 14681, 203, 18893);
L4 : do if (((HEAP32[i4 + 4 >> 2] | 0) + -3 | 0) >>> 0 < 2) switch (i1 | 0) {
case 4:
{
@@ -54453,47 +54034,47 @@ function __ZZ11instantiateEN19JSExternalInterface4loadEPN4wasm4LoadEj(i3, i1, i4
return;
}
-function __ZNK10__cxxabiv121__vmi_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib(i1, i11, i8, i7, i12, i15) {
+function __ZNK10__cxxabiv121__vmi_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib(i1, i13, i12, i11, i14, i15) {
i1 = i1 | 0;
- i11 = i11 | 0;
- i8 = i8 | 0;
- i7 = i7 | 0;
+ i13 = i13 | 0;
i12 = i12 | 0;
+ i11 = i11 | 0;
+ i14 = i14 | 0;
i15 = i15 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0, i10 = 0, i13 = 0, i14 = 0;
- if ((i1 | 0) == (HEAP32[i11 + 8 >> 2] | 0)) __ZNK10__cxxabiv117__class_type_info29process_static_type_above_dstEPNS_19__dynamic_cast_infoEPKvS4_i(0, i11, i8, i7, i12); else {
- i10 = i11 + 52 | 0;
- i4 = HEAP16[i10 >> 1] | 0;
- i3 = i4 & 255;
- i9 = i11 + 53 | 0;
- i4 = (i4 & 65535) >>> 8 & 255;
- i14 = HEAP32[i1 + 12 >> 2] | 0;
- i6 = i1 + 16 + (i14 << 3) | 0;
- HEAP8[i10 >> 0] = 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0;
+ if ((i1 | 0) == (HEAP32[i13 + 8 >> 2] | 0)) __ZNK10__cxxabiv117__class_type_info29process_static_type_above_dstEPNS_19__dynamic_cast_infoEPKvS4_i(0, i13, i12, i11, i14); else {
+ i7 = i13 + 52 | 0;
+ i10 = HEAP16[i7 >> 1] | 0;
+ i8 = i10 & 255;
+ i9 = i13 + 53 | 0;
+ i10 = (i10 & 65535) >>> 8 & 255;
+ i6 = HEAP32[i1 + 12 >> 2] | 0;
+ i3 = i1 + 16 + (i6 << 3) | 0;
+ HEAP8[i7 >> 0] = 0;
HEAP8[i9 >> 0] = 0;
- __ZNK10__cxxabiv122__base_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib(i1 + 16 | 0, i11, i8, i7, i12, i15);
- L4 : do if ((i14 | 0) > 1) {
- i13 = i11 + 24 | 0;
+ __ZNK10__cxxabiv122__base_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib(i1 + 16 | 0, i13, i12, i11, i14, i15);
+ L4 : do if ((i6 | 0) > 1) {
+ i4 = i13 + 24 | 0;
i5 = i1 + 8 | 0;
- i14 = i11 + 54 | 0;
+ i6 = i13 + 54 | 0;
i2 = i1 + 24 | 0;
do {
- if (HEAP8[i14 >> 0] | 0) break L4;
- i1 = HEAP16[i10 >> 1] | 0;
+ if (HEAP8[i6 >> 0] | 0) break L4;
+ i1 = HEAP16[i7 >> 1] | 0;
if (!((i1 & 255) << 24 >> 24)) {
if ((i1 & 65535) >= 256 ? (HEAP32[i5 >> 2] & 1 | 0) == 0 : 0) break L4;
} else {
- if ((HEAP32[i13 >> 2] | 0) == 1) break L4;
+ if ((HEAP32[i4 >> 2] | 0) == 1) break L4;
if (!(HEAP32[i5 >> 2] & 2)) break L4;
}
- HEAP8[i10 >> 0] = 0;
+ HEAP8[i7 >> 0] = 0;
HEAP8[i9 >> 0] = 0;
- __ZNK10__cxxabiv122__base_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib(i2, i11, i8, i7, i12, i15);
+ __ZNK10__cxxabiv122__base_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib(i2, i13, i12, i11, i14, i15);
i2 = i2 + 8 | 0;
- } while (i2 >>> 0 < i6 >>> 0);
+ } while (i2 >>> 0 < i3 >>> 0);
} while (0);
- HEAP8[i10 >> 0] = i3;
- HEAP8[i9 >> 0] = i4;
+ HEAP8[i7 >> 0] = i8;
+ HEAP8[i9 >> 0] = i10;
}
return;
}
@@ -54507,38 +54088,38 @@ function ___dynamic_cast(i2, i3, i12, i1) {
i14 = STACKTOP;
STACKTOP = STACKTOP + 64 | 0;
i13 = i14;
- i10 = HEAP32[i2 >> 2] | 0;
- i11 = i2 + (HEAP32[i10 + -8 >> 2] | 0) | 0;
- i10 = HEAP32[i10 + -4 >> 2] | 0;
+ i11 = HEAP32[i2 >> 2] | 0;
+ i10 = i2 + (HEAP32[i11 + -8 >> 2] | 0) | 0;
+ i11 = HEAP32[i11 + -4 >> 2] | 0;
HEAP32[i13 >> 2] = i12;
HEAP32[i13 + 4 >> 2] = i2;
HEAP32[i13 + 8 >> 2] = i3;
HEAP32[i13 + 12 >> 2] = i1;
- i2 = i13 + 16 | 0;
- i3 = i13 + 20 | 0;
- i5 = i13 + 24 | 0;
- i7 = i13 + 28 | 0;
- i6 = i13 + 32 | 0;
- i4 = i13 + 40 | 0;
- i1 = (i10 | 0) == (i12 | 0);
- i8 = i2;
+ i7 = i13 + 16 | 0;
+ i1 = i13 + 20 | 0;
+ i2 = i13 + 24 | 0;
+ i3 = i13 + 28 | 0;
+ i4 = i13 + 32 | 0;
+ i5 = i13 + 40 | 0;
+ i6 = (i11 | 0) == (i12 | 0);
+ i8 = i7;
i9 = i8 + 36 | 0;
do {
HEAP32[i8 >> 2] = 0;
i8 = i8 + 4 | 0;
} while ((i8 | 0) < (i9 | 0));
- HEAP16[i2 + 36 >> 1] = 0;
- HEAP8[i2 + 38 >> 0] = 0;
- L1 : do if (i1) {
+ HEAP16[i7 + 36 >> 1] = 0;
+ HEAP8[i7 + 38 >> 0] = 0;
+ L1 : do if (i6) {
HEAP32[i13 + 48 >> 2] = 1;
- FUNCTION_TABLE_viiiiii[HEAP32[(HEAP32[i12 >> 2] | 0) + 20 >> 2] & 15](i12, i13, i11, i11, 1, 0);
- i1 = (HEAP32[i5 >> 2] | 0) == 1 ? i11 : 0;
+ FUNCTION_TABLE_viiiiii[HEAP32[(HEAP32[i12 >> 2] | 0) + 20 >> 2] & 15](i12, i13, i10, i10, 1, 0);
+ i1 = (HEAP32[i2 >> 2] | 0) == 1 ? i10 : 0;
} else {
- FUNCTION_TABLE_viiiii[HEAP32[(HEAP32[i10 >> 2] | 0) + 24 >> 2] & 3](i10, i13, i11, 1, 0);
+ FUNCTION_TABLE_viiiii[HEAP32[(HEAP32[i11 >> 2] | 0) + 24 >> 2] & 3](i11, i13, i10, 1, 0);
switch (HEAP32[i13 + 36 >> 2] | 0) {
case 0:
{
- i1 = (HEAP32[i4 >> 2] | 0) == 1 & (HEAP32[i7 >> 2] | 0) == 1 & (HEAP32[i6 >> 2] | 0) == 1 ? HEAP32[i3 >> 2] | 0 : 0;
+ i1 = (HEAP32[i5 >> 2] | 0) == 1 & (HEAP32[i3 >> 2] | 0) == 1 & (HEAP32[i4 >> 2] | 0) == 1 ? HEAP32[i1 >> 2] | 0 : 0;
break L1;
}
case 1:
@@ -54549,11 +54130,11 @@ function ___dynamic_cast(i2, i3, i12, i1) {
break L1;
}
}
- if ((HEAP32[i5 >> 2] | 0) != 1 ? !((HEAP32[i4 >> 2] | 0) == 0 & (HEAP32[i7 >> 2] | 0) == 1 & (HEAP32[i6 >> 2] | 0) == 1) : 0) {
+ if ((HEAP32[i2 >> 2] | 0) != 1 ? !((HEAP32[i5 >> 2] | 0) == 0 & (HEAP32[i3 >> 2] | 0) == 1 & (HEAP32[i4 >> 2] | 0) == 1) : 0) {
i1 = 0;
break;
}
- i1 = HEAP32[i2 >> 2] | 0;
+ i1 = HEAP32[i7 >> 2] | 0;
} while (0);
STACKTOP = i14;
return i1 | 0;
@@ -54582,8 +54163,8 @@ function __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3str
HEAP32[i5 >> 2] = i1;
i2 = i3;
}
- HEAP32[i8 + 8 >> 2] = i3;
- HEAP32[i8 + 12 >> 2] = i2;
+ HEAP32[i8 + 8 >> 2] = i2;
+ HEAP32[i8 + 12 >> 2] = i3;
HEAP32[i8 + 16 >> 2] = i1;
}
if (i4 & 16 | 0) {
@@ -54611,82 +54192,14 @@ function __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3str
i3 = HEAP32[i8 + 36 >> 2] | 0;
}
i1 = i8 + 24 | 0;
- HEAP32[i1 >> 2] = i4;
- HEAP32[i8 + 20 >> 2] = i4;
- HEAP32[i8 + 28 >> 2] = i2 + i3;
- if (HEAP32[i7 >> 2] & 3 | 0) HEAP32[i1 >> 2] = i4 + i5;
+ HEAP32[i1 >> 2] = i2;
+ HEAP32[i8 + 20 >> 2] = i2;
+ HEAP32[i8 + 28 >> 2] = i4 + i3;
+ if (HEAP32[i7 >> 2] & 3 | 0) HEAP32[i1 >> 2] = i2 + i5;
}
return;
}
-function _wcsnrtombs(i3, i11, i5, i2, i1) {
- i3 = i3 | 0;
- i11 = i11 | 0;
- i5 = i5 | 0;
- i2 = i2 | 0;
- i1 = i1 | 0;
- var i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i13 = 0;
- i10 = STACKTOP;
- STACKTOP = STACKTOP + 272 | 0;
- i7 = i10 + 8 | 0;
- i9 = i10;
- i4 = HEAP32[i11 >> 2] | 0;
- HEAP32[i9 >> 2] = i4;
- i8 = (i3 | 0) != 0;
- i6 = i8 ? i2 : 256;
- i2 = i8 ? i3 : i7;
- i1 = i4;
- L1 : do if ((i6 | 0) != 0 & (i4 | 0) != 0) {
- i4 = i1;
- i1 = 0;
- i3 = i5;
- while (1) {
- i5 = i3 >>> 0 >= i6 >>> 0;
- if (!(i5 | i3 >>> 0 > 32)) break L1;
- i4 = i5 ? i6 : i3;
- i3 = i3 - i4 | 0;
- i4 = _wcsrtombs(i2, i9, i4, 0) | 0;
- if ((i4 | 0) == -1) break;
- i13 = (i2 | 0) == (i7 | 0);
- i12 = i13 ? 0 : i4;
- i5 = i6 - i12 | 0;
- i2 = i13 ? i2 : i2 + i4 | 0;
- i1 = i4 + i1 | 0;
- i4 = HEAP32[i9 >> 2] | 0;
- if ((i6 | 0) != (i12 | 0) & (i4 | 0) != 0) i6 = i5; else {
- i6 = i5;
- break L1;
- }
- }
- i4 = HEAP32[i9 >> 2] | 0;
- i1 = -1;
- i6 = 0;
- } else {
- i4 = i1;
- i1 = 0;
- i3 = i5;
- } while (0);
- L8 : do if ((i4 | 0) != 0 ? (i6 | 0) != 0 & (i3 | 0) != 0 : 0) {
- i5 = i2;
- while (1) {
- i2 = _wcrtomb(i5, HEAP32[i4 >> 2] | 0, 0) | 0;
- if ((i2 + 1 | 0) >>> 0 < 2) break;
- i4 = (HEAP32[i9 >> 2] | 0) + 4 | 0;
- HEAP32[i9 >> 2] = i4;
- i3 = i3 + -1 | 0;
- i1 = i1 + 1 | 0;
- if (!((i6 | 0) != (i2 | 0) & (i3 | 0) != 0)) break L8; else {
- i6 = i6 - i2 | 0;
- i5 = i5 + i2 | 0;
- }
- }
- if (!i2) HEAP32[i9 >> 2] = 0; else i1 = -1;
- } while (0);
- if (i8) HEAP32[i11 >> 2] = HEAP32[i9 >> 2];
- STACKTOP = i10;
- return i1 | 0;
-}
-
function _vfprintf(i15, i11, i1) {
i15 = i15 | 0;
i11 = i11 | 0;
@@ -54694,7 +54207,7 @@ function _vfprintf(i15, i11, i1) {
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i13 = 0, i14 = 0, i16 = 0;
i16 = STACKTOP;
STACKTOP = STACKTOP + 224 | 0;
- i9 = i16 + 120 | 0;
+ i10 = i16 + 120 | 0;
i14 = i16 + 80 | 0;
i13 = i16;
i12 = i16 + 136 | 0;
@@ -54704,57 +54217,106 @@ function _vfprintf(i15, i11, i1) {
HEAP32[i2 >> 2] = 0;
i2 = i2 + 4 | 0;
} while ((i2 | 0) < (i3 | 0));
- HEAP32[i9 >> 2] = HEAP32[i1 >> 2];
- if ((_printf_core(0, i11, i9, i13, i14) | 0) < 0) i1 = -1; else {
- if ((HEAP32[i15 + 76 >> 2] | 0) > -1) i10 = ___lockfile(i15) | 0; else i10 = 0;
+ HEAP32[i10 >> 2] = HEAP32[i1 >> 2];
+ if ((_printf_core(0, i11, i10, i13, i14) | 0) < 0) i1 = -1; else {
+ if ((HEAP32[i15 + 76 >> 2] | 0) > -1) i8 = ___lockfile(i15) | 0; else i8 = 0;
i1 = HEAP32[i15 >> 2] | 0;
- i8 = i1 & 32;
+ i9 = i1 & 32;
if ((HEAP8[i15 + 74 >> 0] | 0) < 1) HEAP32[i15 >> 2] = i1 & -33;
- i4 = i15 + 48 | 0;
- if (!(HEAP32[i4 >> 2] | 0)) {
+ i1 = i15 + 48 | 0;
+ if (!(HEAP32[i1 >> 2] | 0)) {
i3 = i15 + 44 | 0;
- i1 = HEAP32[i3 >> 2] | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
HEAP32[i3 >> 2] = i12;
i5 = i15 + 28 | 0;
HEAP32[i5 >> 2] = i12;
- i7 = i15 + 20 | 0;
- HEAP32[i7 >> 2] = i12;
- HEAP32[i4 >> 2] = 80;
- i6 = i15 + 16 | 0;
- HEAP32[i6 >> 2] = i12 + 80;
- i2 = _printf_core(i15, i11, i9, i13, i14) | 0;
- if (i1) {
+ i6 = i15 + 20 | 0;
+ HEAP32[i6 >> 2] = i12;
+ HEAP32[i1 >> 2] = 80;
+ i7 = i15 + 16 | 0;
+ HEAP32[i7 >> 2] = i12 + 80;
+ i2 = _printf_core(i15, i11, i10, i13, i14) | 0;
+ if (i4) {
FUNCTION_TABLE_iiii[HEAP32[i15 + 36 >> 2] & 31](i15, 0, 0) | 0;
- i2 = (HEAP32[i7 >> 2] | 0) == 0 ? -1 : i2;
- HEAP32[i3 >> 2] = i1;
- HEAP32[i4 >> 2] = 0;
- HEAP32[i6 >> 2] = 0;
- HEAP32[i5 >> 2] = 0;
+ i2 = (HEAP32[i6 >> 2] | 0) == 0 ? -1 : i2;
+ HEAP32[i3 >> 2] = i4;
+ HEAP32[i1 >> 2] = 0;
HEAP32[i7 >> 2] = 0;
+ HEAP32[i5 >> 2] = 0;
+ HEAP32[i6 >> 2] = 0;
}
- } else i2 = _printf_core(i15, i11, i9, i13, i14) | 0;
+ } else i2 = _printf_core(i15, i11, i10, i13, i14) | 0;
i1 = HEAP32[i15 >> 2] | 0;
- HEAP32[i15 >> 2] = i1 | i8;
- if (i10 | 0) ___unlockfile(i15);
+ HEAP32[i15 >> 2] = i1 | i9;
+ if (i8 | 0) ___unlockfile(i15);
i1 = (i1 & 32 | 0) == 0 ? i2 : -1;
}
STACKTOP = i16;
return i1 | 0;
}
-function __ZNSt3__111__stdoutbufIwE8overflowEj(i3, i12) {
+function __ZNSt3__116__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i11, i8, i10, i2, i3, i7) {
+ i11 = i11 | 0;
+ i8 = i8 | 0;
+ i10 = i10 | 0;
+ i2 = i2 | 0;
i3 = i3 | 0;
- i12 = i12 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i13 = 0, i14 = 0;
+ i7 = i7 | 0;
+ var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0, i12 = 0, i13 = 0;
+ i12 = STACKTOP;
+ STACKTOP = STACKTOP + 16 | 0;
+ i9 = i12;
+ i1 = HEAP32[i11 >> 2] | 0;
+ L1 : do if (!i1) i1 = 0; else {
+ i13 = i8;
+ i5 = i2 - i13 | 0;
+ i6 = i3 + 12 | 0;
+ i4 = HEAP32[i6 >> 2] | 0;
+ i5 = (i4 | 0) > (i5 | 0) ? i4 - i5 | 0 : 0;
+ i4 = i10;
+ i3 = i4 - i13 | 0;
+ if ((i3 | 0) > 0 ? (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 48 >> 2] & 31](i1, i8, i3) | 0) != (i3 | 0) : 0) {
+ HEAP32[i11 >> 2] = 0;
+ i1 = 0;
+ break;
+ }
+ do if ((i5 | 0) > 0) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEjc(i9, i5, i7);
+ if ((FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 48 >> 2] & 31](i1, (HEAP8[i9 >> 0] & 1) == 0 ? i9 + 1 | 0 : HEAP32[i9 + 8 >> 2] | 0, i5) | 0) == (i5 | 0)) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i9);
+ break;
+ } else {
+ HEAP32[i11 >> 2] = 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i9);
+ i1 = 0;
+ break L1;
+ }
+ } while (0);
+ i2 = i2 - i4 | 0;
+ if ((i2 | 0) > 0 ? (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 48 >> 2] & 31](i1, i10, i2) | 0) != (i2 | 0) : 0) {
+ HEAP32[i11 >> 2] = 0;
+ i1 = 0;
+ break;
+ }
+ HEAP32[i6 >> 2] = 0;
+ } while (0);
+ STACKTOP = i12;
+ return i1 | 0;
+}
+
+function __ZNSt3__111__stdoutbufIwE8overflowEj(i3, i13) {
+ i3 = i3 | 0;
+ i13 = i13 | 0;
+ var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i14 = 0;
i14 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i11 = i14 + 16 | 0;
i1 = i14 + 8 | 0;
i10 = i14 + 4 | 0;
i9 = i14;
- i13 = (i12 | 0) == -1;
- do if (!i13) {
- HEAP32[i1 >> 2] = i12;
+ i12 = (i13 | 0) == -1;
+ do if (!i12) {
+ HEAP32[i1 >> 2] = i13;
if (HEAP8[i3 + 44 >> 0] | 0) if ((_fwrite(i1, 4, 1, HEAP32[i3 + 32 >> 2] | 0) | 0) == 1) {
i2 = 14;
break;
@@ -54763,15 +54325,15 @@ function __ZNSt3__111__stdoutbufIwE8overflowEj(i3, i12) {
break;
}
HEAP32[i10 >> 2] = i11;
- i6 = i1 + 4 | 0;
- i4 = i3 + 36 | 0;
- i5 = i3 + 40 | 0;
- i7 = i11 + 8 | 0;
- i8 = i11;
+ i7 = i1 + 4 | 0;
+ i8 = i3 + 36 | 0;
+ i4 = i3 + 40 | 0;
+ i5 = i11 + 8 | 0;
+ i6 = i11;
i3 = i3 + 32 | 0;
while (1) {
- i2 = HEAP32[i4 >> 2] | 0;
- i2 = FUNCTION_TABLE_iiiiiiiii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 15](i2, HEAP32[i5 >> 2] | 0, i1, i6, i9, i11, i7, i10) | 0;
+ i2 = HEAP32[i8 >> 2] | 0;
+ i2 = FUNCTION_TABLE_iiiiiiiii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 15](i2, HEAP32[i4 >> 2] | 0, i1, i7, i9, i11, i5, i10) | 0;
if ((HEAP32[i9 >> 2] | 0) == (i1 | 0)) {
i2 = 13;
break;
@@ -54784,7 +54346,7 @@ function __ZNSt3__111__stdoutbufIwE8overflowEj(i3, i12) {
i2 = 13;
break;
}
- i1 = (HEAP32[i10 >> 2] | 0) - i8 | 0;
+ i1 = (HEAP32[i10 >> 2] | 0) - i6 | 0;
if ((_fwrite(i11, 1, i1, HEAP32[i3 >> 2] | 0) | 0) != (i1 | 0)) {
i2 = 13;
break;
@@ -54803,21 +54365,21 @@ function __ZNSt3__111__stdoutbufIwE8overflowEj(i3, i12) {
break;
}
} else i2 = 14; while (0);
- if ((i2 | 0) == 14) i1 = i13 ? 0 : i12;
+ if ((i2 | 0) == 14) i1 = i12 ? 0 : i13;
STACKTOP = i14;
return i1 | 0;
}
-function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner9visitLoadEPNS_4LoadE(i1, i5, i3) {
- i1 = i1 | 0;
+function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner9visitLoadEPNS_4LoadE(i2, i5, i3) {
+ i2 = i2 | 0;
i5 = i5 | 0;
i3 = i3 | 0;
- var i2 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0;
+ var i1 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 64 | 0;
i6 = i7 + 40 | 0;
i4 = i7 + 16 | 0;
- i2 = i7;
+ i1 = i7;
__ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i4, i5, HEAP32[i3 + 24 >> 2] | 0);
if (!(HEAP32[i4 + 16 >> 2] | 0)) {
i9 = HEAP32[i5 + 4 >> 2] | 0;
@@ -54828,37 +54390,37 @@ function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vect
HEAP32[i6 + 8 >> 2] = HEAP32[i4 + 8 >> 2];
HEAP32[i6 + 12 >> 2] = HEAP32[i4 + 12 >> 2];
i6 = __ZN4wasm14ModuleInstance15getFinalAddressINS_4LoadEEEjPT_NS_7LiteralE(i9, i3, i6) | 0;
- FUNCTION_TABLE_viiii[i8 & 15](i2, i5, i3, i6);
- HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i1 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i1 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- HEAP32[i1 + 12 >> 2] = HEAP32[i2 + 12 >> 2];
- HEAP32[i1 + 16 >> 2] = 0;
+ FUNCTION_TABLE_viiii[i8 & 15](i1, i5, i3, i6);
+ HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i2 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i2 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ HEAP32[i2 + 12 >> 2] = HEAP32[i1 + 12 >> 2];
+ HEAP32[i2 + 16 >> 2] = 0;
} else {
- HEAP32[i1 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i1 + 4 >> 2] = HEAP32[i4 + 4 >> 2];
- HEAP32[i1 + 8 >> 2] = HEAP32[i4 + 8 >> 2];
- HEAP32[i1 + 12 >> 2] = HEAP32[i4 + 12 >> 2];
- HEAP32[i1 + 16 >> 2] = HEAP32[i4 + 16 >> 2];
- HEAP32[i1 + 20 >> 2] = HEAP32[i4 + 20 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i2 + 4 >> 2] = HEAP32[i4 + 4 >> 2];
+ HEAP32[i2 + 8 >> 2] = HEAP32[i4 + 8 >> 2];
+ HEAP32[i2 + 12 >> 2] = HEAP32[i4 + 12 >> 2];
+ HEAP32[i2 + 16 >> 2] = HEAP32[i4 + 16 >> 2];
+ HEAP32[i2 + 20 >> 2] = HEAP32[i4 + 20 >> 2];
}
STACKTOP = i7;
return;
}
-function __ZNSt3__111__stdoutbufIcE8overflowEi(i3, i12) {
+function __ZNSt3__111__stdoutbufIcE8overflowEi(i3, i13) {
i3 = i3 | 0;
- i12 = i12 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i13 = 0, i14 = 0;
+ i13 = i13 | 0;
+ var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i14 = 0;
i14 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i11 = i14 + 16 | 0;
i1 = i14 + 8 | 0;
i10 = i14 + 4 | 0;
i9 = i14;
- i13 = (i12 | 0) == -1;
- do if (!i13) {
- HEAP8[i1 >> 0] = i12;
+ i12 = (i13 | 0) == -1;
+ do if (!i12) {
+ HEAP8[i1 >> 0] = i13;
if (HEAP8[i3 + 44 >> 0] | 0) if ((_fwrite(i1, 1, 1, HEAP32[i3 + 32 >> 2] | 0) | 0) == 1) {
i2 = 14;
break;
@@ -54867,15 +54429,15 @@ function __ZNSt3__111__stdoutbufIcE8overflowEi(i3, i12) {
break;
}
HEAP32[i10 >> 2] = i11;
- i6 = i1 + 1 | 0;
+ i8 = i1 + 1 | 0;
i4 = i3 + 36 | 0;
i5 = i3 + 40 | 0;
- i7 = i11 + 8 | 0;
- i8 = i11;
+ i6 = i11 + 8 | 0;
+ i7 = i11;
i3 = i3 + 32 | 0;
while (1) {
i2 = HEAP32[i4 >> 2] | 0;
- i2 = FUNCTION_TABLE_iiiiiiiii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 15](i2, HEAP32[i5 >> 2] | 0, i1, i6, i9, i11, i7, i10) | 0;
+ i2 = FUNCTION_TABLE_iiiiiiiii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 15](i2, HEAP32[i5 >> 2] | 0, i1, i8, i9, i11, i6, i10) | 0;
if ((HEAP32[i9 >> 2] | 0) == (i1 | 0)) {
i2 = 13;
break;
@@ -54888,7 +54450,7 @@ function __ZNSt3__111__stdoutbufIcE8overflowEi(i3, i12) {
i2 = 13;
break;
}
- i1 = (HEAP32[i10 >> 2] | 0) - i8 | 0;
+ i1 = (HEAP32[i10 >> 2] | 0) - i7 | 0;
if ((_fwrite(i11, 1, i1, HEAP32[i3 >> 2] | 0) | 0) != (i1 | 0)) {
i2 = 13;
break;
@@ -54907,27 +54469,27 @@ function __ZNSt3__111__stdoutbufIcE8overflowEi(i3, i12) {
break;
}
} else i2 = 14; while (0);
- if ((i2 | 0) == 14) i1 = i13 ? 0 : i12;
+ if ((i2 | 0) == 14) i1 = i12 ? 0 : i13;
STACKTOP = i14;
return i1 | 0;
}
-function _mbrtowc(i3, i4, i7, i1) {
- i3 = i3 | 0;
+function _mbrtowc(i4, i3, i7, i1) {
i4 = i4 | 0;
+ i3 = i3 | 0;
i7 = i7 | 0;
i1 = i1 | 0;
var i2 = 0, i5 = 0, i6 = 0, i8 = 0, i9 = 0, i10 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
i2 = i9;
- i6 = (i1 | 0) == 0 ? 37412 : i1;
+ i6 = (i1 | 0) == 0 ? 38884 : i1;
i1 = HEAP32[i6 >> 2] | 0;
- L1 : do if (!i4) if (!i1) i1 = 0; else i8 = 15; else {
- i5 = (i3 | 0) == 0 ? i2 : i3;
+ L1 : do if (!i3) if (!i1) i1 = 0; else i8 = 15; else {
+ i5 = (i4 | 0) == 0 ? i2 : i4;
if (!i7) i1 = -2; else {
if (!i1) {
- i1 = HEAP8[i4 >> 0] | 0;
+ i1 = HEAP8[i3 >> 0] | 0;
i2 = i1 & 255;
if (i1 << 24 >> 24 > -1) {
HEAP32[i5 >> 2] = i2;
@@ -54939,10 +54501,10 @@ function _mbrtowc(i3, i4, i7, i1) {
i8 = 15;
break;
}
- i1 = HEAP32[3812 + (i1 << 2) >> 2] | 0;
+ i1 = HEAP32[4380 + (i1 << 2) >> 2] | 0;
i2 = i7 + -1 | 0;
if (i2) {
- i4 = i4 + 1 | 0;
+ i3 = i3 + 1 | 0;
i8 = 9;
}
} else {
@@ -54950,20 +54512,20 @@ function _mbrtowc(i3, i4, i7, i1) {
i8 = 9;
}
L11 : do if ((i8 | 0) == 9) {
- i3 = HEAP8[i4 >> 0] | 0;
- i10 = (i3 & 255) >>> 3;
+ i4 = HEAP8[i3 >> 0] | 0;
+ i10 = (i4 & 255) >>> 3;
if ((i10 + -16 | i10 + (i1 >> 26)) >>> 0 > 7) {
i8 = 15;
break L1;
}
while (1) {
- i4 = i4 + 1 | 0;
- i1 = (i3 & 255) + -128 | i1 << 6;
+ i3 = i3 + 1 | 0;
+ i1 = (i4 & 255) + -128 | i1 << 6;
i2 = i2 + -1 | 0;
if ((i1 | 0) >= 0) break;
if (!i2) break L11;
- i3 = HEAP8[i4 >> 0] | 0;
- if ((i3 & -64) << 24 >> 24 != -128) {
+ i4 = HEAP8[i3 >> 0] | 0;
+ if ((i4 & -64) << 24 >> 24 != -128) {
i8 = 15;
break L1;
}
@@ -54999,12 +54561,12 @@ function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vect
i1 = HEAP32[tempDoublePtr + 4 >> 2] | 0;
if (i1 >>> 0 > 2146435072 | (i1 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0) {
i1 = HEAP32[(HEAP32[i5 + 4 >> 2] | 0) + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i1 >> 2] | 0) + 20 >> 2] & 127](i1, 20014);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i1 >> 2] | 0) + 20 >> 2] & 127](i1, 20544);
}
if ((HEAP32[i2 + 4 >> 2] | 0) == 1) {
if (d3 > 2147483647.0 | d3 < -2147483648.0) {
i5 = HEAP32[(HEAP32[i5 + 4 >> 2] | 0) + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 20 >> 2] & 127](i5, 20033);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 20 >> 2] & 127](i5, 20563);
}
HEAP32[i4 >> 2] = 1;
HEAP32[i4 + 8 >> 2] = ~~d3;
@@ -55013,7 +54575,7 @@ function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vect
i2 = +Math_abs(d3) >= 1.0 ? (d3 > 0.0 ? ~~+Math_min(+Math_floor(d3 / 4294967296.0), 4294967295.0) >>> 0 : ~~+Math_ceil((d3 - +(~~d3 >>> 0)) / 4294967296.0) >>> 0) : 0;
if (d3 < -9223372036854775808.0 | d3 >= 1.0 & ((i2 | 0) < 0 | (i2 | 0) == 0 & i1 >>> 0 < 1)) {
i5 = HEAP32[(HEAP32[i5 + 4 >> 2] | 0) + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 20 >> 2] & 127](i5, 20033);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 20 >> 2] & 127](i5, 20563);
}
HEAP32[i4 >> 2] = 2;
i5 = i4 + 8 | 0;
@@ -55023,55 +54585,6 @@ function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vect
return;
}
-function __ZNSt3__116__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i11, i8, i10, i2, i3, i7) {
- i11 = i11 | 0;
- i8 = i8 | 0;
- i10 = i10 | 0;
- i2 = i2 | 0;
- i3 = i3 | 0;
- i7 = i7 | 0;
- var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0, i12 = 0;
- i12 = STACKTOP;
- STACKTOP = STACKTOP + 16 | 0;
- i9 = i12;
- i1 = HEAP32[i11 >> 2] | 0;
- L1 : do if (!i1) i1 = 0; else {
- i5 = i8;
- i4 = i2 - i5 | 0;
- i6 = i3 + 12 | 0;
- i3 = HEAP32[i6 >> 2] | 0;
- i3 = (i3 | 0) > (i4 | 0) ? i3 - i4 | 0 : 0;
- i4 = i10;
- i5 = i4 - i5 | 0;
- if ((i5 | 0) > 0 ? (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 48 >> 2] & 31](i1, i8, i5) | 0) != (i5 | 0) : 0) {
- HEAP32[i11 >> 2] = 0;
- i1 = 0;
- break;
- }
- do if ((i3 | 0) > 0) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEjc(i9, i3, i7);
- if ((FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 48 >> 2] & 31](i1, (HEAP8[i9 >> 0] & 1) == 0 ? i9 + 1 | 0 : HEAP32[i9 + 8 >> 2] | 0, i3) | 0) == (i3 | 0)) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i9);
- break;
- } else {
- HEAP32[i11 >> 2] = 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i9);
- i1 = 0;
- break L1;
- }
- } while (0);
- i2 = i2 - i4 | 0;
- if ((i2 | 0) > 0 ? (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 48 >> 2] & 31](i1, i10, i2) | 0) != (i2 | 0) : 0) {
- HEAP32[i11 >> 2] = 0;
- i1 = 0;
- break;
- }
- HEAP32[i6 >> 2] = 0;
- } while (0);
- STACKTOP = i12;
- return i1 | 0;
-}
-
function __ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoENS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERSD_(i1, i8, i3) {
i1 = i1 | 0;
i8 = i8 | 0;
@@ -55085,15 +54598,15 @@ function __ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEE
i7 = i6 ? (i7 & 255) >>> 1 : HEAP32[i3 + 4 >> 2] | 0;
i6 = i6 ? i3 + 1 | 0 : HEAP32[i3 + 8 >> 2] | 0;
while (1) {
- i4 = i2 + 16 | 0;
- i5 = HEAP8[i4 >> 0] | 0;
- i1 = (i5 & 1) == 0;
- i5 = i1 ? (i5 & 255) >>> 1 : HEAP32[i2 + 20 >> 2] | 0;
- i4 = i1 ? i4 + 1 | 0 : HEAP32[i2 + 24 >> 2] | 0;
- i1 = i5 >>> 0 < i7 >>> 0;
- i9 = _memcmp(i6, i4, i1 ? i5 : i7) | 0;
- i3 = i7 >>> 0 < i5 >>> 0;
- if ((((i9 | 0) == 0 ? (i3 ? -2147483648 : 0) : i9) | 0) < 0) {
+ i3 = i2 + 16 | 0;
+ i1 = HEAP8[i3 >> 0] | 0;
+ i4 = (i1 & 1) == 0;
+ i1 = i4 ? (i1 & 255) >>> 1 : HEAP32[i2 + 20 >> 2] | 0;
+ i3 = i4 ? i3 + 1 | 0 : HEAP32[i2 + 24 >> 2] | 0;
+ i4 = i1 >>> 0 < i7 >>> 0;
+ i9 = _memcmp(i6, i3, i4 ? i1 : i7) | 0;
+ i5 = i7 >>> 0 < i1 >>> 0;
+ if ((((i9 | 0) == 0 ? (i5 ? -2147483648 : 0) : i9) | 0) < 0) {
i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
i1 = i2;
@@ -55101,8 +54614,8 @@ function __ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEE
break;
}
} else {
- i9 = _memcmp(i4, i6, i3 ? i7 : i5) | 0;
- if ((((i9 | 0) == 0 ? (i1 ? -2147483648 : 0) : i9) | 0) >= 0) {
+ i9 = _memcmp(i3, i6, i5 ? i7 : i1) | 0;
+ if ((((i9 | 0) == 0 ? (i4 ? -2147483648 : 0) : i9) | 0) >= 0) {
i1 = i2;
i3 = 10;
break;
@@ -55131,14 +54644,14 @@ function __ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEE
return i1 | 0;
}
-function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner9visitCallEPNS_4CallE(i1, i8, i6) {
- i1 = i1 | 0;
+function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner9visitCallEPNS_4CallE(i4, i8, i6) {
+ i4 = i4 | 0;
i8 = i8 | 0;
i6 = i6 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i9 = 0;
+ var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i7 = 0, i9 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 64 | 0;
- i4 = i9 + 56 | 0;
+ i1 = i9 + 56 | 0;
i5 = i9 + 44 | 0;
i7 = i9 + 16 | 0;
i2 = i9;
@@ -55150,20 +54663,20 @@ function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vect
if (!(HEAP32[i7 + 16 >> 2] | 0)) {
i8 = HEAP32[i8 + 4 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i6 + 20 >> 2];
- HEAP32[i4 >> 2] = HEAP32[i3 >> 2];
- __ZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEE(i2, i8, i4, i5);
- HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i1 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i1 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- HEAP32[i1 + 12 >> 2] = HEAP32[i2 + 12 >> 2];
- HEAP32[i1 + 16 >> 2] = 0;
+ HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
+ __ZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEE(i2, i8, i1, i5);
+ HEAP32[i4 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i4 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i4 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ HEAP32[i4 + 12 >> 2] = HEAP32[i2 + 12 >> 2];
+ HEAP32[i4 + 16 >> 2] = 0;
} else {
- HEAP32[i1 >> 2] = HEAP32[i7 >> 2];
- HEAP32[i1 + 4 >> 2] = HEAP32[i7 + 4 >> 2];
- HEAP32[i1 + 8 >> 2] = HEAP32[i7 + 8 >> 2];
- HEAP32[i1 + 12 >> 2] = HEAP32[i7 + 12 >> 2];
- HEAP32[i1 + 16 >> 2] = HEAP32[i7 + 16 >> 2];
- HEAP32[i1 + 20 >> 2] = HEAP32[i7 + 20 >> 2];
+ HEAP32[i4 >> 2] = HEAP32[i7 >> 2];
+ HEAP32[i4 + 4 >> 2] = HEAP32[i7 + 4 >> 2];
+ HEAP32[i4 + 8 >> 2] = HEAP32[i7 + 8 >> 2];
+ HEAP32[i4 + 12 >> 2] = HEAP32[i7 + 12 >> 2];
+ HEAP32[i4 + 16 >> 2] = HEAP32[i7 + 16 >> 2];
+ HEAP32[i4 + 20 >> 2] = HEAP32[i7 + 20 >> 2];
}
__ZNSt3__113__vector_baseIN4wasm7LiteralENS_9allocatorIS2_EEED2Ev(i5);
STACKTOP = i9;
@@ -55185,12 +54698,12 @@ function __ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6
i8 = i6 + 8 | 0;
i12 = i6 + 156 | 0;
i11 = i6 + 4 | 0;
- HEAP8[i5 >> 0] = HEAP8[31410] | 0;
- HEAP8[i5 + 1 >> 0] = HEAP8[31411] | 0;
- HEAP8[i5 + 2 >> 0] = HEAP8[31412] | 0;
- HEAP8[i5 + 3 >> 0] = HEAP8[31413] | 0;
- HEAP8[i5 + 4 >> 0] = HEAP8[31414] | 0;
- HEAP8[i5 + 5 >> 0] = HEAP8[31415] | 0;
+ HEAP8[i5 >> 0] = HEAP8[32874] | 0;
+ HEAP8[i5 + 1 >> 0] = HEAP8[32875] | 0;
+ HEAP8[i5 + 2 >> 0] = HEAP8[32876] | 0;
+ HEAP8[i5 + 3 >> 0] = HEAP8[32877] | 0;
+ HEAP8[i5 + 4 >> 0] = HEAP8[32878] | 0;
+ HEAP8[i5 + 5 >> 0] = HEAP8[32879] | 0;
i9 = __ZNSt3__16__clocEv() | 0;
HEAP32[i10 >> 2] = i4;
i5 = __ZNSt3__112__snprintf_lEPcjP15__locale_structPKcz(i7, 20, i9, i5, i10) | 0;
@@ -55198,7 +54711,7 @@ function __ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6
i4 = __ZNSt3__114__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE(i7, i9, i2) | 0;
i13 = __ZNKSt3__18ios_base6getlocEv(i2) | 0;
HEAP32[i12 >> 2] = i13;
- i12 = __ZNKSt3__16locale9use_facetERNS0_2idE(i12, 38996) | 0;
+ i12 = __ZNKSt3__16locale9use_facetERNS0_2idE(i12, 40468) | 0;
__ZNSt3__114__shared_count16__release_sharedEv(i13) | 0;
FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i12 >> 2] | 0) + 48 >> 2] & 7](i12, i7, i9, i8) | 0;
i5 = i8 + (i5 << 2) | 0;
@@ -55209,92 +54722,6 @@ function __ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6
return i5 | 0;
}
-function __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEy(i11, i5, i6) {
- i11 = i11 | 0;
- i5 = i5 | 0;
- i6 = i6 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0;
- i12 = STACKTOP;
- STACKTOP = STACKTOP + 32 | 0;
- i9 = i12 + 16 | 0;
- i8 = i12 + 12 | 0;
- i7 = i12;
- i1 = i12 + 8 | 0;
- __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i7, i11);
- if (HEAP8[i7 >> 0] | 0) {
- i10 = __ZNKSt3__18ios_base6getlocEv(i11 + (HEAP32[(HEAP32[i11 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
- HEAP32[i1 >> 2] = i10;
- i10 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 39020) | 0;
- __ZNSt3__16localeD2Ev(i1);
- i4 = i11 + (HEAP32[(HEAP32[i11 >> 2] | 0) + -12 >> 2] | 0) | 0;
- i3 = HEAP32[i4 + 24 >> 2] | 0;
- i2 = i4 + 76 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if ((i1 | 0) == -1) {
- i1 = __ZNKSt3__18ios_base6getlocEv(i4) | 0;
- HEAP32[i9 >> 2] = i1;
- i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i9, 38964) | 0;
- i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 32) | 0;
- __ZNSt3__16localeD2Ev(i9);
- i1 = i1 << 24 >> 24;
- HEAP32[i2 >> 2] = i1;
- }
- i2 = HEAP32[(HEAP32[i10 >> 2] | 0) + 28 >> 2] | 0;
- HEAP32[i8 >> 2] = i3;
- HEAP32[i9 >> 2] = HEAP32[i8 >> 2];
- if (!(FUNCTION_TABLE_iiiiiii[i2 & 63](i10, i9, i4, i1 & 255, i5, i6) | 0)) {
- i10 = i11 + (HEAP32[(HEAP32[i11 >> 2] | 0) + -12 >> 2] | 0) + 16 | 0;
- HEAP32[i10 >> 2] = HEAP32[i10 >> 2] | 5;
- }
- }
- __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i7);
- STACKTOP = i12;
- return i11 | 0;
-}
-
-function __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEx(i11, i5, i6) {
- i11 = i11 | 0;
- i5 = i5 | 0;
- i6 = i6 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0;
- i12 = STACKTOP;
- STACKTOP = STACKTOP + 32 | 0;
- i9 = i12 + 16 | 0;
- i8 = i12 + 12 | 0;
- i7 = i12;
- i1 = i12 + 8 | 0;
- __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i7, i11);
- if (HEAP8[i7 >> 0] | 0) {
- i10 = __ZNKSt3__18ios_base6getlocEv(i11 + (HEAP32[(HEAP32[i11 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
- HEAP32[i1 >> 2] = i10;
- i10 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 39020) | 0;
- __ZNSt3__16localeD2Ev(i1);
- i4 = i11 + (HEAP32[(HEAP32[i11 >> 2] | 0) + -12 >> 2] | 0) | 0;
- i3 = HEAP32[i4 + 24 >> 2] | 0;
- i2 = i4 + 76 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if ((i1 | 0) == -1) {
- i1 = __ZNKSt3__18ios_base6getlocEv(i4) | 0;
- HEAP32[i9 >> 2] = i1;
- i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i9, 38964) | 0;
- i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 32) | 0;
- __ZNSt3__16localeD2Ev(i9);
- i1 = i1 << 24 >> 24;
- HEAP32[i2 >> 2] = i1;
- }
- i2 = HEAP32[(HEAP32[i10 >> 2] | 0) + 20 >> 2] | 0;
- HEAP32[i8 >> 2] = i3;
- HEAP32[i9 >> 2] = HEAP32[i8 >> 2];
- if (!(FUNCTION_TABLE_iiiiiii[i2 & 63](i10, i9, i4, i1 & 255, i5, i6) | 0)) {
- i10 = i11 + (HEAP32[(HEAP32[i11 >> 2] | 0) + -12 >> 2] | 0) + 16 | 0;
- HEAP32[i10 >> 2] = HEAP32[i10 >> 2] | 5;
- }
- }
- __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i7);
- STACKTOP = i12;
- return i11 | 0;
-}
-
function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner11truncUFloatEPNS_5UnaryES5_(i4, i5, i2, i1) {
i4 = i4 | 0;
i5 = i5 | 0;
@@ -55307,12 +54734,12 @@ function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vect
i1 = HEAP32[tempDoublePtr + 4 >> 2] | 0;
if (i1 >>> 0 > 2146435072 | (i1 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0) {
i1 = HEAP32[(HEAP32[i5 + 4 >> 2] | 0) + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i1 >> 2] | 0) + 20 >> 2] & 127](i1, 20058);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i1 >> 2] | 0) + 20 >> 2] & 127](i1, 20588);
}
if ((HEAP32[i2 + 4 >> 2] | 0) == 1) {
if (d3 > 4294967295.0 | d3 <= -1.0) {
i5 = HEAP32[(HEAP32[i5 + 4 >> 2] | 0) + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 20 >> 2] & 127](i5, 20077);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 20 >> 2] & 127](i5, 20607);
}
HEAP32[i4 >> 2] = 1;
HEAP32[i4 + 8 >> 2] = ~~d3 >>> 0;
@@ -55321,7 +54748,7 @@ function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vect
i2 = +Math_abs(d3) >= 1.0 ? (d3 > 0.0 ? ~~+Math_min(+Math_floor(d3 / 4294967296.0), 4294967295.0) >>> 0 : ~~+Math_ceil((d3 - +(~~d3 >>> 0)) / 4294967296.0) >>> 0) : 0;
if (d3 <= -1.0 ? 1 : +(i1 >>> 0) + 4294967296.0 * +(i2 >>> 0) < d3 + -1.0) {
i5 = HEAP32[(HEAP32[i5 + 4 >> 2] | 0) + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 20 >> 2] & 127](i5, 20077);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 20 >> 2] & 127](i5, 20607);
}
HEAP32[i4 >> 2] = 2;
i5 = i4 + 8 | 0;
@@ -55331,35 +54758,90 @@ function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vect
return;
}
-function __ZN4wasm15RemoveUnusedBrs7visitIfEPNS_2IfE(i8, i7) {
- i8 = i8 | 0;
+function __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEy(i11, i6, i7) {
+ i11 = i11 | 0;
+ i6 = i6 | 0;
i7 = i7 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0;
- i9 = STACKTOP;
- STACKTOP = STACKTOP + 16 | 0;
- i3 = i9 + 4 | 0;
- i6 = i9;
- i4 = i7 + 16 | 0;
- if (!(HEAP32[i4 >> 2] | 0)) {
- i1 = HEAP32[i7 + 12 >> 2] | 0;
- if (!((i1 | 0) == 0 | (HEAP32[i1 >> 2] | 0) != 4) ? (i2 = i1 + 8 | 0, (HEAP32[i2 >> 2] | 0) == 0) : 0) {
- HEAP32[i2 >> 2] = HEAP32[i7 + 8 >> 2];
- HEAP32[i8 + 8 >> 2] = i1;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0;
+ i12 = STACKTOP;
+ STACKTOP = STACKTOP + 32 | 0;
+ i5 = i12 + 16 | 0;
+ i9 = i12 + 12 | 0;
+ i10 = i12;
+ i1 = i12 + 8 | 0;
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i10, i11);
+ if (HEAP8[i10 >> 0] | 0) {
+ i8 = __ZNKSt3__18ios_base6getlocEv(i11 + (HEAP32[(HEAP32[i11 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
+ HEAP32[i1 >> 2] = i8;
+ i8 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 40492) | 0;
+ __ZNSt3__16localeD2Ev(i1);
+ i3 = i11 + (HEAP32[(HEAP32[i11 >> 2] | 0) + -12 >> 2] | 0) | 0;
+ i4 = HEAP32[i3 + 24 >> 2] | 0;
+ i2 = i3 + 76 | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
+ if ((i1 | 0) == -1) {
+ i1 = __ZNKSt3__18ios_base6getlocEv(i3) | 0;
+ HEAP32[i5 >> 2] = i1;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i5, 40436) | 0;
+ i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 32) | 0;
+ __ZNSt3__16localeD2Ev(i5);
+ i1 = i1 << 24 >> 24;
+ HEAP32[i2 >> 2] = i1;
}
- } else {
- i1 = i7 + 4 | 0;
- if (((HEAP32[i1 >> 2] | 0) == 0 ? (HEAP32[i6 >> 2] = i3, i5 = i7 + 12 | 0, __ZZN4wasm15RemoveUnusedBrs7visitIfEPNS_2IfEENKUlPNS_10ExpressionEbE_clES4_b(i6, HEAP32[i5 >> 2] | 0, 0) | 0) : 0) ? (i2 = __ZZN4wasm15RemoveUnusedBrs7visitIfEPNS_2IfEENKUlPNS_10ExpressionEbE_clES4_b(i6, HEAP32[i5 >> 2] | 0, 0) | 0, (i2 | 0) == (__ZZN4wasm15RemoveUnusedBrs7visitIfEPNS_2IfEENKUlPNS_10ExpressionEbE_clES4_b(i6, HEAP32[i4 >> 2] | 0, 0) | 0)) : 0) {
- i3 = __ZN4wasm10Expression4castINS_5BreakEEEPT_v(__ZZN4wasm15RemoveUnusedBrs7visitIfEPNS_2IfEENKUlPNS_10ExpressionEE_clES4_(i3, HEAP32[i5 >> 2] | 0) | 0) | 0;
- __ZZN4wasm15RemoveUnusedBrs7visitIfEPNS_2IfEENKUlPNS_10ExpressionEbE_clES4_b(i6, HEAP32[i5 >> 2] | 0, 1) | 0;
- __ZZN4wasm15RemoveUnusedBrs7visitIfEPNS_2IfEENKUlPNS_10ExpressionEbE_clES4_b(i6, HEAP32[i4 >> 2] | 0, 1) | 0;
- i6 = i3 + 16 | 0;
- HEAP32[i1 >> 2] = HEAP32[(HEAP32[i6 >> 2] | 0) + 4 >> 2];
- HEAP32[i6 >> 2] = i7;
- HEAP32[i8 + 8 >> 2] = i3;
+ i2 = HEAP32[(HEAP32[i8 >> 2] | 0) + 28 >> 2] | 0;
+ HEAP32[i9 >> 2] = i4;
+ HEAP32[i5 >> 2] = HEAP32[i9 >> 2];
+ if (!(FUNCTION_TABLE_iiiiiii[i2 & 63](i8, i5, i3, i1 & 255, i6, i7) | 0)) {
+ i9 = i11 + (HEAP32[(HEAP32[i11 >> 2] | 0) + -12 >> 2] | 0) + 16 | 0;
+ HEAP32[i9 >> 2] = HEAP32[i9 >> 2] | 5;
}
}
- STACKTOP = i9;
- return;
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i10);
+ STACKTOP = i12;
+ return i11 | 0;
+}
+
+function __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEx(i11, i6, i7) {
+ i11 = i11 | 0;
+ i6 = i6 | 0;
+ i7 = i7 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0;
+ i12 = STACKTOP;
+ STACKTOP = STACKTOP + 32 | 0;
+ i5 = i12 + 16 | 0;
+ i9 = i12 + 12 | 0;
+ i10 = i12;
+ i1 = i12 + 8 | 0;
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i10, i11);
+ if (HEAP8[i10 >> 0] | 0) {
+ i8 = __ZNKSt3__18ios_base6getlocEv(i11 + (HEAP32[(HEAP32[i11 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
+ HEAP32[i1 >> 2] = i8;
+ i8 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 40492) | 0;
+ __ZNSt3__16localeD2Ev(i1);
+ i3 = i11 + (HEAP32[(HEAP32[i11 >> 2] | 0) + -12 >> 2] | 0) | 0;
+ i4 = HEAP32[i3 + 24 >> 2] | 0;
+ i2 = i3 + 76 | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
+ if ((i1 | 0) == -1) {
+ i1 = __ZNKSt3__18ios_base6getlocEv(i3) | 0;
+ HEAP32[i5 >> 2] = i1;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i5, 40436) | 0;
+ i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 32) | 0;
+ __ZNSt3__16localeD2Ev(i5);
+ i1 = i1 << 24 >> 24;
+ HEAP32[i2 >> 2] = i1;
+ }
+ i2 = HEAP32[(HEAP32[i8 >> 2] | 0) + 20 >> 2] | 0;
+ HEAP32[i9 >> 2] = i4;
+ HEAP32[i5 >> 2] = HEAP32[i9 >> 2];
+ if (!(FUNCTION_TABLE_iiiiiii[i2 & 63](i8, i5, i3, i1 & 255, i6, i7) | 0)) {
+ i9 = i11 + (HEAP32[(HEAP32[i11 >> 2] | 0) + -12 >> 2] | 0) + 16 | 0;
+ HEAP32[i9 >> 2] = HEAP32[i9 >> 2] | 5;
+ }
+ }
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i10);
+ STACKTOP = i12;
+ return i11 | 0;
}
function __ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcPKv(i5, i3, i2, i1, i4) {
@@ -55377,12 +54859,12 @@ function __ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6
i8 = i6 + 12 | 0;
i12 = i6 + 8 | 0;
i11 = i6 + 4 | 0;
- HEAP8[i5 >> 0] = HEAP8[31410] | 0;
- HEAP8[i5 + 1 >> 0] = HEAP8[31411] | 0;
- HEAP8[i5 + 2 >> 0] = HEAP8[31412] | 0;
- HEAP8[i5 + 3 >> 0] = HEAP8[31413] | 0;
- HEAP8[i5 + 4 >> 0] = HEAP8[31414] | 0;
- HEAP8[i5 + 5 >> 0] = HEAP8[31415] | 0;
+ HEAP8[i5 >> 0] = HEAP8[32874] | 0;
+ HEAP8[i5 + 1 >> 0] = HEAP8[32875] | 0;
+ HEAP8[i5 + 2 >> 0] = HEAP8[32876] | 0;
+ HEAP8[i5 + 3 >> 0] = HEAP8[32877] | 0;
+ HEAP8[i5 + 4 >> 0] = HEAP8[32878] | 0;
+ HEAP8[i5 + 5 >> 0] = HEAP8[32879] | 0;
i9 = __ZNSt3__16__clocEv() | 0;
HEAP32[i10 >> 2] = i4;
i5 = __ZNSt3__112__snprintf_lEPcjP15__locale_structPKcz(i7, 20, i9, i5, i10) | 0;
@@ -55390,7 +54872,7 @@ function __ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6
i4 = __ZNSt3__114__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE(i7, i9, i2) | 0;
i13 = __ZNKSt3__18ios_base6getlocEv(i2) | 0;
HEAP32[i12 >> 2] = i13;
- i12 = __ZNKSt3__16locale9use_facetERNS0_2idE(i12, 38964) | 0;
+ i12 = __ZNKSt3__16locale9use_facetERNS0_2idE(i12, 40436) | 0;
__ZNSt3__114__shared_count16__release_sharedEv(i13) | 0;
FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i12 >> 2] | 0) + 32 >> 2] & 7](i12, i7, i9, i8) | 0;
i5 = i8 + i5 | 0;
@@ -55416,7 +54898,7 @@ function __ZN4wasm10WasmWalkerINS_17RemoveUnusedNamesEvE9startWalkEPNS_6ModuleE(
break;
}
}
- if ((i8 | 0) == 5) ___assert_fail(26211, 26220, 1451, 26231);
+ if ((i8 | 0) == 5) ___assert_fail(27563, 27572, 1538, 27583);
i1 = HEAP32[i5 + 16 >> 2] | 0;
i2 = HEAP32[i5 + 12 >> 2] | 0;
while (1) {
@@ -55426,7 +54908,7 @@ function __ZN4wasm10WasmWalkerINS_17RemoveUnusedNamesEvE9startWalkEPNS_6ModuleE(
break;
}
}
- if ((i8 | 0) == 9) ___assert_fail(26211, 26220, 1455, 26231);
+ if ((i8 | 0) == 9) ___assert_fail(27563, 27572, 1542, 27583);
i1 = HEAP32[i5 + 28 >> 2] | 0;
i2 = HEAP32[i5 + 24 >> 2] | 0;
while (1) {
@@ -55436,7 +54918,7 @@ function __ZN4wasm10WasmWalkerINS_17RemoveUnusedNamesEvE9startWalkEPNS_6ModuleE(
break;
}
}
- if ((i8 | 0) == 13) ___assert_fail(26211, 26220, 1459, 26231);
+ if ((i8 | 0) == 13) ___assert_fail(27563, 27572, 1546, 27583);
i3 = HEAP32[i5 + 40 >> 2] | 0;
i2 = i4 + 12 | 0;
i1 = HEAP32[i5 + 36 >> 2] | 0;
@@ -55449,8 +54931,8 @@ function __ZN4wasm10WasmWalkerINS_17RemoveUnusedNamesEvE9startWalkEPNS_6ModuleE(
break;
}
}
- if ((i8 | 0) == 17) ___assert_fail(26211, 26220, 1464, 26231);
- if (!(HEAP32[i6 >> 2] | 0)) return; else ___assert_fail(26211, 26220, 1467, 26231);
+ if ((i8 | 0) == 17) ___assert_fail(27563, 27572, 1551, 27583);
+ if (!(HEAP32[i6 >> 2] | 0)) return; else ___assert_fail(27563, 27572, 1554, 27583);
}
function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner6fixNaNEddd(i2, d7, d8, d1) {
@@ -55461,36 +54943,36 @@ function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vect
var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0, i10 = 0, d11 = 0.0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 48 | 0;
- i4 = i9 + 32 | 0;
- i5 = i9 + 16 | 0;
- i6 = i9;
+ i2 = i9 + 32 | 0;
+ i3 = i9 + 16 | 0;
+ i5 = i9;
d11 = +Math_abs(+d7);
HEAPF64[tempDoublePtr >> 3] = d11;
- i3 = HEAP32[tempDoublePtr + 4 >> 2] | 0;
- i3 = i3 >>> 0 > 2146435072 | (i3 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0;
+ i6 = HEAP32[tempDoublePtr + 4 >> 2] | 0;
+ i6 = i6 >>> 0 > 2146435072 | (i6 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0;
d11 = +Math_abs(+d8);
HEAPF64[tempDoublePtr >> 3] = d11;
- i2 = HEAP32[tempDoublePtr + 4 >> 2] | 0;
- i2 = i2 >>> 0 > 2146435072 | (i2 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0;
+ i4 = HEAP32[tempDoublePtr + 4 >> 2] | 0;
+ i4 = i4 >>> 0 > 2146435072 | (i4 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0;
d11 = +Math_abs(+d1);
HEAPF64[tempDoublePtr >> 3] = d11;
i10 = HEAP32[tempDoublePtr + 4 >> 2] | 0;
- do if (i2 | (i3 | (i10 >>> 0 > 2146435072 | (i10 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0))) if (i3 | i2) {
- HEAP32[i6 >> 2] = 4;
- HEAPF64[i6 + 8 >> 3] = i3 ? d7 : d8;
- i6 = __ZN4wasm7Literal14reinterpreti64Ev(i6) | 0;
- HEAP32[i5 >> 2] = 2;
- i10 = i5 + 8 | 0;
+ do if (i4 | (i6 | (i10 >>> 0 > 2146435072 | (i10 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0))) if (i6 | i4) {
+ HEAP32[i5 >> 2] = 4;
+ HEAPF64[i5 + 8 >> 3] = i6 ? d7 : d8;
+ i6 = __ZN4wasm7Literal14reinterpreti64Ev(i5) | 0;
+ HEAP32[i3 >> 2] = 2;
+ i10 = i3 + 8 | 0;
HEAP32[i10 >> 2] = i6;
HEAP32[i10 + 4 >> 2] = tempRet0 | 524288;
- d1 = +__ZN4wasm7Literal14reinterpretf64Ev(i5);
+ d1 = +__ZN4wasm7Literal14reinterpretf64Ev(i3);
break;
} else {
- HEAP32[i4 >> 2] = 2;
- i10 = i4 + 8 | 0;
+ HEAP32[i2 >> 2] = 2;
+ i10 = i2 + 8 | 0;
HEAP32[i10 >> 2] = 0;
HEAP32[i10 + 4 >> 2] = 2146959360;
- d1 = +__ZN4wasm7Literal14reinterpretf64Ev(i4);
+ d1 = +__ZN4wasm7Literal14reinterpretf64Ev(i2);
break;
} while (0);
STACKTOP = i9;
@@ -55518,7 +55000,7 @@ function __ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6
i15 = i13;
HEAP32[i15 >> 2] = 37;
HEAP32[i15 + 4 >> 2] = 0;
- __ZNSt3__114__num_put_base12__format_intEPcPKcbj(i13 + 1 | 0, 34378, 0, HEAP32[i4 + 4 >> 2] | 0);
+ __ZNSt3__114__num_put_base12__format_intEPcPKcbj(i13 + 1 | 0, 35842, 0, HEAP32[i4 + 4 >> 2] | 0);
i15 = __ZNSt3__16__clocEv() | 0;
i16 = i9;
HEAP32[i16 >> 2] = i1;
@@ -55559,7 +55041,7 @@ function __ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6
i15 = i13;
HEAP32[i15 >> 2] = 37;
HEAP32[i15 + 4 >> 2] = 0;
- __ZNSt3__114__num_put_base12__format_intEPcPKcbj(i13 + 1 | 0, 34378, 1, HEAP32[i4 + 4 >> 2] | 0);
+ __ZNSt3__114__num_put_base12__format_intEPcPKcbj(i13 + 1 | 0, 35842, 1, HEAP32[i4 + 4 >> 2] | 0);
i15 = __ZNSt3__16__clocEv() | 0;
i16 = i9;
HEAP32[i16 >> 2] = i1;
@@ -55600,7 +55082,7 @@ function __ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6
i15 = i13;
HEAP32[i15 >> 2] = 37;
HEAP32[i15 + 4 >> 2] = 0;
- __ZNSt3__114__num_put_base12__format_intEPcPKcbj(i13 + 1 | 0, 34378, 0, HEAP32[i4 + 4 >> 2] | 0);
+ __ZNSt3__114__num_put_base12__format_intEPcPKcbj(i13 + 1 | 0, 35842, 0, HEAP32[i4 + 4 >> 2] | 0);
i15 = __ZNSt3__16__clocEv() | 0;
i16 = i9;
HEAP32[i16 >> 2] = i1;
@@ -55641,7 +55123,7 @@ function __ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6
i15 = i13;
HEAP32[i15 >> 2] = 37;
HEAP32[i15 + 4 >> 2] = 0;
- __ZNSt3__114__num_put_base12__format_intEPcPKcbj(i13 + 1 | 0, 34378, 1, HEAP32[i4 + 4 >> 2] | 0);
+ __ZNSt3__114__num_put_base12__format_intEPcPKcbj(i13 + 1 | 0, 35842, 1, HEAP32[i4 + 4 >> 2] | 0);
i15 = __ZNSt3__16__clocEv() | 0;
i16 = i9;
HEAP32[i16 >> 2] = i1;
@@ -55661,179 +55143,220 @@ function __ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6
return i6 | 0;
}
-function __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEi(i10, i5) {
+function __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj(i10, i8) {
i10 = i10 | 0;
- i5 = i5 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0;
+ i8 = i8 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i11 = 0;
i11 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i8 = i11 + 16 | 0;
- i7 = i11 + 12 | 0;
- i6 = i11;
+ i5 = i11 + 16 | 0;
+ i6 = i11 + 12 | 0;
+ i9 = i11;
i1 = i11 + 8 | 0;
- __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i6, i10);
- if (HEAP8[i6 >> 0] | 0) {
- i9 = __ZNKSt3__18ios_base6getlocEv(i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
- HEAP32[i1 >> 2] = i9;
- i9 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 39020) | 0;
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i9, i10);
+ if (HEAP8[i9 >> 0] | 0) {
+ i7 = __ZNKSt3__18ios_base6getlocEv(i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
+ HEAP32[i1 >> 2] = i7;
+ i7 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 40492) | 0;
__ZNSt3__16localeD2Ev(i1);
- i4 = i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) | 0;
- i3 = HEAP32[i4 + 24 >> 2] | 0;
- i2 = i4 + 76 | 0;
+ i3 = i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) | 0;
+ i4 = HEAP32[i3 + 24 >> 2] | 0;
+ i2 = i3 + 76 | 0;
i1 = HEAP32[i2 >> 2] | 0;
if ((i1 | 0) == -1) {
- i1 = __ZNKSt3__18ios_base6getlocEv(i4) | 0;
- HEAP32[i8 >> 2] = i1;
- i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i8, 38964) | 0;
+ i1 = __ZNKSt3__18ios_base6getlocEv(i3) | 0;
+ HEAP32[i5 >> 2] = i1;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i5, 40436) | 0;
i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 32) | 0;
- __ZNSt3__16localeD2Ev(i8);
+ __ZNSt3__16localeD2Ev(i5);
i1 = i1 << 24 >> 24;
HEAP32[i2 >> 2] = i1;
}
- i2 = HEAP32[(HEAP32[i9 >> 2] | 0) + 16 >> 2] | 0;
- HEAP32[i7 >> 2] = i3;
- HEAP32[i8 >> 2] = HEAP32[i7 >> 2];
- if (!(FUNCTION_TABLE_iiiiii[i2 & 31](i9, i8, i4, i1 & 255, i5) | 0)) {
- i9 = i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) + 16 | 0;
- HEAP32[i9 >> 2] = HEAP32[i9 >> 2] | 5;
+ i2 = HEAP32[(HEAP32[i7 >> 2] | 0) + 24 >> 2] | 0;
+ HEAP32[i6 >> 2] = i4;
+ HEAP32[i5 >> 2] = HEAP32[i6 >> 2];
+ if (!(FUNCTION_TABLE_iiiiii[i2 & 31](i7, i5, i3, i1 & 255, i8) | 0)) {
+ i8 = i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) + 16 | 0;
+ HEAP32[i8 >> 2] = HEAP32[i8 >> 2] | 5;
}
}
- __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i6);
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i9);
STACKTOP = i11;
return i10 | 0;
}
-function __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj(i10, i5) {
+
+function __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEi(i10, i8) {
i10 = i10 | 0;
- i5 = i5 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0;
+ i8 = i8 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i11 = 0;
i11 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i8 = i11 + 16 | 0;
- i7 = i11 + 12 | 0;
- i6 = i11;
+ i5 = i11 + 16 | 0;
+ i6 = i11 + 12 | 0;
+ i9 = i11;
i1 = i11 + 8 | 0;
- __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i6, i10);
- if (HEAP8[i6 >> 0] | 0) {
- i9 = __ZNKSt3__18ios_base6getlocEv(i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
- HEAP32[i1 >> 2] = i9;
- i9 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 39020) | 0;
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i9, i10);
+ if (HEAP8[i9 >> 0] | 0) {
+ i7 = __ZNKSt3__18ios_base6getlocEv(i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
+ HEAP32[i1 >> 2] = i7;
+ i7 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 40492) | 0;
__ZNSt3__16localeD2Ev(i1);
- i4 = i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) | 0;
- i3 = HEAP32[i4 + 24 >> 2] | 0;
- i2 = i4 + 76 | 0;
+ i3 = i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) | 0;
+ i4 = HEAP32[i3 + 24 >> 2] | 0;
+ i2 = i3 + 76 | 0;
i1 = HEAP32[i2 >> 2] | 0;
if ((i1 | 0) == -1) {
- i1 = __ZNKSt3__18ios_base6getlocEv(i4) | 0;
- HEAP32[i8 >> 2] = i1;
- i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i8, 38964) | 0;
+ i1 = __ZNKSt3__18ios_base6getlocEv(i3) | 0;
+ HEAP32[i5 >> 2] = i1;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i5, 40436) | 0;
i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 32) | 0;
- __ZNSt3__16localeD2Ev(i8);
+ __ZNSt3__16localeD2Ev(i5);
i1 = i1 << 24 >> 24;
HEAP32[i2 >> 2] = i1;
}
- i2 = HEAP32[(HEAP32[i9 >> 2] | 0) + 24 >> 2] | 0;
- HEAP32[i7 >> 2] = i3;
- HEAP32[i8 >> 2] = HEAP32[i7 >> 2];
- if (!(FUNCTION_TABLE_iiiiii[i2 & 31](i9, i8, i4, i1 & 255, i5) | 0)) {
- i9 = i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) + 16 | 0;
- HEAP32[i9 >> 2] = HEAP32[i9 >> 2] | 5;
+ i2 = HEAP32[(HEAP32[i7 >> 2] | 0) + 16 >> 2] | 0;
+ HEAP32[i6 >> 2] = i4;
+ HEAP32[i5 >> 2] = HEAP32[i6 >> 2];
+ if (!(FUNCTION_TABLE_iiiiii[i2 & 31](i7, i5, i3, i1 & 255, i8) | 0)) {
+ i8 = i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) + 16 | 0;
+ HEAP32[i8 >> 2] = HEAP32[i8 >> 2] | 5;
}
}
- __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i6);
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i9);
STACKTOP = i11;
return i10 | 0;
}
-function __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEd(i10, d5) {
+function __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEd(i10, d8) {
i10 = i10 | 0;
- d5 = +d5;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0;
+ d8 = +d8;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i11 = 0;
i11 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i8 = i11 + 16 | 0;
- i7 = i11 + 12 | 0;
- i6 = i11;
+ i5 = i11 + 16 | 0;
+ i6 = i11 + 12 | 0;
+ i9 = i11;
i1 = i11 + 8 | 0;
- __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i6, i10);
- if (HEAP8[i6 >> 0] | 0) {
- i9 = __ZNKSt3__18ios_base6getlocEv(i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
- HEAP32[i1 >> 2] = i9;
- i9 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 39020) | 0;
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i9, i10);
+ if (HEAP8[i9 >> 0] | 0) {
+ i7 = __ZNKSt3__18ios_base6getlocEv(i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
+ HEAP32[i1 >> 2] = i7;
+ i7 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 40492) | 0;
__ZNSt3__16localeD2Ev(i1);
- i4 = i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) | 0;
- i3 = HEAP32[i4 + 24 >> 2] | 0;
- i2 = i4 + 76 | 0;
+ i3 = i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) | 0;
+ i4 = HEAP32[i3 + 24 >> 2] | 0;
+ i2 = i3 + 76 | 0;
i1 = HEAP32[i2 >> 2] | 0;
if ((i1 | 0) == -1) {
- i1 = __ZNKSt3__18ios_base6getlocEv(i4) | 0;
- HEAP32[i8 >> 2] = i1;
- i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i8, 38964) | 0;
+ i1 = __ZNKSt3__18ios_base6getlocEv(i3) | 0;
+ HEAP32[i5 >> 2] = i1;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i5, 40436) | 0;
i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 32) | 0;
- __ZNSt3__16localeD2Ev(i8);
+ __ZNSt3__16localeD2Ev(i5);
i1 = i1 << 24 >> 24;
HEAP32[i2 >> 2] = i1;
}
- i2 = HEAP32[(HEAP32[i9 >> 2] | 0) + 32 >> 2] | 0;
- HEAP32[i7 >> 2] = i3;
- HEAP32[i8 >> 2] = HEAP32[i7 >> 2];
- if (!(FUNCTION_TABLE_iiiiid[i2 & 7](i9, i8, i4, i1 & 255, d5) | 0)) {
- i9 = i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) + 16 | 0;
- HEAP32[i9 >> 2] = HEAP32[i9 >> 2] | 5;
+ i2 = HEAP32[(HEAP32[i7 >> 2] | 0) + 32 >> 2] | 0;
+ HEAP32[i6 >> 2] = i4;
+ HEAP32[i5 >> 2] = HEAP32[i6 >> 2];
+ if (!(FUNCTION_TABLE_iiiiid[i2 & 7](i7, i5, i3, i1 & 255, d8) | 0)) {
+ i7 = i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) + 16 | 0;
+ HEAP32[i7 >> 2] = HEAP32[i7 >> 2] | 5;
}
}
- __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i6);
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i9);
STACKTOP = i11;
return i10 | 0;
}
-function __ZN4wasm6Select7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i6, i4, i2) {
+function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner17generateArgumentsERKNS4_IPNS_10ExpressionENS6_ISC_EEEES9_(i7, i9, i1, i8) {
+ i7 = i7 | 0;
+ i9 = i9 | 0;
+ i1 = i1 | 0;
+ i8 = i8 | 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i10 = 0;
+ i3 = i1 + 4 | 0;
+ __ZNSt3__16vectorIN4wasm7LiteralENS_9allocatorIS2_EEE7reserveEj(i8, (HEAP32[i3 >> 2] | 0) - (HEAP32[i1 >> 2] | 0) >> 2);
+ i3 = HEAP32[i3 >> 2] | 0;
+ i4 = i7 + 16 | 0;
+ i5 = i8 + 4 | 0;
+ i6 = i8 + 8 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ while (1) {
+ if ((i2 | 0) == (i3 | 0)) {
+ i10 = 8;
+ break;
+ }
+ __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i7, i9, HEAP32[i2 >> 2] | 0);
+ if (HEAP32[i4 >> 2] | 0) break;
+ i1 = HEAP32[i5 >> 2] | 0;
+ if ((i1 | 0) == (HEAP32[i6 >> 2] | 0)) __ZNSt3__16vectorIN4wasm7LiteralENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i8, i7); else {
+ HEAP32[i1 >> 2] = HEAP32[i7 >> 2];
+ HEAP32[i1 + 4 >> 2] = HEAP32[i7 + 4 >> 2];
+ HEAP32[i1 + 8 >> 2] = HEAP32[i7 + 8 >> 2];
+ HEAP32[i1 + 12 >> 2] = HEAP32[i7 + 12 >> 2];
+ HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 16;
+ }
+ i2 = i2 + 4 | 0;
+ }
+ if ((i10 | 0) == 8) {
+ HEAP32[i7 >> 2] = 0;
+ i10 = i7 + 8 | 0;
+ HEAP32[i10 >> 2] = 0;
+ HEAP32[i10 + 4 >> 2] = 0;
+ HEAP32[i4 >> 2] = 0;
+ }
+ return;
+}
+
+function __ZN4wasm6Select7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i6, i5, i4) {
i6 = i6 | 0;
+ i5 = i5 | 0;
i4 = i4 | 0;
- i2 = i2 | 0;
- var i1 = 0, i3 = 0, i5 = 0, i7 = 0;
+ var i1 = 0, i2 = 0, i3 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i3 = i7;
- HEAP32[i3 >> 2] = i2;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i4, 40) | 0;
- i1 = __Z12prepareColorRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEE(i4) | 0;
+ i2 = i7;
+ HEAP32[i2 >> 2] = i4;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i5, 40) | 0;
+ i3 = __Z12prepareColorRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEE(i5) | 0;
switch (HEAP32[i6 + 4 >> 2] | 0) {
case 0:
{
- i5 = 16812;
+ i1 = 17406;
break;
}
case 1:
{
- i5 = 16817;
+ i1 = 17411;
break;
}
case 2:
{
- i5 = 16821;
+ i1 = 17415;
break;
}
case 3:
{
- i5 = 16825;
+ i1 = 17419;
break;
}
case 4:
{
- i5 = 16829;
+ i1 = 17423;
break;
}
default:
{}
}
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i1, i5) | 0, 17187) | 0;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i4, 10) | 0;
- i5 = i2 + 1 | 0;
- HEAP32[i3 >> 2] = i5;
- __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i4, i5, HEAP32[i6 + 8 >> 2] | 0) | 0;
- __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i4, i5, HEAP32[i6 + 12 >> 2] | 0) | 0;
- __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i4, i5, HEAP32[i6 + 16 >> 2] | 0) | 0;
- i6 = __Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i4, i3) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i3, i1) | 0, 17781) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i5, 10) | 0;
+ i4 = i4 + 1 | 0;
+ HEAP32[i2 >> 2] = i4;
+ __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i5, i4, HEAP32[i6 + 8 >> 2] | 0) | 0;
+ __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i5, i4, HEAP32[i6 + 12 >> 2] | 0) | 0;
+ __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i5, i4, HEAP32[i6 + 16 >> 2] | 0) | 0;
+ i6 = __Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i5, i2) | 0;
STACKTOP = i7;
return i6 | 0;
}
@@ -55890,6 +55413,49 @@ function __ZN10__cxxabiv112_GLOBAL__N_118parse_template_argINS0_2DbEEEPKcS4_S4_R
return i1 | 0;
}
+function __ZN4wasm22SExpressionWasmBuilderC2ERNS_16AllocatingModuleERNS_7ElementENSt3__18functionIFvvEEEb(i5, i3, i4, i2, i1) {
+ i5 = i5 | 0;
+ i3 = i3 | 0;
+ i4 = i4 | 0;
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ HEAP32[i5 >> 2] = i3;
+ HEAP32[i5 + 4 >> 2] = i3 + 148;
+ __ZNSt3__18functionIFvvEEC2ERKS2_(i5 + 8 | 0, i2);
+ HEAP32[i5 + 36 >> 2] = 0;
+ HEAP32[i5 + 44 >> 2] = 0;
+ HEAP32[i5 + 48 >> 2] = 0;
+ HEAP32[i5 + 40 >> 2] = i5 + 44;
+ HEAP8[i5 + 52 >> 0] = i1 & 1;
+ HEAP32[i5 + 56 >> 2] = 0;
+ HEAP32[i5 + 64 >> 2] = 0;
+ HEAP32[i5 + 68 >> 2] = 0;
+ HEAP32[i5 + 60 >> 2] = i5 + 64;
+ HEAP32[i5 + 80 >> 2] = 0;
+ HEAP32[i5 + 84 >> 2] = 0;
+ HEAP32[i5 + 88 >> 2] = 0;
+ i3 = __ZN4wasm7Element4listEv(i4) | 0;
+ i3 = __ZN4wasm7Element3strEv(HEAP32[HEAP32[i3 >> 2] >> 2] | 0) | 0;
+ if ((i3 | 0) != (HEAP32[9546] | 0)) ___assert_fail(16679, 16606, 233, 16706);
+ i1 = i5 + 32 | 0;
+ HEAP32[i1 >> 2] = 0;
+ i2 = 1;
+ while (1) {
+ if (i2 >>> 0 >= (__ZN4wasm7Element4sizeEv(i4) | 0) >>> 0) break;
+ __ZN4wasm22SExpressionWasmBuilder20preParseFunctionTypeERNS_7ElementE(i5, __ZN4wasm7ElementixEj(i4, i2) | 0);
+ __ZN4wasm22SExpressionWasmBuilder15preParseImportsERNS_7ElementE(i5, __ZN4wasm7ElementixEj(i4, i2) | 0);
+ i2 = i2 + 1 | 0;
+ }
+ HEAP32[i1 >> 2] = 0;
+ i1 = 1;
+ while (1) {
+ if (i1 >>> 0 >= (__ZN4wasm7Element4sizeEv(i4) | 0) >>> 0) break;
+ __ZN4wasm22SExpressionWasmBuilder18parseModuleElementERNS_7ElementE(i5, __ZN4wasm7ElementixEj(i4, i1) | 0);
+ i1 = i1 + 1 | 0;
+ }
+ return;
+}
+
function __ZN4wasm10WasmWalkerIZZNS_15Asm2WasmBuilder8optimizeEvEN19BlockBreakOptimizer10visitBlockEPNS_5BlockEE11BreakSeekervE9startWalkEPNS_6ModuleE(i5, i3) {
i5 = i5 | 0;
i3 = i3 | 0;
@@ -55904,7 +55470,7 @@ function __ZN4wasm10WasmWalkerIZZNS_15Asm2WasmBuilder8optimizeEvEN19BlockBreakOp
break;
}
}
- if ((i6 | 0) == 5) ___assert_fail(26211, 26220, 1451, 26231);
+ if ((i6 | 0) == 5) ___assert_fail(27563, 27572, 1538, 27583);
i1 = HEAP32[i3 + 16 >> 2] | 0;
i2 = HEAP32[i3 + 12 >> 2] | 0;
while (1) {
@@ -55914,7 +55480,7 @@ function __ZN4wasm10WasmWalkerIZZNS_15Asm2WasmBuilder8optimizeEvEN19BlockBreakOp
break;
}
}
- if ((i6 | 0) == 9) ___assert_fail(26211, 26220, 1455, 26231);
+ if ((i6 | 0) == 9) ___assert_fail(27563, 27572, 1542, 27583);
i1 = HEAP32[i3 + 28 >> 2] | 0;
i2 = HEAP32[i3 + 24 >> 2] | 0;
while (1) {
@@ -55924,7 +55490,7 @@ function __ZN4wasm10WasmWalkerIZZNS_15Asm2WasmBuilder8optimizeEvEN19BlockBreakOp
break;
}
}
- if ((i6 | 0) == 13) ___assert_fail(26211, 26220, 1459, 26231);
+ if ((i6 | 0) == 13) ___assert_fail(27563, 27572, 1546, 27583);
i2 = HEAP32[i3 + 40 >> 2] | 0;
i1 = HEAP32[i3 + 36 >> 2] | 0;
while (1) {
@@ -55935,8 +55501,8 @@ function __ZN4wasm10WasmWalkerIZZNS_15Asm2WasmBuilder8optimizeEvEN19BlockBreakOp
break;
}
}
- if ((i6 | 0) == 17) ___assert_fail(26211, 26220, 1464, 26231);
- if (!(HEAP32[i4 >> 2] | 0)) return; else ___assert_fail(26211, 26220, 1467, 26231);
+ if ((i6 | 0) == 17) ___assert_fail(27563, 27572, 1551, 27583);
+ if (!(HEAP32[i4 >> 2] | 0)) return; else ___assert_fail(27563, 27572, 1554, 27583);
}
function __ZN10__cxxabiv112_GLOBAL__N_115parse_simple_idINS0_2DbEEEPKcS4_S4_RT_(i4, i2, i3) {
@@ -55955,14 +55521,14 @@ function __ZN10__cxxabiv112_GLOBAL__N_115parse_simple_idINS0_2DbEEEPKcS4_S4_RT_(
if (((i1 - (HEAP32[i3 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) i1 = i4; else {
__ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i7, i1 + -24 | 0);
i1 = HEAP32[i5 >> 2] | 0;
- i3 = i1 + -24 | 0;
- i2 = i1;
+ i2 = i1 + -24 | 0;
+ i3 = i1;
while (1) {
- if ((i2 | 0) == (i3 | 0)) break;
- i4 = i2 + -24 | 0;
+ if ((i3 | 0) == (i2 | 0)) break;
+ i4 = i3 + -24 | 0;
HEAP32[i5 >> 2] = i4;
__ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i4);
- i2 = HEAP32[i5 >> 2] | 0;
+ i3 = HEAP32[i5 >> 2] | 0;
}
i5 = HEAP8[i7 >> 0] | 0;
i4 = (i5 & 1) == 0;
@@ -55976,122 +55542,42 @@ function __ZN10__cxxabiv112_GLOBAL__N_115parse_simple_idINS0_2DbEEEPKcS4_S4_RT_(
return i1 | 0;
}
-function __ZNSt3__124__put_character_sequenceIcNS_11char_traitsIcEEEERNS_13basic_ostreamIT_T0_EES7_PKS4_j(i5, i7, i1) {
- i5 = i5 | 0;
- i7 = i7 | 0;
+function __ZNSt3__124__put_character_sequenceIcNS_11char_traitsIcEEEERNS_13basic_ostreamIT_T0_EES7_PKS4_j(i8, i10, i1) {
+ i8 = i8 | 0;
+ i10 = i10 | 0;
i1 = i1 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i6 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i11 = 0;
i11 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i10 = i11 + 12 | 0;
- i6 = i11;
- i9 = i11 + 8 | 0;
- __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i6, i5);
- if (HEAP8[i6 >> 0] | 0) {
- i8 = i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0;
- HEAP32[i9 >> 2] = HEAP32[i8 + 24 >> 2];
- i4 = HEAP32[i8 + 4 >> 2] | 0;
- i3 = i7 + i1 | 0;
- i2 = i8 + 76 | 0;
+ i4 = i11 + 12 | 0;
+ i9 = i11;
+ i5 = i11 + 8 | 0;
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i9, i8);
+ if (HEAP8[i9 >> 0] | 0) {
+ i7 = i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0;
+ HEAP32[i5 >> 2] = HEAP32[i7 + 24 >> 2];
+ i6 = HEAP32[i7 + 4 >> 2] | 0;
+ i3 = i10 + i1 | 0;
+ i2 = i7 + 76 | 0;
i1 = HEAP32[i2 >> 2] | 0;
if ((i1 | 0) == -1) {
- i1 = __ZNKSt3__18ios_base6getlocEv(i8) | 0;
- HEAP32[i10 >> 2] = i1;
- i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i10, 38964) | 0;
+ i1 = __ZNKSt3__18ios_base6getlocEv(i7) | 0;
+ HEAP32[i4 >> 2] = i1;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i4, 40436) | 0;
i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 32) | 0;
- __ZNSt3__16localeD2Ev(i10);
+ __ZNSt3__16localeD2Ev(i4);
i1 = i1 << 24 >> 24;
HEAP32[i2 >> 2] = i1;
}
- HEAP32[i10 >> 2] = HEAP32[i9 >> 2];
- if (!(__ZNSt3__116__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i10, i7, (i4 & 176 | 0) == 32 ? i3 : i7, i3, i8, i1 & 255) | 0)) {
- i10 = i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0;
+ HEAP32[i4 >> 2] = HEAP32[i5 >> 2];
+ if (!(__ZNSt3__116__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i4, i10, (i6 & 176 | 0) == 32 ? i3 : i10, i3, i7, i1 & 255) | 0)) {
+ i10 = i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0;
__ZNSt3__18ios_base5clearEj(i10, HEAP32[i10 + 16 >> 2] | 5);
}
}
- __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i6);
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i9);
STACKTOP = i11;
- return i5 | 0;
-}
-
-function __ZN4wasm22SExpressionWasmBuilderC2ERNS_16AllocatingModuleERNS_7ElementENSt3__18functionIFvvEEEb(i5, i3, i4, i2, i1) {
- i5 = i5 | 0;
- i3 = i3 | 0;
- i4 = i4 | 0;
- i2 = i2 | 0;
- i1 = i1 | 0;
- HEAP32[i5 >> 2] = i3;
- HEAP32[i5 + 4 >> 2] = i3 + 144;
- __ZNSt3__18functionIFvvEEC2ERKS2_(i5 + 8 | 0, i2);
- HEAP32[i5 + 40 >> 2] = 0;
- HEAP32[i5 + 44 >> 2] = 0;
- HEAP32[i5 + 36 >> 2] = i5 + 40;
- HEAP8[i5 + 48 >> 0] = i1 & 1;
- HEAP32[i5 + 52 >> 2] = 0;
- HEAP32[i5 + 60 >> 2] = 0;
- HEAP32[i5 + 64 >> 2] = 0;
- HEAP32[i5 + 56 >> 2] = i5 + 60;
- HEAP32[i5 + 76 >> 2] = 0;
- HEAP32[i5 + 80 >> 2] = 0;
- HEAP32[i5 + 84 >> 2] = 0;
- i3 = __ZN4wasm7Element4listEv(i4) | 0;
- i3 = __ZN4wasm7Element3strEv(HEAP32[HEAP32[i3 >> 2] >> 2] | 0) | 0;
- if ((i3 | 0) != (HEAP32[9180] | 0)) ___assert_fail(16096, 16023, 232, 16123);
- i1 = i5 + 32 | 0;
- HEAP32[i1 >> 2] = 0;
- i2 = 1;
- while (1) {
- if (i2 >>> 0 >= (__ZN4wasm7Element4sizeEv(i4) | 0) >>> 0) break;
- __ZN4wasm22SExpressionWasmBuilder20preParseFunctionTypeERNS_7ElementE(i5, __ZN4wasm7ElementixEj(i4, i2) | 0);
- __ZN4wasm22SExpressionWasmBuilder15preParseImportsERNS_7ElementE(i5, __ZN4wasm7ElementixEj(i4, i2) | 0);
- i2 = i2 + 1 | 0;
- }
- HEAP32[i1 >> 2] = 0;
- i1 = 1;
- while (1) {
- if (i1 >>> 0 >= (__ZN4wasm7Element4sizeEv(i4) | 0) >>> 0) break;
- __ZN4wasm22SExpressionWasmBuilder18parseModuleElementERNS_7ElementE(i5, __ZN4wasm7ElementixEj(i4, i1) | 0);
- i1 = i1 + 1 | 0;
- }
- return;
-}
-
-function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner17generateArgumentsERKNS4_IPNS_10ExpressionENS6_ISC_EEEES9_(i6, i9, i1, i7) {
- i6 = i6 | 0;
- i9 = i9 | 0;
- i1 = i1 | 0;
- i7 = i7 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0, i10 = 0;
- i3 = i1 + 4 | 0;
- __ZNSt3__16vectorIN4wasm7LiteralENS_9allocatorIS2_EEE7reserveEj(i7, (HEAP32[i3 >> 2] | 0) - (HEAP32[i1 >> 2] | 0) >> 2);
- i3 = HEAP32[i3 >> 2] | 0;
- i8 = i6 + 16 | 0;
- i4 = i7 + 4 | 0;
- i5 = i7 + 8 | 0;
- i2 = HEAP32[i1 >> 2] | 0;
- while (1) {
- if ((i2 | 0) == (i3 | 0)) {
- i10 = 8;
- break;
- }
- __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i6, i9, HEAP32[i2 >> 2] | 0);
- if (HEAP32[i8 >> 2] | 0) break;
- i1 = HEAP32[i4 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i5 >> 2] | 0)) __ZNSt3__16vectorIN4wasm7LiteralENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i7, i6); else {
- HEAP32[i1 >> 2] = HEAP32[i6 >> 2];
- HEAP32[i1 + 4 >> 2] = HEAP32[i6 + 4 >> 2];
- HEAP32[i1 + 8 >> 2] = HEAP32[i6 + 8 >> 2];
- HEAP32[i1 + 12 >> 2] = HEAP32[i6 + 12 >> 2];
- HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 16;
- }
- i2 = i2 + 4 | 0;
- }
- if ((i10 | 0) == 8) {
- HEAP32[i6 >> 2] = 0;
- HEAPF64[i6 + 8 >> 3] = 0.0;
- HEAP32[i8 >> 2] = 0;
- }
- return;
+ return i8 | 0;
}
function __ZNSt3__110__stdinbufIwE9pbackfailEj(i5, i1) {
@@ -56130,16 +55616,16 @@ function __ZNSt3__110__stdinbufIwE9pbackfailEj(i5, i1) {
default:
{}
}
- i4 = i5 + 32 | 0;
+ i3 = i5 + 32 | 0;
while (1) {
- i3 = HEAP32[i6 >> 2] | 0;
- if (i3 >>> 0 <= i7 >>> 0) {
+ i4 = HEAP32[i6 >> 2] | 0;
+ if (i4 >>> 0 <= i7 >>> 0) {
i3 = 13;
break;
}
- i10 = i3 + -1 | 0;
+ i10 = i4 + -1 | 0;
HEAP32[i6 >> 2] = i10;
- if ((_ungetc(HEAP8[i10 >> 0] | 0, HEAP32[i4 >> 2] | 0) | 0) == -1) {
+ if ((_ungetc(HEAP8[i10 >> 0] | 0, HEAP32[i3 >> 2] | 0) | 0) == -1) {
i3 = 12;
break;
}
@@ -56192,16 +55678,16 @@ function __ZNSt3__110__stdinbufIcE9pbackfailEi(i5, i1) {
default:
{}
}
- i4 = i5 + 32 | 0;
+ i3 = i5 + 32 | 0;
while (1) {
- i3 = HEAP32[i6 >> 2] | 0;
- if (i3 >>> 0 <= i7 >>> 0) {
+ i4 = HEAP32[i6 >> 2] | 0;
+ if (i4 >>> 0 <= i7 >>> 0) {
i3 = 13;
break;
}
- i10 = i3 + -1 | 0;
+ i10 = i4 + -1 | 0;
HEAP32[i6 >> 2] = i10;
- if ((_ungetc(HEAP8[i10 >> 0] | 0, HEAP32[i4 >> 2] | 0) | 0) == -1) {
+ if ((_ungetc(HEAP8[i10 >> 0] | 0, HEAP32[i3 >> 2] | 0) | 0) == -1) {
i3 = 12;
break;
}
@@ -56225,118 +55711,28 @@ function __ZN4wasm22SExpressionWasmBuilder16makeCallIndirectERNS_7ElementE(i6, i
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
i8 = i7 + 4 | 0;
- i3 = i7;
- i2 = __ZN10MixedArena5allocIN4wasm12CallIndirectEEEPT_v(HEAP32[i6 + 4 >> 2] | 0) | 0;
- i1 = __ZN4wasm7Element4listEv(i5) | 0;
- i1 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] | 0) | 0;
- i4 = HEAP32[i6 >> 2] | 0;
- HEAP32[i8 >> 2] = i1;
- if ((__ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_(i4 + 48 | 0, i8) | 0) == (i4 + 52 | 0)) ___assert_fail(17350, 16023, 860, 17414); else {
- HEAP32[i3 >> 2] = i1;
- i8 = __ZNSt3__13mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixEOS2_(i4 + 48 | 0, i3) | 0;
+ i1 = i7;
+ i4 = __ZN10MixedArena5allocIN4wasm12CallIndirectEEEPT_v(HEAP32[i6 + 4 >> 2] | 0) | 0;
+ i3 = __ZN4wasm7Element4listEv(i5) | 0;
+ i3 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i3 >> 2] | 0) + 4 >> 2] | 0) | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ HEAP32[i8 >> 2] = i3;
+ if ((__ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_(i2 + 48 | 0, i8) | 0) == (i2 + 52 | 0)) ___assert_fail(17944, 16606, 852, 18008); else {
+ HEAP32[i1 >> 2] = i3;
+ i8 = __ZNSt3__13mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixEOS2_(i2 + 48 | 0, i1) | 0;
i8 = HEAP32[i8 >> 2] | 0;
- HEAP32[i2 + 20 >> 2] = i8;
- HEAP32[i2 + 4 >> 2] = HEAP32[i8 + 4 >> 2];
+ HEAP32[i4 + 20 >> 2] = i8;
+ HEAP32[i4 + 4 >> 2] = HEAP32[i8 + 4 >> 2];
i8 = __ZN4wasm7Element4listEv(i5) | 0;
i8 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, HEAP32[(HEAP32[i8 >> 2] | 0) + 8 >> 2] | 0) | 0;
- HEAP32[i2 + 24 >> 2] = i8;
- __ZN4wasm22SExpressionWasmBuilder17parseCallOperandsINS_12CallIndirectEEEvRNS_7ElementEjPT_(i6, i5, 3, i2);
+ HEAP32[i4 + 24 >> 2] = i8;
+ __ZN4wasm22SExpressionWasmBuilder17parseCallOperandsINS_12CallIndirectEEEvRNS_7ElementEjPT_(i6, i5, 3, i4);
STACKTOP = i7;
- return i2 | 0;
+ return i4 | 0;
}
return 0;
}
-function __ZN4wasm14ModuleInstance15getFinalAddressINS_5StoreEEEjPT_NS_7LiteralE(i8, i6, i1) {
- i8 = i8 | 0;
- i6 = i6 | 0;
- i1 = i1 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0;
- if ((HEAP32[i1 >> 2] | 0) == 1) {
- i5 = __ZN4wasm7Literal6geti32Ev(i1) | 0;
- i4 = ((i5 | 0) < 0) << 31 >> 31;
- } else {
- i5 = __ZN4wasm7Literal6geti64Ev(i1) | 0;
- i4 = tempRet0;
- }
- i7 = i8 + 8 | 0;
- i1 = HEAP32[i7 >> 2] | 0;
- i3 = i6 + 12 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if (i1 >>> 0 < i2 >>> 0) {
- i1 = HEAP32[i8 + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i1 >> 2] | 0) + 20 >> 2] & 127](i1, 19828);
- i1 = HEAP32[i7 >> 2] | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- }
- if (i4 >>> 0 > 0 | (i4 | 0) == 0 & i5 >>> 0 > (i1 - i2 | 0) >>> 0) {
- i2 = HEAP32[i8 + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i2, 19844);
- i2 = HEAP32[i3 >> 2] | 0;
- i1 = HEAP32[i7 >> 2] | 0;
- }
- i4 = _i64Add(i2 | 0, 0, i5 | 0, i4 | 0) | 0;
- i5 = tempRet0;
- i3 = i6 + 8 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if (i2 >>> 0 > i1 >>> 0) {
- i2 = HEAP32[i8 + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i2, 19859);
- i2 = HEAP32[i3 >> 2] | 0;
- i1 = HEAP32[i7 >> 2] | 0;
- }
- if (i5 >>> 0 > 0 | (i5 | 0) == 0 & i4 >>> 0 > (i1 - i2 | 0) >>> 0) {
- i8 = HEAP32[i8 + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i8 >> 2] | 0) + 20 >> 2] & 127](i8, 19874);
- }
- return i4 | 0;
-}
-
-function __ZN4wasm14ModuleInstance15getFinalAddressINS_4LoadEEEjPT_NS_7LiteralE(i8, i6, i1) {
- i8 = i8 | 0;
- i6 = i6 | 0;
- i1 = i1 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0;
- if ((HEAP32[i1 >> 2] | 0) == 1) {
- i5 = __ZN4wasm7Literal6geti32Ev(i1) | 0;
- i4 = ((i5 | 0) < 0) << 31 >> 31;
- } else {
- i5 = __ZN4wasm7Literal6geti64Ev(i1) | 0;
- i4 = tempRet0;
- }
- i7 = i8 + 8 | 0;
- i1 = HEAP32[i7 >> 2] | 0;
- i3 = i6 + 16 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if (i1 >>> 0 < i2 >>> 0) {
- i1 = HEAP32[i8 + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i1 >> 2] | 0) + 20 >> 2] & 127](i1, 19828);
- i1 = HEAP32[i7 >> 2] | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- }
- if (i4 >>> 0 > 0 | (i4 | 0) == 0 & i5 >>> 0 > (i1 - i2 | 0) >>> 0) {
- i2 = HEAP32[i8 + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i2, 19844);
- i2 = HEAP32[i3 >> 2] | 0;
- i1 = HEAP32[i7 >> 2] | 0;
- }
- i4 = _i64Add(i2 | 0, 0, i5 | 0, i4 | 0) | 0;
- i5 = tempRet0;
- i3 = i6 + 8 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if (i2 >>> 0 > i1 >>> 0) {
- i2 = HEAP32[i8 + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 127](i2, 19859);
- i2 = HEAP32[i3 >> 2] | 0;
- i1 = HEAP32[i7 >> 2] | 0;
- }
- if (i5 >>> 0 > 0 | (i5 | 0) == 0 & i4 >>> 0 > (i1 - i2 | 0) >>> 0) {
- i8 = HEAP32[i8 + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i8 >> 2] | 0) + 20 >> 2] & 127](i8, 19874);
- }
- return i4 | 0;
-}
-
function __ZN4wasm10WasmWalkerIZNS_15Asm2WasmBuilder8optimizeEvE19BlockBreakOptimizervE9startWalkEPNS_6ModuleE(i5, i3) {
i5 = i5 | 0;
i3 = i3 | 0;
@@ -56351,7 +55747,7 @@ function __ZN4wasm10WasmWalkerIZNS_15Asm2WasmBuilder8optimizeEvE19BlockBreakOpti
break;
}
}
- if ((i6 | 0) == 5) ___assert_fail(26211, 26220, 1451, 26231);
+ if ((i6 | 0) == 5) ___assert_fail(27563, 27572, 1538, 27583);
i1 = HEAP32[i3 + 16 >> 2] | 0;
i2 = HEAP32[i3 + 12 >> 2] | 0;
while (1) {
@@ -56361,7 +55757,7 @@ function __ZN4wasm10WasmWalkerIZNS_15Asm2WasmBuilder8optimizeEvE19BlockBreakOpti
break;
}
}
- if ((i6 | 0) == 9) ___assert_fail(26211, 26220, 1455, 26231);
+ if ((i6 | 0) == 9) ___assert_fail(27563, 27572, 1542, 27583);
i1 = HEAP32[i3 + 28 >> 2] | 0;
i2 = HEAP32[i3 + 24 >> 2] | 0;
while (1) {
@@ -56371,7 +55767,7 @@ function __ZN4wasm10WasmWalkerIZNS_15Asm2WasmBuilder8optimizeEvE19BlockBreakOpti
break;
}
}
- if ((i6 | 0) == 13) ___assert_fail(26211, 26220, 1459, 26231);
+ if ((i6 | 0) == 13) ___assert_fail(27563, 27572, 1546, 27583);
i2 = HEAP32[i3 + 40 >> 2] | 0;
i1 = HEAP32[i3 + 36 >> 2] | 0;
while (1) {
@@ -56382,8 +55778,8 @@ function __ZN4wasm10WasmWalkerIZNS_15Asm2WasmBuilder8optimizeEvE19BlockBreakOpti
break;
}
}
- if ((i6 | 0) == 17) ___assert_fail(26211, 26220, 1464, 26231);
- if (!(HEAP32[i4 >> 2] | 0)) return; else ___assert_fail(26211, 26220, 1467, 26231);
+ if ((i6 | 0) == 17) ___assert_fail(27563, 27572, 1551, 27583);
+ if (!(HEAP32[i4 >> 2] | 0)) return; else ___assert_fail(27563, 27572, 1554, 27583);
}
function __ZNSt3__19to_stringEj(i8, i6) {
@@ -56403,14 +55799,14 @@ function __ZNSt3__19to_stringEj(i8, i6) {
if (!(HEAP8[i9 >> 0] & 1)) i1 = 10; else i1 = (HEAP32[i9 >> 2] & -2) + -1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i9, i1, 0);
i3 = HEAP8[i9 >> 0] | 0;
- i5 = i9 + 1 | 0;
- i4 = i9 + 8 | 0;
+ i4 = i9 + 1 | 0;
+ i5 = i9 + 8 | 0;
i2 = i3;
i3 = (i3 & 1) == 0 ? (i3 & 255) >>> 1 : HEAP32[i9 + 4 >> 2] | 0;
while (1) {
- i1 = (i2 & 1) == 0 ? i5 : HEAP32[i4 >> 2] | 0;
+ i1 = (i2 & 1) == 0 ? i4 : HEAP32[i5 >> 2] | 0;
HEAP32[i7 >> 2] = i6;
- i1 = _snprintf(i1, i3 + 1 | 0, 30591, i7) | 0;
+ i1 = _snprintf(i1, i3 + 1 | 0, 32007, i7) | 0;
if ((i1 | 0) > -1) {
if (i1 >>> 0 <= i3 >>> 0) break;
} else i1 = i3 << 1 | 1;
@@ -56439,60 +55835,60 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__8clENSt
var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 48 | 0;
- i5 = i7 + 36 | 0;
- i6 = i7 + 24 | 0;
- i3 = i7 + 12 | 0;
- i4 = i7;
- __ZNSt3__1plIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_12basic_stringIT_T0_T1_EERKS9_S6_(i3, i1, 36);
+ i3 = i7 + 36 | 0;
+ i4 = i7 + 24 | 0;
+ i5 = i7 + 12 | 0;
+ i6 = i7;
+ __ZNSt3__1plIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_12basic_stringIT_T0_T1_EERKS9_S6_(i5, i1, 36);
+ i2 = HEAP32[i2 >> 2] | 0;
i1 = HEAP32[i2 >> 2] | 0;
- i2 = HEAP32[i1 >> 2] | 0;
- HEAP32[i1 >> 2] = i2 + 1;
- __ZNSt3__19to_stringEj(i4, i2);
- i2 = HEAP8[i4 >> 0] | 0;
- i1 = (i2 & 1) == 0;
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcj(i3, i1 ? i4 + 1 | 0 : HEAP32[i4 + 8 >> 2] | 0, i1 ? (i2 & 255) >>> 1 : HEAP32[i4 + 4 >> 2] | 0) | 0;
- HEAP32[i6 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i6 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i6 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ HEAP32[i2 >> 2] = i1 + 1;
+ __ZNSt3__19to_stringEj(i6, i1);
+ i1 = HEAP8[i6 >> 0] | 0;
+ i2 = (i1 & 1) == 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcj(i5, i2 ? i6 + 1 | 0 : HEAP32[i6 + 8 >> 2] | 0, i2 ? (i1 & 255) >>> 1 : HEAP32[i6 + 4 >> 2] | 0) | 0;
+ HEAP32[i4 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i4 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i4 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- __ZN6cashew7IStringC2EPKcb(i5, (HEAP8[i6 >> 0] & 1) == 0 ? i6 + 1 | 0 : HEAP32[i6 + 8 >> 2] | 0, 0);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i6);
+ __ZN6cashew7IStringC2EPKcb(i3, (HEAP8[i4 >> 0] & 1) == 0 ? i4 + 1 | 0 : HEAP32[i4 + 8 >> 2] | 0, 0);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i4);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i3);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i6);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5);
STACKTOP = i7;
- return HEAP32[i5 >> 2] | 0;
+ return HEAP32[i3 >> 2] | 0;
}
-function ___stdio_read(i8, i6, i9) {
+function ___stdio_read(i8, i7, i9) {
i8 = i8 | 0;
- i6 = i6 | 0;
+ i7 = i7 | 0;
i9 = i9 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i10 = 0, i11 = 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i10 = 0, i11 = 0;
i10 = STACKTOP;
STACKTOP = STACKTOP + 48 | 0;
i3 = i10 + 16 | 0;
i2 = i10;
i1 = i10 + 32 | 0;
- HEAP32[i1 >> 2] = i6;
+ HEAP32[i1 >> 2] = i7;
i4 = i1 + 4 | 0;
- i7 = i8 + 48 | 0;
- i11 = HEAP32[i7 >> 2] | 0;
+ i6 = i8 + 48 | 0;
+ i11 = HEAP32[i6 >> 2] | 0;
HEAP32[i4 >> 2] = i9 - ((i11 | 0) != 0 & 1);
i5 = i8 + 44 | 0;
HEAP32[i1 + 8 >> 2] = HEAP32[i5 >> 2];
HEAP32[i1 + 12 >> 2] = i11;
- if (!(HEAP32[9341] | 0)) {
+ if (!(HEAP32[9709] | 0)) {
HEAP32[i3 >> 2] = HEAP32[i8 + 60 >> 2];
HEAP32[i3 + 4 >> 2] = i1;
HEAP32[i3 + 8 >> 2] = 2;
i1 = ___syscall_ret(___syscall145(145, i3 | 0) | 0) | 0;
} else {
- _pthread_cleanup_push(168, i8 | 0);
+ _pthread_cleanup_push(190, i8 | 0);
HEAP32[i2 >> 2] = HEAP32[i8 + 60 >> 2];
HEAP32[i2 + 4 >> 2] = i1;
HEAP32[i2 + 8 >> 2] = 2;
@@ -56506,9 +55902,9 @@ function ___stdio_read(i8, i6, i9) {
i3 = i8 + 4 | 0;
HEAP32[i3 >> 2] = i2;
HEAP32[i8 + 8 >> 2] = i2 + (i1 - i4);
- if (!(HEAP32[i7 >> 2] | 0)) i1 = i9; else {
+ if (!(HEAP32[i6 >> 2] | 0)) i1 = i9; else {
HEAP32[i3 >> 2] = i2 + 1;
- HEAP8[i6 + (i9 + -1) >> 0] = HEAP8[i2 >> 0] | 0;
+ HEAP8[i7 + (i9 + -1) >> 0] = HEAP8[i2 >> 0] | 0;
i1 = i9;
}
}
@@ -56521,6 +55917,51 @@ function ___stdio_read(i8, i6, i9) {
return i1 | 0;
}
+function __ZN6cashew7IString3setEPKcb(i6, i1, i3) {
+ i6 = i6 | 0;
+ i1 = i1 | 0;
+ i3 = i3 | 0;
+ var i2 = 0, i4 = 0, i5 = 0, i7 = 0;
+ i7 = STACKTOP;
+ STACKTOP = STACKTOP + 16 | 0;
+ i4 = i7 + 8 | 0;
+ i5 = i7;
+ HEAP32[i5 >> 2] = i1;
+ if ((HEAP8[37400] | 0) == 0 ? ___cxa_guard_acquire(37400) | 0 : 0) {
+ i2 = __Znwj(20) | 0;
+ HEAP32[i2 >> 2] = 0;
+ HEAP32[i2 + 4 >> 2] = 0;
+ HEAP32[i2 + 8 >> 2] = 0;
+ HEAP32[i2 + 12 >> 2] = 0;
+ HEAPF32[i2 + 16 >> 2] = 1.0;
+ HEAP32[9593] = i2;
+ ___cxa_guard_release(37400);
+ }
+ i2 = HEAP32[9593] | 0;
+ if (i3) {
+ __ZNSt3__112__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CStringEqualENS_9allocatorIS2_EEE15__insert_uniqueERKS2_(i4, i2, i5);
+ HEAP32[i6 >> 2] = HEAP32[(HEAP32[i4 >> 2] | 0) + 8 >> 2];
+ } else {
+ i1 = __ZNSt3__112__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CStringEqualENS_9allocatorIS2_EEE4findIS2_EENS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEERKT_(i2, i5) | 0;
+ if (!i1) {
+ i1 = HEAP32[i5 >> 2] | 0;
+ i2 = _malloc((_strlen(i1) | 0) + 1 | 0) | 0;
+ _strcpy(i2, i1) | 0;
+ HEAP32[i5 >> 2] = i2;
+ i1 = HEAP32[9593] | 0;
+ } else {
+ i3 = HEAP32[i1 + 8 >> 2] | 0;
+ HEAP32[i5 >> 2] = i3;
+ i1 = i2;
+ i2 = i3;
+ }
+ __ZNSt3__112__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CStringEqualENS_9allocatorIS2_EEE15__insert_uniqueERKS2_(i4, i1, i5);
+ HEAP32[i6 >> 2] = i2;
+ }
+ STACKTOP = i7;
+ return;
+}
+
function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE23parseElementOrStatementERPcPKc(i4, i7, i3) {
i4 = i4 | 0;
i7 = i7 | 0;
@@ -56528,8 +55969,8 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE23parseElementOrSt
var i1 = 0, i2 = 0, i5 = 0, i6 = 0, i8 = 0, i9 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i9 + 4 | 0;
- i5 = i9;
+ i5 = i9 + 4 | 0;
+ i6 = i9;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i7);
i1 = HEAP32[i7 >> 2] | 0;
L1 : do switch (HEAP8[i1 >> 0] | 0) {
@@ -56561,9 +56002,9 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE23parseElementOrSt
i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i4, i7, i3) | 0;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i7);
if ((HEAP8[HEAP32[i7 >> 2] >> 0] | 0) == 59) {
- HEAP32[i5 >> 2] = i1;
- HEAP32[i6 >> 2] = HEAP32[i5 >> 2];
- i1 = __ZN6cashew12ValueBuilder13makeStatementENS_3RefE(i6) | 0;
+ HEAP32[i6 >> 2] = i1;
+ HEAP32[i5 >> 2] = HEAP32[i6 >> 2];
+ i1 = __ZN6cashew12ValueBuilder13makeStatementENS_3RefE(i5) | 0;
HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + 1;
}
}
@@ -56585,7 +56026,7 @@ function __ZN4wasm10WasmWalkerINS_15RemoveUnusedBrsEvE9startWalkEPNS_6ModuleE(i5
break;
}
}
- if ((i6 | 0) == 5) ___assert_fail(26211, 26220, 1451, 26231);
+ if ((i6 | 0) == 5) ___assert_fail(27563, 27572, 1538, 27583);
i1 = HEAP32[i3 + 16 >> 2] | 0;
i2 = HEAP32[i3 + 12 >> 2] | 0;
while (1) {
@@ -56595,7 +56036,7 @@ function __ZN4wasm10WasmWalkerINS_15RemoveUnusedBrsEvE9startWalkEPNS_6ModuleE(i5
break;
}
}
- if ((i6 | 0) == 9) ___assert_fail(26211, 26220, 1455, 26231);
+ if ((i6 | 0) == 9) ___assert_fail(27563, 27572, 1542, 27583);
i1 = HEAP32[i3 + 28 >> 2] | 0;
i2 = HEAP32[i3 + 24 >> 2] | 0;
while (1) {
@@ -56605,7 +56046,7 @@ function __ZN4wasm10WasmWalkerINS_15RemoveUnusedBrsEvE9startWalkEPNS_6ModuleE(i5
break;
}
}
- if ((i6 | 0) == 13) ___assert_fail(26211, 26220, 1459, 26231);
+ if ((i6 | 0) == 13) ___assert_fail(27563, 27572, 1546, 27583);
i2 = HEAP32[i3 + 40 >> 2] | 0;
i1 = HEAP32[i3 + 36 >> 2] | 0;
while (1) {
@@ -56616,8 +56057,8 @@ function __ZN4wasm10WasmWalkerINS_15RemoveUnusedBrsEvE9startWalkEPNS_6ModuleE(i5
break;
}
}
- if ((i6 | 0) == 17) ___assert_fail(26211, 26220, 1464, 26231);
- if (!(HEAP32[i4 >> 2] | 0)) return; else ___assert_fail(26211, 26220, 1467, 26231);
+ if ((i6 | 0) == 17) ___assert_fail(27563, 27572, 1551, 27583);
+ if (!(HEAP32[i4 >> 2] | 0)) return; else ___assert_fail(27563, 27572, 1554, 27583);
}
function __ZN4wasm10WasmWalkerINS_14SimplifyLocalsEvE9startWalkEPNS_6ModuleE(i5, i3) {
@@ -56634,7 +56075,7 @@ function __ZN4wasm10WasmWalkerINS_14SimplifyLocalsEvE9startWalkEPNS_6ModuleE(i5,
break;
}
}
- if ((i6 | 0) == 5) ___assert_fail(26211, 26220, 1451, 26231);
+ if ((i6 | 0) == 5) ___assert_fail(27563, 27572, 1538, 27583);
i1 = HEAP32[i3 + 16 >> 2] | 0;
i2 = HEAP32[i3 + 12 >> 2] | 0;
while (1) {
@@ -56644,7 +56085,7 @@ function __ZN4wasm10WasmWalkerINS_14SimplifyLocalsEvE9startWalkEPNS_6ModuleE(i5,
break;
}
}
- if ((i6 | 0) == 9) ___assert_fail(26211, 26220, 1455, 26231);
+ if ((i6 | 0) == 9) ___assert_fail(27563, 27572, 1542, 27583);
i1 = HEAP32[i3 + 28 >> 2] | 0;
i2 = HEAP32[i3 + 24 >> 2] | 0;
while (1) {
@@ -56654,7 +56095,7 @@ function __ZN4wasm10WasmWalkerINS_14SimplifyLocalsEvE9startWalkEPNS_6ModuleE(i5,
break;
}
}
- if ((i6 | 0) == 13) ___assert_fail(26211, 26220, 1459, 26231);
+ if ((i6 | 0) == 13) ___assert_fail(27563, 27572, 1546, 27583);
i2 = HEAP32[i3 + 40 >> 2] | 0;
i1 = HEAP32[i3 + 36 >> 2] | 0;
while (1) {
@@ -56665,11 +56106,11 @@ function __ZN4wasm10WasmWalkerINS_14SimplifyLocalsEvE9startWalkEPNS_6ModuleE(i5,
break;
}
}
- if ((i6 | 0) == 17) ___assert_fail(26211, 26220, 1464, 26231);
- if (!(HEAP32[i4 >> 2] | 0)) return; else ___assert_fail(26211, 26220, 1467, 26231);
+ if ((i6 | 0) == 17) ___assert_fail(27563, 27572, 1551, 27583);
+ if (!(HEAP32[i4 >> 2] | 0)) return; else ___assert_fail(27563, 27572, 1554, 27583);
}
-function __ZN4wasm10WasmWalkerINS_11MergeBlocksEvE9startWalkEPNS_6ModuleE(i5, i3) {
+function __ZN4wasm10WasmWalkerINS_14PostEmscriptenEvE9startWalkEPNS_6ModuleE(i5, i3) {
i5 = i5 | 0;
i3 = i3 | 0;
var i1 = 0, i2 = 0, i4 = 0, i6 = 0;
@@ -56683,7 +56124,7 @@ function __ZN4wasm10WasmWalkerINS_11MergeBlocksEvE9startWalkEPNS_6ModuleE(i5, i3
break;
}
}
- if ((i6 | 0) == 5) ___assert_fail(26211, 26220, 1451, 26231);
+ if ((i6 | 0) == 5) ___assert_fail(27563, 27572, 1538, 27583);
i1 = HEAP32[i3 + 16 >> 2] | 0;
i2 = HEAP32[i3 + 12 >> 2] | 0;
while (1) {
@@ -56693,7 +56134,7 @@ function __ZN4wasm10WasmWalkerINS_11MergeBlocksEvE9startWalkEPNS_6ModuleE(i5, i3
break;
}
}
- if ((i6 | 0) == 9) ___assert_fail(26211, 26220, 1455, 26231);
+ if ((i6 | 0) == 9) ___assert_fail(27563, 27572, 1542, 27583);
i1 = HEAP32[i3 + 28 >> 2] | 0;
i2 = HEAP32[i3 + 24 >> 2] | 0;
while (1) {
@@ -56703,7 +56144,7 @@ function __ZN4wasm10WasmWalkerINS_11MergeBlocksEvE9startWalkEPNS_6ModuleE(i5, i3
break;
}
}
- if ((i6 | 0) == 13) ___assert_fail(26211, 26220, 1459, 26231);
+ if ((i6 | 0) == 13) ___assert_fail(27563, 27572, 1546, 27583);
i2 = HEAP32[i3 + 40 >> 2] | 0;
i1 = HEAP32[i3 + 36 >> 2] | 0;
while (1) {
@@ -56714,42 +56155,57 @@ function __ZN4wasm10WasmWalkerINS_11MergeBlocksEvE9startWalkEPNS_6ModuleE(i5, i3
break;
}
}
- if ((i6 | 0) == 17) ___assert_fail(26211, 26220, 1464, 26231);
- if (!(HEAP32[i4 >> 2] | 0)) return; else ___assert_fail(26211, 26220, 1467, 26231);
+ if ((i6 | 0) == 17) ___assert_fail(27563, 27572, 1551, 27583);
+ if (!(HEAP32[i4 >> 2] | 0)) return; else ___assert_fail(27563, 27572, 1554, 27583);
}
-function __ZN4wasm22SExpressionWasmBuilder9makeBreakERNS_7ElementE(i7, i6) {
- i7 = i7 | 0;
- i6 = i6 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0;
- i5 = __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(HEAP32[i7 + 4 >> 2] | 0) | 0;
- i4 = __ZN4wasm7Element4listEv(i6) | 0;
- i4 = __ZN4wasm7Element3strEv(HEAP32[HEAP32[i4 >> 2] >> 2] | 0) | 0;
- if ((i4 | 0) == (HEAP32[9194] | 0)) {
- i3 = __ZN4wasm7Element4listEv(i6) | 0;
- i3 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i7, HEAP32[(HEAP32[i3 >> 2] | 0) + 4 >> 2] | 0) | 0;
- HEAP32[i5 + 8 >> 2] = i3;
- i3 = 2;
- } else i3 = 1;
- i4 = (__ZN4wasm7ElementixEj(i6, i3) | 0) + 20 | 0;
- do if (!(HEAP8[i4 >> 0] | 0)) {
- i2 = _atol(__ZN4wasm7Element5c_strEv(__ZN4wasm7ElementixEj(i6, i3) | 0) | 0) | 0;
- i1 = HEAP32[i7 + 76 >> 2] | 0;
- i4 = (HEAP32[i7 + 80 >> 2] | 0) - i1 >> 2;
- if (i2 >>> 0 < i4 >>> 0) {
- HEAP32[i5 + 12 >> 2] = HEAP32[i1 + (i4 + ~i2 << 2) >> 2];
- break;
- } else ___assert_fail(17313, 16023, 888, 17340);
- } else {
- i4 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i6, i3) | 0) | 0;
- HEAP32[i5 + 12 >> 2] = i4;
- } while (0);
- i1 = i3 + 1 | 0;
- if (i1 >>> 0 < (__ZN4wasm7Element4sizeEv(i6) | 0) >>> 0) {
- i7 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i7, __ZN4wasm7ElementixEj(i6, i1) | 0) | 0;
- HEAP32[i5 + 16 >> 2] = i7;
+function __ZN4wasm10WasmWalkerINS_11MergeBlocksEvE9startWalkEPNS_6ModuleE(i5, i3) {
+ i5 = i5 | 0;
+ i3 = i3 | 0;
+ var i1 = 0, i2 = 0, i4 = 0, i6 = 0;
+ i1 = HEAP32[i3 + 4 >> 2] | 0;
+ i4 = i5 + 4 | 0;
+ i2 = HEAP32[i3 >> 2] | 0;
+ while (1) {
+ if ((i2 | 0) == (i1 | 0)) break;
+ if (!(HEAP32[i4 >> 2] | 0)) i2 = i2 + 4 | 0; else {
+ i6 = 5;
+ break;
+ }
}
- return i5 | 0;
+ if ((i6 | 0) == 5) ___assert_fail(27563, 27572, 1538, 27583);
+ i1 = HEAP32[i3 + 16 >> 2] | 0;
+ i2 = HEAP32[i3 + 12 >> 2] | 0;
+ while (1) {
+ if ((i2 | 0) == (i1 | 0)) break;
+ if (!(HEAP32[i4 >> 2] | 0)) i2 = i2 + 4 | 0; else {
+ i6 = 9;
+ break;
+ }
+ }
+ if ((i6 | 0) == 9) ___assert_fail(27563, 27572, 1542, 27583);
+ i1 = HEAP32[i3 + 28 >> 2] | 0;
+ i2 = HEAP32[i3 + 24 >> 2] | 0;
+ while (1) {
+ if ((i2 | 0) == (i1 | 0)) break;
+ if (!(HEAP32[i4 >> 2] | 0)) i2 = i2 + 4 | 0; else {
+ i6 = 13;
+ break;
+ }
+ }
+ if ((i6 | 0) == 13) ___assert_fail(27563, 27572, 1546, 27583);
+ i2 = HEAP32[i3 + 40 >> 2] | 0;
+ i1 = HEAP32[i3 + 36 >> 2] | 0;
+ while (1) {
+ if ((i1 | 0) == (i2 | 0)) break;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 12 >> 2] & 127](i5, HEAP32[i1 >> 2] | 0);
+ if (!(HEAP32[i4 >> 2] | 0)) i1 = i1 + 4 | 0; else {
+ i6 = 17;
+ break;
+ }
+ }
+ if ((i6 | 0) == 17) ___assert_fail(27563, 27572, 1551, 27583);
+ if (!(HEAP32[i4 >> 2] | 0)) return; else ___assert_fail(27563, 27572, 1554, 27583);
}
function __ZNSt3__16vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEE21__push_back_slow_pathIRKS6_EEvOT_(i7, i6) {
@@ -56759,16 +56215,16 @@ function __ZNSt3__16vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE1
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = ((HEAP32[i4 >> 2] | 0) - i3 >> 3) + 1 | 0;
- if (i1 >>> 0 > 536870911) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = (HEAP32[i7 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 3 >>> 0 < 268435455) {
- i2 = i2 >> 2;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 3) + 1 | 0;
+ if (i2 >>> 0 > 536870911) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = (HEAP32[i7 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 3 >>> 0 < 268435455) {
+ i1 = i1 >> 2;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 536870911;
- __ZNSt3__114__split_bufferIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementERNS_9allocatorIS6_EEEC2EjjS9_(i5, i1, (HEAP32[i4 >> 2] | 0) - i3 >> 3, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementERNS_9allocatorIS6_EEEC2EjjS9_(i5, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 3, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
i1 = i6;
@@ -56783,94 +56239,52 @@ function __ZNSt3__16vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE1
return;
}
-function __ZN6cashew7IString3setEPKcb(i5, i1, i2) {
- i5 = i5 | 0;
- i1 = i1 | 0;
- i2 = i2 | 0;
- var i3 = 0, i4 = 0, i6 = 0;
- i6 = STACKTOP;
- STACKTOP = STACKTOP + 16 | 0;
- i3 = i6 + 8 | 0;
- i4 = i6;
- HEAP32[i4 >> 2] = i1;
- if ((HEAP8[35936] | 0) == 0 ? ___cxa_guard_acquire(35936) | 0 : 0) {
- i1 = __Znwj(20) | 0;
- HEAP32[i1 >> 2] = 0;
- HEAP32[i1 + 4 >> 2] = 0;
- HEAP32[i1 + 8 >> 2] = 0;
- HEAP32[i1 + 12 >> 2] = 0;
- HEAPF32[i1 + 16 >> 2] = 1.0;
- HEAP32[9225] = i1;
- ___cxa_guard_release(35936);
- }
- i1 = HEAP32[9225] | 0;
- if (i2) {
- __ZNSt3__112__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CStringEqualENS_9allocatorIS2_EEE15__insert_uniqueERKS2_(i3, i1, i4);
- HEAP32[i5 >> 2] = HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2];
- } else {
- i2 = __ZNSt3__112__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CStringEqualENS_9allocatorIS2_EEE4findIS2_EENS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEERKT_(i1, i4) | 0;
- if (!i2) {
- i1 = HEAP32[i4 >> 2] | 0;
- i2 = _malloc((_strlen(i1) | 0) + 1 | 0) | 0;
- _strcpy(i2, i1) | 0;
- HEAP32[i4 >> 2] = i2;
- i1 = HEAP32[9225] | 0;
- } else {
- i2 = HEAP32[i2 + 8 >> 2] | 0;
- HEAP32[i4 >> 2] = i2;
- }
- __ZNSt3__112__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CStringEqualENS_9allocatorIS2_EEE15__insert_uniqueERKS2_(i3, i1, i4);
- HEAP32[i5 >> 2] = i2;
- }
- STACKTOP = i6;
- return;
-}
-
function __ZNSt3__16vectorINS0_INS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEEENS4_IS8_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS8_RS9_EE(i6, i5) {
i6 = i6 | 0;
i5 = i5 | 0;
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0;
- i1 = HEAP32[i6 >> 2] | 0;
- i4 = i6 + 4 | 0;
- i2 = i5 + 4 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ i3 = i6 + 4 | 0;
+ i4 = i5 + 4 | 0;
+ i1 = HEAP32[i3 >> 2] | 0;
while (1) {
- if ((i3 | 0) == (i1 | 0)) break;
- i10 = HEAP32[i2 >> 2] | 0;
+ if ((i1 | 0) == (i2 | 0)) break;
+ i10 = HEAP32[i4 >> 2] | 0;
i8 = i10 + -16 | 0;
- i7 = i3 + -16 | 0;
+ i7 = i1 + -16 | 0;
HEAP32[i8 >> 2] = 0;
i9 = i10 + -12 | 0;
HEAP32[i9 >> 2] = 0;
- i11 = HEAP32[i3 + -4 >> 2] | 0;
+ i11 = HEAP32[i1 + -4 >> 2] | 0;
HEAP32[i10 + -8 >> 2] = 0;
HEAP32[i10 + -4 >> 2] = i11;
HEAP32[i8 >> 2] = HEAP32[i7 >> 2];
- i8 = i3 + -12 | 0;
+ i8 = i1 + -12 | 0;
HEAP32[i9 >> 2] = HEAP32[i8 >> 2];
- i9 = i3 + -8 | 0;
+ i9 = i1 + -8 | 0;
HEAP32[i10 + -8 >> 2] = HEAP32[i9 >> 2];
HEAP32[i9 >> 2] = 0;
HEAP32[i8 >> 2] = 0;
HEAP32[i7 >> 2] = 0;
- HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + -16;
- i3 = i7;
+ HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + -16;
+ i1 = i7;
}
i9 = HEAP32[i6 >> 2] | 0;
- HEAP32[i6 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i2 >> 2] = i9;
+ HEAP32[i6 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i4 >> 2] = i9;
i9 = i5 + 8 | 0;
- i11 = HEAP32[i4 >> 2] | 0;
- HEAP32[i4 >> 2] = HEAP32[i9 >> 2];
+ i11 = HEAP32[i3 >> 2] | 0;
+ HEAP32[i3 >> 2] = HEAP32[i9 >> 2];
HEAP32[i9 >> 2] = i11;
i9 = i6 + 8 | 0;
i11 = i5 + 12 | 0;
i10 = HEAP32[i9 >> 2] | 0;
HEAP32[i9 >> 2] = HEAP32[i11 >> 2];
HEAP32[i11 >> 2] = i10;
- HEAP32[i5 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i5 >> 2] = HEAP32[i4 >> 2];
return;
}
+
function __ZNSt3__16vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEE21__push_back_slow_pathIS6_EEvOT_(i7, i6) {
i7 = i7 | 0;
i6 = i6 | 0;
@@ -56878,16 +56292,16 @@ function __ZNSt3__16vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE1
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = ((HEAP32[i4 >> 2] | 0) - i3 >> 3) + 1 | 0;
- if (i1 >>> 0 > 536870911) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = (HEAP32[i7 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 3 >>> 0 < 268435455) {
- i2 = i2 >> 2;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 3) + 1 | 0;
+ if (i2 >>> 0 > 536870911) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = (HEAP32[i7 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 3 >>> 0 < 268435455) {
+ i1 = i1 >> 2;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 536870911;
- __ZNSt3__114__split_bufferIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementERNS_9allocatorIS6_EEEC2EjjS9_(i5, i1, (HEAP32[i4 >> 2] | 0) - i3 >> 3, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementERNS_9allocatorIS6_EEEC2EjjS9_(i5, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 3, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
i1 = i6;
@@ -56909,17 +56323,17 @@ function __ZN6cashew12ValueBuilder18appendCodeToSwitchENS_3RefES1_b(i6, i5, i2)
var i1 = 0, i3 = 0, i4 = 0, i7 = 0, i8 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i7 + 8 | 0;
- i3 = i7 + 4 | 0;
+ i3 = i7 + 8 | 0;
+ i4 = i7 + 4 | 0;
i1 = i7;
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i6, 0) | 0, 37004) | 0)) ___assert_fail(22759, 27234, 1610, 22821);
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i5, 0) | 0, 36920) | 0)) ___assert_fail(22840, 27234, 1611, 22821);
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i6, 0) | 0, 38476) | 0)) ___assert_fail(23347, 28586, 1610, 23409);
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i5, 0) | 0, 38392) | 0)) ___assert_fail(23428, 28586, 1611, 23409);
L7 : do if (i2) {
i6 = __ZN6cashew3RefixEj(i6, 2) | 0;
i6 = __ZN6cashew5Value4backEv(__ZN6cashew5Value4backEv(HEAP32[i6 >> 2] | 0) | 0) | 0;
HEAP32[i1 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i4 >> 2] = HEAP32[i1 >> 2];
- __ZN6cashew5Value9push_backENS_3RefE(i6, i4) | 0;
+ HEAP32[i3 >> 2] = HEAP32[i1 >> 2];
+ __ZN6cashew5Value9push_backENS_3RefE(i6, i3) | 0;
} else {
i1 = 0;
while (1) {
@@ -56928,9 +56342,9 @@ function __ZN6cashew12ValueBuilder18appendCodeToSwitchENS_3RefES1_b(i6, i5, i2)
i2 = __ZN6cashew3RefixEj(i6, 2) | 0;
i2 = __ZN6cashew5Value4backEv(__ZN6cashew5Value4backEv(HEAP32[i2 >> 2] | 0) | 0) | 0;
i8 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i5, 1) | 0, i1) | 0;
- HEAP32[i3 >> 2] = HEAP32[i8 >> 2];
- HEAP32[i4 >> 2] = HEAP32[i3 >> 2];
- __ZN6cashew5Value9push_backENS_3RefE(i2, i4) | 0;
+ HEAP32[i4 >> 2] = HEAP32[i8 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i4 >> 2];
+ __ZN6cashew5Value9push_backENS_3RefE(i2, i3) | 0;
i1 = i1 + 1 | 0;
}
} while (0);
@@ -56942,76 +56356,76 @@ function __ZNSt3__16vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11s
i6 = i6 | 0;
i5 = i5 | 0;
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0;
- i1 = HEAP32[i6 >> 2] | 0;
- i4 = i6 + 4 | 0;
- i2 = i5 + 4 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ i3 = i6 + 4 | 0;
+ i4 = i5 + 4 | 0;
+ i1 = HEAP32[i3 >> 2] | 0;
while (1) {
- if ((i3 | 0) == (i1 | 0)) break;
- i10 = HEAP32[i2 >> 2] | 0;
+ if ((i1 | 0) == (i2 | 0)) break;
+ i10 = HEAP32[i4 >> 2] | 0;
i8 = i10 + -16 | 0;
- i7 = i3 + -16 | 0;
+ i7 = i1 + -16 | 0;
HEAP32[i8 >> 2] = 0;
i9 = i10 + -12 | 0;
HEAP32[i9 >> 2] = 0;
- i11 = HEAP32[i3 + -4 >> 2] | 0;
+ i11 = HEAP32[i1 + -4 >> 2] | 0;
HEAP32[i10 + -8 >> 2] = 0;
HEAP32[i10 + -4 >> 2] = i11;
HEAP32[i8 >> 2] = HEAP32[i7 >> 2];
- i8 = i3 + -12 | 0;
+ i8 = i1 + -12 | 0;
HEAP32[i9 >> 2] = HEAP32[i8 >> 2];
- i9 = i3 + -8 | 0;
+ i9 = i1 + -8 | 0;
HEAP32[i10 + -8 >> 2] = HEAP32[i9 >> 2];
HEAP32[i9 >> 2] = 0;
HEAP32[i8 >> 2] = 0;
HEAP32[i7 >> 2] = 0;
- HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + -16;
- i3 = i7;
+ HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + -16;
+ i1 = i7;
}
i9 = HEAP32[i6 >> 2] | 0;
- HEAP32[i6 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i2 >> 2] = i9;
+ HEAP32[i6 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i4 >> 2] = i9;
i9 = i5 + 8 | 0;
- i11 = HEAP32[i4 >> 2] | 0;
- HEAP32[i4 >> 2] = HEAP32[i9 >> 2];
+ i11 = HEAP32[i3 >> 2] | 0;
+ HEAP32[i3 >> 2] = HEAP32[i9 >> 2];
HEAP32[i9 >> 2] = i11;
i9 = i6 + 8 | 0;
i11 = i5 + 12 | 0;
i10 = HEAP32[i9 >> 2] | 0;
HEAP32[i9 >> 2] = HEAP32[i11 >> 2];
HEAP32[i11 >> 2] = i10;
- HEAP32[i5 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i5 >> 2] = HEAP32[i4 >> 2];
return;
}
-function __ZN4wasm15Asm2WasmBuilder14allocateGlobalEN6cashew7IStringENS_8WasmTypeEbS2_S2_(i7, i5, i8, i2, i4, i1) {
+function __ZN4wasm15Asm2WasmBuilder14allocateGlobalEN6cashew7IStringENS_8WasmTypeEbS2_S2_(i7, i6, i8, i4, i5, i3) {
i7 = i7 | 0;
- i5 = i5 | 0;
+ i6 = i6 | 0;
i8 = i8 | 0;
- i2 = i2 | 0;
i4 = i4 | 0;
- i1 = i1 | 0;
- var i3 = 0, i6 = 0, i9 = 0, i10 = 0, i11 = 0;
+ i5 = i5 | 0;
+ i3 = i3 | 0;
+ var i1 = 0, i2 = 0, i9 = 0, i10 = 0, i11 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i6 = i9;
- i3 = i7 + 48 | 0;
- if ((__ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i3, i5) | 0) != (i7 + 52 | 0)) ___assert_fail(14456, 12455, 178, 14504);
+ i1 = i9;
+ i2 = i7 + 48 | 0;
+ if ((__ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i2, i6) | 0) != (i7 + 52 | 0)) ___assert_fail(14975, 13029, 178, 15023);
i10 = i7 + 8 | 0;
- i11 = HEAP32[i4 >> 2] | 0;
- i4 = HEAP32[i1 >> 2] | 0;
- HEAP32[i6 >> 2] = HEAP32[i10 >> 2];
- HEAP32[i6 + 4 >> 2] = i8;
- HEAP8[i6 + 8 >> 0] = i2 & 1;
- HEAP32[i6 + 12 >> 2] = i11;
- HEAP32[i6 + 16 >> 2] = i4;
- __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEE7emplaceIJRS2_S5_EEENS9_INS_14__map_iteratorINS_15__tree_iteratorINS_12__value_typeIS2_S5_EEPNS_11__tree_nodeISJ_PvEEiEEEEbEEDpOT_(i9 + 24 | 0, i3, i5, i6);
+ i11 = HEAP32[i5 >> 2] | 0;
+ i5 = HEAP32[i3 >> 2] | 0;
+ HEAP32[i1 >> 2] = HEAP32[i10 >> 2];
+ HEAP32[i1 + 4 >> 2] = i8;
+ HEAP8[i1 + 8 >> 0] = i4 & 1;
+ HEAP32[i1 + 12 >> 2] = i11;
+ HEAP32[i1 + 16 >> 2] = i5;
+ __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEE7emplaceIJRS2_S5_EEENS9_INS_14__map_iteratorINS_15__tree_iteratorINS_12__value_typeIS2_S5_EEPNS_11__tree_nodeISJ_PvEEiEEEEbEEDpOT_(i9 + 24 | 0, i2, i6, i1);
i8 = (HEAP32[i10 >> 2] | 0) + 8 | 0;
HEAP32[i10 >> 2] = i8;
if (i8 >>> 0 < (HEAP32[i7 + 12 >> 2] | 0) >>> 0) {
STACKTOP = i9;
return;
- } else ___assert_fail(14519, 12455, 181, 14504);
+ } else ___assert_fail(15038, 13029, 181, 15023);
}
function _mbtowc(i2, i6, i4) {
@@ -57034,21 +56448,21 @@ function _mbtowc(i2, i6, i4) {
}
i1 = i2 + -194 | 0;
if (i1 >>> 0 <= 50) {
- i3 = i6 + 1 | 0;
- i2 = HEAP32[3812 + (i1 << 2) >> 2] | 0;
- if (i4 >>> 0 < 4 ? i2 & -2147483648 >>> ((i4 * 6 | 0) + -6 | 0) | 0 : 0) break;
- i1 = HEAPU8[i3 >> 0] | 0;
+ i2 = i6 + 1 | 0;
+ i3 = HEAP32[4380 + (i1 << 2) >> 2] | 0;
+ if (i4 >>> 0 < 4 ? i3 & -2147483648 >>> ((i4 * 6 | 0) + -6 | 0) | 0 : 0) break;
+ i1 = HEAPU8[i2 >> 0] | 0;
i4 = i1 >>> 3;
- if ((i4 + -16 | i4 + (i2 >> 26)) >>> 0 <= 7) {
- i2 = i1 + -128 | i2 << 6;
- if ((i2 | 0) >= 0) {
- HEAP32[i5 >> 2] = i2;
+ if ((i4 + -16 | i4 + (i3 >> 26)) >>> 0 <= 7) {
+ i1 = i1 + -128 | i3 << 6;
+ if ((i1 | 0) >= 0) {
+ HEAP32[i5 >> 2] = i1;
i1 = 2;
break L1;
}
- i1 = HEAPU8[i6 + 2 >> 0] | 0;
- if ((i1 & 192 | 0) == 128) {
- i2 = i1 + -128 | i2 << 6;
+ i2 = HEAPU8[i6 + 2 >> 0] | 0;
+ if ((i2 & 192 | 0) == 128) {
+ i2 = i2 + -128 | i1 << 6;
if ((i2 | 0) >= 0) {
HEAP32[i5 >> 2] = i2;
i1 = 3;
@@ -57075,65 +56489,65 @@ function _mbtowc(i2, i6, i4) {
function _instantiate() {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0;
i3 = STACKTOP;
- STACKTOP = STACKTOP + 144 | 0;
+ STACKTOP = STACKTOP + 160 | 0;
i1 = i3;
- if (HEAP8[40892] | 0 ? (i2 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 13842) | 0, __ZN4wasm6ModuleC2ERKS0_(i1, HEAP32[9224] | 0), __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_6ModuleE(i2, i1) | 0, 10) | 0, __ZN4wasm6ModuleD2Ev(i1), HEAP8[40892] | 0) : 0) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 13866) | 0;
+ if (HEAP8[42364] | 0 ? (i2 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 14361) | 0, __ZN4wasm6ModuleC2ERKS0_(i1, HEAP32[9592] | 0), __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_6ModuleE(i2, i1) | 0, 10) | 0, __ZN4wasm6ModuleD2Ev(i1), HEAP8[42364] | 0) : 0) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 14385) | 0;
_emscripten_asm_const_v(6);
- i1 = HEAP32[9224] | 0;
- i2 = i1 + 76 | 0;
- i1 = HEAP32[i1 + 72 >> 2] | 0;
+ i2 = HEAP32[9592] | 0;
+ i1 = i2 + 76 | 0;
+ i2 = HEAP32[i2 + 72 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i2 | 0)) break;
- _emscripten_asm_const_ii(7, HEAP32[HEAP32[i1 + 20 >> 2] >> 2] | 0) | 0;
- i1 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i1) | 0;
+ if ((i2 | 0) == (i1 | 0)) break;
+ _emscripten_asm_const_ii(7, HEAP32[HEAP32[i2 + 20 >> 2] >> 2] | 0) | 0;
+ i2 = __ZNSt3__111__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i2) | 0;
}
- if (HEAP8[40892] | 0) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 14126) | 0;
+ if (HEAP8[42364] | 0) __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 14645) | 0;
i2 = __Znwj(16) | 0;
- i1 = HEAP32[9224] | 0;
+ i1 = HEAP32[9592] | 0;
i4 = __Znwj(4) | 0;
- HEAP32[i4 >> 2] = 2716;
+ HEAP32[i4 >> 2] = 2916;
HEAP32[i2 >> 2] = i1;
HEAP32[i2 + 4 >> 2] = 0;
HEAP32[i2 + 12 >> 2] = i4;
HEAP32[i2 + 8 >> 2] = HEAP32[i1 + 108 >> 2];
__ZZ11instantiateEN19JSExternalInterface4initERN4wasm6ModuleE(i4, i1);
- HEAP32[9223] = i2;
+ HEAP32[9591] = i2;
STACKTOP = i3;
return;
}
-function __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERi(i9, i2) {
+function __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERi(i9, i7) {
i9 = i9 | 0;
- i2 = i2 | 0;
- var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0;
+ i7 = i7 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0;
i10 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i7 = i10 + 24 | 0;
- i5 = i10 + 20 | 0;
- i4 = i10 + 16 | 0;
- i6 = i10 + 12 | 0;
+ i2 = i10 + 24 | 0;
+ i1 = i10 + 20 | 0;
+ i3 = i10 + 16 | 0;
+ i4 = i10 + 12 | 0;
i11 = i10 + 28 | 0;
- i1 = i10 + 8 | 0;
- i3 = i10 + 4 | 0;
- i8 = i10;
+ i6 = i10 + 8 | 0;
+ i8 = i10 + 4 | 0;
+ i5 = i10;
__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE6sentryC2ERS3_b(i11, i9, 0);
if (HEAP8[i11 >> 0] | 0) {
- HEAP32[i1 >> 2] = 0;
+ HEAP32[i6 >> 2] = 0;
i12 = __ZNKSt3__18ios_base6getlocEv(i9 + (HEAP32[(HEAP32[i9 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
- HEAP32[i8 >> 2] = i12;
- i12 = __ZNKSt3__16locale9use_facetERNS0_2idE(i8, 38988) | 0;
+ HEAP32[i5 >> 2] = i12;
+ i12 = __ZNKSt3__16locale9use_facetERNS0_2idE(i5, 40460) | 0;
i11 = i9 + (HEAP32[(HEAP32[i9 >> 2] | 0) + -12 >> 2] | 0) | 0;
i13 = HEAP32[(HEAP32[i12 >> 2] | 0) + 16 >> 2] | 0;
- HEAP32[i4 >> 2] = HEAP32[i11 + 24 >> 2];
- HEAP32[i6 >> 2] = 0;
- HEAP32[i5 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i7 >> 2] = HEAP32[i6 >> 2];
- FUNCTION_TABLE_iiiiiii[i13 & 63](i12, i5, i7, i11, i1, i3) | 0;
- __ZNSt3__16localeD2Ev(i8);
- HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i11 + 24 >> 2];
+ HEAP32[i4 >> 2] = 0;
+ HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
+ FUNCTION_TABLE_iiiiiii[i13 & 63](i12, i1, i2, i11, i6, i8) | 0;
+ __ZNSt3__16localeD2Ev(i5);
+ HEAP32[i7 >> 2] = HEAP32[i8 >> 2];
i8 = i9 + (HEAP32[(HEAP32[i9 >> 2] | 0) + -12 >> 2] | 0) | 0;
i11 = i8 + 16 | 0;
- HEAP32[i11 >> 2] = HEAP32[i11 >> 2] | HEAP32[i1 >> 2] | (HEAP32[i8 + 24 >> 2] | 0) == 0;
+ HEAP32[i11 >> 2] = HEAP32[i11 >> 2] | HEAP32[i6 >> 2] | (HEAP32[i8 + 24 >> 2] | 0) == 0;
}
STACKTOP = i10;
return i9 | 0;
@@ -57147,102 +56561,52 @@ function __ZN4wasm22SExpressionWasmBuilder14makeMaybeBlockERNS_7ElementEjj(i10,
var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i11 = 0, i12 = 0;
i12 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i7 = i12;
+ i5 = i12;
if ((__ZN4wasm7Element4sizeEv(i8) | 0) == (i2 + 1 | 0)) i1 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i10, __ZN4wasm7ElementixEj(i8, i2) | 0) | 0; else {
i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i10 + 4 >> 2] | 0) | 0;
i11 = i1 + 12 | 0;
- i5 = i1 + 16 | 0;
- i6 = i1 + 20 | 0;
+ i6 = i1 + 16 | 0;
+ i7 = i1 + 20 | 0;
while (1) {
if (!(i2 >>> 0 < i9 >>> 0 & i2 >>> 0 < (__ZN4wasm7Element4sizeEv(i8) | 0) >>> 0)) break;
- i4 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i10, __ZN4wasm7ElementixEj(i8, i2) | 0) | 0;
- HEAP32[i7 >> 2] = i4;
- i3 = HEAP32[i5 >> 2] | 0;
- if (i3 >>> 0 < (HEAP32[i6 >> 2] | 0) >>> 0) {
- HEAP32[i3 >> 2] = i4;
- HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i11, i7);
+ i3 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i10, __ZN4wasm7ElementixEj(i8, i2) | 0) | 0;
+ HEAP32[i5 >> 2] = i3;
+ i4 = HEAP32[i6 >> 2] | 0;
+ if (i4 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
+ HEAP32[i4 >> 2] = i3;
+ HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4;
+ } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i11, i5);
i2 = i2 + 1 | 0;
}
- i2 = HEAP32[i5 >> 2] | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
if ((i2 | 0) != (HEAP32[i11 >> 2] | 0)) HEAP32[i1 + 4 >> 2] = HEAP32[(HEAP32[i2 + -4 >> 2] | 0) + 4 >> 2];
}
STACKTOP = i12;
return i1 | 0;
}
-function __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i5, i7, i4, i8) {
- i5 = i5 | 0;
- i7 = i7 | 0;
- i4 = i4 | 0;
- i8 = i8 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i6 = 0, i9 = 0, i10 = 0;
- i1 = HEAP8[i5 >> 0] | 0;
- i3 = i5 + 4 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- do if (((i1 & 1) == 0 ? (i1 & 255) >>> 1 : i2) | 0) {
- if ((i7 | 0) != (i4 | 0)) {
- i2 = i7;
- i1 = i4;
- while (1) {
- i1 = i1 + -4 | 0;
- if (i2 >>> 0 >= i1 >>> 0) break;
- i6 = HEAP32[i2 >> 2] | 0;
- HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
- HEAP32[i1 >> 2] = i6;
- i2 = i2 + 4 | 0;
- }
- i1 = HEAP8[i5 >> 0] | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- }
- i10 = (i1 & 1) == 0;
- i3 = i10 ? i5 + 1 | 0 : HEAP32[i5 + 8 >> 2] | 0;
- i6 = i4 + -4 | 0;
- i5 = i3 + (i10 ? (i1 & 255) >>> 1 : i2) | 0;
- i4 = i3;
- i2 = i7;
- while (1) {
- i1 = HEAP8[i4 >> 0] | 0;
- i3 = i1 << 24 >> 24 < 1 | i1 << 24 >> 24 == 127;
- if (i2 >>> 0 >= i6 >>> 0) break;
- if (!i3 ? (i1 << 24 >> 24 | 0) != (HEAP32[i2 >> 2] | 0) : 0) {
- i9 = 10;
- break;
- }
- i4 = (i5 - i4 | 0) > 1 ? i4 + 1 | 0 : i4;
- i2 = i2 + 4 | 0;
- }
- if ((i9 | 0) == 10) {
- HEAP32[i8 >> 2] = 4;
- break;
- }
- if (!i3 ? ((HEAP32[i6 >> 2] | 0) + -1 | 0) >>> 0 >= i1 << 24 >> 24 >>> 0 : 0) HEAP32[i8 >> 2] = 4;
- } while (0);
- return;
-}
-
function __ZN4wasm15RemoveUnusedBrs10visitBlockEPNS_5BlockE(i2, i5) {
i2 = i2 | 0;
i5 = i5 | 0;
var i1 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0;
i8 = i5 + 8 | 0;
L1 : do if (HEAP32[i8 >> 2] | 0 ? (i9 = i5 + 12 | 0, i10 = i5 + 16 | 0, i4 = HEAP32[i10 >> 2] | 0, i3 = HEAP32[i9 >> 2] | 0, i6 = i3, i1 = i4, (i4 | 0) != (i3 | 0)) : 0) {
- i3 = (i4 - i3 >> 2) + -1 | 0;
- i2 = 0;
+ i2 = (i4 - i3 >> 2) + -1 | 0;
+ i3 = 0;
while (1) {
- if (i2 >>> 0 >= i3 >>> 0) break;
- i5 = HEAP32[i6 + (i2 << 2) >> 2] | 0;
+ if (i3 >>> 0 >= i2 >>> 0) break;
+ i5 = HEAP32[i6 + (i3 << 2) >> 2] | 0;
if (!((i5 | 0) == 0 | (HEAP32[i5 >> 2] | 0) != 4) ? (HEAP32[i5 + 8 >> 2] | 0) == 0 : 0) {
- i1 = i2;
+ i1 = i3;
i7 = 7;
break;
}
- i2 = i2 + 1 | 0;
+ i3 = i3 + 1 | 0;
}
if ((i7 | 0) == 7) {
__ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE6resizeEj(i9, i1 + 1 | 0);
- i1 = HEAP32[i10 >> 2] | 0;
- i4 = i1;
+ i4 = HEAP32[i10 >> 2] | 0;
+ i1 = i4;
}
i3 = i1 + -4 | 0;
i2 = HEAP32[i3 >> 2] | 0;
@@ -57274,9 +56638,9 @@ function __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmD
i4 = HEAP32[i5 + 4 >> 2] | 0;
if (i1 >>> 0 <= i4 >>> 0) {
if (i1 >>> 0 < i4 >>> 0) {
- if (i4 >>> 0 > 2) i2 = (i4 + -1 & i4 | 0) == 0; else i2 = 0;
- i3 = ~~+Math_ceil(+(+((HEAP32[i5 + 12 >> 2] | 0) >>> 0) / +HEAPF32[i5 + 16 >> 2])) >>> 0;
- if (i2) i2 = 1 << 32 - (Math_clz32(i3 + -1 | 0) | 0); else i2 = __ZNSt3__112__next_primeEj(i3) | 0;
+ if (i4 >>> 0 > 2) i3 = (i4 + -1 & i4 | 0) == 0; else i3 = 0;
+ i2 = ~~+Math_ceil(+(+((HEAP32[i5 + 12 >> 2] | 0) >>> 0) / +HEAPF32[i5 + 16 >> 2])) >>> 0;
+ if (i3) i2 = 1 << 32 - (Math_clz32(i2 + -1 | 0) | 0); else i2 = __ZNSt3__112__next_primeEj(i2) | 0;
i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
if (i1 >>> 0 < i4 >>> 0) __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmData5LocalEEENS_22__unordered_map_hasherIS3_S6_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S6_NS_8equal_toIS3_EELb1EEENS_9allocatorIS6_EEE8__rehashEj(i5, i1);
}
@@ -57284,6 +56648,43 @@ function __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmD
return;
}
+function __ZNSt3__16vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE8__appendEj(i8, i2) {
+ i8 = i8 | 0;
+ i2 = i2 | 0;
+ var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0;
+ i9 = STACKTOP;
+ STACKTOP = STACKTOP + 32 | 0;
+ i7 = i9;
+ i5 = HEAP32[i8 + 8 >> 2] | 0;
+ i3 = i8 + 4 | 0;
+ i1 = HEAP32[i3 >> 2] | 0;
+ if (i5 - i1 >> 2 >>> 0 < i2 >>> 0) {
+ i3 = HEAP32[i8 >> 2] | 0;
+ i6 = i1 - i3 >> 2;
+ i4 = i6 + i2 | 0;
+ if (i4 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i8);
+ i1 = i5 - i3 | 0;
+ if (i1 >> 2 >>> 0 < 536870911) {
+ i1 = i1 >> 1;
+ i1 = i1 >>> 0 < i4 >>> 0 ? i4 : i1;
+ } else i1 = 1073741823;
+ __ZNSt3__114__split_bufferIPNS_6locale5facetERNS_15__sso_allocatorIS3_Lj28EEEEC2EjjS6_(i7, i1, i6, i8 + 16 | 0);
+ i6 = i7 + 8 | 0;
+ i5 = HEAP32[i6 >> 2] | 0;
+ _memset(i5 | 0, 0, i2 << 2 | 0) | 0;
+ HEAP32[i6 >> 2] = i5 + (i2 << 2);
+ __ZNSt3__16vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i7);
+ __ZNSt3__114__split_bufferIPNS_6locale5facetERNS_15__sso_allocatorIS3_Lj28EEEED2Ev(i7);
+ } else do {
+ HEAP32[i1 >> 2] = 0;
+ i1 = (HEAP32[i3 >> 2] | 0) + 4 | 0;
+ HEAP32[i3 >> 2] = i1;
+ i2 = i2 + -1 | 0;
+ } while ((i2 | 0) != 0);
+ STACKTOP = i9;
+ return;
+}
+
function __ZNKSt3__18messagesIcE6do_getEiiiRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE(i8, i1, i3, i5, i4, i2) {
i8 = i8 | 0;
i1 = i1 | 0;
@@ -57310,15 +56711,14 @@ function __ZNKSt3__18messagesIcE6do_getEiiiRKNS_12basic_stringIcNS_11char_traits
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i6, HEAP8[i1 >> 0] | 0);
i1 = i1 + 1 | 0;
}
- i3 = _catgets((i3 | 0) == -1 ? -1 : i3 << 1, i5, i4, (HEAP8[i6 >> 0] & 1) == 0 ? i6 + 1 | 0 : HEAP32[i6 + 8 >> 2] | 0) | 0;
- i1 = 0;
+ i1 = _catgets((i3 | 0) == -1 ? -1 : i3 << 1, i5, i4, (HEAP8[i6 >> 0] & 1) == 0 ? i6 + 1 | 0 : HEAP32[i6 + 8 >> 2] | 0) | 0;
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i8 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i8 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- i2 = i3 + (_strlen(i3) | 0) | 0;
- i1 = i3;
+ i2 = i1 + (_strlen(i1) | 0) | 0;
while (1) {
if (i1 >>> 0 >= i2 >>> 0) break;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i8, HEAP8[i1 >> 0] | 0);
@@ -57329,40 +56729,52 @@ function __ZNKSt3__18messagesIcE6do_getEiiiRKNS_12basic_stringIcNS_11char_traits
return;
}
-function __ZNSt3__16vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE8__appendEj(i8, i1) {
+function __ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i5, i7, i4, i8) {
+ i5 = i5 | 0;
+ i7 = i7 | 0;
+ i4 = i4 | 0;
i8 = i8 | 0;
- i1 = i1 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0;
- i9 = STACKTOP;
- STACKTOP = STACKTOP + 32 | 0;
- i7 = i9;
- i5 = HEAP32[i8 + 8 >> 2] | 0;
- i3 = i8 + 4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i6 = 0, i9 = 0;
+ i1 = HEAP8[i5 >> 0] | 0;
+ i3 = i5 + 4 | 0;
i2 = HEAP32[i3 >> 2] | 0;
- if (i5 - i2 >> 2 >>> 0 < i1 >>> 0) {
- i3 = HEAP32[i8 >> 2] | 0;
- i6 = i2 - i3 >> 2;
- i4 = i6 + i1 | 0;
- if (i4 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i8);
- i2 = i5 - i3 | 0;
- if (i2 >> 2 >>> 0 < 536870911) {
- i2 = i2 >> 1;
- i2 = i2 >>> 0 < i4 >>> 0 ? i4 : i2;
- } else i2 = 1073741823;
- __ZNSt3__114__split_bufferIPNS_6locale5facetERNS_15__sso_allocatorIS3_Lj28EEEEC2EjjS6_(i7, i2, i6, i8 + 16 | 0);
- i6 = i7 + 8 | 0;
- i5 = HEAP32[i6 >> 2] | 0;
- _memset(i5 | 0, 0, i1 << 2 | 0) | 0;
- HEAP32[i6 >> 2] = i5 + (i1 << 2);
- __ZNSt3__16vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i7);
- __ZNSt3__114__split_bufferIPNS_6locale5facetERNS_15__sso_allocatorIS3_Lj28EEEED2Ev(i7);
- } else do {
- HEAP32[i2 >> 2] = 0;
- i2 = (HEAP32[i3 >> 2] | 0) + 4 | 0;
- HEAP32[i3 >> 2] = i2;
- i1 = i1 + -1 | 0;
- } while ((i1 | 0) != 0);
- STACKTOP = i9;
+ do if (((i1 & 1) == 0 ? (i1 & 255) >>> 1 : i2) | 0) {
+ if ((i7 | 0) != (i4 | 0)) {
+ i1 = i4;
+ i2 = i7;
+ while (1) {
+ i1 = i1 + -4 | 0;
+ if (i2 >>> 0 >= i1 >>> 0) break;
+ i6 = HEAP32[i2 >> 2] | 0;
+ HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i1 >> 2] = i6;
+ i2 = i2 + 4 | 0;
+ }
+ i1 = HEAP8[i5 >> 0] | 0;
+ i2 = HEAP32[i3 >> 2] | 0;
+ }
+ i3 = (i1 & 1) == 0;
+ i5 = i3 ? i5 + 1 | 0 : HEAP32[i5 + 8 >> 2] | 0;
+ i6 = i4 + -4 | 0;
+ i4 = i5 + (i3 ? (i1 & 255) >>> 1 : i2) | 0;
+ i2 = i7;
+ while (1) {
+ i1 = HEAP8[i5 >> 0] | 0;
+ i3 = i1 << 24 >> 24 < 1 | i1 << 24 >> 24 == 127;
+ if (i2 >>> 0 >= i6 >>> 0) break;
+ if (!i3 ? (i1 << 24 >> 24 | 0) != (HEAP32[i2 >> 2] | 0) : 0) {
+ i9 = 10;
+ break;
+ }
+ i5 = (i4 - i5 | 0) > 1 ? i5 + 1 | 0 : i5;
+ i2 = i2 + 4 | 0;
+ }
+ if ((i9 | 0) == 10) {
+ HEAP32[i8 >> 2] = 4;
+ break;
+ }
+ if (!i3 ? ((HEAP32[i6 >> 2] | 0) + -1 | 0) >>> 0 >= i1 << 24 >> 24 >>> 0 : 0) HEAP32[i8 >> 2] = 4;
+ } while (0);
return;
}
@@ -57373,126 +56785,80 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE11parseReturnERPcP
var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0;
i11 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i8 = i11 + 4 | 0;
- i7 = i11;
+ i7 = i11 + 4 | 0;
+ i8 = i11;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i9);
- i1 = HEAP8[HEAP32[i9 >> 2] >> 0] | 0;
- i3 = i6;
+ i2 = HEAP8[HEAP32[i9 >> 2] >> 0] | 0;
+ i1 = i6;
while (1) {
- i2 = HEAP8[i3 >> 0] | 0;
- if (!(i2 << 24 >> 24)) {
+ i3 = HEAP8[i1 >> 0] | 0;
+ if (!(i3 << 24 >> 24)) {
i10 = 4;
break;
}
- if (i2 << 24 >> 24 == i1 << 24 >> 24) {
+ if (i3 << 24 >> 24 == i2 << 24 >> 24) {
i5 = 0;
break;
- } else i3 = i3 + 1 | 0;
+ } else i1 = i1 + 1 | 0;
}
if ((i10 | 0) == 4) i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i4, i9, i6) | 0;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i9);
- i3 = HEAP32[i9 >> 2] | 0;
- i4 = HEAP8[i3 >> 0] | 0;
- i2 = i6;
+ i4 = HEAP32[i9 >> 2] | 0;
+ i3 = HEAP8[i4 >> 0] | 0;
+ i1 = i6;
while (1) {
- i1 = HEAP8[i2 >> 0] | 0;
- if (!(i1 << 24 >> 24)) {
+ i2 = HEAP8[i1 >> 0] | 0;
+ if (!(i2 << 24 >> 24)) {
i10 = 8;
break;
}
- if (i1 << 24 >> 24 == i4 << 24 >> 24) break; else i2 = i2 + 1 | 0;
+ if (i2 << 24 >> 24 == i3 << 24 >> 24) break; else i1 = i1 + 1 | 0;
}
- if ((i10 | 0) == 8) ___assert_fail(22567, 22233, 460, 22587);
- if (i4 << 24 >> 24 == 59) HEAP32[i9 >> 2] = i3 + 1;
- HEAP32[i7 >> 2] = i5;
- HEAP32[i8 >> 2] = HEAP32[i7 >> 2];
- i10 = __ZN6cashew12ValueBuilder10makeReturnENS_3RefE(i8) | 0;
+ if ((i10 | 0) == 8) ___assert_fail(23155, 22821, 460, 23175);
+ if (i3 << 24 >> 24 == 59) HEAP32[i9 >> 2] = i4 + 1;
+ HEAP32[i8 >> 2] = i5;
+ HEAP32[i7 >> 2] = HEAP32[i8 >> 2];
+ i10 = __ZN6cashew12ValueBuilder10makeReturnENS_3RefE(i7) | 0;
STACKTOP = i11;
return i10 | 0;
}
-function __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE8__appendEj(i7, i1) {
+function __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE8__appendEj(i7, i2) {
i7 = i7 | 0;
- i1 = i1 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0, i9 = 0;
+ i2 = i2 | 0;
+ var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0, i9 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i6 = i9;
i3 = HEAP32[i7 + 8 >> 2] | 0;
i8 = i7 + 4 | 0;
- i2 = HEAP32[i8 >> 2] | 0;
- if (i3 - i2 >> 2 >>> 0 < i1 >>> 0) {
+ i1 = HEAP32[i8 >> 2] | 0;
+ if (i3 - i1 >> 2 >>> 0 < i2 >>> 0) {
i5 = HEAP32[i7 >> 2] | 0;
- i4 = (i2 - i5 >> 2) + i1 | 0;
+ i4 = (i1 - i5 >> 2) + i2 | 0;
if (i4 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = i3 - i5 | 0;
- if (i2 >> 2 >>> 0 < 536870911) {
- i2 = i2 >> 1;
- i2 = i2 >>> 0 < i4 >>> 0 ? i4 : i2;
- } else i2 = 1073741823;
- __ZNSt3__114__split_bufferIPN4wasm10ExpressionERNS_9allocatorIS3_EEEC2EjjS6_(i6, i2, (HEAP32[i8 >> 2] | 0) - i5 >> 2, i7 + 8 | 0);
+ i1 = i3 - i5 | 0;
+ if (i1 >> 2 >>> 0 < 536870911) {
+ i1 = i1 >> 1;
+ i1 = i1 >>> 0 < i4 >>> 0 ? i4 : i1;
+ } else i1 = 1073741823;
+ __ZNSt3__114__split_bufferIPN4wasm10ExpressionERNS_9allocatorIS3_EEEC2EjjS6_(i6, i1, (HEAP32[i8 >> 2] | 0) - i5 >> 2, i7 + 8 | 0);
i8 = i6 + 8 | 0;
i5 = HEAP32[i8 >> 2] | 0;
- _memset(i5 | 0, 0, i1 << 2 | 0) | 0;
- HEAP32[i8 >> 2] = i5 + (i1 << 2);
+ _memset(i5 | 0, 0, i2 << 2 | 0) | 0;
+ HEAP32[i8 >> 2] = i5 + (i2 << 2);
__ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i7, i6);
__ZNSt3__114__split_bufferIPN4wasm10ExpressionERNS_9allocatorIS3_EEED2Ev(i6);
} else do {
- HEAP32[i2 >> 2] = 0;
- i2 = (HEAP32[i8 >> 2] | 0) + 4 | 0;
- HEAP32[i8 >> 2] = i2;
- i1 = i1 + -1 | 0;
- } while ((i1 | 0) != 0);
+ HEAP32[i1 >> 2] = 0;
+ i1 = (HEAP32[i8 >> 2] | 0) + 4 | 0;
+ HEAP32[i8 >> 2] = i1;
+ i2 = i2 + -1 | 0;
+ } while ((i2 | 0) != 0);
STACKTOP = i9;
return;
}
-function __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendIPKcEENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueERS7_E4typeESC_SC_(i10, i6, i9) {
- i10 = i10 | 0;
- i6 = i6 | 0;
- i9 = i9 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0;
- i5 = i6;
- i1 = HEAP8[i10 >> 0] | 0;
- if (!(i1 & 1)) {
- i2 = i1;
- i3 = 10;
- i7 = (i1 & 255) >>> 1;
- } else {
- i3 = HEAP32[i10 >> 2] | 0;
- i2 = i3 & 255;
- i3 = (i3 & -2) + -1 | 0;
- i7 = HEAP32[i10 + 4 >> 2] | 0;
- }
- i8 = i9 - i5 | 0;
- do if ((i9 | 0) != (i6 | 0)) {
- if ((i3 - i7 | 0) >>> 0 < i8 >>> 0) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9__grow_byEjjjjjj(i10, i3, i7 + i8 - i3 | 0, i7, i7, 0);
- i1 = HEAP8[i10 >> 0] | 0;
- } else i1 = i2;
- if (!(i1 & 1)) i4 = i10 + 1 | 0; else i4 = HEAP32[i10 + 8 >> 2] | 0;
- i3 = i9 + (i7 - i5) | 0;
- i1 = i6;
- i2 = i4 + i7 | 0;
- while (1) {
- if ((i1 | 0) == (i9 | 0)) break;
- HEAP8[i2 >> 0] = HEAP8[i1 >> 0] | 0;
- i1 = i1 + 1 | 0;
- i2 = i2 + 1 | 0;
- }
- HEAP8[i4 + i3 >> 0] = 0;
- i1 = i7 + i8 | 0;
- if (!(HEAP8[i10 >> 0] & 1)) {
- HEAP8[i10 >> 0] = i1 << 1;
- break;
- } else {
- HEAP32[i10 + 4 >> 2] = i1;
- break;
- }
- } while (0);
- return;
-}
-
function __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i8, i2) {
i8 = i8 | 0;
i2 = i2 | 0;
@@ -57500,9 +56866,9 @@ function __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserv
if (i2 >>> 0 > 4294967279) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i8);
i1 = HEAP8[i8 >> 0] | 0;
if (!(i1 & 1)) i3 = 10; else {
- i3 = HEAP32[i8 >> 2] | 0;
- i1 = i3 & 255;
- i3 = (i3 & -2) + -1 | 0;
+ i1 = HEAP32[i8 >> 2] | 0;
+ i3 = (i1 & -2) + -1 | 0;
+ i1 = i1 & 255;
}
if (!(i1 & 1)) i7 = (i1 & 255) >>> 1; else i7 = HEAP32[i8 + 4 >> 2] | 0;
i2 = i7 >>> 0 > i2 >>> 0 ? i7 : i2;
@@ -57543,47 +56909,80 @@ function __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserv
return;
}
+function __ZN4wasm22SExpressionWasmBuilder18parseModuleElementERNS_7ElementE(i3, i2) {
+ i3 = i3 | 0;
+ i2 = i2 | 0;
+ var i1 = 0;
+ i1 = __ZN4wasm7Element4listEv(i2) | 0;
+ i1 = __ZN4wasm7Element3strEv(HEAP32[HEAP32[i1 >> 2] >> 2] | 0) | 0;
+ do if ((i1 | 0) != (HEAP32[9547] | 0)) {
+ if ((i1 | 0) == (HEAP32[9548] | 0)) {
+ __ZN4wasm22SExpressionWasmBuilder13parseFunctionERNS_7ElementE(i3, i2);
+ break;
+ }
+ if ((i1 | 0) == (HEAP32[9551] | 0)) {
+ __ZN4wasm22SExpressionWasmBuilder11parseMemoryERNS_7ElementE(i3, i2);
+ break;
+ }
+ if ((i1 | 0) == (HEAP32[9553] | 0)) {
+ __ZN4wasm22SExpressionWasmBuilder11parseExportERNS_7ElementE(i3, i2);
+ break;
+ }
+ if ((i1 | 0) != (HEAP32[9554] | 0)) {
+ if ((i1 | 0) == (HEAP32[9555] | 0)) {
+ __ZN4wasm22SExpressionWasmBuilder10parseTableERNS_7ElementE(i3, i2);
+ break;
+ }
+ if ((i1 | 0) != (HEAP32[9557] | 0)) {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16833) | 0, i1) | 0, 10) | 0;
+ __ZNKSt3__18functionIFvvEEclEv(i3 + 8 | 0);
+ }
+ }
+ } else __ZN4wasm22SExpressionWasmBuilder10parseStartERNS_7ElementE(i3, i2); while (0);
+ return;
+}
+
function __ZNSt3__16vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS9_RSA_EE(i6, i5) {
i6 = i6 | 0;
i5 = i5 | 0;
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0;
- i1 = HEAP32[i6 >> 2] | 0;
- i4 = i6 + 4 | 0;
- i2 = i5 + 4 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ i3 = i6 + 4 | 0;
+ i4 = i5 + 4 | 0;
+ i1 = HEAP32[i3 >> 2] | 0;
while (1) {
- if ((i3 | 0) == (i1 | 0)) break;
- i10 = HEAP32[i2 >> 2] | 0;
+ if ((i1 | 0) == (i2 | 0)) break;
+ i10 = HEAP32[i4 >> 2] | 0;
i8 = i10 + -12 | 0;
- i7 = i3 + -12 | 0;
+ i7 = i1 + -12 | 0;
HEAP32[i8 >> 2] = 0;
i9 = i10 + -8 | 0;
HEAP32[i9 >> 2] = 0;
HEAP32[i10 + -4 >> 2] = 0;
HEAP32[i8 >> 2] = HEAP32[i7 >> 2];
- i8 = i3 + -8 | 0;
+ i8 = i1 + -8 | 0;
HEAP32[i9 >> 2] = HEAP32[i8 >> 2];
- i9 = i3 + -4 | 0;
+ i9 = i1 + -4 | 0;
HEAP32[i10 + -4 >> 2] = HEAP32[i9 >> 2];
HEAP32[i9 >> 2] = 0;
HEAP32[i8 >> 2] = 0;
HEAP32[i7 >> 2] = 0;
- HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + -12;
- i3 = i7;
+ HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + -12;
+ i1 = i7;
}
i8 = HEAP32[i6 >> 2] | 0;
- HEAP32[i6 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i2 >> 2] = i8;
+ HEAP32[i6 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i4 >> 2] = i8;
i8 = i5 + 8 | 0;
- i10 = HEAP32[i4 >> 2] | 0;
- HEAP32[i4 >> 2] = HEAP32[i8 >> 2];
+ i10 = HEAP32[i3 >> 2] | 0;
+ HEAP32[i3 >> 2] = HEAP32[i8 >> 2];
HEAP32[i8 >> 2] = i10;
i8 = i6 + 8 | 0;
i10 = i5 + 12 | 0;
i9 = HEAP32[i8 >> 2] | 0;
HEAP32[i8 >> 2] = HEAP32[i10 >> 2];
HEAP32[i10 >> 2] = i9;
- HEAP32[i5 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i5 >> 2] = HEAP32[i4 >> 2];
return;
}
@@ -57594,9 +56993,9 @@ function __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserv
if (i2 >>> 0 > 1073741807) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i8);
i1 = HEAP8[i8 >> 0] | 0;
if (!(i1 & 1)) i3 = 1; else {
- i3 = HEAP32[i8 >> 2] | 0;
- i1 = i3 & 255;
- i3 = (i3 & -2) + -1 | 0;
+ i1 = HEAP32[i8 >> 2] | 0;
+ i3 = (i1 & -2) + -1 | 0;
+ i1 = i1 & 255;
}
if (!(i1 & 1)) i7 = (i1 & 255) >>> 1; else i7 = HEAP32[i8 + 4 >> 2] | 0;
i2 = i7 >>> 0 > i2 >>> 0 ? i7 : i2;
@@ -57647,9 +57046,9 @@ function __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_
i4 = HEAP32[i5 + 4 >> 2] | 0;
if (i1 >>> 0 <= i4 >>> 0) {
if (i1 >>> 0 < i4 >>> 0) {
- if (i4 >>> 0 > 2) i2 = (i4 + -1 & i4 | 0) == 0; else i2 = 0;
- i3 = ~~+Math_ceil(+(+((HEAP32[i5 + 12 >> 2] | 0) >>> 0) / +HEAPF32[i5 + 16 >> 2])) >>> 0;
- if (i2) i2 = 1 << 32 - (Math_clz32(i3 + -1 | 0) | 0); else i2 = __ZNSt3__112__next_primeEj(i3) | 0;
+ if (i4 >>> 0 > 2) i3 = (i4 + -1 & i4 | 0) == 0; else i3 = 0;
+ i2 = ~~+Math_ceil(+(+((HEAP32[i5 + 12 >> 2] | 0) >>> 0) / +HEAPF32[i5 + 16 >> 2])) >>> 0;
+ if (i3) i2 = 1 << 32 - (Math_clz32(i2 + -1 | 0) | 0); else i2 = __ZNSt3__112__next_primeEj(i2) | 0;
i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
if (i1 >>> 0 < i4 >>> 0) __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEE8__rehashEj(i5, i1);
}
@@ -57657,33 +57056,33 @@ function __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_
return;
}
-function __ZNSt3__16vectorIN4wasm6Memory7SegmentENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJiRPciEEEvDpOT_(i9, i4, i5, i6) {
+function __ZNSt3__16vectorIN4wasm6Memory7SegmentENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJiRPciEEEvDpOT_(i9, i5, i6, i7) {
i9 = i9 | 0;
- i4 = i4 | 0;
i5 = i5 | 0;
i6 = i6 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i7 = 0, i8 = 0, i10 = 0;
+ i7 = i7 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i8 = 0, i10 = 0;
i10 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i8 = i10;
- i7 = i9 + 4 | 0;
- i3 = HEAP32[i9 >> 2] | 0;
- i1 = (((HEAP32[i7 >> 2] | 0) - i3 | 0) / 12 | 0) + 1 | 0;
- if (i1 >>> 0 > 357913941) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i9);
- i2 = ((HEAP32[i9 + 8 >> 2] | 0) - i3 | 0) / 12 | 0;
- if (i2 >>> 0 < 178956970) {
- i2 = i2 << 1;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i9 + 4 | 0;
+ i4 = HEAP32[i9 >> 2] | 0;
+ i2 = (((HEAP32[i3 >> 2] | 0) - i4 | 0) / 12 | 0) + 1 | 0;
+ if (i2 >>> 0 > 357913941) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i9);
+ i1 = ((HEAP32[i9 + 8 >> 2] | 0) - i4 | 0) / 12 | 0;
+ if (i1 >>> 0 < 178956970) {
+ i1 = i1 << 1;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 357913941;
- __ZNSt3__114__split_bufferIN4wasm6Memory7SegmentERNS_9allocatorIS3_EEEC2EjjS6_(i8, i1, ((HEAP32[i7 >> 2] | 0) - i3 | 0) / 12 | 0, i9 + 8 | 0);
- i7 = i8 + 8 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i5 = HEAP32[i5 >> 2] | 0;
+ __ZNSt3__114__split_bufferIN4wasm6Memory7SegmentERNS_9allocatorIS3_EEEC2EjjS6_(i8, i1, ((HEAP32[i3 >> 2] | 0) - i4 | 0) / 12 | 0, i9 + 8 | 0);
+ i4 = i8 + 8 | 0;
+ i3 = HEAP32[i4 >> 2] | 0;
i6 = HEAP32[i6 >> 2] | 0;
- HEAP32[i3 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i3 + 4 >> 2] = i5;
- HEAP32[i3 + 8 >> 2] = i6;
- HEAP32[i7 >> 2] = i3 + 12;
+ i7 = HEAP32[i7 >> 2] | 0;
+ HEAP32[i3 >> 2] = HEAP32[i5 >> 2];
+ HEAP32[i3 + 4 >> 2] = i6;
+ HEAP32[i3 + 8 >> 2] = i7;
+ HEAP32[i4 >> 2] = i3 + 12;
__ZNSt3__16vectorIN4wasm6Memory7SegmentENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i9, i8);
__ZNSt3__114__split_bufferIN4wasm6Memory7SegmentERNS_9allocatorIS3_EEED2Ev(i8);
STACKTOP = i10;
@@ -57713,26 +57112,26 @@ function __ZN4wasm17SExpressionParser14parseInnerListEv(i7) {
i1 = i6;
}
} else {
- i6 = _strstr(i1, 16014) | 0;
+ i6 = _strstr(i1, 16597) | 0;
HEAP32[i7 >> 2] = i6;
if (i6 | 0) {
i2 = 0;
break;
}
- ___assert_fail(16017, 16023, 144, 16043);
+ ___assert_fail(16600, 16606, 144, 16626);
}
} else {
i2 = __ZN10MixedArena5allocIN4wasm7ElementEEEPT_v(i7 + 4 | 0) | 0;
while (1) {
- i4 = __ZN4wasm17SExpressionParser5parseEv(i7) | 0;
- HEAP32[i6 >> 2] = i4;
- if (!i4) break;
- i5 = __ZN4wasm7Element4listEv(i2) | 0;
- i3 = i5 + 4 | 0;
- i1 = HEAP32[i3 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i5 + 8 >> 2] | 0)) __ZNSt3__16vectorIPN4wasm7ElementENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i5, i6); else {
- HEAP32[i1 >> 2] = i4;
- HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + 4;
+ i1 = __ZN4wasm17SExpressionParser5parseEv(i7) | 0;
+ HEAP32[i6 >> 2] = i1;
+ if (!i1) break;
+ i3 = __ZN4wasm7Element4listEv(i2) | 0;
+ i4 = i3 + 4 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ if ((i5 | 0) == (HEAP32[i3 + 8 >> 2] | 0)) __ZNSt3__16vectorIPN4wasm7ElementENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i3, i6); else {
+ HEAP32[i5 >> 2] = i1;
+ HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4;
}
}
} while (0);
@@ -57740,50 +57139,50 @@ function __ZN4wasm17SExpressionParser14parseInnerListEv(i7) {
return i2 | 0;
}
-function __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKcj(i7, i4, i2, i5) {
+function __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKcj(i7, i4, i2, i6) {
i7 = i7 | 0;
i4 = i4 | 0;
i2 = i2 | 0;
- i5 = i5 | 0;
- var i1 = 0, i3 = 0, i6 = 0;
+ i6 = i6 | 0;
+ var i1 = 0, i3 = 0, i5 = 0;
i1 = HEAP8[i7 >> 0] | 0;
i3 = (i1 & 1) == 0;
- if (i3) i6 = (i1 & 255) >>> 1; else i6 = HEAP32[i7 + 4 >> 2] | 0;
- if (i6 >>> 0 < i4 >>> 0) __ZNKSt3__121__basic_string_commonILb1EE20__throw_out_of_rangeEv(i7);
+ if (i3) i5 = (i1 & 255) >>> 1; else i5 = HEAP32[i7 + 4 >> 2] | 0;
+ if (i5 >>> 0 < i4 >>> 0) __ZNKSt3__121__basic_string_commonILb1EE20__throw_out_of_rangeEv(i7);
if (i3) i3 = 10; else {
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = i3 & 255;
- i3 = (i3 & -2) + -1 | 0;
+ i1 = HEAP32[i7 >> 2] | 0;
+ i3 = (i1 & -2) + -1 | 0;
+ i1 = i1 & 255;
}
- if ((i3 - i6 | 0) >>> 0 >= i5 >>> 0) {
- if (i5 | 0) {
+ if ((i3 - i5 | 0) >>> 0 >= i6 >>> 0) {
+ if (i6 | 0) {
if (!(i1 & 1)) i3 = i7 + 1 | 0; else i3 = HEAP32[i7 + 8 >> 2] | 0;
- if ((i6 | 0) == (i4 | 0)) i1 = i3 + i4 | 0; else {
+ if ((i5 | 0) == (i4 | 0)) i1 = i3 + i4 | 0; else {
i1 = i3 + i4 | 0;
- _memmove(i1 + i5 | 0, i1 | 0, i6 - i4 | 0) | 0;
- i2 = i1 >>> 0 <= i2 >>> 0 & (i3 + i6 | 0) >>> 0 > i2 >>> 0 ? i2 + i5 | 0 : i2;
+ _memmove(i1 + i6 | 0, i1 | 0, i5 - i4 | 0) | 0;
+ i2 = i1 >>> 0 <= i2 >>> 0 & (i3 + i5 | 0) >>> 0 > i2 >>> 0 ? i2 + i6 | 0 : i2;
}
- _memmove(i1 | 0, i2 | 0, i5 | 0) | 0;
- i1 = i6 + i5 | 0;
+ _memmove(i1 | 0, i2 | 0, i6 | 0) | 0;
+ i1 = i5 + i6 | 0;
if (!(HEAP8[i7 >> 0] & 1)) HEAP8[i7 >> 0] = i1 << 1; else HEAP32[i7 + 4 >> 2] = i1;
HEAP8[i3 + i1 >> 0] = 0;
}
- } else __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE21__grow_by_and_replaceEjjjjjjPKc(i7, i3, i6 + i5 - i3 | 0, i6, i4, 0, i5, i2);
+ } else __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE21__grow_by_and_replaceEjjjjjjPKc(i7, i3, i5 + i6 - i3 | 0, i5, i4, 0, i6, i2);
return i7 | 0;
}
-function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11__get_am_pmERiRS4_S4_RjRKNS_5ctypeIwEE(i1, i10, i3, i5, i6, i4) {
+function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11__get_am_pmERiRS4_S4_RjRKNS_5ctypeIwEE(i1, i10, i5, i7, i8, i6) {
i1 = i1 | 0;
i10 = i10 | 0;
- i3 = i3 | 0;
i5 = i5 | 0;
+ i7 = i7 | 0;
+ i8 = i8 | 0;
i6 = i6 | 0;
- i4 = i4 | 0;
- var i2 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0;
+ var i2 = 0, i3 = 0, i4 = 0, i9 = 0, i11 = 0;
i11 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i8 = i11 + 4 | 0;
- i7 = i11;
+ i3 = i11 + 4 | 0;
+ i4 = i11;
i9 = i1 + 8 | 0;
i9 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i9 >> 2] | 0) + 8 >> 2] & 127](i9) | 0;
i1 = HEAP8[i9 >> 0] | 0;
@@ -57791,32 +57190,32 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
i1 = HEAP8[i9 + 12 >> 0] | 0;
if (!(i1 & 1)) i1 = (i1 & 255) >>> 1; else i1 = HEAP32[i9 + 16 >> 2] | 0;
do if ((i2 | 0) != (0 - i1 | 0)) {
- HEAP32[i7 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i8 >> 2] = HEAP32[i7 >> 2];
- i2 = __ZNSt3__114__scan_keywordINS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEPKNS_12basic_stringIwS3_NS_9allocatorIwEEEENS_5ctypeIwEEEET0_RT_SE_SD_SD_RKT1_Rjb(i3, i8, i9, i9 + 24 | 0, i4, i6, 0) | 0;
- i1 = HEAP32[i10 >> 2] | 0;
- if ((i2 | 0) == (i9 | 0) & (i1 | 0) == 12) {
+ HEAP32[i4 >> 2] = HEAP32[i7 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i4 >> 2];
+ i1 = __ZNSt3__114__scan_keywordINS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEPKNS_12basic_stringIwS3_NS_9allocatorIwEEEENS_5ctypeIwEEEET0_RT_SE_SD_SD_RKT1_Rjb(i5, i3, i9, i9 + 24 | 0, i6, i8, 0) | 0;
+ i2 = HEAP32[i10 >> 2] | 0;
+ if ((i1 | 0) == (i9 | 0) & (i2 | 0) == 12) {
HEAP32[i10 >> 2] = 0;
break;
}
- if ((i1 | 0) < 12 & (i2 - i9 | 0) == 12) HEAP32[i10 >> 2] = i1 + 12;
- } else HEAP32[i6 >> 2] = HEAP32[i6 >> 2] | 4; while (0);
+ if ((i2 | 0) < 12 & (i1 - i9 | 0) == 12) HEAP32[i10 >> 2] = i2 + 12;
+ } else HEAP32[i8 >> 2] = HEAP32[i8 >> 2] | 4; while (0);
STACKTOP = i11;
return;
}
-function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11__get_am_pmERiRS4_S4_RjRKNS_5ctypeIcEE(i1, i10, i3, i5, i6, i4) {
+function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11__get_am_pmERiRS4_S4_RjRKNS_5ctypeIcEE(i1, i10, i5, i7, i8, i6) {
i1 = i1 | 0;
i10 = i10 | 0;
- i3 = i3 | 0;
i5 = i5 | 0;
+ i7 = i7 | 0;
+ i8 = i8 | 0;
i6 = i6 | 0;
- i4 = i4 | 0;
- var i2 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0;
+ var i2 = 0, i3 = 0, i4 = 0, i9 = 0, i11 = 0;
i11 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i8 = i11 + 4 | 0;
- i7 = i11;
+ i3 = i11 + 4 | 0;
+ i4 = i11;
i9 = i1 + 8 | 0;
i9 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i9 >> 2] | 0) + 8 >> 2] & 127](i9) | 0;
i1 = HEAP8[i9 >> 0] | 0;
@@ -57824,215 +57223,204 @@ function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
i1 = HEAP8[i9 + 12 >> 0] | 0;
if (!(i1 & 1)) i1 = (i1 & 255) >>> 1; else i1 = HEAP32[i9 + 16 >> 2] | 0;
do if ((i2 | 0) != (0 - i1 | 0)) {
- HEAP32[i7 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i8 >> 2] = HEAP32[i7 >> 2];
- i2 = __ZNSt3__114__scan_keywordINS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEPKNS_12basic_stringIcS3_NS_9allocatorIcEEEENS_5ctypeIcEEEET0_RT_SE_SD_SD_RKT1_Rjb(i3, i8, i9, i9 + 24 | 0, i4, i6, 0) | 0;
- i1 = HEAP32[i10 >> 2] | 0;
- if ((i2 | 0) == (i9 | 0) & (i1 | 0) == 12) {
+ HEAP32[i4 >> 2] = HEAP32[i7 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i4 >> 2];
+ i1 = __ZNSt3__114__scan_keywordINS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEPKNS_12basic_stringIcS3_NS_9allocatorIcEEEENS_5ctypeIcEEEET0_RT_SE_SD_SD_RKT1_Rjb(i5, i3, i9, i9 + 24 | 0, i6, i8, 0) | 0;
+ i2 = HEAP32[i10 >> 2] | 0;
+ if ((i1 | 0) == (i9 | 0) & (i2 | 0) == 12) {
HEAP32[i10 >> 2] = 0;
break;
}
- if ((i1 | 0) < 12 & (i2 - i9 | 0) == 12) HEAP32[i10 >> 2] = i1 + 12;
- } else HEAP32[i6 >> 2] = HEAP32[i6 >> 2] | 4; while (0);
+ if ((i2 | 0) < 12 & (i1 - i9 | 0) == 12) HEAP32[i10 >> 2] = i2 + 12;
+ } else HEAP32[i8 >> 2] = HEAP32[i8 >> 2] | 4; while (0);
STACKTOP = i11;
return;
}
-function __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERy(i8, i2) {
+function __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERy(i8, i7) {
i8 = i8 | 0;
- i2 = i2 | 0;
- var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0;
+ i7 = i7 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i6 = i9 + 20 | 0;
- i4 = i9 + 16 | 0;
+ i2 = i9 + 20 | 0;
+ i1 = i9 + 16 | 0;
i3 = i9 + 12 | 0;
- i5 = i9 + 8 | 0;
+ i4 = i9 + 8 | 0;
i10 = i9 + 24 | 0;
- i1 = i9 + 4 | 0;
- i7 = i9;
+ i6 = i9 + 4 | 0;
+ i5 = i9;
__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE6sentryC2ERS3_b(i10, i8, 0);
if (HEAP8[i10 >> 0] | 0) {
- HEAP32[i1 >> 2] = 0;
+ HEAP32[i6 >> 2] = 0;
i11 = __ZNKSt3__18ios_base6getlocEv(i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
- HEAP32[i7 >> 2] = i11;
- i11 = __ZNKSt3__16locale9use_facetERNS0_2idE(i7, 38988) | 0;
+ HEAP32[i5 >> 2] = i11;
+ i11 = __ZNKSt3__16locale9use_facetERNS0_2idE(i5, 40460) | 0;
i10 = i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0;
i12 = HEAP32[(HEAP32[i11 >> 2] | 0) + 36 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i10 + 24 >> 2];
- HEAP32[i5 >> 2] = 0;
- HEAP32[i4 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i6 >> 2] = HEAP32[i5 >> 2];
- FUNCTION_TABLE_iiiiiii[i12 & 63](i11, i4, i6, i10, i1, i2) | 0;
- __ZNSt3__16localeD2Ev(i7);
+ HEAP32[i4 >> 2] = 0;
+ HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
+ FUNCTION_TABLE_iiiiiii[i12 & 63](i11, i1, i2, i10, i6, i7) | 0;
+ __ZNSt3__16localeD2Ev(i5);
i7 = i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0;
i10 = i7 + 16 | 0;
- HEAP32[i10 >> 2] = HEAP32[i10 >> 2] | HEAP32[i1 >> 2] | (HEAP32[i7 + 24 >> 2] | 0) == 0;
+ HEAP32[i10 >> 2] = HEAP32[i10 >> 2] | HEAP32[i6 >> 2] | (HEAP32[i7 + 24 >> 2] | 0) == 0;
}
STACKTOP = i9;
return i8 | 0;
}
-function __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERx(i8, i2) {
+function __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERx(i8, i7) {
i8 = i8 | 0;
- i2 = i2 | 0;
- var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0;
+ i7 = i7 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i6 = i9 + 20 | 0;
- i4 = i9 + 16 | 0;
+ i2 = i9 + 20 | 0;
+ i1 = i9 + 16 | 0;
i3 = i9 + 12 | 0;
- i5 = i9 + 8 | 0;
+ i4 = i9 + 8 | 0;
i10 = i9 + 24 | 0;
- i1 = i9 + 4 | 0;
- i7 = i9;
+ i6 = i9 + 4 | 0;
+ i5 = i9;
__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE6sentryC2ERS3_b(i10, i8, 0);
if (HEAP8[i10 >> 0] | 0) {
- HEAP32[i1 >> 2] = 0;
+ HEAP32[i6 >> 2] = 0;
i11 = __ZNKSt3__18ios_base6getlocEv(i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
- HEAP32[i7 >> 2] = i11;
- i11 = __ZNKSt3__16locale9use_facetERNS0_2idE(i7, 38988) | 0;
+ HEAP32[i5 >> 2] = i11;
+ i11 = __ZNKSt3__16locale9use_facetERNS0_2idE(i5, 40460) | 0;
i10 = i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0;
i12 = HEAP32[(HEAP32[i11 >> 2] | 0) + 20 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i10 + 24 >> 2];
- HEAP32[i5 >> 2] = 0;
- HEAP32[i4 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i6 >> 2] = HEAP32[i5 >> 2];
- FUNCTION_TABLE_iiiiiii[i12 & 63](i11, i4, i6, i10, i1, i2) | 0;
- __ZNSt3__16localeD2Ev(i7);
+ HEAP32[i4 >> 2] = 0;
+ HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
+ FUNCTION_TABLE_iiiiiii[i12 & 63](i11, i1, i2, i10, i6, i7) | 0;
+ __ZNSt3__16localeD2Ev(i5);
i7 = i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0;
i10 = i7 + 16 | 0;
- HEAP32[i10 >> 2] = HEAP32[i10 >> 2] | HEAP32[i1 >> 2] | (HEAP32[i7 + 24 >> 2] | 0) == 0;
+ HEAP32[i10 >> 2] = HEAP32[i10 >> 2] | HEAP32[i6 >> 2] | (HEAP32[i7 + 24 >> 2] | 0) == 0;
}
STACKTOP = i9;
return i8 | 0;
}
-function __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERj(i8, i2) {
+function __ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERj(i8, i7) {
i8 = i8 | 0;
- i2 = i2 | 0;
- var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0;
+ i7 = i7 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i6 = i9 + 20 | 0;
- i4 = i9 + 16 | 0;
+ i2 = i9 + 20 | 0;
+ i1 = i9 + 16 | 0;
i3 = i9 + 12 | 0;
- i5 = i9 + 8 | 0;
+ i4 = i9 + 8 | 0;
i10 = i9 + 24 | 0;
- i1 = i9 + 4 | 0;
- i7 = i9;
+ i6 = i9 + 4 | 0;
+ i5 = i9;
__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE6sentryC2ERS3_b(i10, i8, 0);
if (HEAP8[i10 >> 0] | 0) {
- HEAP32[i1 >> 2] = 0;
+ HEAP32[i6 >> 2] = 0;
i11 = __ZNKSt3__18ios_base6getlocEv(i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
- HEAP32[i7 >> 2] = i11;
- i11 = __ZNKSt3__16locale9use_facetERNS0_2idE(i7, 38988) | 0;
+ HEAP32[i5 >> 2] = i11;
+ i11 = __ZNKSt3__16locale9use_facetERNS0_2idE(i5, 40460) | 0;
i10 = i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0;
i12 = HEAP32[(HEAP32[i11 >> 2] | 0) + 28 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i10 + 24 >> 2];
- HEAP32[i5 >> 2] = 0;
- HEAP32[i4 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i6 >> 2] = HEAP32[i5 >> 2];
- FUNCTION_TABLE_iiiiiii[i12 & 63](i11, i4, i6, i10, i1, i2) | 0;
- __ZNSt3__16localeD2Ev(i7);
+ HEAP32[i4 >> 2] = 0;
+ HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
+ FUNCTION_TABLE_iiiiiii[i12 & 63](i11, i1, i2, i10, i6, i7) | 0;
+ __ZNSt3__16localeD2Ev(i5);
i7 = i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0;
i10 = i7 + 16 | 0;
- HEAP32[i10 >> 2] = HEAP32[i10 >> 2] | HEAP32[i1 >> 2] | (HEAP32[i7 + 24 >> 2] | 0) == 0;
+ HEAP32[i10 >> 2] = HEAP32[i10 >> 2] | HEAP32[i6 >> 2] | (HEAP32[i7 + 24 >> 2] | 0) == 0;
}
STACKTOP = i9;
return i8 | 0;
}
-function __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6appendIPwEENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueERS5_E4typeES9_S9_(i10, i6, i9) {
- i10 = i10 | 0;
- i6 = i6 | 0;
+function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner10visitBlockEPNS_5BlockE(i7, i9, i8) {
+ i7 = i7 | 0;
i9 = i9 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0;
- i5 = i6;
- i1 = HEAP8[i10 >> 0] | 0;
- if (!(i1 & 1)) {
- i2 = i1;
- i3 = 1;
- i7 = (i1 & 255) >>> 1;
- } else {
- i3 = HEAP32[i10 >> 2] | 0;
- i2 = i3 & 255;
- i3 = (i3 & -2) + -1 | 0;
- i7 = HEAP32[i10 + 4 >> 2] | 0;
- }
- i8 = i9 - i5 >> 2;
- do if (i8 | 0) {
- if ((i3 - i7 | 0) >>> 0 < i8 >>> 0) {
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9__grow_byEjjjjjj(i10, i3, i7 + i8 - i3 | 0, i7, i7, 0, 0);
- i1 = HEAP8[i10 >> 0] | 0;
- } else i1 = i2;
- if (!(i1 & 1)) i4 = i10 + 4 | 0; else i4 = HEAP32[i10 + 8 >> 2] | 0;
- i3 = i7 + ((i9 - i5 | 0) >>> 2) | 0;
- i1 = i6;
- i2 = i4 + (i7 << 2) | 0;
- while (1) {
- if ((i1 | 0) == (i9 | 0)) break;
- HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
- i1 = i1 + 4 | 0;
- i2 = i2 + 4 | 0;
- }
- HEAP32[i4 + (i3 << 2) >> 2] = 0;
- i1 = i7 + i8 | 0;
- if (!(HEAP8[i10 >> 0] & 1)) {
- HEAP8[i10 >> 0] = i1 << 1;
- break;
- } else {
- HEAP32[i10 + 4 >> 2] = i1;
+ i8 = i8 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i10 = 0, i11 = 0;
+ i11 = STACKTOP;
+ STACKTOP = STACKTOP + 32 | 0;
+ i2 = i11;
+ HEAP32[i7 >> 2] = 0;
+ i5 = i7 + 8 | 0;
+ HEAP32[i5 >> 2] = 0;
+ HEAP32[i5 + 4 >> 2] = 0;
+ i5 = i7 + 16 | 0;
+ HEAP32[i5 >> 2] = 0;
+ i3 = HEAP32[i8 + 16 >> 2] | 0;
+ i6 = HEAP32[i8 + 12 >> 2] | 0;
+ while (1) {
+ if ((i6 | 0) == (i3 | 0)) break;
+ __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i2, i9, HEAP32[i6 >> 2] | 0);
+ HEAP32[i7 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i7 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i7 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ HEAP32[i7 + 12 >> 2] = HEAP32[i2 + 12 >> 2];
+ HEAP32[i7 + 16 >> 2] = HEAP32[i2 + 16 >> 2];
+ i4 = HEAP32[i5 >> 2] | 0;
+ if (!i4) i6 = i6 + 4 | 0; else {
+ i1 = i4;
+ i10 = 4;
break;
}
- } while (0);
- return i10 | 0;
+ }
+ if ((i10 | 0) == 4 ? (i1 | 0) == (HEAP32[i8 + 8 >> 2] | 0) : 0) HEAP32[i5 >> 2] = 0;
+ STACKTOP = i11;
+ return;
}
-function __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendIPcEENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueERS5_E4typeES9_S9_(i10, i6, i9) {
- i10 = i10 | 0;
- i6 = i6 | 0;
+function __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendIPKcEENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueERS7_E4typeESC_SC_(i9, i5, i8) {
i9 = i9 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0;
- i5 = i6;
- i1 = HEAP8[i10 >> 0] | 0;
+ i5 = i5 | 0;
+ i8 = i8 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0;
+ i3 = i5;
+ i1 = HEAP8[i9 >> 0] | 0;
if (!(i1 & 1)) {
- i2 = i1;
- i3 = 10;
i7 = (i1 & 255) >>> 1;
+ i2 = 10;
} else {
- i3 = HEAP32[i10 >> 2] | 0;
- i2 = i3 & 255;
- i3 = (i3 & -2) + -1 | 0;
- i7 = HEAP32[i10 + 4 >> 2] | 0;
- }
- i8 = i9 - i5 | 0;
- do if ((i9 | 0) != (i6 | 0)) {
- if ((i3 - i7 | 0) >>> 0 < i8 >>> 0) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9__grow_byEjjjjjj(i10, i3, i7 + i8 - i3 | 0, i7, i7, 0, 0);
- i1 = HEAP8[i10 >> 0] | 0;
- } else i1 = i2;
- if (!(i1 & 1)) i4 = i10 + 1 | 0; else i4 = HEAP32[i10 + 8 >> 2] | 0;
- i3 = i9 + (i7 - i5) | 0;
- i1 = i6;
+ i1 = HEAP32[i9 >> 2] | 0;
+ i7 = HEAP32[i9 + 4 >> 2] | 0;
+ i2 = (i1 & -2) + -1 | 0;
+ i1 = i1 & 255;
+ }
+ i6 = i8 - i3 | 0;
+ do if ((i8 | 0) != (i5 | 0)) {
+ if ((i2 - i7 | 0) >>> 0 < i6 >>> 0) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9__grow_byEjjjjjj(i9, i2, i7 + i6 - i2 | 0, i7, i7, 0);
+ i1 = HEAP8[i9 >> 0] | 0;
+ }
+ if (!(i1 & 1)) i4 = i9 + 1 | 0; else i4 = HEAP32[i9 + 8 >> 2] | 0;
+ i3 = i8 + (i7 - i3) | 0;
+ i1 = i5;
i2 = i4 + i7 | 0;
while (1) {
- if ((i1 | 0) == (i9 | 0)) break;
+ if ((i1 | 0) == (i8 | 0)) break;
HEAP8[i2 >> 0] = HEAP8[i1 >> 0] | 0;
i1 = i1 + 1 | 0;
i2 = i2 + 1 | 0;
}
HEAP8[i4 + i3 >> 0] = 0;
- i1 = i7 + i8 | 0;
- if (!(HEAP8[i10 >> 0] & 1)) {
- HEAP8[i10 >> 0] = i1 << 1;
+ i1 = i7 + i6 | 0;
+ if (!(HEAP8[i9 >> 0] & 1)) {
+ HEAP8[i9 >> 0] = i1 << 1;
break;
} else {
- HEAP32[i10 + 4 >> 2] = i1;
+ HEAP32[i9 + 4 >> 2] = i1;
break;
}
} while (0);
- return i10 | 0;
+ return;
}
function __ZL25default_terminate_handlerv() {
@@ -58046,66 +57434,90 @@ function __ZL25default_terminate_handlerv() {
i5 = i5 + 36 | 0;
i1 = ___cxa_get_globals_fast() | 0;
if (i1 | 0 ? (i4 = HEAP32[i1 >> 2] | 0, i4 | 0) : 0) {
- i2 = i4 + 48 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- i2 = HEAP32[i2 + 4 >> 2] | 0;
- if (!((i1 & -256 | 0) == 1126902528 & (i2 | 0) == 1129074247)) {
- HEAP32[i3 >> 2] = HEAP32[2759];
- _abort_message(33765, i3);
+ i1 = i4 + 48 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ i1 = HEAP32[i1 + 4 >> 2] | 0;
+ if (!((i2 & -256 | 0) == 1126902528 & (i1 | 0) == 1129074247)) {
+ HEAP32[i3 >> 2] = HEAP32[2901];
+ _abort_message(35229, i3);
}
- if ((i1 | 0) == 1126902529 & (i2 | 0) == 1129074247) i1 = HEAP32[i4 + 44 >> 2] | 0; else i1 = i4 + 80 | 0;
+ if ((i2 | 0) == 1126902529 & (i1 | 0) == 1129074247) i1 = HEAP32[i4 + 44 >> 2] | 0; else i1 = i4 + 80 | 0;
HEAP32[i5 >> 2] = i1;
i4 = HEAP32[i4 >> 2] | 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- if (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[582] | 0) + 16 >> 2] & 31](2328, i4, i5) | 0) {
+ if (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[632] | 0) + 16 >> 2] & 31](2528, i4, i5) | 0) {
i8 = HEAP32[i5 >> 2] | 0;
- i5 = HEAP32[2759] | 0;
+ i5 = HEAP32[2901] | 0;
i8 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i8 >> 2] | 0) + 8 >> 2] & 127](i8) | 0;
HEAP32[i6 >> 2] = i5;
HEAP32[i6 + 4 >> 2] = i1;
HEAP32[i6 + 8 >> 2] = i8;
- _abort_message(33679, i6);
+ _abort_message(35143, i6);
} else {
- HEAP32[i8 >> 2] = HEAP32[2759];
+ HEAP32[i8 >> 2] = HEAP32[2901];
HEAP32[i8 + 4 >> 2] = i1;
- _abort_message(33724, i8);
+ _abort_message(35188, i8);
}
}
- _abort_message(33803, i7);
+ _abort_message(35267, i7);
}
-function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner10visitBlockEPNS_5BlockE(i5, i9, i6) {
- i5 = i5 | 0;
- i9 = i9 | 0;
- i6 = i6 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0;
- i11 = STACKTOP;
- STACKTOP = STACKTOP + 32 | 0;
- i7 = i11;
- HEAP32[i5 >> 2] = 0;
- HEAPF64[i5 + 8 >> 3] = 0.0;
- i8 = i5 + 16 | 0;
- HEAP32[i8 >> 2] = 0;
- i2 = HEAP32[i6 + 16 >> 2] | 0;
- i4 = HEAP32[i6 + 12 >> 2] | 0;
- while (1) {
- if ((i4 | 0) == (i2 | 0)) break;
- __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i7, i9, HEAP32[i4 >> 2] | 0);
- HEAP32[i5 >> 2] = HEAP32[i7 >> 2];
- HEAP32[i5 + 4 >> 2] = HEAP32[i7 + 4 >> 2];
- HEAP32[i5 + 8 >> 2] = HEAP32[i7 + 8 >> 2];
- HEAP32[i5 + 12 >> 2] = HEAP32[i7 + 12 >> 2];
- HEAP32[i5 + 16 >> 2] = HEAP32[i7 + 16 >> 2];
- i3 = HEAP32[i8 >> 2] | 0;
- if (!i3) i4 = i4 + 4 | 0; else {
- i1 = i3;
- i10 = 4;
- break;
- }
+function __ZN4wasm14ModuleInstance15getFinalAddressINS_5StoreEEEjPT_NS_7LiteralE(i4, i3, i1) {
+ i4 = i4 | 0;
+ i3 = i3 | 0;
+ i1 = i1 | 0;
+ var i2 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0;
+ i6 = STACKTOP;
+ STACKTOP = STACKTOP + 16 | 0;
+ i5 = i6;
+ HEAP32[i5 >> 2] = i4;
+ if ((HEAP32[i1 >> 2] | 0) == 1) {
+ i2 = __ZN4wasm7Literal6geti32Ev(i1) | 0;
+ i1 = i2;
+ i2 = ((i2 | 0) < 0) << 31 >> 31;
+ } else {
+ i1 = __ZN4wasm7Literal6geti64Ev(i1) | 0;
+ i2 = tempRet0;
}
- if ((i10 | 0) == 4 ? (i1 | 0) == (HEAP32[i6 + 8 >> 2] | 0) : 0) HEAP32[i8 >> 2] = 0;
- STACKTOP = i11;
- return;
+ i8 = i3 + 12 | 0;
+ i7 = i4 + 8 | 0;
+ __ZZN4wasm14ModuleInstance15getFinalAddressINS_5StoreEEEjPT_NS_7LiteralEENKUljjPKcE_clEjjS7_(i5, HEAP32[i8 >> 2] | 0, HEAP32[i7 >> 2] | 0, 20361);
+ __ZZN4wasm14ModuleInstance15getFinalAddressINS_5StoreEEEjPT_NS_7LiteralEENKUljjPKcE_clEjjS7_(i5, i1, (HEAP32[i7 >> 2] | 0) - (HEAP32[i8 >> 2] | 0) | 0, 20377);
+ i4 = _i64Add(HEAP32[i8 >> 2] | 0, 0, i1 | 0, i2 | 0) | 0;
+ i3 = i3 + 8 | 0;
+ __ZZN4wasm14ModuleInstance15getFinalAddressINS_5StoreEEEjPT_NS_7LiteralEENKUljjPKcE_clEjjS7_(i5, HEAP32[i3 >> 2] | 0, HEAP32[i7 >> 2] | 0, 20392);
+ __ZZN4wasm14ModuleInstance15getFinalAddressINS_5StoreEEEjPT_NS_7LiteralEENKUljjPKcE_clEjjS7_(i5, i4, (HEAP32[i7 >> 2] | 0) - (HEAP32[i3 >> 2] | 0) | 0, 20407);
+ STACKTOP = i6;
+ return i4 | 0;
+}
+
+function __ZN4wasm14ModuleInstance15getFinalAddressINS_4LoadEEEjPT_NS_7LiteralE(i4, i3, i1) {
+ i4 = i4 | 0;
+ i3 = i3 | 0;
+ i1 = i1 | 0;
+ var i2 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0;
+ i6 = STACKTOP;
+ STACKTOP = STACKTOP + 16 | 0;
+ i5 = i6;
+ HEAP32[i5 >> 2] = i4;
+ if ((HEAP32[i1 >> 2] | 0) == 1) {
+ i2 = __ZN4wasm7Literal6geti32Ev(i1) | 0;
+ i1 = i2;
+ i2 = ((i2 | 0) < 0) << 31 >> 31;
+ } else {
+ i1 = __ZN4wasm7Literal6geti64Ev(i1) | 0;
+ i2 = tempRet0;
+ }
+ i8 = i3 + 16 | 0;
+ i7 = i4 + 8 | 0;
+ __ZZN4wasm14ModuleInstance15getFinalAddressINS_4LoadEEEjPT_NS_7LiteralEENKUljjPKcE_clEjjS7_(i5, HEAP32[i8 >> 2] | 0, HEAP32[i7 >> 2] | 0, 20361);
+ __ZZN4wasm14ModuleInstance15getFinalAddressINS_4LoadEEEjPT_NS_7LiteralEENKUljjPKcE_clEjjS7_(i5, i1, (HEAP32[i7 >> 2] | 0) - (HEAP32[i8 >> 2] | 0) | 0, 20377);
+ i4 = _i64Add(HEAP32[i8 >> 2] | 0, 0, i1 | 0, i2 | 0) | 0;
+ i3 = i3 + 8 | 0;
+ __ZZN4wasm14ModuleInstance15getFinalAddressINS_4LoadEEEjPT_NS_7LiteralEENKUljjPKcE_clEjjS7_(i5, HEAP32[i3 >> 2] | 0, HEAP32[i7 >> 2] | 0, 20392);
+ __ZZN4wasm14ModuleInstance15getFinalAddressINS_4LoadEEEjPT_NS_7LiteralEENKUljjPKcE_clEjjS7_(i5, i4, (HEAP32[i7 >> 2] | 0) - (HEAP32[i3 >> 2] | 0) | 0, 20407);
+ STACKTOP = i6;
+ return i4 | 0;
}
function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i4) {
@@ -58123,16 +57535,16 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i4)
}
if (i1 << 24 >> 24 != 47) break;
if ((HEAP8[i2 + 1 >> 0] | 0) == 47) {
- i1 = i2 + 2 | 0;
+ i3 = i2 + 2 | 0;
while (1) {
- HEAP32[i4 >> 2] = i1;
- i5 = HEAP8[i1 >> 0] | 0;
- i3 = i5 << 24 >> 24 == 0;
- i2 = i1 + 1 | 0;
- if (i5 << 24 >> 24 != 10 & (i3 ^ 1)) i1 = i2; else break;
+ HEAP32[i4 >> 2] = i3;
+ i5 = HEAP8[i3 >> 0] | 0;
+ i1 = i5 << 24 >> 24 == 0;
+ i2 = i3 + 1 | 0;
+ if (i5 << 24 >> 24 != 10 & (i1 ^ 1)) i3 = i2; else break;
}
- if (i3) {
- i2 = i1;
+ if (i1) {
+ i2 = i3;
continue;
}
HEAP32[i4 >> 2] = i2;
@@ -58166,27 +57578,72 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i4)
return;
}
+function __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6appendIPwEENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueERS5_E4typeES9_S9_(i9, i5, i8) {
+ i9 = i9 | 0;
+ i5 = i5 | 0;
+ i8 = i8 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0;
+ i3 = i5;
+ i1 = HEAP8[i9 >> 0] | 0;
+ if (!(i1 & 1)) {
+ i7 = (i1 & 255) >>> 1;
+ i2 = 1;
+ } else {
+ i1 = HEAP32[i9 >> 2] | 0;
+ i7 = HEAP32[i9 + 4 >> 2] | 0;
+ i2 = (i1 & -2) + -1 | 0;
+ i1 = i1 & 255;
+ }
+ i6 = i8 - i3 >> 2;
+ do if (i6 | 0) {
+ if ((i2 - i7 | 0) >>> 0 < i6 >>> 0) {
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9__grow_byEjjjjjj(i9, i2, i7 + i6 - i2 | 0, i7, i7, 0, 0);
+ i1 = HEAP8[i9 >> 0] | 0;
+ }
+ if (!(i1 & 1)) i4 = i9 + 4 | 0; else i4 = HEAP32[i9 + 8 >> 2] | 0;
+ i3 = i7 + ((i8 - i3 | 0) >>> 2) | 0;
+ i1 = i5;
+ i2 = i4 + (i7 << 2) | 0;
+ while (1) {
+ if ((i1 | 0) == (i8 | 0)) break;
+ HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
+ i1 = i1 + 4 | 0;
+ i2 = i2 + 4 | 0;
+ }
+ HEAP32[i4 + (i3 << 2) >> 2] = 0;
+ i1 = i7 + i6 | 0;
+ if (!(HEAP8[i9 >> 0] & 1)) {
+ HEAP8[i9 >> 0] = i1 << 1;
+ break;
+ } else {
+ HEAP32[i9 + 4 >> 2] = i1;
+ break;
+ }
+ } while (0);
+ return i9 | 0;
+}
+
function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterParenERPc(i1, i2) {
i1 = i1 | 0;
i2 = i2 | 0;
var i3 = 0, i4 = 0, i5 = 0;
- i5 = i1 + 4 | 0;
- __ZNSt3__16vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE6resizeEj(i1, (((HEAP32[i5 >> 2] | 0) - (HEAP32[i1 >> 2] | 0) | 0) / 12 | 0) + 1 | 0);
+ i4 = i1 + 4 | 0;
+ __ZNSt3__16vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE6resizeEj(i1, (((HEAP32[i4 >> 2] | 0) - (HEAP32[i1 >> 2] | 0) | 0) / 12 | 0) + 1 | 0);
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i2);
- i3 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i1, i2, 34358) | 0;
+ i3 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i1, i2, 35822) | 0;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i2);
i1 = HEAP32[i2 >> 2] | 0;
- if ((HEAP8[i1 >> 0] | 0) != 41) ___assert_fail(22613, 22233, 659, 23192);
+ if ((HEAP8[i1 >> 0] | 0) != 41) ___assert_fail(23201, 22821, 659, 23780);
HEAP32[i2 >> 2] = i1 + 1;
- i1 = HEAP32[i5 >> 2] | 0;
+ i1 = HEAP32[i4 >> 2] | 0;
i2 = i1 + -12 | 0;
- if ((HEAP32[i1 + -8 >> 2] | 0) == (HEAP32[i2 >> 2] | 0)) i4 = i1; else ___assert_fail(22896, 22233, 661, 23192);
+ if ((HEAP32[i1 + -8 >> 2] | 0) == (HEAP32[i2 >> 2] | 0)) i5 = i1; else ___assert_fail(23484, 22821, 661, 23780);
while (1) {
- if ((i4 | 0) == (i2 | 0)) break;
- i1 = i4 + -12 | 0;
- HEAP32[i5 >> 2] = i1;
+ if ((i5 | 0) == (i2 | 0)) break;
+ i1 = i5 + -12 | 0;
+ HEAP32[i4 >> 2] = i1;
__ZNSt3__113__vector_baseIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEED2Ev(i1);
- i4 = HEAP32[i5 >> 2] | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
}
return i3 | 0;
}
@@ -58247,35 +57704,35 @@ function _memchr(i1, i5, i2) {
return (i2 | 0 ? i1 : 0) | 0;
}
-function __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEjPKcj(i7, i4, i2, i5) {
+function __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEjPKcj(i7, i4, i2, i6) {
i7 = i7 | 0;
i4 = i4 | 0;
i2 = i2 | 0;
- i5 = i5 | 0;
- var i1 = 0, i3 = 0, i6 = 0;
+ i6 = i6 | 0;
+ var i1 = 0, i3 = 0, i5 = 0;
i1 = HEAP8[i7 >> 0] | 0;
i3 = (i1 & 1) == 0;
- if (i3) i6 = (i1 & 255) >>> 1; else i6 = HEAP32[i7 + 4 >> 2] | 0;
- if (i6 >>> 0 < i4 >>> 0) __ZNKSt3__121__basic_string_commonILb1EE20__throw_out_of_rangeEv(i7);
+ if (i3) i5 = (i1 & 255) >>> 1; else i5 = HEAP32[i7 + 4 >> 2] | 0;
+ if (i5 >>> 0 < i4 >>> 0) __ZNKSt3__121__basic_string_commonILb1EE20__throw_out_of_rangeEv(i7);
if (i3) i3 = 10; else {
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = i3 & 255;
- i3 = (i3 & -2) + -1 | 0;
+ i1 = HEAP32[i7 >> 2] | 0;
+ i3 = (i1 & -2) + -1 | 0;
+ i1 = i1 & 255;
}
- if ((i3 - i6 | 0) >>> 0 >= i5 >>> 0) {
- if (i5 | 0) {
+ if ((i3 - i5 | 0) >>> 0 >= i6 >>> 0) {
+ if (i6 | 0) {
if (!(i1 & 1)) i3 = i7 + 1 | 0; else i3 = HEAP32[i7 + 8 >> 2] | 0;
- if ((i6 | 0) == (i4 | 0)) i1 = i3 + i4 | 0; else {
+ if ((i5 | 0) == (i4 | 0)) i1 = i3 + i4 | 0; else {
i1 = i3 + i4 | 0;
- _memmove(i1 + i5 | 0, i1 | 0, i6 - i4 | 0) | 0;
- i2 = i1 >>> 0 <= i2 >>> 0 & (i3 + i6 | 0) >>> 0 > i2 >>> 0 ? i2 + i5 | 0 : i2;
+ _memmove(i1 + i6 | 0, i1 | 0, i5 - i4 | 0) | 0;
+ i2 = i1 >>> 0 <= i2 >>> 0 & (i3 + i5 | 0) >>> 0 > i2 >>> 0 ? i2 + i6 | 0 : i2;
}
- _memmove(i1 | 0, i2 | 0, i5 | 0) | 0;
- i1 = i6 + i5 | 0;
+ _memmove(i1 | 0, i2 | 0, i6 | 0) | 0;
+ i1 = i5 + i6 | 0;
if (!(HEAP8[i7 >> 0] & 1)) HEAP8[i7 >> 0] = i1 << 1; else HEAP32[i7 + 4 >> 2] = i1;
HEAP8[i3 + i1 >> 0] = 0;
}
- } else __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE21__grow_by_and_replaceEjjjjjjPKc(i7, i3, i6 + i5 - i3 | 0, i6, i4, 0, i5, i2);
+ } else __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE21__grow_by_and_replaceEjjjjjjPKc(i7, i3, i5 + i6 - i3 | 0, i5, i4, 0, i6, i2);
return i7 | 0;
}
@@ -58320,53 +57777,53 @@ function __ZN4wasm22SExpressionWasmBuilder15getPrefixedNameENSt3__112basic_strin
i6 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i3 = i6 + 24 | 0;
- i5 = i6 + 12 | 0;
- i4 = i6;
- i7 = i2 + 72 | 0;
+ i4 = i6 + 12 | 0;
+ i5 = i6;
+ i7 = i2 + 76 | 0;
i2 = HEAP32[i7 >> 2] | 0;
HEAP32[i7 >> 2] = i2 + 1;
- __ZNSt3__19to_stringEj(i4, i2);
+ __ZNSt3__19to_stringEj(i5, i2);
i2 = HEAP8[i1 >> 0] | 0;
i7 = (i2 & 1) == 0;
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEjPKcj(i4, 0, i7 ? i1 + 1 | 0 : HEAP32[i1 + 8 >> 2] | 0, i7 ? (i2 & 255) >>> 1 : HEAP32[i1 + 4 >> 2] | 0) | 0;
- HEAP32[i5 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i5 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i5 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEjPKcj(i5, 0, i7 ? i1 + 1 | 0 : HEAP32[i1 + 8 >> 2] | 0, i7 ? (i2 & 255) >>> 1 : HEAP32[i1 + 4 >> 2] | 0) | 0;
+ HEAP32[i4 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i4 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i4 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- __ZN6cashew7IStringC2EPKcb(i3, (HEAP8[i5 >> 0] & 1) == 0 ? i5 + 1 | 0 : HEAP32[i5 + 8 >> 2] | 0, 0);
+ __ZN6cashew7IStringC2EPKcb(i3, (HEAP8[i4 >> 0] & 1) == 0 ? i4 + 1 | 0 : HEAP32[i4 + 8 >> 2] | 0, 0);
i7 = HEAP32[i3 >> 2] | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i4);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5);
STACKTOP = i6;
return i7 | 0;
}
-function __ZN4wasm5Block7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i5, i7, i3) {
+function __ZN4wasm5Block7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i5, i7, i4) {
i5 = i5 | 0;
i7 = i7 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i6 = 0, i8 = 0, i9 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i6 = 0, i8 = 0, i9 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i2 = i8 + 8 | 0;
+ i1 = i8 + 8 | 0;
i6 = i8 + 4 | 0;
- i1 = i8;
- HEAP32[i6 >> 2] = i3;
- __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i7, 26579, 0) | 0;
- i4 = i5 + 8 | 0;
- if (HEAP32[i4 >> 2] | 0) {
+ i2 = i8;
+ HEAP32[i6 >> 2] = i4;
+ __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i7, 27931, 0) | 0;
+ i3 = i5 + 8 | 0;
+ if (HEAP32[i3 >> 2] | 0) {
i9 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i7, 32) | 0;
- HEAP32[i1 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
- __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i9, i2) | 0;
+ HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
+ __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i9, i1) | 0;
}
__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i7, 10) | 0;
- i3 = i3 + 1 | 0;
+ i3 = i4 + 1 | 0;
HEAP32[i6 >> 2] = i3;
i2 = HEAP32[i5 + 16 >> 2] | 0;
i1 = HEAP32[i5 + 12 >> 2] | 0;
@@ -58387,16 +57844,16 @@ function __ZNSt3__16vectorIN4wasm7LiteralENS_9allocatorIS2_EEE21__push_back_slow
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = ((HEAP32[i4 >> 2] | 0) - i3 >> 4) + 1 | 0;
- if (i1 >>> 0 > 268435455) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = (HEAP32[i7 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 4 >>> 0 < 134217727) {
- i2 = i2 >> 3;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 4) + 1 | 0;
+ if (i2 >>> 0 > 268435455) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = (HEAP32[i7 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 4 >>> 0 < 134217727) {
+ i1 = i1 >> 3;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 268435455;
- __ZNSt3__114__split_bufferIN4wasm7LiteralERNS_9allocatorIS2_EEEC2EjjS5_(i5, i1, (HEAP32[i4 >> 2] | 0) - i3 >> 4, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIN4wasm7LiteralERNS_9allocatorIS2_EEEC2EjjS5_(i5, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 4, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
@@ -58410,6 +57867,51 @@ function __ZNSt3__16vectorIN4wasm7LiteralENS_9allocatorIS2_EEE21__push_back_slow
return;
}
+function __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendIPcEENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueERS5_E4typeES9_S9_(i9, i5, i8) {
+ i9 = i9 | 0;
+ i5 = i5 | 0;
+ i8 = i8 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0;
+ i3 = i5;
+ i1 = HEAP8[i9 >> 0] | 0;
+ if (!(i1 & 1)) {
+ i7 = (i1 & 255) >>> 1;
+ i2 = 10;
+ } else {
+ i1 = HEAP32[i9 >> 2] | 0;
+ i7 = HEAP32[i9 + 4 >> 2] | 0;
+ i2 = (i1 & -2) + -1 | 0;
+ i1 = i1 & 255;
+ }
+ i6 = i8 - i3 | 0;
+ do if ((i8 | 0) != (i5 | 0)) {
+ if ((i2 - i7 | 0) >>> 0 < i6 >>> 0) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9__grow_byEjjjjjj(i9, i2, i7 + i6 - i2 | 0, i7, i7, 0, 0);
+ i1 = HEAP8[i9 >> 0] | 0;
+ }
+ if (!(i1 & 1)) i4 = i9 + 1 | 0; else i4 = HEAP32[i9 + 8 >> 2] | 0;
+ i3 = i8 + (i7 - i3) | 0;
+ i1 = i5;
+ i2 = i4 + i7 | 0;
+ while (1) {
+ if ((i1 | 0) == (i8 | 0)) break;
+ HEAP8[i2 >> 0] = HEAP8[i1 >> 0] | 0;
+ i1 = i1 + 1 | 0;
+ i2 = i2 + 1 | 0;
+ }
+ HEAP8[i4 + i3 >> 0] = 0;
+ i1 = i7 + i6 | 0;
+ if (!(HEAP8[i9 >> 0] & 1)) {
+ HEAP8[i9 >> 0] = i1 << 1;
+ break;
+ } else {
+ HEAP32[i9 + 4 >> 2] = i1;
+ break;
+ }
+ } while (0);
+ return i9 | 0;
+}
+
function __ZNSt3__16vectorIN4wasm7LiteralENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i7, i6) {
i7 = i7 | 0;
i6 = i6 | 0;
@@ -58417,16 +57919,16 @@ function __ZNSt3__16vectorIN4wasm7LiteralENS_9allocatorIS2_EEE21__push_back_slow
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = ((HEAP32[i4 >> 2] | 0) - i3 >> 4) + 1 | 0;
- if (i1 >>> 0 > 268435455) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = (HEAP32[i7 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 4 >>> 0 < 134217727) {
- i2 = i2 >> 3;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 4) + 1 | 0;
+ if (i2 >>> 0 > 268435455) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = (HEAP32[i7 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 4 >>> 0 < 134217727) {
+ i1 = i1 >> 3;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 268435455;
- __ZNSt3__114__split_bufferIN4wasm7LiteralERNS_9allocatorIS2_EEEC2EjjS5_(i5, i1, (HEAP32[i4 >> 2] | 0) - i3 >> 4, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIN4wasm7LiteralERNS_9allocatorIS2_EEEC2EjjS5_(i5, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 4, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
@@ -58450,7 +57952,7 @@ function __ZN4wasm12CallIndirect7doPrintERNSt3__113basic_ostreamIcNS1_11char_tra
i3 = i7 + 8 | 0;
i5 = i7 + 4 | 0;
i8 = i7;
- i2 = __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i6, 16743, 0) | 0;
+ i2 = __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i6, 17334, 0) | 0;
HEAP32[i8 >> 2] = HEAP32[HEAP32[i4 + 20 >> 2] >> 2];
HEAP32[i3 >> 2] = HEAP32[i8 >> 2];
__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i2, i3) | 0;
@@ -58495,36 +57997,62 @@ function __ZN4wasm6ModuleD2Ev(i1) {
return;
}
-function __ZNSt3__16vectorIN4wasm6Switch4CaseENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJN6cashew7IStringEPNS1_10ExpressionEEEEvDpOT_(i8, i4, i5) {
+function __ZNSt3__16vectorIN4wasm6Switch4CaseENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJN6cashew7IStringEPNS1_10ExpressionEEEEvDpOT_(i8, i5, i6) {
i8 = i8 | 0;
- i4 = i4 | 0;
i5 = i5 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i6 = 0, i7 = 0, i9 = 0;
+ i6 = i6 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0, i9 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i7 = i9;
- i6 = i8 + 4 | 0;
- i3 = HEAP32[i8 >> 2] | 0;
- i1 = ((HEAP32[i6 >> 2] | 0) - i3 >> 3) + 1 | 0;
- if (i1 >>> 0 > 536870911) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i8);
- i2 = (HEAP32[i8 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 3 >>> 0 < 268435455) {
- i2 = i2 >> 2;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i8 + 4 | 0;
+ i4 = HEAP32[i8 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 3) + 1 | 0;
+ if (i2 >>> 0 > 536870911) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i8);
+ i1 = (HEAP32[i8 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 3 >>> 0 < 268435455) {
+ i1 = i1 >> 2;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 536870911;
- __ZNSt3__114__split_bufferIN4wasm6Switch4CaseERNS_9allocatorIS3_EEEC2EjjS6_(i7, i1, (HEAP32[i6 >> 2] | 0) - i3 >> 3, i8 + 8 | 0);
- i6 = i7 + 8 | 0;
- i3 = HEAP32[i6 >> 2] | 0;
- i5 = HEAP32[i5 >> 2] | 0;
- HEAP32[i3 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i3 + 4 >> 2] = i5;
- HEAP32[i6 >> 2] = i3 + 8;
+ __ZNSt3__114__split_bufferIN4wasm6Switch4CaseERNS_9allocatorIS3_EEEC2EjjS6_(i7, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 3, i8 + 8 | 0);
+ i4 = i7 + 8 | 0;
+ i3 = HEAP32[i4 >> 2] | 0;
+ i6 = HEAP32[i6 >> 2] | 0;
+ HEAP32[i3 >> 2] = HEAP32[i5 >> 2];
+ HEAP32[i3 + 4 >> 2] = i6;
+ HEAP32[i4 >> 2] = i3 + 8;
__ZNSt3__16vectorIN4wasm6Switch4CaseENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i7);
__ZNSt3__114__split_bufferIN4wasm6Switch4CaseERNS_9allocatorIS3_EEED2Ev(i7);
STACKTOP = i9;
return;
}
+function __ZN4wasm6Binary8finalizeEv(i4) {
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0;
+ i5 = STACKTOP;
+ STACKTOP = STACKTOP + 16 | 0;
+ i2 = i5;
+ if ((HEAP32[i4 + 8 >> 2] | 0) > 16) HEAP32[i4 + 4 >> 2] = 1; else {
+ i3 = HEAP32[(HEAP32[i4 + 12 >> 2] | 0) + 4 >> 2] | 0;
+ i1 = HEAP32[(HEAP32[i4 + 16 >> 2] | 0) + 4 >> 2] | 0;
+ if ((i3 | 0) != 5 ? !((i1 | 0) == 5 | (i3 | 0) == (i1 | 0)) : 0) {
+ i6 = __ZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i4, __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 16884) | 0, 0) | 0;
+ i7 = __ZNKSt3__18ios_base6getlocEv(i6 + (HEAP32[(HEAP32[i6 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
+ HEAP32[i2 >> 2] = i7;
+ i7 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 40436) | 0;
+ i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i7 >> 2] | 0) + 28 >> 2] & 31](i7, 10) | 0;
+ __ZNSt3__16localeD2Ev(i2);
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE3putEc(i6, i7) | 0;
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i6) | 0;
+ ___assert_fail(16891, 27572, 905, 16989);
+ }
+ HEAP32[i4 + 4 >> 2] = (i3 | 0) != 5 ? i3 : i1;
+ }
+ STACKTOP = i5;
+ return;
+}
+
function __ZN6cashew12ValueBuilder7makeForENS_3RefES1_S1_S1_(i4, i2, i3, i1) {
i4 = i4 | 0;
i2 = i2 | 0;
@@ -58540,7 +58068,7 @@ function __ZN6cashew12ValueBuilder7makeForENS_3RefES1_S1_S1_(i4, i2, i3, i1) {
i8 = i5 + 4 | 0;
i7 = i5;
i10 = __ZN6cashew12ValueBuilder12makeRawArrayEi(5) | 0;
- i13 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(36972) | 0;
+ i13 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38444) | 0;
HEAP32[i12 >> 2] = i13;
HEAP32[i6 >> 2] = HEAP32[i12 >> 2];
i10 = __ZN6cashew5Value9push_backENS_3RefE(i10, i6) | 0;
@@ -58562,77 +58090,77 @@ function __ZN6cashew12ValueBuilder7makeForENS_3RefES1_S1_S1_(i4, i2, i3, i1) {
function ___cxx_global_array_dtor_46(i1) {
i1 = i1 | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(40004);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(39992);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(39980);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(39968);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(39956);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(39944);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(39932);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(39920);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(39908);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(39896);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(39884);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(39872);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(39860);
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(39848);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41476);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41464);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41452);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41440);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41428);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41416);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41404);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41392);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41380);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41368);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41356);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41344);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41332);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(41320);
return;
}
-function __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRN6cashew7IStringERNS1_8WasmTypeEEEEvDpOT_(i8, i4, i5) {
+function __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRN6cashew7IStringERNS1_8WasmTypeEEEEvDpOT_(i8, i5, i6) {
i8 = i8 | 0;
- i4 = i4 | 0;
i5 = i5 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i6 = 0, i7 = 0, i9 = 0;
+ i6 = i6 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0, i9 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i7 = i9;
- i6 = i8 + 4 | 0;
- i3 = HEAP32[i8 >> 2] | 0;
- i1 = ((HEAP32[i6 >> 2] | 0) - i3 >> 3) + 1 | 0;
- if (i1 >>> 0 > 536870911) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i8);
- i2 = (HEAP32[i8 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 3 >>> 0 < 268435455) {
- i2 = i2 >> 2;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i8 + 4 | 0;
+ i4 = HEAP32[i8 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 3) + 1 | 0;
+ if (i2 >>> 0 > 536870911) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i8);
+ i1 = (HEAP32[i8 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 3 >>> 0 < 268435455) {
+ i1 = i1 >> 2;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 536870911;
- __ZNSt3__114__split_bufferIN4wasm8NameTypeERNS_9allocatorIS2_EEEC2EjjS5_(i7, i1, (HEAP32[i6 >> 2] | 0) - i3 >> 3, i8 + 8 | 0);
- i6 = i7 + 8 | 0;
- i3 = HEAP32[i6 >> 2] | 0;
- i5 = HEAP32[i5 >> 2] | 0;
- HEAP32[i3 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i3 + 4 >> 2] = i5;
- HEAP32[i6 >> 2] = i3 + 8;
+ __ZNSt3__114__split_bufferIN4wasm8NameTypeERNS_9allocatorIS2_EEEC2EjjS5_(i7, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 3, i8 + 8 | 0);
+ i4 = i7 + 8 | 0;
+ i3 = HEAP32[i4 >> 2] | 0;
+ i6 = HEAP32[i6 >> 2] | 0;
+ HEAP32[i3 >> 2] = HEAP32[i5 >> 2];
+ HEAP32[i3 + 4 >> 2] = i6;
+ HEAP32[i4 >> 2] = i3 + 8;
__ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i8, i7);
__ZNSt3__114__split_bufferIN4wasm8NameTypeERNS_9allocatorIS2_EEED2Ev(i7);
STACKTOP = i9;
return;
}
-function __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRN6cashew7IStringENS1_8WasmTypeEEEEvDpOT_(i8, i4, i5) {
+function __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRN6cashew7IStringENS1_8WasmTypeEEEEvDpOT_(i8, i5, i6) {
i8 = i8 | 0;
- i4 = i4 | 0;
i5 = i5 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i6 = 0, i7 = 0, i9 = 0;
+ i6 = i6 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0, i9 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i7 = i9;
- i6 = i8 + 4 | 0;
- i3 = HEAP32[i8 >> 2] | 0;
- i1 = ((HEAP32[i6 >> 2] | 0) - i3 >> 3) + 1 | 0;
- if (i1 >>> 0 > 536870911) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i8);
- i2 = (HEAP32[i8 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 3 >>> 0 < 268435455) {
- i2 = i2 >> 2;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i8 + 4 | 0;
+ i4 = HEAP32[i8 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 3) + 1 | 0;
+ if (i2 >>> 0 > 536870911) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i8);
+ i1 = (HEAP32[i8 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 3 >>> 0 < 268435455) {
+ i1 = i1 >> 2;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 536870911;
- __ZNSt3__114__split_bufferIN4wasm8NameTypeERNS_9allocatorIS2_EEEC2EjjS5_(i7, i1, (HEAP32[i6 >> 2] | 0) - i3 >> 3, i8 + 8 | 0);
- i6 = i7 + 8 | 0;
- i3 = HEAP32[i6 >> 2] | 0;
- i5 = HEAP32[i5 >> 2] | 0;
- HEAP32[i3 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i3 + 4 >> 2] = i5;
- HEAP32[i6 >> 2] = i3 + 8;
+ __ZNSt3__114__split_bufferIN4wasm8NameTypeERNS_9allocatorIS2_EEEC2EjjS5_(i7, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 3, i8 + 8 | 0);
+ i4 = i7 + 8 | 0;
+ i3 = HEAP32[i4 >> 2] | 0;
+ i6 = HEAP32[i6 >> 2] | 0;
+ HEAP32[i3 >> 2] = HEAP32[i5 >> 2];
+ HEAP32[i3 + 4 >> 2] = i6;
+ HEAP32[i4 >> 2] = i3 + 8;
__ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i8, i7);
__ZNSt3__114__split_bufferIN4wasm8NameTypeERNS_9allocatorIS2_EEED2Ev(i7);
STACKTOP = i9;
@@ -58641,20 +58169,20 @@ function __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_
function ___cxx_global_array_dtor(i1) {
i1 = i1 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39192);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39180);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39168);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39156);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39144);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39132);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39120);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39108);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39096);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39084);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39072);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39060);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39048);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(39036);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40664);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40652);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40640);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40628);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40616);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40604);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40592);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40580);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40568);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40556);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40544);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40532);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40520);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(40508);
return;
}
@@ -58684,8 +58212,8 @@ function __ZNSt3__114__num_put_base14__format_floatEPcPKcj(i1, i3, i2) {
i2 = HEAP8[i3 >> 0] | 0;
if (!(i2 << 24 >> 24)) break;
HEAP8[i1 >> 0] = i2;
- i1 = i1 + 1 | 0;
i3 = i3 + 1 | 0;
+ i1 = i1 + 1 | 0;
}
L14 : do switch (i6 | 0) {
case 4:
@@ -58733,26 +58261,26 @@ function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vect
var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0, d10 = 0.0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 48 | 0;
- i4 = i9 + 32 | 0;
- i5 = i9 + 16 | 0;
- i6 = i9;
+ i2 = i9 + 32 | 0;
+ i3 = i9 + 16 | 0;
+ i4 = i9;
d10 = +Math_abs(+d7);
- i2 = (HEAPF32[tempDoublePtr >> 2] = d10, HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 2139095040;
+ i5 = (HEAPF32[tempDoublePtr >> 2] = d10, HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 2139095040;
d10 = +Math_abs(+d8);
- i3 = (HEAPF32[tempDoublePtr >> 2] = d10, HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 2139095040;
+ i6 = (HEAPF32[tempDoublePtr >> 2] = d10, HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 2139095040;
d10 = +Math_abs(+d1);
- do if (i3 | (i2 | (HEAPF32[tempDoublePtr >> 2] = d10, HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 2139095040)) if (i2 | i3) {
- HEAP32[i6 >> 2] = 3;
- HEAPF32[i6 + 8 >> 2] = i2 ? d7 : d8;
- i6 = __ZN4wasm7Literal14reinterpreti32Ev(i6) | 0 | 12582912;
- HEAP32[i5 >> 2] = 1;
- HEAP32[i5 + 8 >> 2] = i6;
- d1 = +__ZN4wasm7Literal14reinterpretf32Ev(i5);
+ do if (i6 | (i5 | (HEAPF32[tempDoublePtr >> 2] = d10, HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 2139095040)) if (i5 | i6) {
+ HEAP32[i4 >> 2] = 3;
+ HEAPF32[i4 + 8 >> 2] = i5 ? d7 : d8;
+ i6 = __ZN4wasm7Literal14reinterpreti32Ev(i4) | 0 | 12582912;
+ HEAP32[i3 >> 2] = 1;
+ HEAP32[i3 + 8 >> 2] = i6;
+ d1 = +__ZN4wasm7Literal14reinterpretf32Ev(i3);
break;
} else {
- HEAP32[i4 >> 2] = 1;
- HEAP32[i4 + 8 >> 2] = 2143289344;
- d1 = +__ZN4wasm7Literal14reinterpretf32Ev(i4);
+ HEAP32[i2 >> 2] = 1;
+ HEAP32[i2 + 8 >> 2] = 2143289344;
+ d1 = +__ZN4wasm7Literal14reinterpretf32Ev(i2);
break;
} while (0);
STACKTOP = i9;
@@ -58766,16 +58294,16 @@ function __ZNSt3__16vectorIN4wasm6Switch4CaseENS_9allocatorIS3_EEE21__push_back_
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = ((HEAP32[i4 >> 2] | 0) - i3 >> 3) + 1 | 0;
- if (i1 >>> 0 > 536870911) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = (HEAP32[i7 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 3 >>> 0 < 268435455) {
- i2 = i2 >> 2;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 3) + 1 | 0;
+ if (i2 >>> 0 > 536870911) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = (HEAP32[i7 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 3 >>> 0 < 268435455) {
+ i1 = i1 >> 2;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 536870911;
- __ZNSt3__114__split_bufferIN4wasm6Switch4CaseERNS_9allocatorIS3_EEEC2EjjS6_(i5, i1, (HEAP32[i4 >> 2] | 0) - i3 >> 3, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIN4wasm6Switch4CaseERNS_9allocatorIS3_EEEC2EjjS6_(i5, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 3, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
i1 = i6;
@@ -58790,94 +58318,65 @@ function __ZNSt3__16vectorIN4wasm6Switch4CaseENS_9allocatorIS3_EEE21__push_back_
return;
}
-function __ZN4wasm22SExpressionWasmBuilder18parseModuleElementERNS_7ElementE(i3, i2) {
- i3 = i3 | 0;
- i2 = i2 | 0;
- var i1 = 0;
- i1 = __ZN4wasm7Element4listEv(i2) | 0;
- i1 = __ZN4wasm7Element3strEv(HEAP32[HEAP32[i1 >> 2] >> 2] | 0) | 0;
- do if ((i1 | 0) != (HEAP32[9181] | 0)) {
- if ((i1 | 0) == (HEAP32[9184] | 0)) {
- __ZN4wasm22SExpressionWasmBuilder11parseMemoryERNS_7ElementE(i3, i2);
- break;
- }
- if ((i1 | 0) == (HEAP32[9186] | 0)) {
- __ZN4wasm22SExpressionWasmBuilder11parseExportERNS_7ElementE(i3, i2);
- break;
- }
- if ((i1 | 0) != (HEAP32[9187] | 0)) {
- if ((i1 | 0) == (HEAP32[9188] | 0)) {
- __ZN4wasm22SExpressionWasmBuilder10parseTableERNS_7ElementE(i3, i2);
- break;
- }
- if ((i1 | 0) != (HEAP32[9190] | 0)) {
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16314) | 0, i1) | 0, 10) | 0;
- __ZNKSt3__18functionIFvvEEclEv(i3 + 8 | 0);
- }
- }
- } else __ZN4wasm22SExpressionWasmBuilder13parseFunctionERNS_7ElementE(i3, i2); while (0);
- return;
-}
-
-function __ZNSt3__113unordered_mapIN6cashew7IStringEN7AsmData5LocalENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERSB_(i5, i3) {
+function __ZNSt3__113unordered_mapIN6cashew7IStringEN7AsmData5LocalENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERSB_(i5, i4) {
i5 = i5 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i6 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i6 = 0;
i6 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i2 = i6 + 8 | 0;
- i4 = i6;
- i1 = __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmData5LocalEEENS_22__unordered_map_hasherIS3_S6_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S6_NS_8equal_toIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__hash_iteratorIPNS_11__hash_nodeIS6_PvEEEERKT_(i5, i3) | 0;
+ i3 = i6 + 8 | 0;
+ i2 = i6;
+ i1 = __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmData5LocalEEENS_22__unordered_map_hasherIS3_S6_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S6_NS_8equal_toIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__hash_iteratorIPNS_11__hash_nodeIS6_PvEEEERKT_(i5, i4) | 0;
if (!i1) {
- __ZNSt3__113unordered_mapIN6cashew7IStringEN7AsmData5LocalENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE25__construct_node_with_keyERSB_(i2, i5, i3);
- __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmData5LocalEEENS_22__unordered_map_hasherIS3_S6_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S6_NS_8equal_toIS3_EELb1EEENS_9allocatorIS6_EEE20__node_insert_uniqueEPNS_11__hash_nodeIS6_PvEE(i4, i5, HEAP32[i2 >> 2] | 0);
- i1 = HEAP32[i4 >> 2] | 0;
+ __ZNSt3__113unordered_mapIN6cashew7IStringEN7AsmData5LocalENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE25__construct_node_with_keyERSB_(i3, i5, i4);
+ __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmData5LocalEEENS_22__unordered_map_hasherIS3_S6_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S6_NS_8equal_toIS3_EELb1EEENS_9allocatorIS6_EEE20__node_insert_uniqueEPNS_11__hash_nodeIS6_PvEE(i2, i5, HEAP32[i3 >> 2] | 0);
+ i1 = HEAP32[i2 >> 2] | 0;
}
STACKTOP = i6;
return i1 + 12 | 0;
}
-function __ZNSt3__125__num_get_signed_integralIlEET_PKcS3_Rji(i1, i5, i6, i2) {
+function __ZNSt3__125__num_get_signed_integralIlEET_PKcS3_Rji(i1, i6, i7, i2) {
i1 = i1 | 0;
- i5 = i5 | 0;
i6 = i6 | 0;
+ i7 = i7 | 0;
i2 = i2 | 0;
- var i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0;
+ var i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i7 = i9;
- if ((i1 | 0) == (i5 | 0)) {
- HEAP32[i6 >> 2] = 4;
+ i8 = i9;
+ if ((i1 | 0) == (i6 | 0)) {
+ HEAP32[i7 >> 2] = 4;
i1 = 0;
} else {
- i8 = ___errno_location() | 0;
- i4 = HEAP32[i8 >> 2] | 0;
- HEAP32[i8 >> 2] = 0;
- i1 = _strtoll_l(i1, i7, i2, __ZNSt3__16__clocEv() | 0) | 0;
+ i4 = ___errno_location() | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ HEAP32[i4 >> 2] = 0;
+ i1 = _strtoll_l(i1, i8, i2, __ZNSt3__16__clocEv() | 0) | 0;
i2 = tempRet0;
- i3 = HEAP32[i8 >> 2] | 0;
- if (!i3) HEAP32[i8 >> 2] = i4;
- L7 : do if ((HEAP32[i7 >> 2] | 0) == (i5 | 0)) {
+ i3 = HEAP32[i4 >> 2] | 0;
+ if (!i3) HEAP32[i4 >> 2] = i5;
+ L7 : do if ((HEAP32[i8 >> 2] | 0) == (i6 | 0)) {
do if ((i3 | 0) == 34) {
- HEAP32[i6 >> 2] = 4;
+ HEAP32[i7 >> 2] = 4;
if ((i2 | 0) > 0 | (i2 | 0) == 0 & i1 >>> 0 > 0) {
i1 = 2147483647;
break L7;
}
} else {
if ((i2 | 0) < -1 | (i2 | 0) == -1 & i1 >>> 0 < 2147483648) {
- HEAP32[i6 >> 2] = 4;
+ HEAP32[i7 >> 2] = 4;
break;
}
if ((i2 | 0) > 0 | (i2 | 0) == 0 & i1 >>> 0 > 2147483647) {
- HEAP32[i6 >> 2] = 4;
+ HEAP32[i7 >> 2] = 4;
i1 = 2147483647;
break L7;
} else break L7;
} while (0);
i1 = -2147483648;
} else {
- HEAP32[i6 >> 2] = 4;
+ HEAP32[i7 >> 2] = 4;
i1 = 0;
} while (0);
}
@@ -58894,19 +58393,19 @@ function __ZN4wasm6Module15addFunctionTypeEPNS_12FunctionTypeE(i6, i2) {
i3 = i7;
i5 = i7 + 4 | 0;
HEAP32[i3 >> 2] = i2;
- i4 = i6 + 128 | 0;
+ i4 = i6 + 132 | 0;
i1 = __ZN4wasm4Name7fromIntEj(HEAP32[i4 >> 2] | 0) | 0;
HEAP32[i5 >> 2] = i1;
if (!(HEAP32[i2 >> 2] | 0)) HEAP32[i2 >> 2] = i1;
- i2 = i6 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i6 + 8 >> 2] | 0)) {
+ i1 = i6 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i6 + 8 >> 2] | 0)) {
__ZNSt3__16vectorIPN4wasm12FunctionTypeENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i6, i3);
i1 = HEAP32[i3 >> 2] | 0;
} else {
i3 = HEAP32[i3 >> 2] | 0;
- HEAP32[i1 >> 2] = i3;
- HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4;
+ HEAP32[i2 >> 2] = i3;
+ HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 4;
i1 = i3;
}
i6 = i6 + 48 | 0;
@@ -58924,27 +58423,27 @@ function __ZN10MixedArena5allocIN4wasm6SwitchEEEPT_v(i7) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i4 = i8;
i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 48 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 48 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 48;
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 48;
HEAP32[i7 >> 2] = 5;
HEAP32[i7 + 4 >> 2] = 0;
HEAP32[i7 + 8 >> 2] = 0;
@@ -58967,16 +58466,16 @@ function __ZNSt3__16vectorIPNS0_IN6cashew3RefENS_9allocatorIS2_EEEENS3_IS6_EEE21
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = ((HEAP32[i4 >> 2] | 0) - i3 >> 2) + 1 | 0;
- if (i1 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = (HEAP32[i7 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 2 >>> 0 < 536870911) {
- i2 = i2 >> 1;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 2) + 1 | 0;
+ if (i2 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = (HEAP32[i7 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 2 >>> 0 < 536870911) {
+ i1 = i1 >> 1;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 1073741823;
- __ZNSt3__114__split_bufferIPNS_6vectorIN6cashew3RefENS_9allocatorIS3_EEEERNS4_IS7_EEEC2EjjS9_(i5, i1, (HEAP32[i4 >> 2] | 0) - i3 >> 2, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIPNS_6vectorIN6cashew3RefENS_9allocatorIS3_EEEERNS4_IS7_EEEC2EjjS9_(i5, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 2, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
@@ -59027,26 +58526,26 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE7parseDoERPcPKc(i8
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i5 = i9 + 28 | 0;
- i3 = i9 + 24 | 0;
+ i3 = i9 + 28 | 0;
+ i2 = i9 + 24 | 0;
i6 = i9;
- i2 = i9 + 20 | 0;
- i4 = i9 + 16 | 0;
+ i4 = i9 + 20 | 0;
+ i5 = i9 + 16 | 0;
i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE19parseMaybeBracketedERPcPKc(i8, i7, i1) | 0;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i7);
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i6, HEAP32[i7 >> 2] | 0);
- if ((HEAP32[i6 + 12 >> 2] | 0) == 0 ? (HEAP32[i6 >> 2] | 0) == (HEAP32[9241] | 0) : 0) {
+ if ((HEAP32[i6 + 12 >> 2] | 0) == 0 ? (HEAP32[i6 >> 2] | 0) == (HEAP32[9609] | 0) : 0) {
HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + (HEAP32[i6 + 8 >> 2] | 0);
i8 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseParennedERPc(i8, i7) | 0;
- HEAP32[i2 >> 2] = i1;
- HEAP32[i4 >> 2] = i8;
- HEAP32[i3 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i5 >> 2] = HEAP32[i4 >> 2];
- i8 = __ZN6cashew12ValueBuilder6makeDoENS_3RefES1_(i3, i5) | 0;
+ HEAP32[i4 >> 2] = i1;
+ HEAP32[i5 >> 2] = i8;
+ HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i5 >> 2];
+ i8 = __ZN6cashew12ValueBuilder6makeDoENS_3RefES1_(i2, i3) | 0;
STACKTOP = i9;
return i8 | 0;
}
- ___assert_fail(22625, 22233, 484, 22667);
+ ___assert_fail(23213, 22821, 484, 23255);
return 0;
}
@@ -59057,16 +58556,16 @@ function __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = (((HEAP32[i4 >> 2] | 0) - i3 | 0) / 28 | 0) + 1 | 0;
- if (i1 >>> 0 > 153391689) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = ((HEAP32[i7 + 8 >> 2] | 0) - i3 | 0) / 28 | 0;
- if (i2 >>> 0 < 76695844) {
- i2 = i2 << 1;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = (((HEAP32[i3 >> 2] | 0) - i4 | 0) / 28 | 0) + 1 | 0;
+ if (i2 >>> 0 > 153391689) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = ((HEAP32[i7 + 8 >> 2] | 0) - i4 | 0) / 28 | 0;
+ if (i1 >>> 0 < 76695844) {
+ i1 = i1 << 1;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 153391689;
- __ZNSt3__114__split_bufferIN6cashew13OperatorClassERNS_9allocatorIS2_EEEC2EjjS5_(i5, i1, ((HEAP32[i4 >> 2] | 0) - i3 | 0) / 28 | 0, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIN6cashew13OperatorClassERNS_9allocatorIS2_EEEC2EjjS5_(i5, i1, ((HEAP32[i3 >> 2] | 0) - i4 | 0) / 28 | 0, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
__ZN6cashew13OperatorClassC2EOS0_(i3, i6);
@@ -59077,39 +58576,39 @@ function __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE21__push_
return;
}
-function __ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoENS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEEixERSD_(i6, i3) {
+function __ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoENS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEEixERSD_(i6, i4) {
i6 = i6 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i7 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i7 + 12 | 0;
- i2 = i7;
- i5 = __ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoENS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERSD_(i6, i4, i3) | 0;
- i1 = HEAP32[i5 >> 2] | 0;
+ i5 = i7 + 12 | 0;
+ i3 = i7;
+ i2 = __ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoENS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERSD_(i6, i5, i4) | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
- __ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoENS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEE25__construct_node_with_keyERSD_(i2, i6, i3);
- i1 = HEAP32[i2 >> 2] | 0;
- __ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSL_SL_(i6, HEAP32[i4 >> 2] | 0, i5, i1);
+ __ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoENS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEE25__construct_node_with_keyERSD_(i3, i6, i4);
+ i1 = HEAP32[i3 >> 2] | 0;
+ __ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSL_SL_(i6, HEAP32[i5 >> 2] | 0, i2, i1);
}
STACKTOP = i7;
return i1 + 32 | 0;
}
-function __ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoENS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEEixEOS6_(i6, i3) {
+function __ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoENS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEEixEOS6_(i6, i4) {
i6 = i6 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i7 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i7 + 12 | 0;
- i2 = i7;
- i5 = __ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoENS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERSD_(i6, i4, i3) | 0;
- i1 = HEAP32[i5 >> 2] | 0;
+ i5 = i7 + 12 | 0;
+ i3 = i7;
+ i2 = __ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoENS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERSD_(i6, i5, i4) | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
- __ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoENS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEE25__construct_node_with_keyEOS6_(i2, i6, i3);
- i1 = HEAP32[i2 >> 2] | 0;
- __ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSL_SL_(i6, HEAP32[i4 >> 2] | 0, i5, i1);
+ __ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoENS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEE25__construct_node_with_keyEOS6_(i3, i6, i4);
+ i1 = HEAP32[i3 >> 2] | 0;
+ __ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSL_SL_(i6, HEAP32[i5 >> 2] | 0, i2, i1);
}
STACKTOP = i7;
return i1 + 32 | 0;
@@ -59120,39 +58619,39 @@ function __ZN6cashew5Arena10allocArrayEv(i9) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0;
i10 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i8 = i10;
- i7 = i9 + 16 | 0;
- i6 = i9 + 20 | 0;
- i5 = HEAP32[i6 >> 2] | 0;
- i1 = i5;
- if (!((i5 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i9 + 28 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 | 0) != 1e3) : 0)) {
- i4 = __Znaj(12004) | 0;
- HEAP32[i4 >> 2] = 1e3;
- i2 = i4 + 4 | 0;
- i4 = i4 + 12004 | 0;
- i3 = i2;
+ i5 = i10;
+ i6 = i9 + 16 | 0;
+ i7 = i9 + 20 | 0;
+ i8 = HEAP32[i7 >> 2] | 0;
+ i1 = i8;
+ if (!((i8 | 0) != (HEAP32[i6 >> 2] | 0) ? (i3 = i9 + 28 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 | 0) != 1e3) : 0)) {
+ i3 = __Znaj(12004) | 0;
+ HEAP32[i3 >> 2] = 1e3;
+ i2 = i3 + 4 | 0;
+ i3 = i3 + 12004 | 0;
+ i4 = i2;
do {
- HEAP32[i3 >> 2] = 0;
- HEAP32[i3 + 4 >> 2] = 0;
- HEAP32[i3 + 8 >> 2] = 0;
- i3 = i3 + 12 | 0;
- } while ((i3 | 0) != (i4 | 0));
- HEAP32[i8 >> 2] = i2;
+ HEAP32[i4 >> 2] = 0;
+ HEAP32[i4 + 4 >> 2] = 0;
+ HEAP32[i4 + 8 >> 2] = 0;
+ i4 = i4 + 12 | 0;
+ } while ((i4 | 0) != (i3 | 0));
+ HEAP32[i5 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i9 + 24 >> 2] | 0) >>> 0) {
- HEAP32[i5 >> 2] = i2;
- i1 = (HEAP32[i6 >> 2] | 0) + 4 | 0;
- HEAP32[i6 >> 2] = i1;
+ HEAP32[i8 >> 2] = i2;
+ i1 = (HEAP32[i7 >> 2] | 0) + 4 | 0;
+ HEAP32[i7 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPNS0_IN6cashew3RefENS_9allocatorIS2_EEEENS3_IS6_EEE21__push_back_slow_pathIS6_EEvOT_(i7, i8);
- i1 = HEAP32[i6 >> 2] | 0;
+ __ZNSt3__16vectorIPNS0_IN6cashew3RefENS_9allocatorIS2_EEEENS3_IS6_EEE21__push_back_slow_pathIS6_EEvOT_(i6, i5);
+ i1 = HEAP32[i7 >> 2] | 0;
}
- i2 = i9 + 28 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i9 + 28 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- HEAP32[i2 >> 2] = i3 + 1;
+ HEAP32[i3 >> 2] = i2 + 1;
STACKTOP = i10;
- return (HEAP32[i1 + -4 >> 2] | 0) + (i3 * 12 | 0) | 0;
+ return (HEAP32[i1 + -4 >> 2] | 0) + (i2 * 12 | 0) | 0;
}
function __ZN4wasm6Module11addFunctionEPNS_8FunctionE(i6, i2) {
@@ -59164,19 +58663,19 @@ function __ZN4wasm6Module11addFunctionEPNS_8FunctionE(i6, i2) {
i3 = i7;
i5 = i7 + 4 | 0;
HEAP32[i3 >> 2] = i2;
- i4 = i6 + 140 | 0;
+ i4 = i6 + 144 | 0;
i1 = __ZN4wasm4Name7fromIntEj(HEAP32[i4 >> 2] | 0) | 0;
HEAP32[i5 >> 2] = i1;
if (!(HEAP32[i2 >> 2] | 0)) HEAP32[i2 >> 2] = i1;
- i2 = i6 + 40 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i6 + 44 >> 2] | 0)) {
+ i1 = i6 + 40 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i6 + 44 >> 2] | 0)) {
__ZNSt3__16vectorIPN4wasm8FunctionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i6 + 36 | 0, i3);
i1 = HEAP32[i3 >> 2] | 0;
} else {
i3 = HEAP32[i3 >> 2] | 0;
- HEAP32[i1 >> 2] = i3;
- HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4;
+ HEAP32[i2 >> 2] = i3;
+ HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 4;
i1 = i3;
}
i6 = i6 + 84 | 0;
@@ -59193,57 +58692,30 @@ function __ZNSt3__16vectorINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS
i6 = i6 | 0;
i5 = i5 | 0;
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0;
- i1 = HEAP32[i6 >> 2] | 0;
- i4 = i6 + 4 | 0;
- i2 = i5 + 4 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ i3 = i6 + 4 | 0;
+ i4 = i5 + 4 | 0;
+ i1 = HEAP32[i3 >> 2] | 0;
while (1) {
- if ((i3 | 0) == (i1 | 0)) break;
- i7 = i3 + -20 | 0;
- __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEEC2EOSF_((HEAP32[i2 >> 2] | 0) + -20 | 0, i7);
- HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + -20;
- i3 = i7;
+ if ((i1 | 0) == (i2 | 0)) break;
+ i7 = i1 + -20 | 0;
+ __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEEC2EOSF_((HEAP32[i4 >> 2] | 0) + -20 | 0, i7);
+ HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + -20;
+ i1 = i7;
}
i7 = HEAP32[i6 >> 2] | 0;
- HEAP32[i6 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i2 >> 2] = i7;
+ HEAP32[i6 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i4 >> 2] = i7;
i7 = i5 + 8 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- HEAP32[i4 >> 2] = HEAP32[i7 >> 2];
- HEAP32[i7 >> 2] = i3;
- i4 = i6 + 8 | 0;
+ i2 = HEAP32[i3 >> 2] | 0;
+ HEAP32[i3 >> 2] = HEAP32[i7 >> 2];
+ HEAP32[i7 >> 2] = i2;
+ i3 = i6 + 8 | 0;
i7 = i5 + 12 | 0;
- i6 = HEAP32[i4 >> 2] | 0;
- HEAP32[i4 >> 2] = HEAP32[i7 >> 2];
+ i6 = HEAP32[i3 >> 2] | 0;
+ HEAP32[i3 >> 2] = HEAP32[i7 >> 2];
HEAP32[i7 >> 2] = i6;
- HEAP32[i5 >> 2] = HEAP32[i2 >> 2];
- return;
-}
-
-function __ZN4wasm6Binary8finalizeEv(i3) {
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0;
- i4 = STACKTOP;
- STACKTOP = STACKTOP + 16 | 0;
- i2 = i4;
- do if ((HEAP32[i3 + 8 >> 2] | 0) <= 16) {
- i1 = HEAP32[(HEAP32[i3 + 12 >> 2] | 0) + 4 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[(HEAP32[i3 + 16 >> 2] | 0) + 4 >> 2] | 0)) {
- HEAP32[i3 + 4 >> 2] = i1;
- break;
- } else {
- i3 = __ZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i3, __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 16365) | 0, 0) | 0;
- i1 = __ZNKSt3__18ios_base6getlocEv(i3 + (HEAP32[(HEAP32[i3 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0;
- HEAP32[i2 >> 2] = i1;
- i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i2, 38964) | 0;
- i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 10) | 0;
- __ZNSt3__16localeD2Ev(i2);
- __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE3putEc(i3, i1) | 0;
- __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i3) | 0;
- ___assert_fail(16372, 26220, 858, 16405);
- }
- } else HEAP32[i3 + 4 >> 2] = 1; while (0);
- STACKTOP = i4;
+ HEAP32[i5 >> 2] = HEAP32[i4 >> 2];
return;
}
@@ -59256,7 +58728,7 @@ function __ZN4wasm6Import5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEE
STACKTOP = STACKTOP + 16 | 0;
i5 = i4 + 4 | 0;
i7 = i4;
- i6 = __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i3, 17593, 0) | 0;
+ i6 = __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i3, 18187, 0) | 0;
HEAP32[i7 >> 2] = HEAP32[i1 >> 2];
HEAP32[i5 >> 2] = HEAP32[i7 >> 2];
__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i6, i5) | 0, 32) | 0;
@@ -59269,54 +58741,6 @@ function __ZN4wasm6Import5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEE
return i7 | 0;
}
-function ___fwritex(i7, i6, i4) {
- i7 = i7 | 0;
- i6 = i6 | 0;
- i4 = i4 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
- i2 = i4 + 16 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if (!i1) if (!(___towrite(i4) | 0)) {
- i1 = HEAP32[i2 >> 2] | 0;
- i3 = 5;
- } else i1 = 0; else i3 = 5;
- L5 : do if ((i3 | 0) == 5) {
- i5 = i4 + 20 | 0;
- i2 = HEAP32[i5 >> 2] | 0;
- i3 = i2;
- if ((i1 - i2 | 0) >>> 0 < i6 >>> 0) {
- i1 = FUNCTION_TABLE_iiii[HEAP32[i4 + 36 >> 2] & 31](i4, i7, i6) | 0;
- break;
- }
- L10 : do if ((HEAP8[i4 + 75 >> 0] | 0) > -1) {
- i1 = i6;
- while (1) {
- if (!i1) {
- i4 = 0;
- i2 = i6;
- i1 = i7;
- break L10;
- }
- i2 = i1 + -1 | 0;
- if ((HEAP8[i7 + i2 >> 0] | 0) == 10) break; else i1 = i2;
- }
- if ((FUNCTION_TABLE_iiii[HEAP32[i4 + 36 >> 2] & 31](i4, i7, i1) | 0) >>> 0 < i1 >>> 0) break L5;
- i3 = HEAP32[i5 >> 2] | 0;
- i4 = i1;
- i2 = i6 - i1 | 0;
- i1 = i7 + i1 | 0;
- } else {
- i4 = 0;
- i2 = i6;
- i1 = i7;
- } while (0);
- _memcpy(i3 | 0, i1 | 0, i2 | 0) | 0;
- HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + i2;
- i1 = i4 + i2 | 0;
- } while (0);
- return i1 | 0;
-}
-
function __ZN6cashew12ValueBuilder6makeIfENS_3RefES1_S1_(i1, i2, i5) {
i1 = i1 | 0;
i2 = i2 | 0;
@@ -59324,28 +58748,28 @@ function __ZN6cashew12ValueBuilder6makeIfENS_3RefES1_S1_(i1, i2, i5) {
var i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0;
i6 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i4 = i6 + 16 | 0;
+ i3 = i6 + 16 | 0;
i10 = i6 + 12 | 0;
i9 = i6 + 8 | 0;
i7 = i6 + 4 | 0;
- i3 = i6;
+ i4 = i6;
i8 = __ZN6cashew12ValueBuilder12makeRawArrayEi(4) | 0;
- i11 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(36956) | 0;
+ i11 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38428) | 0;
HEAP32[i10 >> 2] = i11;
- HEAP32[i4 >> 2] = HEAP32[i10 >> 2];
- i8 = __ZN6cashew5Value9push_backENS_3RefE(i8, i4) | 0;
+ HEAP32[i3 >> 2] = HEAP32[i10 >> 2];
+ i8 = __ZN6cashew5Value9push_backENS_3RefE(i8, i3) | 0;
HEAP32[i9 >> 2] = HEAP32[i1 >> 2];
- HEAP32[i4 >> 2] = HEAP32[i9 >> 2];
- i1 = __ZN6cashew5Value9push_backENS_3RefE(i8, i4) | 0;
+ HEAP32[i3 >> 2] = HEAP32[i9 >> 2];
+ i1 = __ZN6cashew5Value9push_backENS_3RefE(i8, i3) | 0;
HEAP32[i7 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i4 >> 2] = HEAP32[i7 >> 2];
- i1 = __ZN6cashew5Value9push_backENS_3RefE(i1, i4) | 0;
+ HEAP32[i3 >> 2] = HEAP32[i7 >> 2];
+ i1 = __ZN6cashew5Value9push_backENS_3RefE(i1, i3) | 0;
if (__ZN6cashew3RefntEv(i5) | 0) {
i11 = __ZN6cashew12ValueBuilder8makeNullEv() | 0;
- HEAP32[i3 >> 2] = i11;
- } else HEAP32[i3 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i4 >> 2] = HEAP32[i3 >> 2];
- i11 = __ZN6cashew5Value9push_backENS_3RefE(i1, i4) | 0;
+ HEAP32[i4 >> 2] = i11;
+ } else HEAP32[i4 >> 2] = HEAP32[i5 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i4 >> 2];
+ i11 = __ZN6cashew5Value9push_backENS_3RefE(i1, i3) | 0;
STACKTOP = i6;
return i11 | 0;
}
@@ -59359,19 +58783,19 @@ function __ZN4wasm6Module9addImportEPNS_6ImportE(i6, i2) {
i3 = i7;
i5 = i7 + 4 | 0;
HEAP32[i3 >> 2] = i2;
- i4 = i6 + 132 | 0;
+ i4 = i6 + 136 | 0;
i1 = __ZN4wasm4Name7fromIntEj(HEAP32[i4 >> 2] | 0) | 0;
HEAP32[i5 >> 2] = i1;
if (!(HEAP32[i2 >> 2] | 0)) HEAP32[i2 >> 2] = i1;
- i2 = i6 + 16 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i6 + 20 >> 2] | 0)) {
+ i1 = i6 + 16 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i6 + 20 >> 2] | 0)) {
__ZNSt3__16vectorIPN4wasm6ImportENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i6 + 12 | 0, i3);
i1 = HEAP32[i3 >> 2] | 0;
} else {
i3 = HEAP32[i3 >> 2] | 0;
- HEAP32[i1 >> 2] = i3;
- HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4;
+ HEAP32[i2 >> 2] = i3;
+ HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 4;
i1 = i3;
}
i6 = i6 + 60 | 0;
@@ -59393,19 +58817,19 @@ function __ZN4wasm6Module9addExportEPNS_6ExportE(i6, i2) {
i3 = i7;
i5 = i7 + 4 | 0;
HEAP32[i3 >> 2] = i2;
- i4 = i6 + 136 | 0;
+ i4 = i6 + 140 | 0;
i1 = __ZN4wasm4Name7fromIntEj(HEAP32[i4 >> 2] | 0) | 0;
HEAP32[i5 >> 2] = i1;
if (!(HEAP32[i2 >> 2] | 0)) HEAP32[i2 >> 2] = i1;
- i2 = i6 + 28 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i6 + 32 >> 2] | 0)) {
+ i1 = i6 + 28 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i6 + 32 >> 2] | 0)) {
__ZNSt3__16vectorIPN4wasm6ExportENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i6 + 24 | 0, i3);
i1 = HEAP32[i3 >> 2] | 0;
} else {
i3 = HEAP32[i3 >> 2] | 0;
- HEAP32[i1 >> 2] = i3;
- HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4;
+ HEAP32[i2 >> 2] = i3;
+ HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 4;
i1 = i3;
}
i6 = i6 + 72 | 0;
@@ -59440,61 +58864,93 @@ function __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEEN
return i1 | 0;
}
-function __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEE7emplaceIJRS2_S5_EEENS9_INS_14__map_iteratorINS_15__tree_iteratorINS_12__value_typeIS2_S5_EEPNS_11__tree_nodeISJ_PvEEiEEEEbEEDpOT_(i3, i5, i1, i2) {
- i3 = i3 | 0;
- i5 = i5 | 0;
+function __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE21__grow_by_and_replaceEjjjjjjPKw(i11, i10, i1, i4, i8, i9, i7, i5) {
+ i11 = i11 | 0;
+ i10 = i10 | 0;
i1 = i1 | 0;
+ i4 = i4 | 0;
+ i8 = i8 | 0;
+ i9 = i9 | 0;
+ i7 = i7 | 0;
+ i5 = i5 | 0;
+ var i2 = 0, i3 = 0, i6 = 0;
+ if ((1073741806 - i10 | 0) >>> 0 < i1 >>> 0) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i11);
+ if (!(HEAP8[i11 >> 0] & 1)) i6 = i11 + 4 | 0; else i6 = HEAP32[i11 + 8 >> 2] | 0;
+ if (i10 >>> 0 < 536870887) {
+ i2 = i1 + i10 | 0;
+ i3 = i10 << 1;
+ i2 = i2 >>> 0 < i3 >>> 0 ? i3 : i2;
+ i2 = i2 >>> 0 < 2 ? 2 : i2 + 4 & -4;
+ } else i2 = 1073741807;
+ i3 = __Znwj(i2 << 2) | 0;
+ if (i8 | 0) _wmemcpy(i3, i6, i8) | 0;
+ if (i7 | 0) _wmemcpy(i3 + (i8 << 2) | 0, i5, i7) | 0;
+ i1 = i4 - i9 | 0;
+ if ((i1 | 0) != (i8 | 0)) _wmemcpy(i3 + (i8 << 2) + (i7 << 2) | 0, i6 + (i8 << 2) + (i9 << 2) | 0, i1 - i8 | 0) | 0;
+ if ((i10 | 0) != 1) __ZdlPv(i6);
+ HEAP32[i11 + 8 >> 2] = i3;
+ HEAP32[i11 >> 2] = i2 | 1;
+ i10 = i1 + i7 | 0;
+ HEAP32[i11 + 4 >> 2] = i10;
+ HEAP32[i3 + (i10 << 2) >> 2] = 0;
+ return;
+}
+
+function __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEE7emplaceIJRS2_S5_EEENS9_INS_14__map_iteratorINS_15__tree_iteratorINS_12__value_typeIS2_S5_EEPNS_11__tree_nodeISJ_PvEEiEEEEbEEDpOT_(i4, i5, i2, i3) {
+ i4 = i4 | 0;
+ i5 = i5 | 0;
i2 = i2 | 0;
- var i4 = 0, i6 = 0, i7 = 0;
+ i3 = i3 | 0;
+ var i1 = 0, i6 = 0, i7 = 0;
i6 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
i7 = i6;
- i4 = __Znwj(40) | 0;
- HEAP32[i4 + 16 >> 2] = HEAP32[i1 >> 2];
- i1 = i4 + 20 | 0;
- HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i1 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i1 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- HEAP32[i1 + 12 >> 2] = HEAP32[i2 + 12 >> 2];
- HEAP32[i1 + 16 >> 2] = HEAP32[i2 + 16 >> 2];
- __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE20__node_insert_uniqueEPNS_11__tree_nodeIS7_PvEE(i7, i5, i4);
- HEAP32[i3 >> 2] = HEAP32[i7 >> 2];
+ i1 = __Znwj(40) | 0;
+ HEAP32[i1 + 16 >> 2] = HEAP32[i2 >> 2];
+ i2 = i1 + 20 | 0;
+ HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i2 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
+ HEAP32[i2 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ HEAP32[i2 + 12 >> 2] = HEAP32[i3 + 12 >> 2];
+ HEAP32[i2 + 16 >> 2] = HEAP32[i3 + 16 >> 2];
+ __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE20__node_insert_uniqueEPNS_11__tree_nodeIS7_PvEE(i7, i5, i1);
+ HEAP32[i4 >> 2] = HEAP32[i7 >> 2];
i5 = HEAP8[i7 + 4 >> 0] | 0;
- HEAP8[i3 + 4 >> 0] = i5;
- if (!(i5 << 24 >> 24)) __ZdlPv(i4);
+ HEAP8[i4 + 4 >> 0] = i5;
+ if (!(i5 << 24 >> 24)) __ZdlPv(i1);
STACKTOP = i6;
return;
}
-function __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE21__grow_by_and_replaceEjjjjjjPKw(i11, i9, i1, i2, i7, i8, i6, i3) {
+function __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE21__grow_by_and_replaceEjjjjjjPKc(i11, i10, i1, i4, i8, i9, i7, i5) {
i11 = i11 | 0;
- i9 = i9 | 0;
+ i10 = i10 | 0;
i1 = i1 | 0;
- i2 = i2 | 0;
- i7 = i7 | 0;
+ i4 = i4 | 0;
i8 = i8 | 0;
- i6 = i6 | 0;
- i3 = i3 | 0;
- var i4 = 0, i5 = 0, i10 = 0;
- if ((1073741806 - i9 | 0) >>> 0 < i1 >>> 0) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i11);
- if (!(HEAP8[i11 >> 0] & 1)) i10 = i11 + 4 | 0; else i10 = HEAP32[i11 + 8 >> 2] | 0;
- if (i9 >>> 0 < 536870887) {
- i5 = i1 + i9 | 0;
- i4 = i9 << 1;
- i5 = i5 >>> 0 < i4 >>> 0 ? i4 : i5;
- i5 = i5 >>> 0 < 2 ? 2 : i5 + 4 & -4;
- } else i5 = 1073741807;
- i4 = __Znwj(i5 << 2) | 0;
- if (i7 | 0) _wmemcpy(i4, i10, i7) | 0;
- if (i6 | 0) _wmemcpy(i4 + (i7 << 2) | 0, i3, i6) | 0;
- i1 = i2 - i8 | 0;
- if ((i1 | 0) != (i7 | 0)) _wmemcpy(i4 + (i7 << 2) + (i6 << 2) | 0, i10 + (i7 << 2) + (i8 << 2) | 0, i1 - i7 | 0) | 0;
- if ((i9 | 0) != 1) __ZdlPv(i10);
- HEAP32[i11 + 8 >> 2] = i4;
- HEAP32[i11 >> 2] = i5 | 1;
- i10 = i1 + i6 | 0;
+ i9 = i9 | 0;
+ i7 = i7 | 0;
+ i5 = i5 | 0;
+ var i2 = 0, i3 = 0, i6 = 0;
+ if ((-18 - i10 | 0) >>> 0 < i1 >>> 0) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i11);
+ if (!(HEAP8[i11 >> 0] & 1)) i6 = i11 + 1 | 0; else i6 = HEAP32[i11 + 8 >> 2] | 0;
+ if (i10 >>> 0 < 2147483623) {
+ i2 = i1 + i10 | 0;
+ i3 = i10 << 1;
+ i2 = i2 >>> 0 < i3 >>> 0 ? i3 : i2;
+ i2 = i2 >>> 0 < 11 ? 11 : i2 + 16 & -16;
+ } else i2 = -17;
+ i3 = _malloc(i2) | 0;
+ if (i8 | 0) _memcpy(i3 | 0, i6 | 0, i8 | 0) | 0;
+ if (i7 | 0) _memcpy(i3 + i8 | 0, i5 | 0, i7 | 0) | 0;
+ i1 = i4 - i9 | 0;
+ if ((i1 | 0) != (i8 | 0)) _memcpy(i3 + i8 + i7 | 0, i6 + i8 + i9 | 0, i1 - i8 | 0) | 0;
+ if ((i10 | 0) != 10) _free(i6);
+ HEAP32[i11 + 8 >> 2] = i3;
+ HEAP32[i11 >> 2] = i2 | 1;
+ i10 = i1 + i7 | 0;
HEAP32[i11 + 4 >> 2] = i10;
- HEAP32[i4 + (i10 << 2) >> 2] = 0;
+ HEAP8[i3 + i10 >> 0] = 0;
return;
}
@@ -59509,7 +58965,7 @@ function __ZN6cashew12ValueBuilder12makeFunctionENS_7IStringE(i1) {
i5 = i2 + 4 | 0;
i4 = i2;
i6 = __ZN6cashew12ValueBuilder12makeRawArrayEi(4) | 0;
- i9 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(36916) | 0;
+ i9 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38388) | 0;
HEAP32[i8 >> 2] = i9;
HEAP32[i3 >> 2] = HEAP32[i8 >> 2];
i6 = __ZN6cashew5Value9push_backENS_3RefE(i6, i3) | 0;
@@ -59528,7 +58984,6 @@ function __ZN6cashew12ValueBuilder12makeFunctionENS_7IStringE(i1) {
STACKTOP = i2;
return i1 | 0;
}
-
function __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE20__node_insert_uniqueENS_21__tree_const_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEESI_(i5, i1, i3) {
i5 = i5 | 0;
i1 = i1 | 0;
@@ -59551,38 +59006,6 @@ function __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19_
return i1 | 0;
}
-function __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE21__grow_by_and_replaceEjjjjjjPKc(i11, i9, i1, i2, i7, i8, i6, i3) {
- i11 = i11 | 0;
- i9 = i9 | 0;
- i1 = i1 | 0;
- i2 = i2 | 0;
- i7 = i7 | 0;
- i8 = i8 | 0;
- i6 = i6 | 0;
- i3 = i3 | 0;
- var i4 = 0, i5 = 0, i10 = 0;
- if ((-18 - i9 | 0) >>> 0 < i1 >>> 0) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i11);
- if (!(HEAP8[i11 >> 0] & 1)) i10 = i11 + 1 | 0; else i10 = HEAP32[i11 + 8 >> 2] | 0;
- if (i9 >>> 0 < 2147483623) {
- i5 = i1 + i9 | 0;
- i4 = i9 << 1;
- i5 = i5 >>> 0 < i4 >>> 0 ? i4 : i5;
- i5 = i5 >>> 0 < 11 ? 11 : i5 + 16 & -16;
- } else i5 = -17;
- i4 = _malloc(i5) | 0;
- if (i7 | 0) _memcpy(i4 | 0, i10 | 0, i7 | 0) | 0;
- if (i6 | 0) _memcpy(i4 + i7 | 0, i3 | 0, i6 | 0) | 0;
- i1 = i2 - i8 | 0;
- if ((i1 | 0) != (i7 | 0)) _memcpy(i4 + i7 + i6 | 0, i10 + i7 + i8 | 0, i1 - i7 | 0) | 0;
- if ((i9 | 0) != 10) _free(i10);
- HEAP32[i11 + 8 >> 2] = i4;
- HEAP32[i11 >> 2] = i5 | 1;
- i10 = i1 + i6 | 0;
- HEAP32[i11 + 4 >> 2] = i10;
- HEAP8[i4 + i10 >> 0] = 0;
- return;
-}
-
function __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE20__node_insert_uniqueENS_21__tree_const_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEESI_(i5, i1, i3) {
i5 = i5 | 0;
i1 = i1 | 0;
@@ -59627,43 +59050,6 @@ function __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__m
return i1 | 0;
}
-function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10makeBinaryES1_NS_7IStringES1_(i1, i11, i2, i12) {
- i1 = i1 | 0;
- i11 = i11 | 0;
- i2 = i2 | 0;
- i12 = i12 | 0;
- var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i13 = 0;
- i13 = STACKTOP;
- STACKTOP = STACKTOP + 32 | 0;
- i10 = i13 + 28 | 0;
- i8 = i13 + 24 | 0;
- i6 = i13 + 20 | 0;
- i3 = i13 + 16 | 0;
- i4 = i13 + 12 | 0;
- i5 = i13 + 8 | 0;
- i7 = i13 + 4 | 0;
- i9 = i13;
- i2 = HEAP32[i2 >> 2] | 0;
- i1 = HEAP32[i11 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[9305] | 0)) {
- HEAP32[i3 >> 2] = i1;
- HEAP32[i4 >> 2] = HEAP32[i12 >> 2];
- HEAP32[i8 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i10 >> 2] = HEAP32[i4 >> 2];
- i1 = __ZN6cashew12ValueBuilder7makeDotENS_3RefES1_(i8, i10) | 0;
- } else {
- HEAP32[i5 >> 2] = i1;
- HEAP32[i7 >> 2] = i2;
- HEAP32[i9 >> 2] = HEAP32[i12 >> 2];
- HEAP32[i6 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i8 >> 2] = HEAP32[i7 >> 2];
- HEAP32[i10 >> 2] = HEAP32[i9 >> 2];
- i1 = __ZN6cashew12ValueBuilder10makeBinaryENS_3RefENS_7IStringES1_(i6, i8, i10) | 0;
- }
- STACKTOP = i13;
- return i1 | 0;
-}
-
function __ZN4wasm7Literal10printFloatERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEf(i3, d2) {
i3 = i3 | 0;
d2 = +d2;
@@ -59671,10 +59057,10 @@ function __ZN4wasm7Literal10printFloatERNSt3__113basic_ostreamIcNS1_11char_trait
d4 = +Math_abs(+d2);
if ((HEAPF32[tempDoublePtr >> 2] = d4, HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 2139095040) {
i1 = (HEAPF32[tempDoublePtr >> 2] = d2, HEAP32[tempDoublePtr >> 2] | 0);
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i3, (i1 | 0) < 0 ? 35428 : 44980) | 0, 30290) | 0;
- i1 = i1 & 4194303;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i3, (i1 | 0) < 0 ? 36892 : 46453) | 0, 31696) | 0;
+ i1 = i1 & 8388607;
if (i1 | 0) {
- i3 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i3, 20502) | 0;
+ i3 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i3, 21069) | 0;
i5 = i3 + (HEAP32[(HEAP32[i3 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = HEAP32[i5 >> 2] & -75 | 8;
i3 = __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj(i3, i1) | 0;
@@ -59685,6 +59071,43 @@ function __ZN4wasm7Literal10printFloatERNSt3__113basic_ostreamIcNS1_11char_trait
return;
}
+function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10makeBinaryES1_NS_7IStringES1_(i1, i11, i2, i12) {
+ i1 = i1 | 0;
+ i11 = i11 | 0;
+ i2 = i2 | 0;
+ i12 = i12 | 0;
+ var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i13 = 0;
+ i13 = STACKTOP;
+ STACKTOP = STACKTOP + 32 | 0;
+ i5 = i13 + 28 | 0;
+ i4 = i13 + 24 | 0;
+ i3 = i13 + 20 | 0;
+ i6 = i13 + 16 | 0;
+ i7 = i13 + 12 | 0;
+ i8 = i13 + 8 | 0;
+ i9 = i13 + 4 | 0;
+ i10 = i13;
+ i2 = HEAP32[i2 >> 2] | 0;
+ i1 = HEAP32[i11 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[9673] | 0)) {
+ HEAP32[i6 >> 2] = i1;
+ HEAP32[i7 >> 2] = HEAP32[i12 >> 2];
+ HEAP32[i4 >> 2] = HEAP32[i6 >> 2];
+ HEAP32[i5 >> 2] = HEAP32[i7 >> 2];
+ i1 = __ZN6cashew12ValueBuilder7makeDotENS_3RefES1_(i4, i5) | 0;
+ } else {
+ HEAP32[i8 >> 2] = i1;
+ HEAP32[i9 >> 2] = i2;
+ HEAP32[i10 >> 2] = HEAP32[i12 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i8 >> 2];
+ HEAP32[i4 >> 2] = HEAP32[i9 >> 2];
+ HEAP32[i5 >> 2] = HEAP32[i10 >> 2];
+ i1 = __ZN6cashew12ValueBuilder10makeBinaryENS_3RefENS_7IStringES1_(i3, i4, i5) | 0;
+ }
+ STACKTOP = i13;
+ return i1 | 0;
+}
+
function __ZNSt3__16vectorIPN4wasm12FunctionTypeENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i7, i6) {
i7 = i7 | 0;
i6 = i6 | 0;
@@ -59692,16 +59115,16 @@ function __ZNSt3__16vectorIPN4wasm12FunctionTypeENS_9allocatorIS3_EEE21__push_ba
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = ((HEAP32[i4 >> 2] | 0) - i3 >> 2) + 1 | 0;
- if (i1 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = (HEAP32[i7 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 2 >>> 0 < 536870911) {
- i2 = i2 >> 1;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 2) + 1 | 0;
+ if (i2 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = (HEAP32[i7 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 2 >>> 0 < 536870911) {
+ i1 = i1 >> 1;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 1073741823;
- __ZNSt3__114__split_bufferIPN4wasm12FunctionTypeERNS_9allocatorIS3_EEEC2EjjS6_(i5, i1, (HEAP32[i4 >> 2] | 0) - i3 >> 2, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIPN4wasm12FunctionTypeERNS_9allocatorIS3_EEEC2EjjS6_(i5, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 2, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
@@ -59712,19 +59135,19 @@ function __ZNSt3__16vectorIPN4wasm12FunctionTypeENS_9allocatorIS3_EEE21__push_ba
return;
}
-function __ZNSt3__113unordered_mapIN6cashew7IStringEiNS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorINS_4pairIKS2_iEEEEEixERS9_(i5, i3) {
+function __ZNSt3__113unordered_mapIN6cashew7IStringEiNS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorINS_4pairIKS2_iEEEEEixERS9_(i5, i4) {
i5 = i5 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i6 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i6 = 0;
i6 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i2 = i6 + 8 | 0;
- i4 = i6;
- i1 = __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEE4findIS3_EENS_15__hash_iteratorIPNS_11__hash_nodeIS4_PvEEEERKT_(i5, i3) | 0;
+ i3 = i6 + 8 | 0;
+ i2 = i6;
+ i1 = __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEE4findIS3_EENS_15__hash_iteratorIPNS_11__hash_nodeIS4_PvEEEERKT_(i5, i4) | 0;
if (!i1) {
- __ZNSt3__113unordered_mapIN6cashew7IStringEiNS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorINS_4pairIKS2_iEEEEE25__construct_node_with_keyERS9_(i2, i5, i3);
- __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEE20__node_insert_uniqueEPNS_11__hash_nodeIS4_PvEE(i4, i5, HEAP32[i2 >> 2] | 0);
- i1 = HEAP32[i4 >> 2] | 0;
+ __ZNSt3__113unordered_mapIN6cashew7IStringEiNS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorINS_4pairIKS2_iEEEEE25__construct_node_with_keyERS9_(i3, i5, i4);
+ __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEE20__node_insert_uniqueEPNS_11__hash_nodeIS4_PvEE(i2, i5, HEAP32[i3 >> 2] | 0);
+ i1 = HEAP32[i2 >> 2] | 0;
}
STACKTOP = i6;
return i1 + 12 | 0;
@@ -59735,43 +59158,43 @@ function __ZN4wasm20Asm2WasmPreProcessor7processEPc(i4, i1) {
i1 = i1 | 0;
var i2 = 0, i3 = 0, i5 = 0;
L1 : do if ((HEAP8[i1 >> 0] | 0) == 77) {
- i2 = 77;
- i3 = i1;
+ i2 = i1;
+ i3 = 77;
i1 = _strlen(i1) | 0;
while (1) {
- if (i2 << 24 >> 24 == 102) break;
- i5 = i3 + 1 | 0;
- i2 = HEAP8[i5 >> 0] | 0;
- i3 = i5;
+ if (i3 << 24 >> 24 == 102) break;
+ i3 = i2 + 1 | 0;
+ i2 = i3;
+ i3 = HEAP8[i3 >> 0] | 0;
i1 = i1 + -1 | 0;
}
- i1 = i3 + i1 | 0;
+ i1 = i2 + i1 | 0;
while (1) {
i1 = i1 + -1 | 0;
if ((HEAP8[i1 >> 0] | 0) == 125) {
- i1 = i3;
+ i1 = i2;
break L1;
}
HEAP8[i1 >> 0] = 0;
}
} while (0);
- i5 = _strstr(i1, 15875) | 0;
+ i5 = _strstr(i1, 16458) | 0;
if (i5 | 0) {
HEAP8[i5 >> 0] = 0;
- i2 = _strstr(i1, 15901) | 0;
+ i2 = _strstr(i1, 16484) | 0;
do if (i2 | 0) {
HEAP8[i4 >> 0] = 1;
- i4 = _strstr(i1, 15914) | 0;
- i3 = i4 + 1 | 0;
- if (_strstr(i3, 15914) | 0) ___assert_fail(15924, 12455, 109, 15970);
+ i3 = _strstr(i1, 16497) | 0;
+ i4 = i3 + 1 | 0;
+ if (_strstr(i4, 16497) | 0) ___assert_fail(16507, 13029, 109, 16553);
i2 = _strchr(i2, 125) | 0;
- if (i2 >>> 0 > (i4 + 5 | 0) >>> 0) {
- HEAP8[i4 >> 0] = 47;
- HEAP8[i3 >> 0] = 42;
+ if (i2 >>> 0 > (i3 + 5 | 0) >>> 0) {
+ HEAP8[i3 >> 0] = 47;
+ HEAP8[i4 >> 0] = 42;
HEAP8[i2 + -1 >> 0] = 42;
HEAP8[i2 >> 0] = 47;
break;
- } else ___assert_fail(15978, 12455, 111, 15970);
+ } else ___assert_fail(16561, 13029, 111, 16553);
} while (0);
HEAP8[i5 >> 0] = 47;
}
@@ -59785,16 +59208,16 @@ function __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = ((HEAP32[i4 >> 2] | 0) - i3 >> 2) + 1 | 0;
- if (i1 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = (HEAP32[i7 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 2 >>> 0 < 536870911) {
- i2 = i2 >> 1;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 2) + 1 | 0;
+ if (i2 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = (HEAP32[i7 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 2 >>> 0 < 536870911) {
+ i1 = i1 >> 1;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 1073741823;
- __ZNSt3__114__split_bufferIPN4wasm10ExpressionERNS_9allocatorIS3_EEEC2EjjS6_(i5, i1, (HEAP32[i4 >> 2] | 0) - i3 >> 2, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIPN4wasm10ExpressionERNS_9allocatorIS3_EEEC2EjjS6_(i5, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 2, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
@@ -59812,16 +59235,16 @@ function __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = ((HEAP32[i4 >> 2] | 0) - i3 >> 2) + 1 | 0;
- if (i1 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = (HEAP32[i7 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 2 >>> 0 < 536870911) {
- i2 = i2 >> 1;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 2) + 1 | 0;
+ if (i2 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = (HEAP32[i7 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 2 >>> 0 < 536870911) {
+ i1 = i1 >> 1;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 1073741823;
- __ZNSt3__114__split_bufferIPN4wasm10ExpressionERNS_9allocatorIS3_EEEC2EjjS6_(i5, i1, (HEAP32[i4 >> 2] | 0) - i3 >> 2, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIPN4wasm10ExpressionERNS_9allocatorIS3_EEEC2EjjS6_(i5, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 2, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
@@ -59832,6 +59255,51 @@ function __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back
return;
}
+function ___fwritex(i3, i4, i6) {
+ i3 = i3 | 0;
+ i4 = i4 | 0;
+ i6 = i6 | 0;
+ var i1 = 0, i2 = 0, i5 = 0, i7 = 0;
+ i1 = i6 + 16 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ if (!i2) if (!(___towrite(i6) | 0)) {
+ i2 = HEAP32[i1 >> 2] | 0;
+ i5 = 5;
+ } else i1 = 0; else i5 = 5;
+ L5 : do if ((i5 | 0) == 5) {
+ i7 = i6 + 20 | 0;
+ i1 = HEAP32[i7 >> 2] | 0;
+ i5 = i1;
+ if ((i2 - i1 | 0) >>> 0 < i4 >>> 0) {
+ i1 = FUNCTION_TABLE_iiii[HEAP32[i6 + 36 >> 2] & 31](i6, i3, i4) | 0;
+ break;
+ }
+ L10 : do if ((HEAP8[i6 + 75 >> 0] | 0) > -1) {
+ i1 = i4;
+ while (1) {
+ if (!i1) {
+ i2 = i5;
+ i1 = 0;
+ break L10;
+ }
+ i2 = i1 + -1 | 0;
+ if ((HEAP8[i3 + i2 >> 0] | 0) == 10) break; else i1 = i2;
+ }
+ if ((FUNCTION_TABLE_iiii[HEAP32[i6 + 36 >> 2] & 31](i6, i3, i1) | 0) >>> 0 < i1 >>> 0) break L5;
+ i4 = i4 - i1 | 0;
+ i3 = i3 + i1 | 0;
+ i2 = HEAP32[i7 >> 2] | 0;
+ } else {
+ i2 = i5;
+ i1 = 0;
+ } while (0);
+ _memcpy(i2 | 0, i3 | 0, i4 | 0) | 0;
+ HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + i4;
+ i1 = i1 + i4 | 0;
+ } while (0);
+ return i1 | 0;
+}
+
function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner13visitSetLocalEPNS_8SetLocalE(i1, i4, i2) {
i1 = i1 | 0;
i4 = i4 | 0;
@@ -59849,40 +59317,40 @@ function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vect
HEAP32[i4 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
HEAP32[i4 + 12 >> 2] = HEAP32[i1 + 12 >> 2];
break;
- } else ___assert_fail(19784, 19231, 332, 19814); while (0);
+ } else ___assert_fail(20317, 19746, 346, 20347); while (0);
STACKTOP = i5;
return;
}
-function __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE21__grow_by_and_replaceEjjjjjjPKc(i11, i9, i1, i2, i7, i8, i6, i3) {
+function __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE21__grow_by_and_replaceEjjjjjjPKc(i11, i10, i1, i4, i8, i9, i7, i5) {
i11 = i11 | 0;
- i9 = i9 | 0;
+ i10 = i10 | 0;
i1 = i1 | 0;
- i2 = i2 | 0;
- i7 = i7 | 0;
+ i4 = i4 | 0;
i8 = i8 | 0;
- i6 = i6 | 0;
- i3 = i3 | 0;
- var i4 = 0, i5 = 0, i10 = 0;
- if ((-18 - i9 | 0) >>> 0 < i1 >>> 0) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i11);
- if (!(HEAP8[i11 >> 0] & 1)) i10 = i11 + 1 | 0; else i10 = HEAP32[i11 + 8 >> 2] | 0;
- if (i9 >>> 0 < 2147483623) {
- i5 = i1 + i9 | 0;
- i4 = i9 << 1;
- i5 = i5 >>> 0 < i4 >>> 0 ? i4 : i5;
- i5 = i5 >>> 0 < 11 ? 11 : i5 + 16 & -16;
- } else i5 = -17;
- i4 = __Znwj(i5) | 0;
- if (i7 | 0) _memcpy(i4 | 0, i10 | 0, i7 | 0) | 0;
- if (i6 | 0) _memcpy(i4 + i7 | 0, i3 | 0, i6 | 0) | 0;
- i1 = i2 - i8 | 0;
- if ((i1 | 0) != (i7 | 0)) _memcpy(i4 + i7 + i6 | 0, i10 + i7 + i8 | 0, i1 - i7 | 0) | 0;
- if ((i9 | 0) != 10) __ZdlPv(i10);
- HEAP32[i11 + 8 >> 2] = i4;
- HEAP32[i11 >> 2] = i5 | 1;
- i10 = i1 + i6 | 0;
+ i9 = i9 | 0;
+ i7 = i7 | 0;
+ i5 = i5 | 0;
+ var i2 = 0, i3 = 0, i6 = 0;
+ if ((-18 - i10 | 0) >>> 0 < i1 >>> 0) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i11);
+ if (!(HEAP8[i11 >> 0] & 1)) i6 = i11 + 1 | 0; else i6 = HEAP32[i11 + 8 >> 2] | 0;
+ if (i10 >>> 0 < 2147483623) {
+ i2 = i1 + i10 | 0;
+ i3 = i10 << 1;
+ i2 = i2 >>> 0 < i3 >>> 0 ? i3 : i2;
+ i2 = i2 >>> 0 < 11 ? 11 : i2 + 16 & -16;
+ } else i2 = -17;
+ i3 = __Znwj(i2) | 0;
+ if (i8 | 0) _memcpy(i3 | 0, i6 | 0, i8 | 0) | 0;
+ if (i7 | 0) _memcpy(i3 + i8 | 0, i5 | 0, i7 | 0) | 0;
+ i1 = i4 - i9 | 0;
+ if ((i1 | 0) != (i8 | 0)) _memcpy(i3 + i8 + i7 | 0, i6 + i8 + i9 | 0, i1 - i8 | 0) | 0;
+ if ((i10 | 0) != 10) __ZdlPv(i6);
+ HEAP32[i11 + 8 >> 2] = i3;
+ HEAP32[i11 >> 2] = i2 | 1;
+ i10 = i1 + i7 | 0;
HEAP32[i11 + 4 >> 2] = i10;
- HEAP8[i4 + i10 >> 0] = 0;
+ HEAP8[i3 + i10 >> 0] = 0;
return;
}
@@ -59893,16 +59361,16 @@ function __ZNSt3__16vectorIPN4wasm8FunctionENS_9allocatorIS3_EEE21__push_back_sl
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = ((HEAP32[i4 >> 2] | 0) - i3 >> 2) + 1 | 0;
- if (i1 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = (HEAP32[i7 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 2 >>> 0 < 536870911) {
- i2 = i2 >> 1;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 2) + 1 | 0;
+ if (i2 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = (HEAP32[i7 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 2 >>> 0 < 536870911) {
+ i1 = i1 >> 1;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 1073741823;
- __ZNSt3__114__split_bufferIPN4wasm8FunctionERNS_9allocatorIS3_EEEC2EjjS6_(i5, i1, (HEAP32[i4 >> 2] | 0) - i3 >> 2, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIPN4wasm8FunctionERNS_9allocatorIS3_EEEC2EjjS6_(i5, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 2, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
@@ -59920,16 +59388,16 @@ function __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_sl
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = ((HEAP32[i4 >> 2] | 0) - i3 >> 2) + 1 | 0;
- if (i1 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = (HEAP32[i7 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 2 >>> 0 < 536870911) {
- i2 = i2 >> 1;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 2) + 1 | 0;
+ if (i2 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = (HEAP32[i7 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 2 >>> 0 < 536870911) {
+ i1 = i1 >> 1;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 1073741823;
- __ZNSt3__114__split_bufferIN6cashew7IStringERNS_9allocatorIS2_EEEC2EjjS5_(i5, i1, (HEAP32[i4 >> 2] | 0) - i3 >> 2, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIN6cashew7IStringERNS_9allocatorIS2_EEEC2EjjS5_(i5, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 2, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
@@ -59947,16 +59415,16 @@ function __ZNSt3__16vectorIPN4wasm7ElementENS_9allocatorIS3_EEE21__push_back_slo
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = ((HEAP32[i4 >> 2] | 0) - i3 >> 2) + 1 | 0;
- if (i1 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = (HEAP32[i7 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 2 >>> 0 < 536870911) {
- i2 = i2 >> 1;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 2) + 1 | 0;
+ if (i2 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = (HEAP32[i7 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 2 >>> 0 < 536870911) {
+ i1 = i1 >> 1;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 1073741823;
- __ZNSt3__114__split_bufferIPN4wasm7ElementERNS_9allocatorIS3_EEEC2EjjS6_(i5, i1, (HEAP32[i4 >> 2] | 0) - i3 >> 2, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIPN4wasm7ElementERNS_9allocatorIS3_EEEC2EjjS6_(i5, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 2, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
@@ -59974,16 +59442,16 @@ function __ZNSt3__16vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slo
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = ((HEAP32[i4 >> 2] | 0) - i3 >> 2) + 1 | 0;
- if (i1 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = (HEAP32[i7 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 2 >>> 0 < 536870911) {
- i2 = i2 >> 1;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 2) + 1 | 0;
+ if (i2 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = (HEAP32[i7 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 2 >>> 0 < 536870911) {
+ i1 = i1 >> 1;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 1073741823;
- __ZNSt3__114__split_bufferIN4wasm8WasmTypeERNS_9allocatorIS2_EEEC2EjjS5_(i5, i1, (HEAP32[i4 >> 2] | 0) - i3 >> 2, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIN4wasm8WasmTypeERNS_9allocatorIS2_EEEC2EjjS5_(i5, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 2, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
@@ -60001,16 +59469,16 @@ function __ZNSt3__16vectorIPN6cashew5ValueENS_9allocatorIS3_EEE21__push_back_slo
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = ((HEAP32[i4 >> 2] | 0) - i3 >> 2) + 1 | 0;
- if (i1 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = (HEAP32[i7 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 2 >>> 0 < 536870911) {
- i2 = i2 >> 1;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 2) + 1 | 0;
+ if (i2 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = (HEAP32[i7 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 2 >>> 0 < 536870911) {
+ i1 = i1 >> 1;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 1073741823;
- __ZNSt3__114__split_bufferIPN6cashew5ValueERNS_9allocatorIS3_EEEC2EjjS6_(i5, i1, (HEAP32[i4 >> 2] | 0) - i3 >> 2, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIPN6cashew5ValueERNS_9allocatorIS3_EEEC2EjjS6_(i5, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 2, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
@@ -60028,16 +59496,16 @@ function __ZNSt3__16vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slo
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = ((HEAP32[i4 >> 2] | 0) - i3 >> 2) + 1 | 0;
- if (i1 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = (HEAP32[i7 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 2 >>> 0 < 536870911) {
- i2 = i2 >> 1;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 2) + 1 | 0;
+ if (i2 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = (HEAP32[i7 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 2 >>> 0 < 536870911) {
+ i1 = i1 >> 1;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 1073741823;
- __ZNSt3__114__split_bufferIN4wasm8WasmTypeERNS_9allocatorIS2_EEEC2EjjS5_(i5, i1, (HEAP32[i4 >> 2] | 0) - i3 >> 2, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIN4wasm8WasmTypeERNS_9allocatorIS2_EEEC2EjjS5_(i5, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 2, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
@@ -60055,16 +59523,16 @@ function __ZNSt3__16vectorIPN4wasm6ImportENS_9allocatorIS3_EEE21__push_back_slow
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = ((HEAP32[i4 >> 2] | 0) - i3 >> 2) + 1 | 0;
- if (i1 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = (HEAP32[i7 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 2 >>> 0 < 536870911) {
- i2 = i2 >> 1;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 2) + 1 | 0;
+ if (i2 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = (HEAP32[i7 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 2 >>> 0 < 536870911) {
+ i1 = i1 >> 1;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 1073741823;
- __ZNSt3__114__split_bufferIPN4wasm6ImportERNS_9allocatorIS3_EEEC2EjjS6_(i5, i1, (HEAP32[i4 >> 2] | 0) - i3 >> 2, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIPN4wasm6ImportERNS_9allocatorIS3_EEEC2EjjS6_(i5, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 2, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
@@ -60082,16 +59550,16 @@ function __ZNSt3__16vectorIPN4wasm6ExportENS_9allocatorIS3_EEE21__push_back_slow
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = ((HEAP32[i4 >> 2] | 0) - i3 >> 2) + 1 | 0;
- if (i1 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = (HEAP32[i7 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 2 >>> 0 < 536870911) {
- i2 = i2 >> 1;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 2) + 1 | 0;
+ if (i2 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = (HEAP32[i7 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 2 >>> 0 < 536870911) {
+ i1 = i1 >> 1;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 1073741823;
- __ZNSt3__114__split_bufferIPN4wasm6ExportERNS_9allocatorIS3_EEEC2EjjS6_(i5, i1, (HEAP32[i4 >> 2] | 0) - i3 >> 2, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIPN4wasm6ExportERNS_9allocatorIS3_EEEC2EjjS6_(i5, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 2, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
@@ -60162,10 +59630,10 @@ function __ZN4wasm14SimplifyLocals10visitBlockEPNS_5BlockE(i1, i2) {
while (1) {
i5 = i2;
if (i3 >>> 0 >= ((i1 - i2 >> 2) + -1 | 0) >>> 0) break L1;
- i4 = i5 + (i3 << 2) | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- if ((!((i2 | 0) == 0 | (HEAP32[i2 >> 2] | 0) != 10) ? (i8 = HEAP32[i5 + (i3 + 1 << 2) >> 2] | 0, !((i8 | 0) == 0 | (HEAP32[i8 >> 2] | 0) != 9)) : 0) ? (HEAP32[i2 + 8 >> 2] | 0) == (HEAP32[i8 + 8 >> 2] | 0) : 0) {
- i5 = i4 + 4 | 0;
+ i2 = i5 + (i3 << 2) | 0;
+ i4 = HEAP32[i2 >> 2] | 0;
+ if ((!((i4 | 0) == 0 | (HEAP32[i4 >> 2] | 0) != 10) ? (i8 = HEAP32[i5 + (i3 + 1 << 2) >> 2] | 0, !((i8 | 0) == 0 | (HEAP32[i8 >> 2] | 0) != 9)) : 0) ? (HEAP32[i4 + 8 >> 2] | 0) == (HEAP32[i8 + 8 >> 2] | 0) : 0) {
+ i5 = i2 + 4 | 0;
i4 = i5 + 4 | 0;
i2 = i1 - i4 | 0;
_memmove(i5 | 0, i4 | 0, i2 | 0) | 0;
@@ -60186,43 +59654,43 @@ function __ZN4wasm14SimplifyLocals10visitBlockEPNS_5BlockE(i1, i2) {
return;
}
-function _vsnprintf(i6, i2, i10, i8) {
- i6 = i6 | 0;
- i2 = i2 | 0;
+function _vsnprintf(i3, i1, i10, i8) {
+ i3 = i3 | 0;
+ i1 = i1 | 0;
i10 = i10 | 0;
i8 = i8 | 0;
- var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i9 = 0, i11 = 0;
+ var i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i11 = 0;
i11 = STACKTOP;
STACKTOP = STACKTOP + 128 | 0;
- i1 = i11 + 112 | 0;
+ i2 = i11 + 112 | 0;
i9 = i11;
- i3 = i9;
- i4 = 4016;
- i5 = i3 + 112 | 0;
+ i4 = i9;
+ i5 = 4616;
+ i6 = i4 + 112 | 0;
do {
- HEAP32[i3 >> 2] = HEAP32[i4 >> 2];
- i3 = i3 + 4 | 0;
+ HEAP32[i4 >> 2] = HEAP32[i5 >> 2];
i4 = i4 + 4 | 0;
- } while ((i3 | 0) < (i5 | 0));
- if ((i2 + -1 | 0) >>> 0 > 2147483646) if (!i2) {
- i2 = 1;
+ i5 = i5 + 4 | 0;
+ } while ((i4 | 0) < (i6 | 0));
+ if ((i1 + -1 | 0) >>> 0 > 2147483646) if (!i1) {
+ i1 = 1;
i7 = 4;
} else {
i1 = ___errno_location() | 0;
HEAP32[i1 >> 2] = 75;
i1 = -1;
} else {
- i1 = i6;
+ i2 = i3;
i7 = 4;
}
if ((i7 | 0) == 4) {
- i7 = -2 - i1 | 0;
- i7 = i2 >>> 0 > i7 >>> 0 ? i7 : i2;
+ i7 = -2 - i2 | 0;
+ i7 = i1 >>> 0 > i7 >>> 0 ? i7 : i1;
HEAP32[i9 + 48 >> 2] = i7;
i3 = i9 + 20 | 0;
- HEAP32[i3 >> 2] = i1;
- HEAP32[i9 + 44 >> 2] = i1;
- i1 = i1 + i7 | 0;
+ HEAP32[i3 >> 2] = i2;
+ HEAP32[i9 + 44 >> 2] = i2;
+ i1 = i2 + i7 | 0;
i2 = i9 + 16 | 0;
HEAP32[i2 >> 2] = i1;
HEAP32[i9 + 28 >> 2] = i1;
@@ -60243,16 +59711,16 @@ function __ZNSt3__16vectorIPN4wasm4PassENS_9allocatorIS3_EEE21__push_back_slow_p
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = ((HEAP32[i4 >> 2] | 0) - i3 >> 2) + 1 | 0;
- if (i1 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = (HEAP32[i7 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 2 >>> 0 < 536870911) {
- i2 = i2 >> 1;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 2) + 1 | 0;
+ if (i2 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = (HEAP32[i7 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 2 >>> 0 < 536870911) {
+ i1 = i1 >> 1;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 1073741823;
- __ZNSt3__114__split_bufferIPN4wasm4PassERNS_9allocatorIS3_EEEC2EjjS6_(i5, i1, (HEAP32[i4 >> 2] | 0) - i3 >> 2, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIPN4wasm4PassERNS_9allocatorIS3_EEEC2EjjS6_(i5, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 2, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
@@ -60270,16 +59738,16 @@ function __ZNSt3__16vectorIN6cashew3RefENS_9allocatorIS2_EEE21__push_back_slow_p
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = ((HEAP32[i4 >> 2] | 0) - i3 >> 2) + 1 | 0;
- if (i1 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = (HEAP32[i7 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 2 >>> 0 < 536870911) {
- i2 = i2 >> 1;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 2) + 1 | 0;
+ if (i2 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = (HEAP32[i7 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 2 >>> 0 < 536870911) {
+ i1 = i1 >> 1;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 1073741823;
- __ZNSt3__114__split_bufferIN6cashew3RefERNS_9allocatorIS2_EEEC2EjjS5_(i5, i1, (HEAP32[i4 >> 2] | 0) - i3 >> 2, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIN6cashew3RefERNS_9allocatorIS2_EEEC2EjjS5_(i5, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 2, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
@@ -60344,16 +59812,16 @@ function __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pa
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = ((HEAP32[i4 >> 2] | 0) - i3 >> 2) + 1 | 0;
- if (i1 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = (HEAP32[i7 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 2 >>> 0 < 536870911) {
- i2 = i2 >> 1;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 2) + 1 | 0;
+ if (i2 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = (HEAP32[i7 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 2 >>> 0 < 536870911) {
+ i1 = i1 >> 1;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 1073741823;
- __ZNSt3__114__split_bufferIN4wasm4NameERNS_9allocatorIS2_EEEC2EjjS5_(i5, i1, (HEAP32[i4 >> 2] | 0) - i3 >> 2, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIN4wasm4NameERNS_9allocatorIS2_EEEC2EjjS5_(i5, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 2, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
@@ -60401,16 +59869,16 @@ function __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pa
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = ((HEAP32[i4 >> 2] | 0) - i3 >> 2) + 1 | 0;
- if (i1 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = (HEAP32[i7 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 2 >>> 0 < 536870911) {
- i2 = i2 >> 1;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 2) + 1 | 0;
+ if (i2 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = (HEAP32[i7 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 2 >>> 0 < 536870911) {
+ i1 = i1 >> 1;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 1073741823;
- __ZNSt3__114__split_bufferIN4wasm4NameERNS_9allocatorIS2_EEEC2EjjS5_(i5, i1, (HEAP32[i4 >> 2] | 0) - i3 >> 2, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIN4wasm4NameERNS_9allocatorIS2_EEEC2EjjS5_(i5, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 2, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
@@ -60426,37 +59894,37 @@ function __ZN6cashew5Arena5allocEv(i8) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i7 = i9;
+ i5 = i9;
i6 = i8 + 4 | 0;
- i5 = HEAP32[i6 >> 2] | 0;
- i1 = i5;
- if (!((i5 | 0) != (HEAP32[i8 >> 2] | 0) ? (i2 = i8 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 | 0) != 1e3) : 0)) {
- i4 = __Znaj(16008) | 0;
- HEAP32[i4 + 4 >> 2] = 1e3;
- i2 = i4 + 8 | 0;
- i4 = i4 + 16008 | 0;
- i3 = i2;
+ i7 = HEAP32[i6 >> 2] | 0;
+ i1 = i7;
+ if (!((i7 | 0) != (HEAP32[i8 >> 2] | 0) ? (i3 = i8 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 | 0) != 1e3) : 0)) {
+ i3 = __Znaj(16008) | 0;
+ HEAP32[i3 + 4 >> 2] = 1e3;
+ i2 = i3 + 8 | 0;
+ i3 = i3 + 16008 | 0;
+ i4 = i2;
do {
- HEAP32[i3 >> 2] = 3;
- HEAPF64[i3 + 8 >> 3] = 0.0;
- i3 = i3 + 16 | 0;
- } while ((i3 | 0) != (i4 | 0));
- HEAP32[i7 >> 2] = i2;
+ HEAP32[i4 >> 2] = 3;
+ HEAPF64[i4 + 8 >> 3] = 0.0;
+ i4 = i4 + 16 | 0;
+ } while ((i4 | 0) != (i3 | 0));
+ HEAP32[i5 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i8 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i5 >> 2] = i2;
+ HEAP32[i7 >> 2] = i2;
i1 = (HEAP32[i6 >> 2] | 0) + 4 | 0;
HEAP32[i6 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPN6cashew5ValueENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i8, i7);
+ __ZNSt3__16vectorIPN6cashew5ValueENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i8, i5);
i1 = HEAP32[i6 >> 2] | 0;
}
- i2 = i8 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i8 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- HEAP32[i2 >> 2] = i3 + 1;
+ HEAP32[i3 >> 2] = i2 + 1;
STACKTOP = i9;
- return (HEAP32[i1 + -4 >> 2] | 0) + (i3 << 4) | 0;
+ return (HEAP32[i1 + -4 >> 2] | 0) + (i2 << 4) | 0;
}
function __ZN6cashew12ValueBuilder11appendToVarENS_3RefENS_7IStringES1_(i7, i2, i6) {
@@ -60466,26 +59934,26 @@ function __ZN6cashew12ValueBuilder11appendToVarENS_3RefENS_7IStringES1_(i7, i2,
var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i8 + 12 | 0;
+ i3 = i8 + 12 | 0;
i1 = i8 + 8 | 0;
- i5 = i8 + 4 | 0;
- i3 = i8;
- if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i7, 0) | 0, 36936) | 0)) ___assert_fail(22541, 27234, 1518, 22555);
+ i4 = i8 + 4 | 0;
+ i5 = i8;
+ if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i7, 0) | 0, 38408) | 0)) ___assert_fail(23129, 28586, 1518, 23143);
i9 = __ZN6cashew12ValueBuilder12makeRawArrayEi(1) | 0;
i2 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(i2) | 0;
HEAP32[i1 >> 2] = i2;
- HEAP32[i4 >> 2] = HEAP32[i1 >> 2];
- i1 = __ZN6cashew5Value9push_backENS_3RefE(i9, i4) | 0;
+ HEAP32[i3 >> 2] = HEAP32[i1 >> 2];
+ i1 = __ZN6cashew5Value9push_backENS_3RefE(i9, i3) | 0;
if (!(__ZN6cashew3RefntEv(i6) | 0)) {
- HEAP32[i5 >> 2] = HEAP32[i6 >> 2];
- HEAP32[i4 >> 2] = HEAP32[i5 >> 2];
- __ZN6cashew5Value9push_backENS_3RefE(i1, i4) | 0;
+ HEAP32[i4 >> 2] = HEAP32[i6 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i4 >> 2];
+ __ZN6cashew5Value9push_backENS_3RefE(i1, i3) | 0;
}
i9 = __ZN6cashew3RefixEj(i7, 1) | 0;
i9 = HEAP32[i9 >> 2] | 0;
- HEAP32[i3 >> 2] = i1;
- HEAP32[i4 >> 2] = HEAP32[i3 >> 2];
- __ZN6cashew5Value9push_backENS_3RefE(i9, i4) | 0;
+ HEAP32[i5 >> 2] = i1;
+ HEAP32[i3 >> 2] = HEAP32[i5 >> 2];
+ __ZN6cashew5Value9push_backENS_3RefE(i9, i3) | 0;
STACKTOP = i8;
return;
}
@@ -60497,11 +59965,11 @@ function __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBu
var i1 = 0, i2 = 0, i3 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i2 = i7;
- i3 = __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE12__find_equalIS7_EERPNS_16__tree_node_baseIPvEESK_RKT_(i4, i2, i5 + 16 | 0) | 0;
- i1 = HEAP32[i3 >> 2] | 0;
+ i3 = i7;
+ i2 = __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE12__find_equalIS7_EERPNS_16__tree_node_baseIPvEESK_RKT_(i4, i3, i5 + 16 | 0) | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
- __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSI_SI_(i4, HEAP32[i2 >> 2] | 0, i3, i5);
+ __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSI_SI_(i4, HEAP32[i3 >> 2] | 0, i2, i5);
i2 = 1;
i1 = i5;
} else i2 = 0;
@@ -60563,27 +60031,27 @@ function __ZN10MixedArena5allocIN4wasm10CallImportEEEPT_v(i7) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i4 = i8;
i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 24 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 24 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 24;
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 24;
i6 = i7 + 4 | 0;
HEAP32[i6 >> 2] = 0;
HEAP32[i6 + 4 >> 2] = 0;
@@ -60600,19 +60068,19 @@ function __ZNSt3__112__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CString
i1 = i1 | 0;
var i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0;
i8 = HEAP32[i1 >> 2] | 0;
- i2 = 5381;
- i3 = i8;
+ i1 = i8;
+ i3 = 5381;
while (1) {
- i1 = HEAP8[i3 >> 0] | 0;
- if (!(i1 << 24 >> 24)) break;
- i2 = i1 << 24 >> 24 ^ i2 * 33;
- i3 = i3 + 1 | 0;
+ i2 = HEAP8[i1 >> 0] | 0;
+ if (!(i2 << 24 >> 24)) break;
+ i1 = i1 + 1 | 0;
+ i3 = i2 << 24 >> 24 ^ i3 * 33;
}
- i5 = HEAP32[i4 + 4 >> 2] | 0;
- L5 : do if (i5) {
- i6 = i5 + -1 | 0;
- i7 = (i6 & i5 | 0) == 0;
- if (i7) i3 = i6 & i2; else i3 = (i2 >>> 0) % (i5 >>> 0) | 0;
+ i7 = HEAP32[i4 + 4 >> 2] | 0;
+ L5 : do if (i7) {
+ i5 = i7 + -1 | 0;
+ i6 = (i5 & i7 | 0) == 0;
+ if (i6) i3 = i5 & i3; else i3 = (i3 >>> 0) % (i7 >>> 0) | 0;
i1 = HEAP32[(HEAP32[i4 >> 2] | 0) + (i3 << 2) >> 2] | 0;
if (i1) do {
i1 = HEAP32[i1 >> 2] | 0;
@@ -60621,7 +60089,7 @@ function __ZNSt3__112__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CString
break L5;
}
i2 = HEAP32[i1 + 4 >> 2] | 0;
- if (i7) i2 = i2 & i6; else i2 = (i2 >>> 0) % (i5 >>> 0) | 0;
+ if (i6) i2 = i2 & i5; else i2 = (i2 >>> 0) % (i7 >>> 0) | 0;
if ((i2 | 0) != (i3 | 0)) {
i1 = 0;
break L5;
@@ -60684,7 +60152,7 @@ function __ZN4wasm15Asm2WasmBuilderC2ERNS_16AllocatingModuleEbi(i3, i4, i2, i1)
i2 = i2 | 0;
i1 = i1 | 0;
HEAP32[i3 >> 2] = i4;
- HEAP32[i3 + 4 >> 2] = i4 + 144;
+ HEAP32[i3 + 4 >> 2] = i4 + 148;
HEAP32[i3 + 8 >> 2] = 8;
HEAP32[i3 + 12 >> 2] = 1e3;
HEAP32[i3 + 20 >> 2] = 0;
@@ -60811,20 +60279,20 @@ function __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__m
return i1 | 0;
}
-function __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEEixERSA_(i6, i3) {
+function __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEEixERSA_(i6, i4) {
i6 = i6 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i7 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i7 + 12 | 0;
- i2 = i7;
- i5 = __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERSA_(i6, i4, i3) | 0;
- i1 = HEAP32[i5 >> 2] | 0;
+ i5 = i7 + 12 | 0;
+ i3 = i7;
+ i2 = __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERSA_(i6, i5, i4) | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
- __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEE25__construct_node_with_keyERSA_(i2, i6, i3);
- i1 = HEAP32[i2 >> 2] | 0;
- __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSI_SI_(i6, HEAP32[i4 >> 2] | 0, i5, i1);
+ __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEE25__construct_node_with_keyERSA_(i3, i6, i4);
+ i1 = HEAP32[i3 >> 2] | 0;
+ __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSI_SI_(i6, HEAP32[i5 >> 2] | 0, i2, i1);
}
STACKTOP = i7;
return i1 + 20 | 0;
@@ -60837,27 +60305,27 @@ function __ZN6cashew12ValueBuilder14appendToObjectENS_3RefENS_7IStringES1_(i5, i
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i8 = 0, i9 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i2 = i8 + 12 | 0;
- i1 = i8 + 8 | 0;
- i4 = i8 + 4 | 0;
- i3 = i8;
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i5, 0) | 0, 37232) | 0) {
+ i1 = i8 + 12 | 0;
+ i2 = i8 + 8 | 0;
+ i3 = i8 + 4 | 0;
+ i4 = i8;
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i5, 0) | 0, 38704) | 0) {
i5 = __ZN6cashew3RefixEj(i5, 1) | 0;
i5 = HEAP32[i5 >> 2] | 0;
i9 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0;
i6 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(i6) | 0;
- HEAP32[i4 >> 2] = i6;
- HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
- i6 = __ZN6cashew5Value9push_backENS_3RefE(i9, i2) | 0;
- HEAP32[i3 >> 2] = HEAP32[i7 >> 2];
- HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
- i7 = __ZN6cashew5Value9push_backENS_3RefE(i6, i2) | 0;
- HEAP32[i1 >> 2] = i7;
- HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
- __ZN6cashew5Value9push_backENS_3RefE(i5, i2) | 0;
+ HEAP32[i3 >> 2] = i6;
+ HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
+ i6 = __ZN6cashew5Value9push_backENS_3RefE(i9, i1) | 0;
+ HEAP32[i4 >> 2] = HEAP32[i7 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i4 >> 2];
+ i7 = __ZN6cashew5Value9push_backENS_3RefE(i6, i1) | 0;
+ HEAP32[i2 >> 2] = i7;
+ HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
+ __ZN6cashew5Value9push_backENS_3RefE(i5, i1) | 0;
STACKTOP = i8;
return;
- } else ___assert_fail(23323, 27234, 1653, 23342);
+ } else ___assert_fail(23911, 28586, 1653, 23930);
}
function __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(i7) {
@@ -60865,27 +60333,27 @@ function __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(i7) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i4 = i8;
i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 24 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 24 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 24;
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 24;
HEAP32[i7 >> 2] = 1;
i6 = i7 + 4 | 0;
HEAP32[i6 >> 2] = 0;
@@ -60902,28 +60370,28 @@ function __ZN10MixedArena5allocIN4wasm4HostEEEPT_v(i7) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i4 = i8;
i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 32 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 32 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 32;
- HEAP32[i7 >> 2] = 17;
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 32;
+ HEAP32[i7 >> 2] = 18;
HEAP32[i7 + 4 >> 2] = 0;
i6 = i7 + 12 | 0;
HEAP32[i6 >> 2] = 0;
@@ -60939,27 +60407,27 @@ function __ZN10MixedArena5allocIN4wasm4CallEEEPT_v(i7) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i4 = i8;
i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 24 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 24 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 24;
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 24;
HEAP32[i7 >> 2] = 6;
i6 = i7 + 4 | 0;
HEAP32[i6 >> 2] = 0;
@@ -60971,56 +60439,6 @@ function __ZN10MixedArena5allocIN4wasm4CallEEEPT_v(i7) {
return i7 | 0;
}
-function ___stpcpy(i1, i2) {
- i1 = i1 | 0;
- i2 = i2 | 0;
- var i3 = 0, i4 = 0;
- i3 = i2;
- L1 : do if (!((i3 ^ i1) & 3)) {
- if (!(i3 & 3)) i3 = i2; else while (1) {
- i3 = HEAP8[i2 >> 0] | 0;
- HEAP8[i1 >> 0] = i3;
- if (!(i3 << 24 >> 24)) break L1;
- i2 = i2 + 1 | 0;
- i1 = i1 + 1 | 0;
- if (!(i2 & 3)) {
- i3 = i2;
- break;
- }
- }
- i2 = HEAP32[i3 >> 2] | 0;
- if (!((i2 & -2139062144 ^ -2139062144) & i2 + -16843009)) {
- i4 = i1;
- i1 = i3;
- while (1) {
- i3 = i1 + 4 | 0;
- i1 = i4 + 4 | 0;
- HEAP32[i4 >> 2] = i2;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 & -2139062144 ^ -2139062144) & i2 + -16843009 | 0) {
- i2 = i3;
- break;
- } else {
- i4 = i1;
- i1 = i3;
- }
- }
- } else i2 = i3;
- i4 = 8;
- } else i4 = 8; while (0);
- if ((i4 | 0) == 8) {
- i4 = HEAP8[i2 >> 0] | 0;
- HEAP8[i1 >> 0] = i4;
- if (i4 << 24 >> 24) do {
- i2 = i2 + 1 | 0;
- i1 = i1 + 1 | 0;
- i4 = HEAP8[i2 >> 0] | 0;
- HEAP8[i1 >> 0] = i4;
- } while (i4 << 24 >> 24 != 0);
- }
- return i1 | 0;
-}
-
function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11do_get_dateES4_S4_RNS_8ios_baseERjP2tm(i6, i1, i2, i4, i3, i5) {
i6 = i6 | 0;
i1 = i1 | 0;
@@ -61059,7 +60477,7 @@ function __ZN4wasm2If7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(
STACKTOP = STACKTOP + 16 | 0;
i4 = i6;
i7 = i3 + 16 | 0;
- __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i5, HEAP32[i7 >> 2] | 0 ? 16657 : 26638, 0) | 0;
+ __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i5, HEAP32[i7 >> 2] | 0 ? 17241 : 27990, 0) | 0;
__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i5, 10) | 0;
i2 = i1 + 1 | 0;
HEAP32[i4 >> 2] = i2;
@@ -61072,13 +60490,50 @@ function __ZN4wasm2If7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(
return i7 | 0;
}
+function __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(i7) {
+ i7 = i7 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
+ i8 = STACKTOP;
+ STACKTOP = STACKTOP + 16 | 0;
+ i4 = i8;
+ i5 = i7 + 4 | 0;
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 24 | 0) >>> 0 <= 9999) : 0)) {
+ i2 = __Znaj(1e4) | 0;
+ HEAP32[i4 >> 2] = i2;
+ if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
+ HEAP32[i6 >> 2] = i2;
+ i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
+ HEAP32[i5 >> 2] = i1;
+ } else {
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
+ i1 = HEAP32[i5 >> 2] | 0;
+ }
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
+ }
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 24;
+ HEAP32[i7 >> 2] = 4;
+ i6 = i7 + 4 | 0;
+ HEAP32[i6 >> 2] = 0;
+ HEAP32[i6 + 4 >> 2] = 0;
+ HEAP32[i6 + 8 >> 2] = 0;
+ HEAP32[i6 + 12 >> 2] = 0;
+ HEAP32[i6 >> 2] = 5;
+ STACKTOP = i8;
+ return i7 | 0;
+}
+
function __ZZ11instantiateEN19JSExternalInterface5storeEPN4wasm5StoreEjNS0_7LiteralE(i1, i3, i2, i4) {
i1 = i1 | 0;
i3 = i3 | 0;
i2 = i2 | 0;
i4 = i4 | 0;
i1 = HEAP32[i3 + 8 >> 2] | 0;
- if ((HEAP32[i3 + 16 >> 2] | 0) >>> 0 < i1 >>> 0) ___assert_fail(18792, 14162, 236, 18821);
+ if ((HEAP32[i3 + 16 >> 2] | 0) >>> 0 < i1 >>> 0) ___assert_fail(19307, 14681, 236, 19336);
L4 : do if (((HEAP32[i3 + 4 >> 2] | 0) + -3 | 0) >>> 0 < 2) switch (i1 | 0) {
case 4:
{
@@ -61169,28 +60624,28 @@ function __ZN6cashew12ValueBuilder21appendDefaultToSwitchENS_3RefE(i5) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0;
i6 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i2 = i6 + 12 | 0;
- i1 = i6 + 8 | 0;
- i4 = i6 + 4 | 0;
- i3 = i6;
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i5, 0) | 0, 37004) | 0) {
+ i1 = i6 + 12 | 0;
+ i2 = i6 + 8 | 0;
+ i3 = i6 + 4 | 0;
+ i4 = i6;
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i5, 0) | 0, 38476) | 0) {
i5 = __ZN6cashew3RefixEj(i5, 2) | 0;
i5 = HEAP32[i5 >> 2] | 0;
i7 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0;
i8 = __ZN6cashew12ValueBuilder8makeNullEv() | 0;
- HEAP32[i4 >> 2] = i8;
- HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
- i4 = __ZN6cashew5Value9push_backENS_3RefE(i7, i2) | 0;
+ HEAP32[i3 >> 2] = i8;
+ HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
+ i3 = __ZN6cashew5Value9push_backENS_3RefE(i7, i1) | 0;
i7 = __ZN6cashew12ValueBuilder12makeRawArrayEi(0) | 0;
- HEAP32[i3 >> 2] = i7;
- HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
- i4 = __ZN6cashew5Value9push_backENS_3RefE(i4, i2) | 0;
- HEAP32[i1 >> 2] = i4;
- HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
- __ZN6cashew5Value9push_backENS_3RefE(i5, i2) | 0;
+ HEAP32[i4 >> 2] = i7;
+ HEAP32[i1 >> 2] = HEAP32[i4 >> 2];
+ i4 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0;
+ HEAP32[i2 >> 2] = i4;
+ HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
+ __ZN6cashew5Value9push_backENS_3RefE(i5, i1) | 0;
STACKTOP = i6;
return;
- } else ___assert_fail(22759, 27234, 1604, 22799);
+ } else ___assert_fail(23347, 28586, 1604, 23387);
}
function __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE20__node_insert_uniqueEPNS_11__tree_nodeIS7_PvEE(i6, i4, i5) {
@@ -61200,11 +60655,11 @@ function __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBu
var i1 = 0, i2 = 0, i3 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i2 = i7;
- i3 = __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE12__find_equalIS7_EERPNS_16__tree_node_baseIPvEESK_RKT_(i4, i2, i5 + 16 | 0) | 0;
- i1 = HEAP32[i3 >> 2] | 0;
+ i3 = i7;
+ i2 = __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE12__find_equalIS7_EERPNS_16__tree_node_baseIPvEESK_RKT_(i4, i3, i5 + 16 | 0) | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
- __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSI_SI_(i4, HEAP32[i2 >> 2] | 0, i3, i5);
+ __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSI_SI_(i4, HEAP32[i3 >> 2] | 0, i2, i5);
i2 = 1;
i1 = i5;
} else i2 = 0;
@@ -61214,44 +60669,6 @@ function __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBu
return;
}
-function ___shgetc(i6) {
- i6 = i6 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0;
- i2 = i6 + 104 | 0;
- i5 = HEAP32[i2 >> 2] | 0;
- if ((i5 | 0) != 0 ? (HEAP32[i6 + 108 >> 2] | 0) >= (i5 | 0) : 0) i7 = 4; else {
- i1 = ___uflow(i6) | 0;
- if ((i1 | 0) >= 0) {
- i2 = HEAP32[i2 >> 2] | 0;
- i5 = HEAP32[i6 + 8 >> 2] | 0;
- if (i2) {
- i4 = HEAP32[i6 + 4 >> 2] | 0;
- i3 = i2 - (HEAP32[i6 + 108 >> 2] | 0) | 0;
- i2 = i5;
- if ((i5 - i4 | 0) < (i3 | 0)) i7 = 9; else HEAP32[i6 + 100 >> 2] = i4 + (i3 + -1);
- } else {
- i2 = i5;
- i7 = 9;
- }
- if ((i7 | 0) == 9) HEAP32[i6 + 100 >> 2] = i5;
- i3 = i6 + 4 | 0;
- if (!i2) i2 = HEAP32[i3 >> 2] | 0; else {
- i5 = HEAP32[i3 >> 2] | 0;
- i6 = i6 + 108 | 0;
- HEAP32[i6 >> 2] = i2 + 1 - i5 + (HEAP32[i6 >> 2] | 0);
- i2 = i5;
- }
- i2 = i2 + -1 | 0;
- if ((HEAPU8[i2 >> 0] | 0 | 0) != (i1 | 0)) HEAP8[i2 >> 0] = i1;
- } else i7 = 4;
- }
- if ((i7 | 0) == 4) {
- HEAP32[i6 + 100 >> 2] = 0;
- i1 = -1;
- }
- return i1 | 0;
-}
-
function __ZNKSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmData5LocalEEENS_22__unordered_map_hasherIS3_S6_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S6_NS_8equal_toIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS6_PvEEEERKT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
@@ -61333,27 +60750,27 @@ function __ZN10MixedArena5allocIN4wasm12CallIndirectEEEPT_v(i7) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i4 = i8;
i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 32 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 32 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 32;
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 32;
HEAP32[i7 >> 2] = 8;
i6 = i7 + 4 | 0;
HEAP32[i6 >> 2] = 0;
@@ -61371,16 +60788,16 @@ function __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvO
i8 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
i5 = i8;
- i4 = i7 + 4 | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- i1 = ((HEAP32[i4 >> 2] | 0) - i3 >> 2) + 1 | 0;
- if (i1 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
- i2 = (HEAP32[i7 + 8 >> 2] | 0) - i3 | 0;
- if (i2 >> 2 >>> 0 < 536870911) {
- i2 = i2 >> 1;
- i1 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
+ i3 = i7 + 4 | 0;
+ i4 = HEAP32[i7 >> 2] | 0;
+ i2 = ((HEAP32[i3 >> 2] | 0) - i4 >> 2) + 1 | 0;
+ if (i2 >>> 0 > 1073741823) __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i7);
+ i1 = (HEAP32[i7 + 8 >> 2] | 0) - i4 | 0;
+ if (i1 >> 2 >>> 0 < 536870911) {
+ i1 = i1 >> 1;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
} else i1 = 1073741823;
- __ZNSt3__114__split_bufferIPcRNS_9allocatorIS1_EEEC2EjjS4_(i5, i1, (HEAP32[i4 >> 2] | 0) - i3 >> 2, i7 + 8 | 0);
+ __ZNSt3__114__split_bufferIPcRNS_9allocatorIS1_EEEC2EjjS4_(i5, i1, (HEAP32[i3 >> 2] | 0) - i4 >> 2, i7 + 8 | 0);
i4 = i5 + 8 | 0;
i3 = HEAP32[i4 >> 2] | 0;
HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
@@ -61458,26 +60875,26 @@ function __ZNKSt3__18time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE
i2 = i8;
HEAP32[i2 >> 2] = i1 + 100;
__ZNKSt3__110__time_put8__do_putEPcRS1_PK2tmcc(i6 + 8 | 0, i1, i2, i5, i3, i4);
- i5 = HEAP32[i2 >> 2] | 0;
- i6 = i1;
+ i6 = HEAP32[i2 >> 2] | 0;
+ i5 = i1;
i1 = HEAP32[i7 >> 2] | 0;
while (1) {
- if ((i6 | 0) == (i5 | 0)) break;
- i2 = HEAP8[i6 >> 0] | 0;
+ if ((i5 | 0) == (i6 | 0)) break;
+ i3 = HEAP8[i5 >> 0] | 0;
do if (i1) {
i4 = i1 + 24 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i1 + 28 >> 2] | 0)) {
- i7 = (FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 52 >> 2] & 31](i1, i2 & 255) | 0) == -1;
+ i2 = HEAP32[i4 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i1 + 28 >> 2] | 0)) {
+ i7 = (FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 52 >> 2] & 31](i1, i3 & 255) | 0) == -1;
i1 = i7 ? 0 : i1;
break;
} else {
- HEAP32[i4 >> 2] = i3 + 1;
- HEAP8[i3 >> 0] = i2;
+ HEAP32[i4 >> 2] = i2 + 1;
+ HEAP8[i2 >> 0] = i3;
break;
}
} else i1 = 0; while (0);
- i6 = i6 + 1 | 0;
+ i5 = i5 + 1 | 0;
}
STACKTOP = i8;
return i1 | 0;
@@ -61496,7 +60913,7 @@ function __ZN6cashew12ValueBuilder15makeConditionalENS_3RefES1_S1_(i1, i3, i2) {
i7 = i4 + 4 | 0;
i6 = i4;
i8 = __ZN6cashew12ValueBuilder12makeRawArrayEi(4) | 0;
- i11 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(36944) | 0;
+ i11 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38416) | 0;
HEAP32[i10 >> 2] = i11;
HEAP32[i5 >> 2] = HEAP32[i10 >> 2];
i8 = __ZN6cashew5Value9push_backENS_3RefE(i8, i5) | 0;
@@ -61559,54 +60976,32 @@ function __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__m
return i1 | 0;
}
-function __ZN4wasm22SExpressionWasmBuilder6makeIfERNS_7ElementE(i4, i3) {
- i4 = i4 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i5 = 0;
- i1 = __ZN10MixedArena5allocIN4wasm2IfEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0;
- i5 = __ZN4wasm7Element4listEv(i3) | 0;
- i5 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i4, HEAP32[(HEAP32[i5 >> 2] | 0) + 4 >> 2] | 0) | 0;
- HEAP32[i1 + 8 >> 2] = i5;
- i5 = __ZN4wasm7Element4listEv(i3) | 0;
- i5 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i4, HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] | 0) | 0;
- i2 = i1 + 12 | 0;
- HEAP32[i2 >> 2] = i5;
- if ((__ZN4wasm7Element4sizeEv(i3) | 0) == 4) {
- i5 = __ZN4wasm7Element4listEv(i3) | 0;
- i4 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i4, HEAP32[(HEAP32[i5 >> 2] | 0) + 12 >> 2] | 0) | 0;
- HEAP32[i1 + 16 >> 2] = i4;
- i5 = HEAP32[(HEAP32[i2 >> 2] | 0) + 4 >> 2] | 0;
- HEAP32[i1 + 4 >> 2] = (i5 | 0) == (HEAP32[i4 + 4 >> 2] | 0) ? i5 : 0;
- }
- return i1 | 0;
-}
-
function __ZN10MixedArena5allocIN4wasm7ElementEEEPT_v(i7) {
i7 = i7 | 0;
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i4 = i8;
i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 24 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 24 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 24;
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 24;
HEAP8[i7 >> 0] = 1;
i6 = i7 + 4 | 0;
HEAP32[i6 >> 2] = 0;
@@ -61617,62 +61012,82 @@ function __ZN10MixedArena5allocIN4wasm7ElementEEEPT_v(i7) {
return i7 | 0;
}
-function __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(i7) {
+function __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(i7) {
i7 = i7 | 0;
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i4 = i8;
i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 24 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 24 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 24;
- HEAP32[i7 >> 2] = 4;
- i6 = i7 + 4 | 0;
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 24;
+ HEAP32[i7 >> 2] = 13;
+ HEAP32[i7 + 4 >> 2] = 0;
+ HEAP32[i7 + 8 >> 2] = 0;
+ i6 = i7 + 16 | 0;
HEAP32[i6 >> 2] = 0;
HEAP32[i6 + 4 >> 2] = 0;
- HEAP32[i6 + 8 >> 2] = 0;
- HEAP32[i6 + 12 >> 2] = 0;
STACKTOP = i8;
return i7 | 0;
}
-function __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEE7emplaceIJRS2_S5_EEENS9_INS_14__map_iteratorINS_15__tree_iteratorINS_12__value_typeIS2_S5_EEPNS_11__tree_nodeISJ_PvEEiEEEEbEEDpOT_(i3, i5, i1, i2) {
- i3 = i3 | 0;
+function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner11visitReturnEPNS_6ReturnE(i4, i5, i1) {
+ i4 = i4 | 0;
i5 = i5 | 0;
i1 = i1 | 0;
+ var i2 = 0, i3 = 0, i6 = 0;
+ i6 = STACKTOP;
+ STACKTOP = STACKTOP + 32 | 0;
+ i2 = i6;
+ HEAP32[i4 >> 2] = 0;
+ i3 = i4 + 8 | 0;
+ HEAP32[i3 >> 2] = 0;
+ HEAP32[i3 + 4 >> 2] = 0;
+ i3 = i4 + 16 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i1 = HEAP32[i1 + 8 >> 2] | 0;
+ if (!((i1 | 0) != 0 ? (__ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i2, i5, i1), HEAP32[i4 >> 2] = HEAP32[i2 >> 2], HEAP32[i4 + 4 >> 2] = HEAP32[i2 + 4 >> 2], HEAP32[i4 + 8 >> 2] = HEAP32[i2 + 8 >> 2], HEAP32[i4 + 12 >> 2] = HEAP32[i2 + 12 >> 2], HEAP32[i4 + 16 >> 2] = HEAP32[i2 + 16 >> 2], (HEAP32[i3 >> 2] | 0) != 0) : 0)) HEAP32[i4 + 16 >> 2] = HEAP32[9586];
+ STACKTOP = i6;
+ return;
+}
+
+function __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEE7emplaceIJRS2_S5_EEENS9_INS_14__map_iteratorINS_15__tree_iteratorINS_12__value_typeIS2_S5_EEPNS_11__tree_nodeISJ_PvEEiEEEEbEEDpOT_(i4, i5, i2, i3) {
+ i4 = i4 | 0;
+ i5 = i5 | 0;
i2 = i2 | 0;
- var i4 = 0, i6 = 0, i7 = 0;
+ i3 = i3 | 0;
+ var i1 = 0, i6 = 0, i7 = 0;
i6 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
i7 = i6;
- i4 = __Znwj(32) | 0;
- HEAP32[i4 + 16 >> 2] = HEAP32[i1 >> 2];
- i1 = i4 + 20 | 0;
- HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i1 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i1 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE20__node_insert_uniqueEPNS_11__tree_nodeIS7_PvEE(i7, i5, i4);
- HEAP32[i3 >> 2] = HEAP32[i7 >> 2];
+ i1 = __Znwj(32) | 0;
+ HEAP32[i1 + 16 >> 2] = HEAP32[i2 >> 2];
+ i2 = i1 + 20 | 0;
+ HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i2 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
+ HEAP32[i2 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE20__node_insert_uniqueEPNS_11__tree_nodeIS7_PvEE(i7, i5, i1);
+ HEAP32[i4 >> 2] = HEAP32[i7 >> 2];
i5 = HEAP8[i7 + 4 >> 0] | 0;
- HEAP8[i3 + 4 >> 0] = i5;
- if (!(i5 << 24 >> 24)) __ZdlPv(i4);
+ HEAP8[i4 + 4 >> 0] = i5;
+ if (!(i5 << 24 >> 24)) __ZdlPv(i1);
STACKTOP = i6;
return;
}
@@ -61724,30 +61139,67 @@ function __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewENS_4lessIS
return i1 | 0;
}
+function ___shgetc(i6) {
+ i6 = i6 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0;
+ i2 = i6 + 104 | 0;
+ i5 = HEAP32[i2 >> 2] | 0;
+ if ((i5 | 0) != 0 ? (HEAP32[i6 + 108 >> 2] | 0) >= (i5 | 0) : 0) i7 = 4; else {
+ i1 = ___uflow(i6) | 0;
+ if ((i1 | 0) >= 0) {
+ i2 = HEAP32[i2 >> 2] | 0;
+ i5 = HEAP32[i6 + 8 >> 2] | 0;
+ if (i2) {
+ i4 = HEAP32[i6 + 4 >> 2] | 0;
+ i2 = i2 - (HEAP32[i6 + 108 >> 2] | 0) | 0;
+ i3 = i5;
+ if ((i5 - i4 | 0) < (i2 | 0)) i7 = 9; else HEAP32[i6 + 100 >> 2] = i4 + (i2 + -1);
+ } else {
+ i3 = i5;
+ i7 = 9;
+ }
+ if ((i7 | 0) == 9) HEAP32[i6 + 100 >> 2] = i5;
+ i2 = i6 + 4 | 0;
+ if (!i3) i2 = HEAP32[i2 >> 2] | 0; else {
+ i2 = HEAP32[i2 >> 2] | 0;
+ i6 = i6 + 108 | 0;
+ HEAP32[i6 >> 2] = i3 + 1 - i2 + (HEAP32[i6 >> 2] | 0);
+ }
+ i2 = i2 + -1 | 0;
+ if ((HEAPU8[i2 >> 0] | 0 | 0) != (i1 | 0)) HEAP8[i2 >> 0] = i1;
+ } else i7 = 4;
+ }
+ if ((i7 | 0) == 4) {
+ HEAP32[i6 + 100 >> 2] = 0;
+ i1 = -1;
+ }
+ return i1 | 0;
+}
+
function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__7clENS1_7IStringE(i1) {
i1 = i1 | 0;
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0;
i6 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i4 = i6 + 24 | 0;
- i5 = i6 + 12 | 0;
- i3 = i6;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i3, 21584, 15);
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i3, HEAP32[i1 >> 2] | 0) | 0;
- HEAP32[i5 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i5 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i5 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i3 = i6 + 24 | 0;
+ i4 = i6 + 12 | 0;
+ i5 = i6;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i5, 22172, 15);
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i5, HEAP32[i1 >> 2] | 0) | 0;
+ HEAP32[i4 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i4 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i4 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- __ZN6cashew7IStringC2EPKcb(i4, (HEAP8[i5 >> 0] & 1) == 0 ? i5 + 1 | 0 : HEAP32[i5 + 8 >> 2] | 0, 0);
+ __ZN6cashew7IStringC2EPKcb(i3, (HEAP8[i4 >> 0] & 1) == 0 ? i4 + 1 | 0 : HEAP32[i4 + 8 >> 2] | 0, 0);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i4);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i3);
STACKTOP = i6;
- return HEAP32[i4 >> 2] | 0;
+ return HEAP32[i3 >> 2] | 0;
}
function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__6clENS1_7IStringE(i1) {
@@ -61755,25 +61207,25 @@ function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__6clENS1
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0;
i6 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i4 = i6 + 24 | 0;
- i5 = i6 + 12 | 0;
- i3 = i6;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i3, 21571, 12);
- i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i3, HEAP32[i1 >> 2] | 0) | 0;
- HEAP32[i5 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i5 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i5 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i3 = i6 + 24 | 0;
+ i4 = i6 + 12 | 0;
+ i5 = i6;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i5, 22159, 12);
+ i1 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i5, HEAP32[i1 >> 2] | 0) | 0;
+ HEAP32[i4 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i4 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i4 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
- __ZN6cashew7IStringC2EPKcb(i4, (HEAP8[i5 >> 0] & 1) == 0 ? i5 + 1 | 0 : HEAP32[i5 + 8 >> 2] | 0, 0);
+ __ZN6cashew7IStringC2EPKcb(i3, (HEAP8[i4 >> 0] & 1) == 0 ? i4 + 1 | 0 : HEAP32[i4 + 8 >> 2] | 0, 0);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i4);
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5);
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i3);
STACKTOP = i6;
- return HEAP32[i4 >> 2] | 0;
+ return HEAP32[i3 >> 2] | 0;
}
function __ZN10MixedArena5allocIN4wasm12FunctionTypeEEEPT_v(i7) {
@@ -61781,27 +61233,27 @@ function __ZN10MixedArena5allocIN4wasm12FunctionTypeEEEPT_v(i7) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i4 = i8;
i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 24 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 24 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 24;
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 24;
HEAP32[i7 >> 2] = 0;
HEAP32[i7 + 4 >> 2] = 0;
HEAP32[i7 + 8 >> 2] = 0;
@@ -61811,20 +61263,20 @@ function __ZN10MixedArena5allocIN4wasm12FunctionTypeEEEPT_v(i7) {
return i7 | 0;
}
-function __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEEixERSA_(i6, i3) {
+function __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEEixERSA_(i6, i4) {
i6 = i6 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i7 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i7 + 12 | 0;
- i2 = i7;
- i5 = __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERSA_(i6, i4, i3) | 0;
- i1 = HEAP32[i5 >> 2] | 0;
+ i5 = i7 + 12 | 0;
+ i3 = i7;
+ i2 = __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERSA_(i6, i5, i4) | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
- __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEE25__construct_node_with_keyERSA_(i2, i6, i3);
- i1 = HEAP32[i2 >> 2] | 0;
- __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSI_SI_(i6, HEAP32[i4 >> 2] | 0, i5, i1);
+ __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEE25__construct_node_with_keyERSA_(i3, i6, i4);
+ i1 = HEAP32[i3 >> 2] | 0;
+ __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSI_SI_(i6, HEAP32[i5 >> 2] | 0, i2, i1);
}
STACKTOP = i7;
return i1 + 20 | 0;
@@ -62007,27 +61459,27 @@ function __ZN6cashew12ValueBuilder18appendCaseToSwitchENS_3RefES1_(i6, i5) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0, i8 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i2 = i7 + 12 | 0;
- i1 = i7 + 8 | 0;
+ i1 = i7 + 12 | 0;
+ i2 = i7 + 8 | 0;
i3 = i7 + 4 | 0;
i4 = i7;
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i6, 0) | 0, 37004) | 0) {
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i6, 0) | 0, 38476) | 0) {
i6 = __ZN6cashew3RefixEj(i6, 2) | 0;
i6 = HEAP32[i6 >> 2] | 0;
i8 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0;
HEAP32[i3 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
- i5 = __ZN6cashew5Value9push_backENS_3RefE(i8, i2) | 0;
+ HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
+ i5 = __ZN6cashew5Value9push_backENS_3RefE(i8, i1) | 0;
i3 = __ZN6cashew12ValueBuilder12makeRawArrayEi(0) | 0;
HEAP32[i4 >> 2] = i3;
- HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
- i5 = __ZN6cashew5Value9push_backENS_3RefE(i5, i2) | 0;
- HEAP32[i1 >> 2] = i5;
- HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
- __ZN6cashew5Value9push_backENS_3RefE(i6, i2) | 0;
+ HEAP32[i1 >> 2] = HEAP32[i4 >> 2];
+ i5 = __ZN6cashew5Value9push_backENS_3RefE(i5, i1) | 0;
+ HEAP32[i2 >> 2] = i5;
+ HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
+ __ZN6cashew5Value9push_backENS_3RefE(i6, i1) | 0;
STACKTOP = i7;
return;
- } else ___assert_fail(22759, 27234, 1598, 22780);
+ } else ___assert_fail(23347, 28586, 1598, 23368);
}
function __ZNSt3__13mapIN6cashew7IStringEN4wasm7LiteralENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS9_(i1, i5, i4) {
@@ -62077,17 +61529,17 @@ function __ZNSt3__13mapIN6cashew7IStringEN4wasm7LiteralENS_4lessIS2_EENS_9alloca
return i1 | 0;
}
-function __ZNSt3__16vectorINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEE6resizeEj(i5, i3) {
+function __ZNSt3__16vectorINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEE6resizeEj(i5, i4) {
i5 = i5 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i6 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i6 = 0;
i6 = i5 + 4 | 0;
i1 = HEAP32[i6 >> 2] | 0;
- i2 = HEAP32[i5 >> 2] | 0;
- i4 = (i1 - i2 | 0) / 20 | 0;
- L1 : do if (i4 >>> 0 >= i3 >>> 0) {
- if (i4 >>> 0 > i3 >>> 0) {
- i2 = i2 + (i3 * 20 | 0) | 0;
+ i3 = HEAP32[i5 >> 2] | 0;
+ i2 = (i1 - i3 | 0) / 20 | 0;
+ L1 : do if (i2 >>> 0 >= i4 >>> 0) {
+ if (i2 >>> 0 > i4 >>> 0) {
+ i2 = i3 + (i4 * 20 | 0) | 0;
while (1) {
if ((i1 | 0) == (i2 | 0)) break L1;
i5 = i1 + -20 | 0;
@@ -62096,7 +61548,7 @@ function __ZNSt3__16vectorINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS
i1 = HEAP32[i6 >> 2] | 0;
}
}
- } else __ZNSt3__16vectorINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEE8__appendEj(i5, i3 - i4 | 0); while (0);
+ } else __ZNSt3__16vectorINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEE8__appendEj(i5, i4 - i2 | 0); while (0);
return;
}
@@ -62107,26 +61559,26 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseDottingES1_
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i5 = i7 + 28 | 0;
- i3 = i7 + 24 | 0;
+ i2 = i7 + 28 | 0;
+ i1 = i7 + 24 | 0;
i6 = i7;
- i2 = i7 + 20 | 0;
+ i3 = i7 + 20 | 0;
i4 = i7 + 16 | 0;
- i1 = HEAP32[i8 >> 2] | 0;
- if ((HEAP8[i1 >> 0] | 0) != 46) ___assert_fail(23003, 22233, 646, 23015);
- i1 = i1 + 1 | 0;
- HEAP32[i8 >> 2] = i1;
- __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i6, i1);
+ i5 = HEAP32[i8 >> 2] | 0;
+ if ((HEAP8[i5 >> 0] | 0) != 46) ___assert_fail(23591, 22821, 646, 23603);
+ i5 = i5 + 1 | 0;
+ HEAP32[i8 >> 2] = i5;
+ __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i6, i5);
if ((HEAP32[i6 + 12 >> 2] | 0) == 2) {
HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + (HEAP32[i6 + 8 >> 2] | 0);
- HEAP32[i2 >> 2] = HEAP32[i9 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i9 >> 2];
HEAP32[i4 >> 2] = HEAP32[i6 >> 2];
- HEAP32[i3 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i5 >> 2] = HEAP32[i4 >> 2];
- i9 = __ZN6cashew12ValueBuilder7makeDotENS_3RefENS_7IStringE(i3, i5) | 0;
+ HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
+ i9 = __ZN6cashew12ValueBuilder7makeDotENS_3RefENS_7IStringE(i1, i2) | 0;
STACKTOP = i7;
return i9 | 0;
- } else ___assert_fail(23028, 22233, 649, 23015);
+ } else ___assert_fail(23616, 22821, 649, 23603);
return 0;
}
@@ -62200,7 +61652,7 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseToplevelEPc
HEAP32[i9 >> 2] = 0;
HEAP32[i5 >> 2] = HEAP32[i10 >> 2];
HEAP32[i4 >> 2] = HEAP32[i9 >> 2];
- i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10parseBlockERPcPKcNS_7IStringES8_(i2, i8, 22200, i5, i4) | 0;
+ i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10parseBlockERPcPKcNS_7IStringES8_(i2, i8, 22788, i5, i4) | 0;
HEAP32[i6 >> 2] = i2;
HEAP32[i5 >> 2] = HEAP32[i7 >> 2];
HEAP32[i4 >> 2] = HEAP32[i6 >> 2];
@@ -62262,29 +61714,29 @@ function __ZN4wasm6Module12removeImportENS_4NameE(i10, i9) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0;
i8 = i10 + 16 | 0;
i6 = HEAP32[i8 >> 2] | 0;
- i3 = HEAP32[i10 + 12 >> 2] | 0;
- i5 = i6 - i3 >> 2;
- i2 = HEAP32[i9 >> 2] | 0;
- i4 = 0;
+ i4 = HEAP32[i10 + 12 >> 2] | 0;
+ i2 = i6 - i4 >> 2;
+ i3 = HEAP32[i9 >> 2] | 0;
+ i5 = 0;
while (1) {
- if (i4 >>> 0 >= i5 >>> 0) break;
- i1 = i3 + (i4 << 2) | 0;
- if ((HEAP32[HEAP32[i1 >> 2] >> 2] | 0) == (i2 | 0)) {
+ if (i5 >>> 0 >= i2 >>> 0) break;
+ i1 = i4 + (i5 << 2) | 0;
+ if ((HEAP32[HEAP32[i1 >> 2] >> 2] | 0) == (i3 | 0)) {
i7 = 4;
break;
- } else i4 = i4 + 1 | 0;
+ } else i5 = i5 + 1 | 0;
}
L4 : do if ((i7 | 0) == 4) {
i7 = i1 + 4 | 0;
i2 = i6 - i7 | 0;
_memmove(i1 | 0, i7 | 0, i2 | 0) | 0;
- i2 = i1 + (i2 >> 2 << 2) | 0;
- i1 = HEAP32[i8 >> 2] | 0;
+ i1 = i1 + (i2 >> 2 << 2) | 0;
+ i2 = HEAP32[i8 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i2 | 0)) break L4;
- i7 = i1 + -4 | 0;
+ if ((i2 | 0) == (i1 | 0)) break L4;
+ i7 = i2 + -4 | 0;
HEAP32[i8 >> 2] = i7;
- i1 = i7;
+ i2 = i7;
}
} while (0);
__ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE14__erase_uniqueIS3_EEjRKT_(i10 + 60 | 0, i9) | 0;
@@ -62385,23 +61837,23 @@ function __ZNSt3__13mapIN4wasm4NameEPNS1_6ExportENS_4lessIS2_EENS_9allocatorINS_
return i1 | 0;
}
-function __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE3putEc(i7, i4) {
+function __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE3putEc(i7, i5) {
i7 = i7 | 0;
- i4 = i4 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i8 = 0;
+ i5 = i5 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
i6 = i8;
__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i6, i7);
L1 : do if (HEAP8[i6 >> 0] | 0) {
- i1 = HEAP32[i7 + (HEAP32[(HEAP32[i7 >> 2] | 0) + -12 >> 2] | 0) + 24 >> 2] | 0;
- i2 = i1;
- do if (i1 | 0) {
- i5 = i2 + 24 | 0;
- i3 = HEAP32[i5 >> 2] | 0;
- if ((i3 | 0) == (HEAP32[i2 + 28 >> 2] | 0)) if ((FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 52 >> 2] & 31](i2, i4 & 255) | 0) == -1) break; else break L1; else {
- HEAP32[i5 >> 2] = i3 + 1;
- HEAP8[i3 >> 0] = i4;
+ i3 = HEAP32[i7 + (HEAP32[(HEAP32[i7 >> 2] | 0) + -12 >> 2] | 0) + 24 >> 2] | 0;
+ i4 = i3;
+ do if (i3 | 0) {
+ i1 = i4 + 24 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i4 + 28 >> 2] | 0)) if ((FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 52 >> 2] & 31](i4, i5 & 255) | 0) == -1) break; else break L1; else {
+ HEAP32[i1 >> 2] = i2 + 1;
+ HEAP8[i2 >> 0] = i5;
break L1;
}
} while (0);
@@ -62418,27 +61870,27 @@ function __ZN10MixedArena5allocIN4wasm8FunctionEEEPT_v(i7) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i3 = i8;
i5 = i7 + 4 | 0;
- i3 = HEAP32[i5 >> 2] | 0;
- i1 = i3;
- if (!((i3 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i4 = HEAP32[i2 >> 2] | 0, (i4 + 40 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i4 = i7 + 12 | 0, i2 = HEAP32[i4 >> 2] | 0, (i2 + 40 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i3 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i3 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i3);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i4 = 0;
+ i4 = i7 + 12 | 0;
+ HEAP32[i4 >> 2] = 0;
+ i2 = 0;
}
- i3 = (HEAP32[i1 + -4 >> 2] | 0) + i4 | 0;
- HEAP32[i2 >> 2] = i4 + 40;
+ i3 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i4 >> 2] = i2 + 40;
i1 = i3;
i2 = i1 + 36 | 0;
do {
@@ -62449,6 +61901,47 @@ function __ZN10MixedArena5allocIN4wasm8FunctionEEEPT_v(i7) {
return i3 | 0;
}
+function __ZN4wasm6ModuleC2Ev(i3) {
+ i3 = i3 | 0;
+ var i1 = 0, i2 = 0, i4 = 0, i5 = 0;
+ i1 = i3 + 48 | 0;
+ HEAP32[i3 + 52 >> 2] = 0;
+ HEAP32[i3 + 56 >> 2] = 0;
+ i2 = i3 + 52 | 0;
+ i4 = i3;
+ i5 = i4 + 48 | 0;
+ do {
+ HEAP32[i4 >> 2] = 0;
+ i4 = i4 + 4 | 0;
+ } while ((i4 | 0) < (i5 | 0));
+ HEAP32[i1 >> 2] = i2;
+ HEAP32[i3 + 64 >> 2] = 0;
+ HEAP32[i3 + 68 >> 2] = 0;
+ HEAP32[i3 + 60 >> 2] = i3 + 64;
+ HEAP32[i3 + 76 >> 2] = 0;
+ HEAP32[i3 + 80 >> 2] = 0;
+ HEAP32[i3 + 72 >> 2] = i3 + 76;
+ HEAP32[i3 + 88 >> 2] = 0;
+ HEAP32[i3 + 92 >> 2] = 0;
+ HEAP32[i3 + 84 >> 2] = i3 + 88;
+ i5 = i3 + 96 | 0;
+ HEAP32[i5 >> 2] = 0;
+ HEAP32[i5 + 4 >> 2] = 0;
+ HEAP32[i5 + 8 >> 2] = 0;
+ HEAP32[i5 + 12 >> 2] = 0;
+ HEAP32[i3 + 112 >> 2] = -1;
+ i5 = i3 + 116 | 0;
+ HEAP32[i5 >> 2] = 0;
+ HEAP32[i5 + 4 >> 2] = 0;
+ HEAP32[i5 + 8 >> 2] = 0;
+ HEAP32[i5 + 12 >> 2] = 0;
+ HEAP32[i5 + 16 >> 2] = 0;
+ HEAP32[i5 + 20 >> 2] = 0;
+ HEAP32[i5 + 24 >> 2] = 0;
+ HEAP32[i5 + 28 >> 2] = 0;
+ return;
+}
+
function __ZNSt3__13mapIN6cashew7IStringEiNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_iEEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS7_(i1, i5, i4) {
i1 = i1 | 0;
i5 = i5 | 0;
@@ -62553,9 +62046,9 @@ function __ZNSt3__112__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CString
i4 = HEAP32[i5 + 4 >> 2] | 0;
if (i1 >>> 0 <= i4 >>> 0) {
if (i1 >>> 0 < i4 >>> 0) {
- if (i4 >>> 0 > 2) i2 = (i4 + -1 & i4 | 0) == 0; else i2 = 0;
- i3 = ~~+Math_ceil(+(+((HEAP32[i5 + 12 >> 2] | 0) >>> 0) / +HEAPF32[i5 + 16 >> 2])) >>> 0;
- if (i2) i2 = 1 << 32 - (Math_clz32(i3 + -1 | 0) | 0); else i2 = __ZNSt3__112__next_primeEj(i3) | 0;
+ if (i4 >>> 0 > 2) i3 = (i4 + -1 & i4 | 0) == 0; else i3 = 0;
+ i2 = ~~+Math_ceil(+(+((HEAP32[i5 + 12 >> 2] | 0) >>> 0) / +HEAPF32[i5 + 16 >> 2])) >>> 0;
+ if (i3) i2 = 1 << 32 - (Math_clz32(i2 + -1 | 0) | 0); else i2 = __ZNSt3__112__next_primeEj(i2) | 0;
i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
if (i1 >>> 0 < i4 >>> 0) __ZNSt3__112__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CStringEqualENS_9allocatorIS2_EEE8__rehashEj(i5, i1);
}
@@ -62568,38 +62061,38 @@ function __ZN6cashew12ValueBuilder13makeStatementENS_3RefE(i4) {
var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0;
i5 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i3 = i5 + 8 | 0;
- i1 = i5 + 4 | 0;
- i2 = i5;
+ i1 = i5 + 8 | 0;
+ i2 = i5 + 4 | 0;
+ i3 = i5;
i6 = __ZN6cashew3RefixEj(i4, 0) | 0;
- if (!(__ZNKSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE4findIS2_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS2_PvEEEERKT_(37320, __ZN6cashew5Value10getIStringEv(HEAP32[i6 >> 2] | 0) | 0) | 0)) i1 = HEAP32[i4 >> 2] | 0; else {
+ if (!(__ZNKSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE4findIS2_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS2_PvEEEERKT_(38792, __ZN6cashew5Value10getIStringEv(HEAP32[i6 >> 2] | 0) | 0) | 0)) i1 = HEAP32[i4 >> 2] | 0; else {
i6 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0;
- i7 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(36924) | 0;
- HEAP32[i1 >> 2] = i7;
- HEAP32[i3 >> 2] = HEAP32[i1 >> 2];
- i1 = __ZN6cashew5Value9push_backENS_3RefE(i6, i3) | 0;
- HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i3 >> 2] = HEAP32[i2 >> 2];
- i1 = __ZN6cashew5Value9push_backENS_3RefE(i1, i3) | 0;
+ i7 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38396) | 0;
+ HEAP32[i2 >> 2] = i7;
+ HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
+ i6 = __ZN6cashew5Value9push_backENS_3RefE(i6, i1) | 0;
+ HEAP32[i3 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
+ i1 = __ZN6cashew5Value9push_backENS_3RefE(i6, i1) | 0;
}
STACKTOP = i5;
return i1 | 0;
}
-function __ZNSt3__13mapIPN4wasm12CallIndirectEN6cashew7IStringENS_4lessIS3_EENS_9allocatorINS_4pairIKS3_S5_EEEEEixERSA_(i6, i3) {
+function __ZNSt3__13mapIPN4wasm12CallIndirectEN6cashew7IStringENS_4lessIS3_EENS_9allocatorINS_4pairIKS3_S5_EEEEEixERSA_(i6, i4) {
i6 = i6 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i7 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i7 + 12 | 0;
- i2 = i7;
- i5 = __ZNSt3__13mapIPN4wasm12CallIndirectEN6cashew7IStringENS_4lessIS3_EENS_9allocatorINS_4pairIKS3_S5_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERSA_(i6, i4, i3) | 0;
- i1 = HEAP32[i5 >> 2] | 0;
+ i5 = i7 + 12 | 0;
+ i3 = i7;
+ i2 = __ZNSt3__13mapIPN4wasm12CallIndirectEN6cashew7IStringENS_4lessIS3_EENS_9allocatorINS_4pairIKS3_S5_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERSA_(i6, i5, i4) | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
- __ZNSt3__13mapIPN4wasm12CallIndirectEN6cashew7IStringENS_4lessIS3_EENS_9allocatorINS_4pairIKS3_S5_EEEEE25__construct_node_with_keyERSA_(i2, i6, i3);
- i1 = HEAP32[i2 >> 2] | 0;
- __ZNSt3__16__treeINS_12__value_typeIPN4wasm12CallIndirectEN6cashew7IStringEEENS_19__map_value_compareIS4_S7_NS_4lessIS4_EELb1EEENS_9allocatorIS7_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSI_SI_(i6, HEAP32[i4 >> 2] | 0, i5, i1);
+ __ZNSt3__13mapIPN4wasm12CallIndirectEN6cashew7IStringENS_4lessIS3_EENS_9allocatorINS_4pairIKS3_S5_EEEEE25__construct_node_with_keyERSA_(i3, i6, i4);
+ i1 = HEAP32[i3 >> 2] | 0;
+ __ZNSt3__16__treeINS_12__value_typeIPN4wasm12CallIndirectEN6cashew7IStringEEENS_19__map_value_compareIS4_S7_NS_4lessIS4_EELb1EEENS_9allocatorIS7_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSI_SI_(i6, HEAP32[i5 >> 2] | 0, i2, i1);
}
STACKTOP = i7;
return i1 + 20 | 0;
@@ -62610,27 +62103,27 @@ function __ZN10MixedArena5allocIN4wasm6ExportEEEPT_v(i7) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i4 = i8;
i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 8 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 8 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 8;
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 8;
i6 = i7;
HEAP32[i6 >> 2] = 0;
HEAP32[i6 + 4 >> 2] = 0;
@@ -62640,66 +62133,32 @@ function __ZN10MixedArena5allocIN4wasm6ExportEEEPT_v(i7) {
return i7 | 0;
}
-function __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(i7) {
- i7 = i7 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
- i8 = STACKTOP;
- STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
- i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 24 | 0) >>> 0 <= 9999) : 0)) {
- i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
- if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
- i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
- HEAP32[i5 >> 2] = i1;
- } else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
- i1 = HEAP32[i5 >> 2] | 0;
- }
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
- }
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 24;
- HEAP32[i7 >> 2] = 13;
- HEAP32[i7 + 4 >> 2] = 0;
- HEAP32[i7 + 8 >> 2] = 0;
- HEAPF64[i7 + 16 >> 3] = 0.0;
- STACKTOP = i8;
- return i7 | 0;
-}
-
function __ZN10MixedArena5allocIN4wasm6ImportEEEPT_v(i7) {
i7 = i7 | 0;
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i4 = i8;
i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 16 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 16 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 16;
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 16;
HEAP32[i7 >> 2] = 0;
HEAP32[i7 + 4 >> 2] = 0;
HEAP32[i7 + 8 >> 2] = 0;
@@ -62708,20 +62167,20 @@ function __ZN10MixedArena5allocIN4wasm6ImportEEEPT_v(i7) {
return i7 | 0;
}
-function __ZNSt3__13mapIN6cashew7IStringEN4wasm12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i6, i3) {
+function __ZNSt3__13mapIN6cashew7IStringEN4wasm12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i6, i4) {
i6 = i6 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i7 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i7 + 12 | 0;
- i2 = i7;
- i5 = __ZNSt3__13mapIN6cashew7IStringEN4wasm12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS9_(i6, i4, i3) | 0;
- i1 = HEAP32[i5 >> 2] | 0;
+ i5 = i7 + 12 | 0;
+ i3 = i7;
+ i2 = __ZNSt3__13mapIN6cashew7IStringEN4wasm12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS9_(i6, i5, i4) | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
- __ZNSt3__13mapIN6cashew7IStringEN4wasm12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE25__construct_node_with_keyERS9_(i2, i6, i3);
- i1 = HEAP32[i2 >> 2] | 0;
- __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i6, HEAP32[i4 >> 2] | 0, i5, i1);
+ __ZNSt3__13mapIN6cashew7IStringEN4wasm12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE25__construct_node_with_keyERS9_(i3, i6, i4);
+ i1 = HEAP32[i3 >> 2] | 0;
+ __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i6, HEAP32[i5 >> 2] | 0, i2, i1);
}
STACKTOP = i7;
return i1 + 20 | 0;
@@ -62779,27 +62238,27 @@ function __ZN10MixedArena5allocIN4wasm4LoopEEEPT_v(i7) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i4 = i8;
i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 24 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 24 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 24;
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 24;
HEAP32[i7 >> 2] = 3;
HEAP32[i7 + 4 >> 2] = 0;
HEAP32[i7 + 8 >> 2] = 0;
@@ -62818,9 +62277,9 @@ function __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2
i4 = HEAP32[i5 + 4 >> 2] | 0;
if (i1 >>> 0 <= i4 >>> 0) {
if (i1 >>> 0 < i4 >>> 0) {
- if (i4 >>> 0 > 2) i2 = (i4 + -1 & i4 | 0) == 0; else i2 = 0;
- i3 = ~~+Math_ceil(+(+((HEAP32[i5 + 12 >> 2] | 0) >>> 0) / +HEAPF32[i5 + 16 >> 2])) >>> 0;
- if (i2) i2 = 1 << 32 - (Math_clz32(i3 + -1 | 0) | 0); else i2 = __ZNSt3__112__next_primeEj(i3) | 0;
+ if (i4 >>> 0 > 2) i3 = (i4 + -1 & i4 | 0) == 0; else i3 = 0;
+ i2 = ~~+Math_ceil(+(+((HEAP32[i5 + 12 >> 2] | 0) >>> 0) / +HEAPF32[i5 + 16 >> 2])) >>> 0;
+ if (i3) i2 = 1 << 32 - (Math_clz32(i2 + -1 | 0) | 0); else i2 = __ZNSt3__112__next_primeEj(i2) | 0;
i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
if (i1 >>> 0 < i4 >>> 0) __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE8__rehashEj(i5, i1);
}
@@ -62843,12 +62302,12 @@ function __ZNKSt3__18time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE
i2 = i8;
HEAP32[i2 >> 2] = i1 + 400;
__ZNKSt3__110__time_put8__do_putEPwRS1_PK2tmcc(i6 + 8 | 0, i1, i2, i5, i3, i4);
- i5 = HEAP32[i2 >> 2] | 0;
- i6 = i1;
+ i6 = HEAP32[i2 >> 2] | 0;
+ i5 = i1;
i1 = HEAP32[i7 >> 2] | 0;
while (1) {
- if ((i6 | 0) == (i5 | 0)) break;
- i2 = HEAP32[i6 >> 2] | 0;
+ if ((i5 | 0) == (i6 | 0)) break;
+ i2 = HEAP32[i5 >> 2] | 0;
if (!i1) i1 = 0; else {
i4 = i1 + 24 | 0;
i3 = HEAP32[i4 >> 2] | 0;
@@ -62858,7 +62317,7 @@ function __ZNKSt3__18time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE
}
i1 = (i2 | 0) == -1 ? 0 : i1;
}
- i6 = i6 + 4 | 0;
+ i5 = i5 + 4 | 0;
}
STACKTOP = i8;
return i1 | 0;
@@ -62871,17 +62330,17 @@ function __ZN4wasm10PassRunner3addENSt3__112basic_stringIcNS1_11char_traitsIcEEN
i6 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
i4 = i6 + 12 | 0;
- i2 = i6;
- i3 = __ZN4wasm12PassRegistry3getEv() | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i2, i1);
- i3 = __ZN4wasm12PassRegistry10createPassENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i2) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i2);
- HEAP32[i4 >> 2] = i3;
- if (!i3) ___assert_fail(23631, 23605, 58, 23636);
+ i3 = i6;
+ i2 = __ZN4wasm12PassRegistry3getEv() | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i3, i1);
+ i1 = __ZN4wasm12PassRegistry10createPassENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i2, i3) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i3);
+ HEAP32[i4 >> 2] = i1;
+ if (!i1) ___assert_fail(24219, 24193, 58, 24224);
i2 = i5 + 8 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i5 + 12 >> 2] | 0)) __ZNSt3__16vectorIPN4wasm4PassENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i5 + 4 | 0, i4); else {
- HEAP32[i1 >> 2] = i3;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i5 + 12 >> 2] | 0)) __ZNSt3__16vectorIPN4wasm4PassENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i5 + 4 | 0, i4); else {
+ HEAP32[i3 >> 2] = i1;
HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4;
}
STACKTOP = i6;
@@ -62927,40 +62386,40 @@ function __ZN10__cxxabiv112_GLOBAL__N_119parse_discriminatorEPKcS2_(i1, i4) {
return i1 | 0;
}
-function __ZNSt3__127__num_get_unsigned_integralItEET_PKcS3_Rji(i1, i5, i6, i2) {
+function __ZNSt3__127__num_get_unsigned_integralItEET_PKcS3_Rji(i1, i6, i7, i2) {
i1 = i1 | 0;
- i5 = i5 | 0;
i6 = i6 | 0;
+ i7 = i7 | 0;
i2 = i2 | 0;
- var i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0;
+ var i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i7 = i9;
- do if ((i1 | 0) == (i5 | 0)) {
- HEAP32[i6 >> 2] = 4;
+ i8 = i9;
+ do if ((i1 | 0) == (i6 | 0)) {
+ HEAP32[i7 >> 2] = 4;
i1 = 0;
} else {
if ((HEAP8[i1 >> 0] | 0) == 45) {
- HEAP32[i6 >> 2] = 4;
+ HEAP32[i7 >> 2] = 4;
i1 = 0;
break;
}
- i8 = ___errno_location() | 0;
- i4 = HEAP32[i8 >> 2] | 0;
- HEAP32[i8 >> 2] = 0;
- i1 = _strtoull_l(i1, i7, i2, __ZNSt3__16__clocEv() | 0) | 0;
+ i4 = ___errno_location() | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ HEAP32[i4 >> 2] = 0;
+ i1 = _strtoull_l(i1, i8, i2, __ZNSt3__16__clocEv() | 0) | 0;
i2 = tempRet0;
- i3 = HEAP32[i8 >> 2] | 0;
- if (!i3) HEAP32[i8 >> 2] = i4;
- do if ((HEAP32[i7 >> 2] | 0) == (i5 | 0)) if (i2 >>> 0 > 0 | (i2 | 0) == 0 & i1 >>> 0 > 65535 | (i3 | 0) == 34) {
- HEAP32[i6 >> 2] = 4;
+ i3 = HEAP32[i4 >> 2] | 0;
+ if (!i3) HEAP32[i4 >> 2] = i5;
+ do if ((HEAP32[i8 >> 2] | 0) == (i6 | 0)) if (i2 >>> 0 > 0 | (i2 | 0) == 0 & i1 >>> 0 > 65535 | (i3 | 0) == 34) {
+ HEAP32[i7 >> 2] = 4;
i1 = -1;
break;
} else {
i1 = i1 & 65535;
break;
} else {
- HEAP32[i6 >> 2] = 4;
+ HEAP32[i7 >> 2] = 4;
i1 = 0;
} while (0);
} while (0);
@@ -62968,43 +62427,32 @@ function __ZNSt3__127__num_get_unsigned_integralItEET_PKcS3_Rji(i1, i5, i6, i2)
return i1 | 0;
}
-function __ZN4wasm6ModuleC2Ev(i3) {
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0;
- i2 = i3 + 48 | 0;
- HEAP32[i3 + 52 >> 2] = 0;
- HEAP32[i3 + 56 >> 2] = 0;
- i1 = i3 + 52 | 0;
- i4 = i3;
- i5 = i4 + 48 | 0;
- do {
- HEAP32[i4 >> 2] = 0;
- i4 = i4 + 4 | 0;
- } while ((i4 | 0) < (i5 | 0));
- HEAP32[i2 >> 2] = i1;
- HEAP32[i3 + 64 >> 2] = 0;
- HEAP32[i3 + 68 >> 2] = 0;
- HEAP32[i3 + 60 >> 2] = i3 + 64;
- HEAP32[i3 + 76 >> 2] = 0;
- HEAP32[i3 + 80 >> 2] = 0;
- HEAP32[i3 + 72 >> 2] = i3 + 76;
- HEAP32[i3 + 88 >> 2] = 0;
- HEAP32[i3 + 92 >> 2] = 0;
- HEAP32[i3 + 84 >> 2] = i3 + 88;
- i5 = i3 + 96 | 0;
- HEAP32[i5 >> 2] = 0;
- HEAP32[i5 + 4 >> 2] = 0;
- HEAP32[i5 + 8 >> 2] = 0;
- HEAP32[i5 + 12 >> 2] = 0;
- HEAP32[i3 + 112 >> 2] = -1;
- i5 = i3 + 116 | 0;
- HEAP32[i5 >> 2] = 0;
- HEAP32[i5 + 4 >> 2] = 0;
- HEAP32[i5 + 8 >> 2] = 0;
- HEAP32[i5 + 12 >> 2] = 0;
- HEAP32[i5 + 16 >> 2] = 0;
- HEAP32[i5 + 20 >> 2] = 0;
- HEAP32[i5 + 24 >> 2] = 0;
+function __ZNKSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strEv(i5, i4) {
+ i5 = i5 | 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0;
+ i1 = HEAP32[i4 + 48 >> 2] | 0;
+ L1 : do if (!(i1 & 16)) {
+ if (i1 & 8 | 0) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initIPcEENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueEvE4typeES9_S9_(i5, HEAP32[i4 + 8 >> 2] | 0, HEAP32[i4 + 16 >> 2] | 0);
+ break;
+ }
+ i1 = 0;
+ while (1) {
+ if ((i1 | 0) == 3) break L1;
+ HEAP32[i5 + (i1 << 2) >> 2] = 0;
+ i1 = i1 + 1 | 0;
+ }
+ } else {
+ i2 = i4 + 44 | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
+ i3 = HEAP32[i4 + 24 >> 2] | 0;
+ if (i1 >>> 0 < i3 >>> 0) {
+ HEAP32[i2 >> 2] = i3;
+ i1 = i3;
+ }
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initIPcEENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueEvE4typeES9_S9_(i5, HEAP32[i4 + 20 >> 2] | 0, i1);
+ } while (0);
return;
}
@@ -63013,27 +62461,27 @@ function __ZN10MixedArena5allocIN4wasm8SetLocalEEEPT_v(i7) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i4 = i8;
i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 16 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 16 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 16;
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 16;
HEAP32[i7 >> 2] = 10;
HEAP32[i7 + 4 >> 2] = 0;
HEAP32[i7 + 8 >> 2] = 0;
@@ -63041,39 +62489,39 @@ function __ZN10MixedArena5allocIN4wasm8SetLocalEEEPT_v(i7) {
return i7 | 0;
}
-function __ZNSt3__13mapIN6cashew7IStringEN4wasm7LiteralENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i6, i3) {
+function __ZNSt3__13mapIN6cashew7IStringEN4wasm7LiteralENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i6, i4) {
i6 = i6 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i7 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i7 + 12 | 0;
- i2 = i7;
- i5 = __ZNSt3__13mapIN6cashew7IStringEN4wasm7LiteralENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS9_(i6, i4, i3) | 0;
- i1 = HEAP32[i5 >> 2] | 0;
+ i5 = i7 + 12 | 0;
+ i3 = i7;
+ i2 = __ZNSt3__13mapIN6cashew7IStringEN4wasm7LiteralENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS9_(i6, i5, i4) | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
- __ZNSt3__13mapIN6cashew7IStringEN4wasm7LiteralENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE25__construct_node_with_keyERS9_(i2, i6, i3);
- i1 = HEAP32[i2 >> 2] | 0;
- __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm7LiteralEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i6, HEAP32[i4 >> 2] | 0, i5, i1);
+ __ZNSt3__13mapIN6cashew7IStringEN4wasm7LiteralENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE25__construct_node_with_keyERS9_(i3, i6, i4);
+ i1 = HEAP32[i3 >> 2] | 0;
+ __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm7LiteralEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i6, HEAP32[i5 >> 2] | 0, i2, i1);
}
STACKTOP = i7;
return i1 + 24 | 0;
}
-function __ZNSt3__13mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i6, i3) {
+function __ZNSt3__13mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i6, i4) {
i6 = i6 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i7 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i7 + 12 | 0;
- i2 = i7;
- i5 = __ZNSt3__13mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS9_(i6, i4, i3) | 0;
- i1 = HEAP32[i5 >> 2] | 0;
+ i5 = i7 + 12 | 0;
+ i3 = i7;
+ i2 = __ZNSt3__13mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS9_(i6, i5, i4) | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
- __ZNSt3__13mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE25__construct_node_with_keyERS9_(i2, i6, i3);
- i1 = HEAP32[i2 >> 2] | 0;
- __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i6, HEAP32[i4 >> 2] | 0, i5, i1);
+ __ZNSt3__13mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE25__construct_node_with_keyERS9_(i3, i6, i4);
+ i1 = HEAP32[i3 >> 2] | 0;
+ __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i6, HEAP32[i5 >> 2] | 0, i2, i1);
}
STACKTOP = i7;
return i1 + 20 | 0;
@@ -63084,27 +62532,27 @@ function __ZN10MixedArena5allocIN4wasm8GetLocalEEEPT_v(i7) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i4 = i8;
i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 16 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 16 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 16;
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 16;
HEAP32[i7 >> 2] = 9;
HEAP32[i7 + 4 >> 2] = 0;
HEAP32[i7 + 8 >> 2] = 0;
@@ -63112,6 +62560,39 @@ function __ZN10MixedArena5allocIN4wasm8GetLocalEEEPT_v(i7) {
return i7 | 0;
}
+function __ZN10MixedArena5allocIN4wasm6ReturnEEEPT_v(i7) {
+ i7 = i7 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
+ i8 = STACKTOP;
+ STACKTOP = STACKTOP + 16 | 0;
+ i4 = i8;
+ i5 = i7 + 4 | 0;
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 16 | 0) >>> 0 <= 9999) : 0)) {
+ i2 = __Znaj(1e4) | 0;
+ HEAP32[i4 >> 2] = i2;
+ if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
+ HEAP32[i6 >> 2] = i2;
+ i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
+ HEAP32[i5 >> 2] = i1;
+ } else {
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
+ i1 = HEAP32[i5 >> 2] | 0;
+ }
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
+ }
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 16;
+ HEAP32[i7 >> 2] = 17;
+ HEAP32[i7 + 8 >> 2] = 0;
+ HEAP32[i7 + 4 >> 2] = 5;
+ STACKTOP = i8;
+ return i7 | 0;
+}
+
function __ZNK10__cxxabiv117__class_type_info29process_static_type_above_dstEPNS_19__dynamic_cast_infoEPKvS4_i(i2, i5, i3, i1, i4) {
i2 = i2 | 0;
i5 = i5 | 0;
@@ -63121,17 +62602,17 @@ function __ZNK10__cxxabiv117__class_type_info29process_static_type_above_dstEPNS
HEAP8[i5 + 53 >> 0] = 1;
do if ((HEAP32[i5 + 4 >> 2] | 0) == (i1 | 0)) {
HEAP8[i5 + 52 >> 0] = 1;
- i2 = i5 + 16 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if (!i1) {
- HEAP32[i2 >> 2] = i3;
+ i1 = i5 + 16 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ if (!i2) {
+ HEAP32[i1 >> 2] = i3;
HEAP32[i5 + 24 >> 2] = i4;
HEAP32[i5 + 36 >> 2] = 1;
if (!((i4 | 0) == 1 ? (HEAP32[i5 + 48 >> 2] | 0) == 1 : 0)) break;
HEAP8[i5 + 54 >> 0] = 1;
break;
}
- if ((i1 | 0) != (i3 | 0)) {
+ if ((i2 | 0) != (i3 | 0)) {
i4 = i5 + 36 | 0;
HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 1;
HEAP8[i5 + 54 >> 0] = 1;
@@ -63153,27 +62634,27 @@ function __ZN10MixedArena5allocIN4wasm2IfEEEPT_v(i7) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i4 = i8;
i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 24 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 24 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 24;
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 24;
HEAP32[i7 >> 2] = 2;
HEAP32[i7 + 16 >> 2] = 0;
HEAP32[i7 + 4 >> 2] = 0;
@@ -63181,83 +62662,32 @@ function __ZN10MixedArena5allocIN4wasm2IfEEEPT_v(i7) {
return i7 | 0;
}
-function _atoll(i1) {
- i1 = i1 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0;
- while (1) {
- i2 = i1 + 1 | 0;
- if (!(_isspace(HEAP8[i1 >> 0] | 0) | 0)) break; else i1 = i2;
- }
- i3 = HEAP8[i1 >> 0] | 0;
- switch (i3 << 24 >> 24 | 0) {
- case 45:
- {
- i1 = 1;
- i4 = 5;
- break;
- }
- case 43:
- {
- i1 = 0;
- i4 = 5;
- break;
- }
- default:
- i5 = 0;
- }
- if ((i4 | 0) == 5) {
- i3 = HEAP8[i2 >> 0] | 0;
- i5 = i1;
- i1 = i2;
- }
- i3 = (i3 << 24 >> 24) + -48 | 0;
- if (i3 >>> 0 < 10) {
- i2 = 0;
- i4 = 0;
- do {
- i2 = ___muldi3(i2 | 0, i4 | 0, 10, 0) | 0;
- i1 = i1 + 1 | 0;
- i2 = _i64Subtract(i2 | 0, tempRet0 | 0, i3 | 0, ((i3 | 0) < 0) << 31 >> 31 | 0) | 0;
- i4 = tempRet0;
- i3 = (HEAP8[i1 >> 0] | 0) + -48 | 0;
- } while (i3 >>> 0 < 10);
- i1 = i4;
- } else {
- i2 = 0;
- i1 = 0;
- }
- i4 = (i5 | 0) != 0;
- i5 = _i64Subtract(0, 0, i2 | 0, i1 | 0) | 0;
- tempRet0 = i4 ? i1 : tempRet0;
- return (i4 ? i2 : i5) | 0;
-}
-
function __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEEC2EOSF_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0;
i4 = HEAP32[i1 >> 2] | 0;
HEAP32[i1 >> 2] = 0;
- i7 = i1 + 4 | 0;
- i5 = HEAP32[i7 >> 2] | 0;
- HEAP32[i7 >> 2] = 0;
+ i6 = i1 + 4 | 0;
+ i5 = HEAP32[i6 >> 2] | 0;
+ HEAP32[i6 >> 2] = 0;
HEAP32[i2 >> 2] = i4;
HEAP32[i2 + 4 >> 2] = i5;
- i7 = i2 + 8 | 0;
- i8 = i1 + 8 | 0;
- i3 = HEAP32[i8 >> 2] | 0;
- HEAP32[i7 >> 2] = i3;
- i6 = i1 + 12 | 0;
- i9 = HEAP32[i6 >> 2] | 0;
+ i6 = i2 + 8 | 0;
+ i7 = i1 + 8 | 0;
+ i3 = HEAP32[i7 >> 2] | 0;
+ HEAP32[i6 >> 2] = i3;
+ i8 = i1 + 12 | 0;
+ i9 = HEAP32[i8 >> 2] | 0;
HEAP32[i2 + 12 >> 2] = i9;
HEAP32[i2 + 16 >> 2] = HEAP32[i1 + 16 >> 2];
if (i9 | 0) {
i1 = HEAP32[i3 + 4 >> 2] | 0;
i2 = i5 + -1 | 0;
if (!(i2 & i5)) i1 = i2 & i1; else i1 = (i1 >>> 0) % (i5 >>> 0) | 0;
- HEAP32[i4 + (i1 << 2) >> 2] = i7;
+ HEAP32[i4 + (i1 << 2) >> 2] = i6;
+ HEAP32[i7 >> 2] = 0;
HEAP32[i8 >> 2] = 0;
- HEAP32[i6 >> 2] = 0;
}
return;
}
@@ -63268,52 +62698,52 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE19parseBracketedBl
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i5 = i8 + 12 | 0;
- i3 = i8 + 8 | 0;
- i2 = i8 + 4 | 0;
+ i2 = i8 + 12 | 0;
+ i1 = i8 + 8 | 0;
+ i3 = i8 + 4 | 0;
i4 = i8;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i7);
- i1 = HEAP32[i7 >> 2] | 0;
- if ((HEAP8[i1 >> 0] | 0) != 123) ___assert_fail(22463, 22233, 856, 22475);
- HEAP32[i7 >> 2] = i1 + 1;
- HEAP32[i2 >> 2] = 0;
+ i5 = HEAP32[i7 >> 2] | 0;
+ if ((HEAP8[i5 >> 0] | 0) != 123) ___assert_fail(23051, 22821, 856, 23063);
+ HEAP32[i7 >> 2] = i5 + 1;
+ HEAP32[i3 >> 2] = 0;
HEAP32[i4 >> 2] = 0;
- HEAP32[i3 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i5 >> 2] = HEAP32[i4 >> 2];
- i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10parseBlockERPcPKcNS_7IStringES8_(i6, i7, 22495, i3, i5) | 0;
- i1 = HEAP32[i7 >> 2] | 0;
- if ((HEAP8[i1 >> 0] | 0) == 125) {
- HEAP32[i7 >> 2] = i1 + 1;
+ HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
+ i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10parseBlockERPcPKcNS_7IStringES8_(i6, i7, 23083, i1, i2) | 0;
+ i2 = HEAP32[i7 >> 2] | 0;
+ if ((HEAP8[i2 >> 0] | 0) == 125) {
+ HEAP32[i7 >> 2] = i2 + 1;
STACKTOP = i8;
- return i2 | 0;
- } else ___assert_fail(22498, 22233, 859, 22475);
+ return i1 | 0;
+ } else ___assert_fail(23086, 22821, 859, 23063);
return 0;
}
-function __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9__grow_byEjjjjjj(i10, i8, i1, i2, i6, i7, i5) {
+function __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9__grow_byEjjjjjj(i10, i9, i1, i4, i7, i8, i6) {
i10 = i10 | 0;
- i8 = i8 | 0;
+ i9 = i9 | 0;
i1 = i1 | 0;
- i2 = i2 | 0;
- i6 = i6 | 0;
+ i4 = i4 | 0;
i7 = i7 | 0;
- i5 = i5 | 0;
- var i3 = 0, i4 = 0, i9 = 0;
- if ((1073741807 - i8 | 0) >>> 0 < i1 >>> 0) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i10);
- if (!(HEAP8[i10 >> 0] & 1)) i9 = i10 + 4 | 0; else i9 = HEAP32[i10 + 8 >> 2] | 0;
- if (i8 >>> 0 < 536870887) {
- i4 = i1 + i8 | 0;
- i3 = i8 << 1;
- i4 = i4 >>> 0 < i3 >>> 0 ? i3 : i4;
- i4 = i4 >>> 0 < 2 ? 2 : i4 + 4 & -4;
- } else i4 = 1073741807;
- i3 = __Znwj(i4 << 2) | 0;
- if (i6 | 0) _wmemcpy(i3, i9, i6) | 0;
- i1 = i2 - i7 | 0;
- if ((i1 | 0) != (i6 | 0)) _wmemcpy(i3 + (i6 << 2) + (i5 << 2) | 0, i9 + (i6 << 2) + (i7 << 2) | 0, i1 - i6 | 0) | 0;
- if ((i8 | 0) != 1) __ZdlPv(i9);
+ i8 = i8 | 0;
+ i6 = i6 | 0;
+ var i2 = 0, i3 = 0, i5 = 0;
+ if ((1073741807 - i9 | 0) >>> 0 < i1 >>> 0) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i10);
+ if (!(HEAP8[i10 >> 0] & 1)) i5 = i10 + 4 | 0; else i5 = HEAP32[i10 + 8 >> 2] | 0;
+ if (i9 >>> 0 < 536870887) {
+ i2 = i1 + i9 | 0;
+ i3 = i9 << 1;
+ i2 = i2 >>> 0 < i3 >>> 0 ? i3 : i2;
+ i2 = i2 >>> 0 < 2 ? 2 : i2 + 4 & -4;
+ } else i2 = 1073741807;
+ i3 = __Znwj(i2 << 2) | 0;
+ if (i7 | 0) _wmemcpy(i3, i5, i7) | 0;
+ i1 = i4 - i8 | 0;
+ if ((i1 | 0) != (i7 | 0)) _wmemcpy(i3 + (i7 << 2) + (i6 << 2) | 0, i5 + (i7 << 2) + (i8 << 2) | 0, i1 - i7 | 0) | 0;
+ if ((i9 | 0) != 1) __ZdlPv(i5);
HEAP32[i10 + 8 >> 2] = i3;
- HEAP32[i10 >> 2] = i4 | 1;
+ HEAP32[i10 >> 2] = i2 | 1;
return;
}
@@ -63352,30 +62782,30 @@ function __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_
i6 = i6 | 0;
i5 = i5 | 0;
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0;
- i1 = HEAP32[i6 >> 2] | 0;
- i4 = i6 + 4 | 0;
- i2 = i5 + 4 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ i3 = i6 + 4 | 0;
+ i4 = i5 + 4 | 0;
+ i1 = HEAP32[i3 >> 2] | 0;
while (1) {
- if ((i3 | 0) == (i1 | 0)) break;
- i7 = i3 + -24 | 0;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_((HEAP32[i2 >> 2] | 0) + -24 | 0, i7);
- HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + -24;
- i3 = i7;
+ if ((i1 | 0) == (i2 | 0)) break;
+ i7 = i1 + -24 | 0;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_((HEAP32[i4 >> 2] | 0) + -24 | 0, i7);
+ HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + -24;
+ i1 = i7;
}
i7 = HEAP32[i6 >> 2] | 0;
- HEAP32[i6 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i2 >> 2] = i7;
+ HEAP32[i6 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i4 >> 2] = i7;
i7 = i5 + 8 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- HEAP32[i4 >> 2] = HEAP32[i7 >> 2];
- HEAP32[i7 >> 2] = i3;
- i4 = i6 + 8 | 0;
+ i2 = HEAP32[i3 >> 2] | 0;
+ HEAP32[i3 >> 2] = HEAP32[i7 >> 2];
+ HEAP32[i7 >> 2] = i2;
+ i3 = i6 + 8 | 0;
i7 = i5 + 12 | 0;
- i6 = HEAP32[i4 >> 2] | 0;
- HEAP32[i4 >> 2] = HEAP32[i7 >> 2];
+ i6 = HEAP32[i3 >> 2] | 0;
+ HEAP32[i3 >> 2] = HEAP32[i7 >> 2];
HEAP32[i7 >> 2] = i6;
- HEAP32[i5 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i5 >> 2] = HEAP32[i4 >> 2];
return;
}
@@ -63386,9 +62816,9 @@ function __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N
var i1 = 0, i2 = 0, i3 = 0;
i1 = HEAP8[i6 >> 0] | 0;
if (!(i1 & 1)) i2 = 10; else {
- i2 = HEAP32[i6 >> 2] | 0;
- i1 = i2 & 255;
- i2 = (i2 & -2) + -1 | 0;
+ i1 = HEAP32[i6 >> 2] | 0;
+ i2 = (i1 & -2) + -1 | 0;
+ i1 = i1 & 255;
}
if (!(i1 & 1)) i3 = (i1 & 255) >>> 1; else i3 = HEAP32[i6 + 4 >> 2] | 0;
if ((i2 - i3 | 0) >>> 0 >= i4 >>> 0) {
@@ -63410,13 +62840,13 @@ function __ZN4wasm15Asm2WasmBuilder15getFunctionTypeEN6cashew3RefERNSt3__16vecto
var i1 = 0, i2 = 0, i4 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i2 = i7 + 16 | 0;
- i1 = i7 + 12 | 0;
+ i1 = i7 + 16 | 0;
+ i2 = i7 + 12 | 0;
i4 = i7;
if (__ZN6cashew3RefntEv(i3) | 0) i1 = 0; else {
- HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
- i1 = __ZN4wasm15Asm2WasmBuilder14detectWasmTypeEN6cashew3RefEP7AsmData(i6, i2, 0) | 0;
+ HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
+ i1 = __ZN4wasm15Asm2WasmBuilder14detectWasmTypeEN6cashew3RefEP7AsmData(i6, i1, 0) | 0;
}
__ZN4wasm6getSigENS_8WasmTypeERNSt3__16vectorIPNS_10ExpressionENS1_9allocatorIS4_EEEE(i4, i1, i5);
i6 = __ZN4wasm18ensureFunctionTypeENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleER10MixedArena(i4, HEAP32[i6 >> 2] | 0, HEAP32[i6 + 4 >> 2] | 0) | 0;
@@ -63425,37 +62855,37 @@ function __ZN4wasm15Asm2WasmBuilder15getFunctionTypeEN6cashew3RefERNSt3__16vecto
return i6 | 0;
}
-function __ZNSt3__127__num_get_unsigned_integralImEET_PKcS3_Rji(i1, i5, i6, i2) {
+function __ZNSt3__127__num_get_unsigned_integralImEET_PKcS3_Rji(i1, i6, i7, i2) {
i1 = i1 | 0;
- i5 = i5 | 0;
i6 = i6 | 0;
+ i7 = i7 | 0;
i2 = i2 | 0;
- var i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0;
+ var i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i7 = i9;
- do if ((i1 | 0) == (i5 | 0)) {
- HEAP32[i6 >> 2] = 4;
+ i8 = i9;
+ do if ((i1 | 0) == (i6 | 0)) {
+ HEAP32[i7 >> 2] = 4;
i1 = 0;
} else {
if ((HEAP8[i1 >> 0] | 0) == 45) {
- HEAP32[i6 >> 2] = 4;
+ HEAP32[i7 >> 2] = 4;
i1 = 0;
break;
}
- i8 = ___errno_location() | 0;
- i4 = HEAP32[i8 >> 2] | 0;
- HEAP32[i8 >> 2] = 0;
- i1 = _strtoull_l(i1, i7, i2, __ZNSt3__16__clocEv() | 0) | 0;
+ i4 = ___errno_location() | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ HEAP32[i4 >> 2] = 0;
+ i1 = _strtoull_l(i1, i8, i2, __ZNSt3__16__clocEv() | 0) | 0;
i2 = tempRet0;
- i3 = HEAP32[i8 >> 2] | 0;
- if (!i3) HEAP32[i8 >> 2] = i4;
- do if ((HEAP32[i7 >> 2] | 0) == (i5 | 0)) if (i2 >>> 0 > 0 | (i2 | 0) == 0 & i1 >>> 0 > 4294967295 | (i3 | 0) == 34) {
- HEAP32[i6 >> 2] = 4;
+ i3 = HEAP32[i4 >> 2] | 0;
+ if (!i3) HEAP32[i4 >> 2] = i5;
+ do if ((HEAP32[i8 >> 2] | 0) == (i6 | 0)) if (i2 >>> 0 > 0 | (i2 | 0) == 0 & i1 >>> 0 > 4294967295 | (i3 | 0) == 34) {
+ HEAP32[i7 >> 2] = 4;
i1 = -1;
break;
} else break; else {
- HEAP32[i6 >> 2] = 4;
+ HEAP32[i7 >> 2] = 4;
i1 = 0;
} while (0);
} while (0);
@@ -63463,37 +62893,37 @@ function __ZNSt3__127__num_get_unsigned_integralImEET_PKcS3_Rji(i1, i5, i6, i2)
return i1 | 0;
}
-function __ZNSt3__127__num_get_unsigned_integralIjEET_PKcS3_Rji(i1, i5, i6, i2) {
+function __ZNSt3__127__num_get_unsigned_integralIjEET_PKcS3_Rji(i1, i6, i7, i2) {
i1 = i1 | 0;
- i5 = i5 | 0;
i6 = i6 | 0;
+ i7 = i7 | 0;
i2 = i2 | 0;
- var i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0;
+ var i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i7 = i9;
- do if ((i1 | 0) == (i5 | 0)) {
- HEAP32[i6 >> 2] = 4;
+ i8 = i9;
+ do if ((i1 | 0) == (i6 | 0)) {
+ HEAP32[i7 >> 2] = 4;
i1 = 0;
} else {
if ((HEAP8[i1 >> 0] | 0) == 45) {
- HEAP32[i6 >> 2] = 4;
+ HEAP32[i7 >> 2] = 4;
i1 = 0;
break;
}
- i8 = ___errno_location() | 0;
- i4 = HEAP32[i8 >> 2] | 0;
- HEAP32[i8 >> 2] = 0;
- i1 = _strtoull_l(i1, i7, i2, __ZNSt3__16__clocEv() | 0) | 0;
+ i4 = ___errno_location() | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ HEAP32[i4 >> 2] = 0;
+ i1 = _strtoull_l(i1, i8, i2, __ZNSt3__16__clocEv() | 0) | 0;
i2 = tempRet0;
- i3 = HEAP32[i8 >> 2] | 0;
- if (!i3) HEAP32[i8 >> 2] = i4;
- do if ((HEAP32[i7 >> 2] | 0) == (i5 | 0)) if (i2 >>> 0 > 0 | (i2 | 0) == 0 & i1 >>> 0 > 4294967295 | (i3 | 0) == 34) {
- HEAP32[i6 >> 2] = 4;
+ i3 = HEAP32[i4 >> 2] | 0;
+ if (!i3) HEAP32[i4 >> 2] = i5;
+ do if ((HEAP32[i8 >> 2] | 0) == (i6 | 0)) if (i2 >>> 0 > 0 | (i2 | 0) == 0 & i1 >>> 0 > 4294967295 | (i3 | 0) == 34) {
+ HEAP32[i7 >> 2] = 4;
i1 = -1;
break;
} else break; else {
- HEAP32[i6 >> 2] = 4;
+ HEAP32[i7 >> 2] = 4;
i1 = 0;
} while (0);
} while (0);
@@ -63501,6 +62931,56 @@ function __ZNSt3__127__num_get_unsigned_integralIjEET_PKcS3_Rji(i1, i5, i6, i2)
return i1 | 0;
}
+function _atoll(i1) {
+ i1 = i1 | 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0;
+ while (1) {
+ i2 = i1 + 1 | 0;
+ if (!(_isspace(HEAP8[i1 >> 0] | 0) | 0)) break; else i1 = i2;
+ }
+ i3 = HEAP8[i1 >> 0] | 0;
+ switch (i3 << 24 >> 24 | 0) {
+ case 45:
+ {
+ i4 = 1;
+ i5 = 5;
+ break;
+ }
+ case 43:
+ {
+ i4 = 0;
+ i5 = 5;
+ break;
+ }
+ default:
+ i4 = 0;
+ }
+ if ((i5 | 0) == 5) {
+ i1 = i2;
+ i3 = HEAP8[i2 >> 0] | 0;
+ }
+ i5 = (i3 << 24 >> 24) + -48 | 0;
+ if (i5 >>> 0 < 10) {
+ i3 = 0;
+ i2 = 0;
+ do {
+ i2 = ___muldi3(i2 | 0, i3 | 0, 10, 0) | 0;
+ i1 = i1 + 1 | 0;
+ i2 = _i64Subtract(i2 | 0, tempRet0 | 0, i5 | 0, ((i5 | 0) < 0) << 31 >> 31 | 0) | 0;
+ i3 = tempRet0;
+ i5 = (HEAP8[i1 >> 0] | 0) + -48 | 0;
+ } while (i5 >>> 0 < 10);
+ i1 = i3;
+ } else {
+ i2 = 0;
+ i1 = 0;
+ }
+ i4 = (i4 | 0) != 0;
+ i5 = _i64Subtract(0, 0, i2 | 0, i1 | 0) | 0;
+ tempRet0 = i4 ? i1 : tempRet0;
+ return (i4 ? i2 : i5) | 0;
+}
+
function __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6assignEPKcj(i6, i5, i4) {
i6 = i6 | 0;
i5 = i5 | 0;
@@ -63508,9 +62988,9 @@ function __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N
var i1 = 0, i2 = 0, i3 = 0;
i1 = HEAP8[i6 >> 0] | 0;
if (!(i1 & 1)) i3 = 10; else {
- i3 = HEAP32[i6 >> 2] | 0;
- i1 = i3 & 255;
- i3 = (i3 & -2) + -1 | 0;
+ i1 = HEAP32[i6 >> 2] | 0;
+ i3 = (i1 & -2) + -1 | 0;
+ i1 = i1 & 255;
}
i2 = (i1 & 1) == 0;
do if (i3 >>> 0 >= i4 >>> 0) {
@@ -63531,61 +63011,61 @@ function __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N
return;
}
-function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseFragERNS3_4FragE(i1, i5) {
+function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseFragERNS3_4FragE(i1, i6) {
i1 = i1 | 0;
- i5 = i5 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i6 = 0;
+ i6 = i6 | 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0;
i4 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i3 = i4 + 8 | 0;
- i1 = i4 + 4 | 0;
- i2 = i4;
- switch (HEAP32[i5 + 12 >> 2] | 0) {
+ i1 = i4 + 8 | 0;
+ i2 = i4 + 4 | 0;
+ i3 = i4;
+ switch (HEAP32[i6 + 12 >> 2] | 0) {
case 2:
{
- HEAP32[i1 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i3 >> 2] = HEAP32[i1 >> 2];
- i6 = __ZN6cashew12ValueBuilder8makeNameENS_7IStringE(i3) | 0;
+ HEAP32[i2 >> 2] = HEAP32[i6 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
+ i5 = __ZN6cashew12ValueBuilder8makeNameENS_7IStringE(i1) | 0;
break;
}
case 3:
{
- HEAP32[i2 >> 2] = HEAP32[i5 >> 2];
- HEAP32[i3 >> 2] = HEAP32[i2 >> 2];
- i6 = __ZN6cashew12ValueBuilder10makeStringENS_7IStringE(i3) | 0;
+ HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
+ i5 = __ZN6cashew12ValueBuilder10makeStringENS_7IStringE(i1) | 0;
break;
}
case 4:
{
- i6 = __ZN6cashew12ValueBuilder10makeDoubleEd(+(~~+HEAPF64[i5 >> 3] >>> 0 >>> 0)) | 0;
+ i5 = __ZN6cashew12ValueBuilder10makeDoubleEd(+(~~+HEAPF64[i6 >> 3] >>> 0 >>> 0)) | 0;
break;
}
case 5:
{
- i6 = __ZN6cashew19DotZeroValueBuilder10makeDoubleEd(+HEAPF64[i5 >> 3]) | 0;
+ i5 = __ZN6cashew19DotZeroValueBuilder10makeDoubleEd(+HEAPF64[i6 >> 3]) | 0;
break;
}
default:
_abort();
}
STACKTOP = i4;
- return i6 | 0;
+ return i5 | 0;
}
-function __ZNSt3__13mapIN4wasm4NameEPNS1_8FunctionENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i6, i3) {
+function __ZNSt3__13mapIN4wasm4NameEPNS1_8FunctionENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i6, i4) {
i6 = i6 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i7 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i7 + 12 | 0;
- i2 = i7;
- i5 = __ZNSt3__13mapIN4wasm4NameEPNS1_8FunctionENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS9_(i6, i4, i3) | 0;
- i1 = HEAP32[i5 >> 2] | 0;
+ i5 = i7 + 12 | 0;
+ i3 = i7;
+ i2 = __ZNSt3__13mapIN4wasm4NameEPNS1_8FunctionENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS9_(i6, i5, i4) | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
- __ZNSt3__13mapIN4wasm4NameEPNS1_8FunctionENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE25__construct_node_with_keyERS9_(i2, i6, i3);
- i1 = HEAP32[i2 >> 2] | 0;
- __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i6, HEAP32[i4 >> 2] | 0, i5, i1);
+ __ZNSt3__13mapIN4wasm4NameEPNS1_8FunctionENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE25__construct_node_with_keyERS9_(i3, i6, i4);
+ i1 = HEAP32[i3 >> 2] | 0;
+ __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i6, HEAP32[i5 >> 2] | 0, i2, i1);
}
STACKTOP = i7;
return i1 + 20 | 0;
@@ -63603,9 +63083,9 @@ function __ZNSt3__19__num_getIwE19__stage2_float_prepERNS_8ios_baseEPwRwS5_(i5,
i7 = i6;
i3 = __ZNKSt3__18ios_base6getlocEv(i3) | 0;
HEAP32[i7 >> 2] = i3;
- i8 = __ZNKSt3__16locale9use_facetERNS0_2idE(i7, 38996) | 0;
- FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i8 >> 2] | 0) + 48 >> 2] & 7](i8, 31159, 31191, i1) | 0;
- i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i7, 39004) | 0;
+ i8 = __ZNKSt3__16locale9use_facetERNS0_2idE(i7, 40468) | 0;
+ FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i8 >> 2] | 0) + 48 >> 2] & 7](i8, 32623, 32655, i1) | 0;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i7, 40476) | 0;
i7 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 12 >> 2] & 127](i1) | 0;
HEAP32[i2 >> 2] = i7;
i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 16 >> 2] & 127](i1) | 0;
@@ -63621,29 +63101,29 @@ function __ZN10MixedArena5allocIN4wasm11UnreachableEEEPT_v(i7) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i4 = i8;
i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 8 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 8 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 8;
- HEAP32[i7 >> 2] = 19;
- HEAP32[i7 + 4 >> 2] = 0;
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 8;
+ HEAP32[i7 >> 2] = 20;
+ HEAP32[i7 + 4 >> 2] = 5;
STACKTOP = i8;
return i7 | 0;
}
@@ -63654,33 +63134,33 @@ function __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__m
var i2 = 0, i3 = 0, i5 = 0;
i5 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i3 = i5 + 4 | 0;
- i2 = i5;
+ i2 = i5 + 4 | 0;
+ i3 = i5;
i1 = __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_(i4, i1) | 0;
if ((i1 | 0) == (i4 + 4 | 0)) i1 = 0; else {
- HEAP32[i2 >> 2] = i1;
- HEAP32[i3 >> 2] = HEAP32[i2 >> 2];
- __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE5eraseENS_21__tree_const_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEE(i4, i3) | 0;
+ HEAP32[i3 >> 2] = i1;
+ HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
+ __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE5eraseENS_21__tree_const_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEE(i4, i2) | 0;
i1 = 1;
}
STACKTOP = i5;
return i1 | 0;
}
-function __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i6, i3) {
+function __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i6, i4) {
i6 = i6 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i7 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i7 + 12 | 0;
- i2 = i7;
- i5 = __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS8_(i6, i4, i3) | 0;
- i1 = HEAP32[i5 >> 2] | 0;
+ i5 = i7 + 12 | 0;
+ i3 = i7;
+ i2 = __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS8_(i6, i5, i4) | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
- __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEE25__construct_node_with_keyERS8_(i2, i6, i3);
- i1 = HEAP32[i2 >> 2] | 0;
- __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSG_SG_(i6, HEAP32[i4 >> 2] | 0, i5, i1);
+ __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEE25__construct_node_with_keyERS8_(i3, i6, i4);
+ i1 = HEAP32[i3 >> 2] | 0;
+ __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSG_SG_(i6, HEAP32[i5 >> 2] | 0, i2, i1);
}
STACKTOP = i7;
return i1 + 20 | 0;
@@ -63698,9 +63178,9 @@ function __ZNSt3__19__num_getIcE19__stage2_float_prepERNS_8ios_baseEPcRcS5_(i5,
i7 = i6;
i3 = __ZNKSt3__18ios_base6getlocEv(i3) | 0;
HEAP32[i7 >> 2] = i3;
- i8 = __ZNKSt3__16locale9use_facetERNS0_2idE(i7, 38964) | 0;
- FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i8 >> 2] | 0) + 32 >> 2] & 7](i8, 31159, 31191, i1) | 0;
- i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i7, 38976) | 0;
+ i8 = __ZNKSt3__16locale9use_facetERNS0_2idE(i7, 40436) | 0;
+ FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i8 >> 2] | 0) + 32 >> 2] & 7](i8, 32623, 32655, i1) | 0;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i7, 40448) | 0;
i7 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 12 >> 2] & 127](i1) | 0;
HEAP8[i2 >> 0] = i7;
i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 16 >> 2] & 127](i1) | 0;
@@ -63711,6 +63191,34 @@ function __ZNSt3__19__num_getIcE19__stage2_float_prepERNS_8ios_baseEPcRcS5_(i5,
return;
}
+function __ZN6cashew12ValueBuilder12makeContinueENS_7IStringE(i4) {
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0;
+ i6 = STACKTOP;
+ STACKTOP = STACKTOP + 16 | 0;
+ i1 = i6 + 8 | 0;
+ i7 = i6 + 4 | 0;
+ i2 = i6;
+ i3 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0;
+ i8 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38472) | 0;
+ HEAP32[i7 >> 2] = i8;
+ HEAP32[i1 >> 2] = HEAP32[i7 >> 2];
+ i3 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0;
+ i7 = HEAP32[i4 >> 2] | 0;
+ if ((i7 | 0) != 0 ? (HEAP8[i7 >> 0] | 0) != 0 : 0) {
+ i8 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(i4) | 0;
+ HEAP32[i2 >> 2] = i8;
+ } else i5 = 4;
+ if ((i5 | 0) == 4) {
+ i8 = __ZN6cashew12ValueBuilder8makeNullEv() | 0;
+ HEAP32[i2 >> 2] = i8;
+ };
+ HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
+ i8 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0;
+ STACKTOP = i6;
+ return i8 | 0;
+}
+
function __ZN4wasm8SetLocal7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i3, i2, i1) {
i3 = i3 | 0;
i2 = i2 | 0;
@@ -63721,7 +63229,7 @@ function __ZN4wasm8SetLocal7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIc
i6 = i4 + 8 | 0;
i5 = i4 + 4 | 0;
i8 = i4;
- i7 = __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i2, 16769, 0) | 0;
+ i7 = __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i2, 17360, 0) | 0;
HEAP32[i8 >> 2] = HEAP32[i3 + 8 >> 2];
HEAP32[i6 >> 2] = HEAP32[i8 >> 2];
__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i7, i6) | 0;
@@ -63734,15 +63242,15 @@ function __ZN4wasm8SetLocal7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIc
return i3 | 0;
}
-function __ZN4wasm14ModuleInstance10callExportEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEE(i2, i6, i1, i5) {
- i2 = i2 | 0;
+function __ZN4wasm14ModuleInstance10callExportEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEE(i4, i6, i1, i5) {
+ i4 = i4 | 0;
i6 = i6 | 0;
i1 = i1 | 0;
i5 = i5 | 0;
- var i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0;
+ var i2 = 0, i3 = 0, i7 = 0, i8 = 0, i9 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i7 + 8 | 0;
+ i2 = i7 + 8 | 0;
i8 = i7 + 4 | 0;
i3 = i7;
i9 = (HEAP32[i6 >> 2] | 0) + 72 | 0;
@@ -63751,43 +63259,15 @@ function __ZN4wasm14ModuleInstance10callExportEN6cashew7IStringERNSt3__16vectorI
i1 = HEAP32[i1 >> 2] | 0;
if (!i1) {
i9 = HEAP32[i6 + 12 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i9 >> 2] | 0) + 20 >> 2] & 127](i9, 19198);
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i9 >> 2] | 0) + 20 >> 2] & 127](i9, 19713);
}
HEAP32[i3 >> 2] = HEAP32[i1 + 4 >> 2];
- HEAP32[i4 >> 2] = HEAP32[i3 >> 2];
- __ZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEE(i2, i6, i4, i5);
+ HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
+ __ZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEE(i4, i6, i2, i5);
STACKTOP = i7;
return;
}
-function __ZN6cashew12ValueBuilder12makeContinueENS_7IStringE(i4) {
- i4 = i4 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0;
- i6 = STACKTOP;
- STACKTOP = STACKTOP + 16 | 0;
- i2 = i6 + 8 | 0;
- i7 = i6 + 4 | 0;
- i1 = i6;
- i3 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0;
- i8 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(37e3) | 0;
- HEAP32[i7 >> 2] = i8;
- HEAP32[i2 >> 2] = HEAP32[i7 >> 2];
- i3 = __ZN6cashew5Value9push_backENS_3RefE(i3, i2) | 0;
- i7 = HEAP32[i4 >> 2] | 0;
- if ((i7 | 0) != 0 ? (HEAP8[i7 >> 0] | 0) != 0 : 0) {
- i8 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(i4) | 0;
- HEAP32[i1 >> 2] = i8;
- } else i5 = 4;
- if ((i5 | 0) == 4) {
- i8 = __ZN6cashew12ValueBuilder8makeNullEv() | 0;
- HEAP32[i1 >> 2] = i8;
- };
- HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
- i8 = __ZN6cashew5Value9push_backENS_3RefE(i3, i2) | 0;
- STACKTOP = i6;
- return i8 | 0;
-}
-
function __ZN10__cxxabiv112_GLOBAL__N_117parse_call_offsetEPKcS2_(i1, i4) {
i1 = i1 | 0;
i4 = i4 | 0;
@@ -63818,27 +63298,27 @@ function __ZN10MixedArena5allocIN4wasm6SelectEEEPT_v(i7) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i4 = i8;
i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 24 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 24 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 24;
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 24;
HEAP32[i7 >> 2] = 16;
HEAP32[i7 + 4 >> 2] = 0;
STACKTOP = i8;
@@ -63850,27 +63330,27 @@ function __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(i7) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i4 = i8;
i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 24 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 24 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 24;
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 24;
HEAP32[i7 >> 2] = 15;
HEAP32[i7 + 4 >> 2] = 0;
STACKTOP = i8;
@@ -63901,51 +63381,51 @@ function __ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEE
}
HEAP8[i1 >> 0] = 1;
i1 = HEAP32[i4 >> 2] | 0;
- i3 = i1 + 32 | 0;
- i2 = 0;
+ i2 = i1 + 32 | 0;
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
HEAP32[i1 + 64 >> 2] = 0;
HEAP8[i5 >> 0] = 1;
return;
}
-function __ZNSt3__13mapIN4wasm4NameEPNS1_6ImportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i6, i3) {
+function __ZNSt3__13mapIN4wasm4NameEPNS1_6ImportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i6, i4) {
i6 = i6 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i7 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i7 + 12 | 0;
- i2 = i7;
- i5 = __ZNSt3__13mapIN4wasm4NameEPNS1_6ImportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS9_(i6, i4, i3) | 0;
- i1 = HEAP32[i5 >> 2] | 0;
+ i5 = i7 + 12 | 0;
+ i3 = i7;
+ i2 = __ZNSt3__13mapIN4wasm4NameEPNS1_6ImportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS9_(i6, i5, i4) | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
- __ZNSt3__13mapIN4wasm4NameEPNS1_6ImportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE25__construct_node_with_keyERS9_(i2, i6, i3);
- i1 = HEAP32[i2 >> 2] | 0;
- __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i6, HEAP32[i4 >> 2] | 0, i5, i1);
+ __ZNSt3__13mapIN4wasm4NameEPNS1_6ImportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE25__construct_node_with_keyERS9_(i3, i6, i4);
+ i1 = HEAP32[i3 >> 2] | 0;
+ __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i6, HEAP32[i5 >> 2] | 0, i2, i1);
}
STACKTOP = i7;
return i1 + 20 | 0;
}
-function __ZNSt3__13mapIN4wasm4NameEPNS1_6ExportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i6, i3) {
+function __ZNSt3__13mapIN4wasm4NameEPNS1_6ExportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i6, i4) {
i6 = i6 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i7 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i7 + 12 | 0;
- i2 = i7;
- i5 = __ZNSt3__13mapIN4wasm4NameEPNS1_6ExportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS9_(i6, i4, i3) | 0;
- i1 = HEAP32[i5 >> 2] | 0;
+ i5 = i7 + 12 | 0;
+ i3 = i7;
+ i2 = __ZNSt3__13mapIN4wasm4NameEPNS1_6ExportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS9_(i6, i5, i4) | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
- __ZNSt3__13mapIN4wasm4NameEPNS1_6ExportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE25__construct_node_with_keyERS9_(i2, i6, i3);
- i1 = HEAP32[i2 >> 2] | 0;
- __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i6, HEAP32[i4 >> 2] | 0, i5, i1);
+ __ZNSt3__13mapIN4wasm4NameEPNS1_6ExportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE25__construct_node_with_keyERS9_(i3, i6, i4);
+ i1 = HEAP32[i3 >> 2] | 0;
+ __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i6, HEAP32[i5 >> 2] | 0, i2, i1);
}
STACKTOP = i7;
return i1 + 20 | 0;
@@ -63956,27 +63436,27 @@ function __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(i7) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i4 = i8;
i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 16 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 16 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 16;
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 16;
HEAP32[i7 >> 2] = 14;
HEAP32[i7 + 4 >> 2] = 0;
STACKTOP = i8;
@@ -63988,27 +63468,27 @@ function __ZN10MixedArena5allocIN4wasm5StoreEEEPT_v(i7) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i4 = i8;
i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 32 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 32 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 32;
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 32;
HEAP32[i7 >> 2] = 12;
HEAP32[i7 + 4 >> 2] = 0;
STACKTOP = i8;
@@ -64020,27 +63500,27 @@ function __ZN10MixedArena5allocIN4wasm4LoadEEEPT_v(i7) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i4 = i8;
i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 32 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 32 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 32;
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 32;
HEAP32[i7 >> 2] = 11;
HEAP32[i7 + 4 >> 2] = 0;
STACKTOP = i8;
@@ -64054,15 +63534,15 @@ function __ZN6cashew5Value4freeEv(i5) {
case 2:
{
i1 = i5 + 8 | 0;
- i4 = HEAP32[i1 >> 2] | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- i4 = i4 + 4 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
+ i3 = HEAP32[i1 >> 2] | 0;
+ i2 = HEAP32[i3 >> 2] | 0;
+ i3 = i3 + 4 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
while (1) {
- if ((i3 | 0) == (i2 | 0)) break;
- i6 = i3 + -4 | 0;
- HEAP32[i4 >> 2] = i6;
- i3 = i6;
+ if ((i4 | 0) == (i2 | 0)) break;
+ i6 = i4 + -4 | 0;
+ HEAP32[i3 >> 2] = i6;
+ i4 = i6;
}
__ZNSt3__16vectorIN6cashew3RefENS_9allocatorIS2_EEE13shrink_to_fitEv(HEAP32[i1 >> 2] | 0);
break;
@@ -64089,96 +63569,119 @@ function __ZN6cashew12ValueBuilder9makeBreakENS_7IStringE(i4) {
var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0;
i6 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i2 = i6 + 8 | 0;
+ i1 = i6 + 8 | 0;
i7 = i6 + 4 | 0;
- i1 = i6;
+ i2 = i6;
i3 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0;
- i8 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(36996) | 0;
+ i8 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38468) | 0;
HEAP32[i7 >> 2] = i8;
- HEAP32[i2 >> 2] = HEAP32[i7 >> 2];
- i3 = __ZN6cashew5Value9push_backENS_3RefE(i3, i2) | 0;
+ HEAP32[i1 >> 2] = HEAP32[i7 >> 2];
+ i3 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0;
i7 = HEAP32[i4 >> 2] | 0;
if ((i7 | 0) != 0 ? (HEAP8[i7 >> 0] | 0) != 0 : 0) {
i8 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(i4) | 0;
- HEAP32[i1 >> 2] = i8;
+ HEAP32[i2 >> 2] = i8;
} else i5 = 4;
if ((i5 | 0) == 4) {
i8 = __ZN6cashew12ValueBuilder8makeNullEv() | 0;
- HEAP32[i1 >> 2] = i8;
+ HEAP32[i2 >> 2] = i8;
};
- HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
- i8 = __ZN6cashew5Value9push_backENS_3RefE(i3, i2) | 0;
+ HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
+ i8 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0;
STACKTOP = i6;
return i8 | 0;
}
+function __ZN4wasm6Return7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i2, i1, i4) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ i4 = i4 | 0;
+ var i3 = 0, i5 = 0, i6 = 0;
+ i5 = STACKTOP;
+ STACKTOP = STACKTOP + 16 | 0;
+ i3 = i5;
+ HEAP32[i3 >> 2] = i4;
+ __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i1, 27983, 0) | 0;
+ i2 = i2 + 8 | 0;
+ i6 = HEAP32[i2 >> 2] | 0;
+ if ((i6 | 0) != 0 ? (HEAP32[i6 >> 2] | 0) != 19 : 0) {
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i1, 10) | 0;
+ i6 = i4 + 1 | 0;
+ HEAP32[i3 >> 2] = i6;
+ __ZN4wasm10Expression13printFullLineERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjPS0_(i1, i6, HEAP32[i2 >> 2] | 0) | 0;
+ i1 = __Z9decIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERj(i1, i3) | 0;
+ } else __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i1, 35822) | 0;
+ STACKTOP = i5;
+ return i1 | 0;
+}
+
function __ZN10MixedArena5allocIN4wasm3NopEEEPT_v(i7) {
i7 = i7 | 0;
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
+ i4 = i8;
i5 = i7 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- i1 = i4;
- if (!((i4 | 0) != (HEAP32[i7 >> 2] | 0) ? (i2 = i7 + 12 | 0, i3 = HEAP32[i2 >> 2] | 0, (i3 + 8 | 0) >>> 0 <= 9999) : 0)) {
+ i6 = HEAP32[i5 >> 2] | 0;
+ i1 = i6;
+ if (!((i6 | 0) != (HEAP32[i7 >> 2] | 0) ? (i3 = i7 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 + 8 | 0) >>> 0 <= 9999) : 0)) {
i2 = __Znaj(1e4) | 0;
- HEAP32[i6 >> 2] = i2;
+ HEAP32[i4 >> 2] = i2;
if (i1 >>> 0 < (HEAP32[i7 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i4 >> 2] = i2;
+ HEAP32[i6 >> 2] = i2;
i1 = (HEAP32[i5 >> 2] | 0) + 4 | 0;
HEAP32[i5 >> 2] = i1;
} else {
- __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i6);
+ __ZNSt3__16vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i7, i4);
i1 = HEAP32[i5 >> 2] | 0;
}
- i2 = i7 + 12 | 0;
- HEAP32[i2 >> 2] = 0;
- i3 = 0;
+ i3 = i7 + 12 | 0;
+ HEAP32[i3 >> 2] = 0;
+ i2 = 0;
}
- i7 = (HEAP32[i1 + -4 >> 2] | 0) + i3 | 0;
- HEAP32[i2 >> 2] = i3 + 8;
- HEAP32[i7 >> 2] = 18;
+ i7 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0;
+ HEAP32[i3 >> 2] = i2 + 8;
+ HEAP32[i7 >> 2] = 19;
HEAP32[i7 + 4 >> 2] = 0;
STACKTOP = i8;
return i7 | 0;
}
-function __ZNSt3__127__num_get_unsigned_integralIyEET_PKcS3_Rji(i1, i5, i6, i2) {
+function __ZNSt3__127__num_get_unsigned_integralIyEET_PKcS3_Rji(i1, i6, i7, i2) {
i1 = i1 | 0;
- i5 = i5 | 0;
i6 = i6 | 0;
+ i7 = i7 | 0;
i2 = i2 | 0;
- var i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0;
+ var i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i7 = i9;
- do if ((i1 | 0) == (i5 | 0)) {
- HEAP32[i6 >> 2] = 4;
+ i8 = i9;
+ do if ((i1 | 0) == (i6 | 0)) {
+ HEAP32[i7 >> 2] = 4;
i2 = 0;
i1 = 0;
} else {
if ((HEAP8[i1 >> 0] | 0) == 45) {
- HEAP32[i6 >> 2] = 4;
+ HEAP32[i7 >> 2] = 4;
i2 = 0;
i1 = 0;
break;
}
- i8 = ___errno_location() | 0;
- i4 = HEAP32[i8 >> 2] | 0;
- HEAP32[i8 >> 2] = 0;
- i1 = _strtoull_l(i1, i7, i2, __ZNSt3__16__clocEv() | 0) | 0;
+ i4 = ___errno_location() | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ HEAP32[i4 >> 2] = 0;
+ i1 = _strtoull_l(i1, i8, i2, __ZNSt3__16__clocEv() | 0) | 0;
i2 = tempRet0;
- i3 = HEAP32[i8 >> 2] | 0;
- if (!i3) HEAP32[i8 >> 2] = i4;
- if ((HEAP32[i7 >> 2] | 0) == (i5 | 0)) {
+ i3 = HEAP32[i4 >> 2] | 0;
+ if (!i3) HEAP32[i4 >> 2] = i5;
+ if ((HEAP32[i8 >> 2] | 0) == (i6 | 0)) {
if ((i3 | 0) == 34) {
- HEAP32[i6 >> 2] = 4;
+ HEAP32[i7 >> 2] = 4;
i1 = -1;
i2 = -1;
}
} else {
- HEAP32[i6 >> 2] = 4;
+ HEAP32[i7 >> 2] = 4;
i1 = 0;
i2 = 0;
}
@@ -64188,44 +63691,83 @@ function __ZNSt3__127__num_get_unsigned_integralIyEET_PKcS3_Rji(i1, i5, i6, i2)
return i1 | 0;
}
-function __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9__grow_byEjjjjjj(i10, i8, i1, i2, i6, i7, i5) {
- i10 = i10 | 0;
- i8 = i8 | 0;
+function ___stpcpy(i1, i2) {
i1 = i1 | 0;
i2 = i2 | 0;
- i6 = i6 | 0;
+ var i3 = 0, i4 = 0;
+ i3 = i2;
+ L1 : do if (!((i3 ^ i1) & 3)) {
+ if (i3 & 3) do {
+ i3 = HEAP8[i2 >> 0] | 0;
+ HEAP8[i1 >> 0] = i3;
+ if (!(i3 << 24 >> 24)) break L1;
+ i2 = i2 + 1 | 0;
+ i1 = i1 + 1 | 0;
+ } while ((i2 & 3 | 0) != 0);
+ i3 = HEAP32[i2 >> 2] | 0;
+ if (!((i3 & -2139062144 ^ -2139062144) & i3 + -16843009)) {
+ i4 = i1;
+ while (1) {
+ i2 = i2 + 4 | 0;
+ i1 = i4 + 4 | 0;
+ HEAP32[i4 >> 2] = i3;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 & -2139062144 ^ -2139062144) & i3 + -16843009 | 0) break; else i4 = i1;
+ }
+ }
+ i4 = 8;
+ } else i4 = 8; while (0);
+ if ((i4 | 0) == 8) {
+ i4 = HEAP8[i2 >> 0] | 0;
+ HEAP8[i1 >> 0] = i4;
+ if (i4 << 24 >> 24) do {
+ i2 = i2 + 1 | 0;
+ i1 = i1 + 1 | 0;
+ i4 = HEAP8[i2 >> 0] | 0;
+ HEAP8[i1 >> 0] = i4;
+ } while (i4 << 24 >> 24 != 0);
+ }
+ return i1 | 0;
+}
+
+function __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9__grow_byEjjjjjj(i10, i9, i1, i4, i7, i8, i6) {
+ i10 = i10 | 0;
+ i9 = i9 | 0;
+ i1 = i1 | 0;
+ i4 = i4 | 0;
i7 = i7 | 0;
- i5 = i5 | 0;
- var i3 = 0, i4 = 0, i9 = 0;
- if ((-17 - i8 | 0) >>> 0 < i1 >>> 0) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i10);
- if (!(HEAP8[i10 >> 0] & 1)) i9 = i10 + 1 | 0; else i9 = HEAP32[i10 + 8 >> 2] | 0;
- if (i8 >>> 0 < 2147483623) {
- i4 = i1 + i8 | 0;
- i3 = i8 << 1;
- i4 = i4 >>> 0 < i3 >>> 0 ? i3 : i4;
- i4 = i4 >>> 0 < 11 ? 11 : i4 + 16 & -16;
- } else i4 = -17;
- i3 = __Znwj(i4) | 0;
- if (i6 | 0) _memcpy(i3 | 0, i9 | 0, i6 | 0) | 0;
- i1 = i2 - i7 | 0;
- if ((i1 | 0) != (i6 | 0)) _memcpy(i3 + i6 + i5 | 0, i9 + i6 + i7 | 0, i1 - i6 | 0) | 0;
- if ((i8 | 0) != 10) __ZdlPv(i9);
+ i8 = i8 | 0;
+ i6 = i6 | 0;
+ var i2 = 0, i3 = 0, i5 = 0;
+ if ((-17 - i9 | 0) >>> 0 < i1 >>> 0) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i10);
+ if (!(HEAP8[i10 >> 0] & 1)) i5 = i10 + 1 | 0; else i5 = HEAP32[i10 + 8 >> 2] | 0;
+ if (i9 >>> 0 < 2147483623) {
+ i2 = i1 + i9 | 0;
+ i3 = i9 << 1;
+ i2 = i2 >>> 0 < i3 >>> 0 ? i3 : i2;
+ i2 = i2 >>> 0 < 11 ? 11 : i2 + 16 & -16;
+ } else i2 = -17;
+ i3 = __Znwj(i2) | 0;
+ if (i7 | 0) _memcpy(i3 | 0, i5 | 0, i7 | 0) | 0;
+ i1 = i4 - i8 | 0;
+ if ((i1 | 0) != (i7 | 0)) _memcpy(i3 + i7 + i6 | 0, i5 + i7 + i8 | 0, i1 - i7 | 0) | 0;
+ if ((i9 | 0) != 10) __ZdlPv(i5);
HEAP32[i10 + 8 >> 2] = i3;
- HEAP32[i10 >> 2] = i4 | 1;
+ HEAP32[i10 >> 2] = i2 | 1;
return;
}
-function __ZNSt3__16vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE6resizeEj(i5, i3) {
+function __ZNSt3__16vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE6resizeEj(i5, i4) {
i5 = i5 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i6 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i6 = 0;
i6 = i5 + 4 | 0;
i1 = HEAP32[i6 >> 2] | 0;
- i2 = HEAP32[i5 >> 2] | 0;
- i4 = (i1 - i2 | 0) / 12 | 0;
- L1 : do if (i4 >>> 0 >= i3 >>> 0) {
- if (i4 >>> 0 > i3 >>> 0) {
- i2 = i2 + (i3 * 12 | 0) | 0;
+ i3 = HEAP32[i5 >> 2] | 0;
+ i2 = (i1 - i3 | 0) / 12 | 0;
+ L1 : do if (i2 >>> 0 >= i4 >>> 0) {
+ if (i2 >>> 0 > i4 >>> 0) {
+ i2 = i3 + (i4 * 12 | 0) | 0;
while (1) {
if ((i1 | 0) == (i2 | 0)) break L1;
i5 = i1 + -12 | 0;
@@ -64234,7 +63776,7 @@ function __ZNSt3__16vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuild
i1 = HEAP32[i6 >> 2] | 0;
}
}
- } else __ZNSt3__16vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE8__appendEj(i5, i3 - i4 | 0); while (0);
+ } else __ZNSt3__16vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE8__appendEj(i5, i4 - i2 | 0); while (0);
return;
}
@@ -64267,49 +63809,69 @@ function __ZNKSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS
return i1 | 0;
}
-function __ZNK10__cxxabiv121__vmi_class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi(i1, i4, i3, i5) {
+function __ZNK10__cxxabiv121__vmi_class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi(i1, i5, i4, i6) {
i1 = i1 | 0;
- i4 = i4 | 0;
- i3 = i3 | 0;
i5 = i5 | 0;
- var i2 = 0, i6 = 0;
- L1 : do if ((i1 | 0) != (HEAP32[i4 + 8 >> 2] | 0)) {
- i6 = HEAP32[i1 + 12 >> 2] | 0;
- i2 = i1 + 16 + (i6 << 3) | 0;
- __ZNK10__cxxabiv122__base_class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi(i1 + 16 | 0, i4, i3, i5);
- if ((i6 | 0) > 1) {
- i6 = i4 + 54 | 0;
+ i4 = i4 | 0;
+ i6 = i6 | 0;
+ var i2 = 0, i3 = 0;
+ L1 : do if ((i1 | 0) != (HEAP32[i5 + 8 >> 2] | 0)) {
+ i3 = HEAP32[i1 + 12 >> 2] | 0;
+ i2 = i1 + 16 + (i3 << 3) | 0;
+ __ZNK10__cxxabiv122__base_class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi(i1 + 16 | 0, i5, i4, i6);
+ if ((i3 | 0) > 1) {
+ i3 = i5 + 54 | 0;
i1 = i1 + 24 | 0;
do {
- __ZNK10__cxxabiv122__base_class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi(i1, i4, i3, i5);
- if (HEAP8[i6 >> 0] | 0) break L1;
+ __ZNK10__cxxabiv122__base_class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi(i1, i5, i4, i6);
+ if (HEAP8[i3 >> 0] | 0) break L1;
i1 = i1 + 8 | 0;
} while (i1 >>> 0 < i2 >>> 0);
}
- } else __ZNK10__cxxabiv117__class_type_info24process_found_base_classEPNS_19__dynamic_cast_infoEPvi(0, i4, i3, i5); while (0);
+ } else __ZNK10__cxxabiv117__class_type_info24process_found_base_classEPNS_19__dynamic_cast_infoEPvi(0, i5, i4, i6); while (0);
return;
}
-function __ZNK10__cxxabiv117__class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib(i6, i3, i1, i4, i7) {
- i6 = i6 | 0;
+function __ZN4wasm22SExpressionWasmBuilder6makeIfERNS_7ElementE(i3, i2) {
i3 = i3 | 0;
- i1 = i1 | 0;
+ i2 = i2 | 0;
+ var i1 = 0, i4 = 0;
+ i1 = __ZN10MixedArena5allocIN4wasm2IfEEEPT_v(HEAP32[i3 + 4 >> 2] | 0) | 0;
+ i4 = __ZN4wasm7Element4listEv(i2) | 0;
+ i4 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i3, HEAP32[(HEAP32[i4 >> 2] | 0) + 4 >> 2] | 0) | 0;
+ HEAP32[i1 + 8 >> 2] = i4;
+ i4 = __ZN4wasm7Element4listEv(i2) | 0;
+ i4 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i3, HEAP32[(HEAP32[i4 >> 2] | 0) + 8 >> 2] | 0) | 0;
+ HEAP32[i1 + 12 >> 2] = i4;
+ if ((__ZN4wasm7Element4sizeEv(i2) | 0) == 4) {
+ i4 = __ZN4wasm7Element4listEv(i2) | 0;
+ i4 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i3, HEAP32[(HEAP32[i4 >> 2] | 0) + 12 >> 2] | 0) | 0;
+ HEAP32[i1 + 16 >> 2] = i4;
+ __ZN4wasm2If8finalizeEv(i1);
+ }
+ return i1 | 0;
+}
+
+function __ZNK10__cxxabiv117__class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib(i6, i4, i3, i5, i7) {
+ i6 = i6 | 0;
i4 = i4 | 0;
+ i3 = i3 | 0;
+ i5 = i5 | 0;
i7 = i7 | 0;
- var i2 = 0, i5 = 0;
- do if ((i6 | 0) == (HEAP32[i3 + 8 >> 2] | 0)) {
- if ((HEAP32[i3 + 4 >> 2] | 0) == (i1 | 0) ? (i5 = i3 + 28 | 0, (HEAP32[i5 >> 2] | 0) != 1) : 0) HEAP32[i5 >> 2] = i4;
- } else if ((i6 | 0) == (HEAP32[i3 >> 2] | 0)) {
- if ((HEAP32[i3 + 16 >> 2] | 0) != (i1 | 0) ? (i2 = i3 + 20 | 0, (HEAP32[i2 >> 2] | 0) != (i1 | 0)) : 0) {
- HEAP32[i3 + 32 >> 2] = i4;
- HEAP32[i2 >> 2] = i1;
- i7 = i3 + 40 | 0;
+ var i1 = 0, i2 = 0;
+ do if ((i6 | 0) == (HEAP32[i4 + 8 >> 2] | 0)) {
+ if ((HEAP32[i4 + 4 >> 2] | 0) == (i3 | 0) ? (i2 = i4 + 28 | 0, (HEAP32[i2 >> 2] | 0) != 1) : 0) HEAP32[i2 >> 2] = i5;
+ } else if ((i6 | 0) == (HEAP32[i4 >> 2] | 0)) {
+ if ((HEAP32[i4 + 16 >> 2] | 0) != (i3 | 0) ? (i1 = i4 + 20 | 0, (HEAP32[i1 >> 2] | 0) != (i3 | 0)) : 0) {
+ HEAP32[i4 + 32 >> 2] = i5;
+ HEAP32[i1 >> 2] = i3;
+ i7 = i4 + 40 | 0;
HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + 1;
- if ((HEAP32[i3 + 36 >> 2] | 0) == 1 ? (HEAP32[i3 + 24 >> 2] | 0) == 2 : 0) HEAP8[i3 + 54 >> 0] = 1;
- HEAP32[i3 + 44 >> 2] = 4;
+ if ((HEAP32[i4 + 36 >> 2] | 0) == 1 ? (HEAP32[i4 + 24 >> 2] | 0) == 2 : 0) HEAP8[i4 + 54 >> 0] = 1;
+ HEAP32[i4 + 44 >> 2] = 4;
break;
}
- if ((i4 | 0) == 1) HEAP32[i3 + 32 >> 2] = 1;
+ if ((i5 | 0) == 1) HEAP32[i4 + 32 >> 2] = 1;
} while (0);
return;
}
@@ -64322,19 +63884,19 @@ function __ZN4wasm22SExpressionWasmBuilder17parseCallOperandsINS_12CallIndirectE
var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i10 = 0;
i10 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i7 = i10;
- i5 = i1 + 12 | 0;
- i6 = i1 + 16 | 0;
+ i5 = i10;
+ i6 = i1 + 12 | 0;
+ i7 = i1 + 16 | 0;
i4 = i1 + 8 | 0;
while (1) {
if (i2 >>> 0 >= (__ZN4wasm7Element4sizeEv(i8) | 0) >>> 0) break;
- i3 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i9, __ZN4wasm7ElementixEj(i8, i2) | 0) | 0;
- HEAP32[i7 >> 2] = i3;
- i1 = HEAP32[i5 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i6 >> 2] | 0) >>> 0) {
- HEAP32[i1 >> 2] = i3;
- HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i4, i7);
+ i1 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i9, __ZN4wasm7ElementixEj(i8, i2) | 0) | 0;
+ HEAP32[i5 >> 2] = i1;
+ i3 = HEAP32[i6 >> 2] | 0;
+ if (i3 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
+ HEAP32[i3 >> 2] = i1;
+ HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4;
+ } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i4, i5);
i2 = i2 + 1 | 0;
}
STACKTOP = i10;
@@ -64352,7 +63914,7 @@ function __ZN6cashew12ValueBuilder10makePrefixENS_7IStringENS_3RefE(i1, i2) {
i7 = i3 + 4 | 0;
i5 = i3;
i6 = __ZN6cashew12ValueBuilder12makeRawArrayEi(3) | 0;
- i9 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(37024) | 0;
+ i9 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38496) | 0;
HEAP32[i8 >> 2] = i9;
HEAP32[i4 >> 2] = HEAP32[i8 >> 2];
i6 = __ZN6cashew5Value9push_backENS_3RefE(i6, i4) | 0;
@@ -64367,36 +63929,62 @@ function __ZN6cashew12ValueBuilder10makePrefixENS_7IStringENS_3RefE(i1, i2) {
return i2 | 0;
}
-function __ZNSt3__125__num_get_signed_integralIxEET_PKcS3_Rji(i1, i5, i6, i2) {
+function __ZN4wasm14PostEmscripten13visitMemoryOpINS_5StoreEEEvPT_(i1, i2) {
+ i1 = i1 | 0;
+ i2 = i2 | 0;
+ var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0;
+ i5 = i2 + 12 | 0;
+ do if (((HEAP32[i5 >> 2] | 0) == 0 ? (i6 = i2 + 20 | 0, i7 = HEAP32[i6 >> 2] | 0, !((i7 | 0) == 0 | (HEAP32[i7 >> 2] | 0) != 15)) : 0) ? (HEAP32[i7 + 8 >> 2] | 0) == 0 : 0) {
+ if ((HEAP32[i7 + 4 >> 2] | 0) != 1) ___assert_fail(27043, 27060, 49, 27090);
+ i3 = i7 + 16 | 0;
+ i1 = HEAP32[i3 >> 2] | 0;
+ i4 = i1;
+ if ((i1 | 0) == 0 | (HEAP32[i1 >> 2] | 0) != 13) {
+ i2 = i7 + 12 | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
+ if ((i1 | 0) == 0 | (HEAP32[i1 >> 2] | 0) != 13) break;
+ HEAP32[i2 >> 2] = i4;
+ HEAP32[i3 >> 2] = i1;
+ }
+ i1 = __ZN4wasm7Literal6geti32Ev(i1 + 8 | 0) | 0;
+ if (i1 >>> 0 < 1024) {
+ HEAP32[i6 >> 2] = HEAP32[i7 + 12 >> 2];
+ HEAP32[i5 >> 2] = i1;
+ }
+ } while (0);
+ return;
+}
+
+function __ZNSt3__125__num_get_signed_integralIxEET_PKcS3_Rji(i1, i6, i7, i2) {
i1 = i1 | 0;
- i5 = i5 | 0;
i6 = i6 | 0;
+ i7 = i7 | 0;
i2 = i2 | 0;
- var i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0;
+ var i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i7 = i9;
- if ((i1 | 0) == (i5 | 0)) {
- HEAP32[i6 >> 2] = 4;
+ i8 = i9;
+ if ((i1 | 0) == (i6 | 0)) {
+ HEAP32[i7 >> 2] = 4;
i2 = 0;
i1 = 0;
} else {
- i8 = ___errno_location() | 0;
- i4 = HEAP32[i8 >> 2] | 0;
- HEAP32[i8 >> 2] = 0;
- i1 = _strtoll_l(i1, i7, i2, __ZNSt3__16__clocEv() | 0) | 0;
+ i4 = ___errno_location() | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ HEAP32[i4 >> 2] = 0;
+ i1 = _strtoll_l(i1, i8, i2, __ZNSt3__16__clocEv() | 0) | 0;
i2 = tempRet0;
- i3 = HEAP32[i8 >> 2] | 0;
- if (!i3) HEAP32[i8 >> 2] = i4;
- if ((HEAP32[i7 >> 2] | 0) == (i5 | 0)) {
+ i3 = HEAP32[i4 >> 2] | 0;
+ if (!i3) HEAP32[i4 >> 2] = i5;
+ if ((HEAP32[i8 >> 2] | 0) == (i6 | 0)) {
if ((i3 | 0) == 34) {
- HEAP32[i6 >> 2] = 4;
+ HEAP32[i7 >> 2] = 4;
i2 = (i2 | 0) > 0 | (i2 | 0) == 0 & i1 >>> 0 > 0;
i1 = i2 ? -1 : 0;
i2 = i2 ? 2147483647 : -2147483648;
}
} else {
- HEAP32[i6 >> 2] = 4;
+ HEAP32[i7 >> 2] = 4;
i1 = 0;
i2 = 0;
}
@@ -64414,53 +64002,79 @@ function __ZN4wasm22SExpressionWasmBuilder17parseCallOperandsINS_10CallImportEEE
var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i10 = 0;
i10 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i7 = i10;
- i5 = i1 + 12 | 0;
- i6 = i1 + 16 | 0;
+ i5 = i10;
+ i6 = i1 + 12 | 0;
+ i7 = i1 + 16 | 0;
i4 = i1 + 8 | 0;
while (1) {
if (i2 >>> 0 >= (__ZN4wasm7Element4sizeEv(i8) | 0) >>> 0) break;
- i3 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i9, __ZN4wasm7ElementixEj(i8, i2) | 0) | 0;
- HEAP32[i7 >> 2] = i3;
- i1 = HEAP32[i5 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i6 >> 2] | 0) >>> 0) {
- HEAP32[i1 >> 2] = i3;
- HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i4, i7);
+ i1 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i9, __ZN4wasm7ElementixEj(i8, i2) | 0) | 0;
+ HEAP32[i5 >> 2] = i1;
+ i3 = HEAP32[i6 >> 2] | 0;
+ if (i3 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
+ HEAP32[i3 >> 2] = i1;
+ HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4;
+ } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i4, i5);
i2 = i2 + 1 | 0;
}
STACKTOP = i10;
return;
}
+function __ZN4wasm14PostEmscripten13visitMemoryOpINS_4LoadEEEvPT_(i1, i2) {
+ i1 = i1 | 0;
+ i2 = i2 | 0;
+ var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0;
+ i5 = i2 + 16 | 0;
+ do if (((HEAP32[i5 >> 2] | 0) == 0 ? (i6 = i2 + 24 | 0, i7 = HEAP32[i6 >> 2] | 0, !((i7 | 0) == 0 | (HEAP32[i7 >> 2] | 0) != 15)) : 0) ? (HEAP32[i7 + 8 >> 2] | 0) == 0 : 0) {
+ if ((HEAP32[i7 + 4 >> 2] | 0) != 1) ___assert_fail(27043, 27060, 49, 27090);
+ i3 = i7 + 16 | 0;
+ i1 = HEAP32[i3 >> 2] | 0;
+ i4 = i1;
+ if ((i1 | 0) == 0 | (HEAP32[i1 >> 2] | 0) != 13) {
+ i2 = i7 + 12 | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
+ if ((i1 | 0) == 0 | (HEAP32[i1 >> 2] | 0) != 13) break;
+ HEAP32[i2 >> 2] = i4;
+ HEAP32[i3 >> 2] = i1;
+ }
+ i1 = __ZN4wasm7Literal6geti32Ev(i1 + 8 | 0) | 0;
+ if (i1 >>> 0 < 1024) {
+ HEAP32[i6 >> 2] = HEAP32[i7 + 12 >> 2];
+ HEAP32[i5 >> 2] = i1;
+ }
+ } while (0);
+ return;
+}
+
function __ZNSt3__16vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i6, i5) {
i6 = i6 | 0;
i5 = i5 | 0;
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0;
- i1 = HEAP32[i6 >> 2] | 0;
- i4 = i6 + 4 | 0;
- i2 = i5 + 4 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ i3 = i6 + 4 | 0;
+ i4 = i5 + 4 | 0;
+ i1 = HEAP32[i3 >> 2] | 0;
while (1) {
- if ((i3 | 0) == (i1 | 0)) break;
- i7 = i3 + -28 | 0;
- __ZN6cashew13OperatorClassC2EOS0_((HEAP32[i2 >> 2] | 0) + -28 | 0, i7);
- HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + -28;
- i3 = i7;
+ if ((i1 | 0) == (i2 | 0)) break;
+ i7 = i1 + -28 | 0;
+ __ZN6cashew13OperatorClassC2EOS0_((HEAP32[i4 >> 2] | 0) + -28 | 0, i7);
+ HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + -28;
+ i1 = i7;
}
i7 = HEAP32[i6 >> 2] | 0;
- HEAP32[i6 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i2 >> 2] = i7;
+ HEAP32[i6 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i4 >> 2] = i7;
i7 = i5 + 8 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- HEAP32[i4 >> 2] = HEAP32[i7 >> 2];
- HEAP32[i7 >> 2] = i3;
- i4 = i6 + 8 | 0;
+ i2 = HEAP32[i3 >> 2] | 0;
+ HEAP32[i3 >> 2] = HEAP32[i7 >> 2];
+ HEAP32[i7 >> 2] = i2;
+ i3 = i6 + 8 | 0;
i7 = i5 + 12 | 0;
- i6 = HEAP32[i4 >> 2] | 0;
- HEAP32[i4 >> 2] = HEAP32[i7 >> 2];
+ i6 = HEAP32[i3 >> 2] | 0;
+ HEAP32[i3 >> 2] = HEAP32[i7 >> 2];
HEAP32[i7 >> 2] = i6;
- HEAP32[i5 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i5 >> 2] = HEAP32[i4 >> 2];
return;
}
@@ -64475,7 +64089,7 @@ function __ZN6cashew12ValueBuilder9makeLabelENS_7IStringENS_3RefE(i2, i1) {
i7 = i3 + 4 | 0;
i5 = i3;
i6 = __ZN6cashew12ValueBuilder12makeRawArrayEi(3) | 0;
- i9 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(36992) | 0;
+ i9 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38464) | 0;
HEAP32[i8 >> 2] = i9;
HEAP32[i4 >> 2] = HEAP32[i8 >> 2];
i6 = __ZN6cashew5Value9push_backENS_3RefE(i6, i4) | 0;
@@ -64523,7 +64137,7 @@ function __ZN6cashew12ValueBuilder7makeDotENS_3RefENS_7IStringE(i2, i1) {
i7 = i3 + 4 | 0;
i5 = i3;
i6 = __ZN6cashew12ValueBuilder12makeRawArrayEi(3) | 0;
- i9 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(37216) | 0;
+ i9 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38688) | 0;
HEAP32[i8 >> 2] = i9;
HEAP32[i4 >> 2] = HEAP32[i8 >> 2];
i6 = __ZN6cashew5Value9push_backENS_3RefE(i6, i4) | 0;
@@ -64543,18 +64157,18 @@ function __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N
i6 = i6 | 0;
var i1 = 0, i2 = 0, i3 = 0, i4 = 0;
i1 = HEAP8[i5 >> 0] | 0;
- i3 = (i1 & 1) != 0;
- if (i3) {
- i2 = (HEAP32[i5 >> 2] & -2) + -1 | 0;
+ i2 = (i1 & 1) != 0;
+ if (i2) {
+ i3 = (HEAP32[i5 >> 2] & -2) + -1 | 0;
i4 = HEAP32[i5 + 4 >> 2] | 0;
} else {
- i2 = 10;
+ i3 = 10;
i4 = (i1 & 255) >>> 1;
}
- if ((i4 | 0) == (i2 | 0)) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9__grow_byEjjjjjj(i5, i2, 1, i2, i2, 0);
+ if ((i4 | 0) == (i3 | 0)) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9__grow_byEjjjjjj(i5, i3, 1, i3, i3, 0);
if (!(HEAP8[i5 >> 0] & 1)) i2 = 7; else i2 = 8;
- } else if (i3) i2 = 8; else i2 = 7;
+ } else if (i2) i2 = 8; else i2 = 7;
if ((i2 | 0) == 7) {
HEAP8[i5 >> 0] = (i4 << 1) + 2;
i1 = i5 + 1 | 0;
@@ -64573,22 +64187,22 @@ function __ZNSt3__111__stdoutbufIwE4syncEv(i1) {
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0;
i10 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i5 = i10 + 8 | 0;
- i4 = i10;
+ i8 = i10 + 8 | 0;
+ i7 = i10;
i3 = i1 + 36 | 0;
- i6 = i1 + 40 | 0;
- i7 = i5 + 8 | 0;
- i8 = i5;
- i1 = i1 + 32 | 0;
+ i4 = i1 + 40 | 0;
+ i5 = i8 + 8 | 0;
+ i6 = i8;
+ i2 = i1 + 32 | 0;
L1 : while (1) {
- i2 = HEAP32[i3 >> 2] | 0;
- i2 = FUNCTION_TABLE_iiiiii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 31](i2, HEAP32[i6 >> 2] | 0, i5, i7, i4) | 0;
- i11 = (HEAP32[i4 >> 2] | 0) - i8 | 0;
- if ((_fwrite(i5, 1, i11, HEAP32[i1 >> 2] | 0) | 0) != (i11 | 0)) {
+ i1 = HEAP32[i3 >> 2] | 0;
+ i1 = FUNCTION_TABLE_iiiiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 20 >> 2] & 31](i1, HEAP32[i4 >> 2] | 0, i8, i5, i7) | 0;
+ i11 = (HEAP32[i7 >> 2] | 0) - i6 | 0;
+ if ((_fwrite(i8, 1, i11, HEAP32[i2 >> 2] | 0) | 0) != (i11 | 0)) {
i1 = -1;
break;
}
- switch (i2 | 0) {
+ switch (i1 | 0) {
case 1:
break;
case 2:
@@ -64603,7 +64217,7 @@ function __ZNSt3__111__stdoutbufIwE4syncEv(i1) {
}
}
}
- if ((i9 | 0) == 4) i1 = ((_fflush(HEAP32[i1 >> 2] | 0) | 0) != 0) << 31 >> 31;
+ if ((i9 | 0) == 4) i1 = ((_fflush(HEAP32[i2 >> 2] | 0) | 0) != 0) << 31 >> 31;
STACKTOP = i10;
return i1 | 0;
}
@@ -64613,22 +64227,22 @@ function __ZNSt3__111__stdoutbufIcE4syncEv(i1) {
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0;
i10 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i5 = i10 + 8 | 0;
- i4 = i10;
+ i8 = i10 + 8 | 0;
+ i7 = i10;
i3 = i1 + 36 | 0;
- i6 = i1 + 40 | 0;
- i7 = i5 + 8 | 0;
- i8 = i5;
- i1 = i1 + 32 | 0;
+ i4 = i1 + 40 | 0;
+ i5 = i8 + 8 | 0;
+ i6 = i8;
+ i2 = i1 + 32 | 0;
L1 : while (1) {
- i2 = HEAP32[i3 >> 2] | 0;
- i2 = FUNCTION_TABLE_iiiiii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 31](i2, HEAP32[i6 >> 2] | 0, i5, i7, i4) | 0;
- i11 = (HEAP32[i4 >> 2] | 0) - i8 | 0;
- if ((_fwrite(i5, 1, i11, HEAP32[i1 >> 2] | 0) | 0) != (i11 | 0)) {
+ i1 = HEAP32[i3 >> 2] | 0;
+ i1 = FUNCTION_TABLE_iiiiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 20 >> 2] & 31](i1, HEAP32[i4 >> 2] | 0, i8, i5, i7) | 0;
+ i11 = (HEAP32[i7 >> 2] | 0) - i6 | 0;
+ if ((_fwrite(i8, 1, i11, HEAP32[i2 >> 2] | 0) | 0) != (i11 | 0)) {
i1 = -1;
break;
}
- switch (i2 | 0) {
+ switch (i1 | 0) {
case 1:
break;
case 2:
@@ -64643,25 +64257,25 @@ function __ZNSt3__111__stdoutbufIcE4syncEv(i1) {
}
}
}
- if ((i9 | 0) == 4) i1 = ((_fflush(HEAP32[i1 >> 2] | 0) | 0) != 0) << 31 >> 31;
+ if ((i9 | 0) == 4) i1 = ((_fflush(HEAP32[i2 >> 2] | 0) | 0) != 0) << 31 >> 31;
STACKTOP = i10;
return i1 | 0;
}
-function __ZNSt3__13mapIN6cashew7IStringEiNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_iEEEEEixERS7_(i6, i3) {
+function __ZNSt3__13mapIN6cashew7IStringEiNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_iEEEEEixERS7_(i6, i4) {
i6 = i6 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i7 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i7 + 12 | 0;
- i2 = i7;
- i5 = __ZNSt3__13mapIN6cashew7IStringEiNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_iEEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS7_(i6, i4, i3) | 0;
- i1 = HEAP32[i5 >> 2] | 0;
+ i5 = i7 + 12 | 0;
+ i3 = i7;
+ i2 = __ZNSt3__13mapIN6cashew7IStringEiNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_iEEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS7_(i6, i5, i4) | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
- __ZNSt3__13mapIN6cashew7IStringEiNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_iEEEEE25__construct_node_with_keyERS7_(i2, i6, i3);
- i1 = HEAP32[i2 >> 2] | 0;
- __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEiEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSF_SF_(i6, HEAP32[i4 >> 2] | 0, i5, i1);
+ __ZNSt3__13mapIN6cashew7IStringEiNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_iEEEEE25__construct_node_with_keyERS7_(i3, i6, i4);
+ i1 = HEAP32[i3 >> 2] | 0;
+ __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEiEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSF_SF_(i6, HEAP32[i5 >> 2] | 0, i2, i1);
}
STACKTOP = i7;
return i1 + 20 | 0;
@@ -64675,19 +64289,19 @@ function __ZN4wasm22SExpressionWasmBuilder17parseCallOperandsINS_4HostEEEvRNS_7E
var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i10 = 0;
i10 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i7 = i10;
- i5 = i1 + 20 | 0;
- i6 = i1 + 24 | 0;
+ i5 = i10;
+ i6 = i1 + 20 | 0;
+ i7 = i1 + 24 | 0;
i4 = i1 + 16 | 0;
while (1) {
if (i2 >>> 0 >= (__ZN4wasm7Element4sizeEv(i8) | 0) >>> 0) break;
- i3 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i9, __ZN4wasm7ElementixEj(i8, i2) | 0) | 0;
- HEAP32[i7 >> 2] = i3;
- i1 = HEAP32[i5 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i6 >> 2] | 0) >>> 0) {
- HEAP32[i1 >> 2] = i3;
- HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i4, i7);
+ i1 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i9, __ZN4wasm7ElementixEj(i8, i2) | 0) | 0;
+ HEAP32[i5 >> 2] = i1;
+ i3 = HEAP32[i6 >> 2] | 0;
+ if (i3 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
+ HEAP32[i3 >> 2] = i1;
+ HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4;
+ } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i4, i5);
i2 = i2 + 1 | 0;
}
STACKTOP = i10;
@@ -64702,19 +64316,19 @@ function __ZN4wasm22SExpressionWasmBuilder17parseCallOperandsINS_4CallEEEvRNS_7E
var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i10 = 0;
i10 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i7 = i10;
- i5 = i1 + 12 | 0;
- i6 = i1 + 16 | 0;
+ i5 = i10;
+ i6 = i1 + 12 | 0;
+ i7 = i1 + 16 | 0;
i4 = i1 + 8 | 0;
while (1) {
if (i2 >>> 0 >= (__ZN4wasm7Element4sizeEv(i8) | 0) >>> 0) break;
- i3 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i9, __ZN4wasm7ElementixEj(i8, i2) | 0) | 0;
- HEAP32[i7 >> 2] = i3;
- i1 = HEAP32[i5 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i6 >> 2] | 0) >>> 0) {
- HEAP32[i1 >> 2] = i3;
- HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i4, i7);
+ i1 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i9, __ZN4wasm7ElementixEj(i8, i2) | 0) | 0;
+ HEAP32[i5 >> 2] = i1;
+ i3 = HEAP32[i6 >> 2] | 0;
+ if (i3 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) {
+ HEAP32[i3 >> 2] = i1;
+ HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4;
+ } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i4, i5);
i2 = i2 + 1 | 0;
}
STACKTOP = i10;
@@ -64729,9 +64343,9 @@ function __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6append
if (i5 | 0) {
i1 = HEAP8[i6 >> 0] | 0;
if (!(i1 & 1)) i2 = 10; else {
- i2 = HEAP32[i6 >> 2] | 0;
- i1 = i2 & 255;
- i2 = (i2 & -2) + -1 | 0;
+ i1 = HEAP32[i6 >> 2] | 0;
+ i2 = (i1 & -2) + -1 | 0;
+ i1 = i1 & 255;
}
if (!(i1 & 1)) i3 = (i1 & 255) >>> 1; else i3 = HEAP32[i6 + 4 >> 2] | 0;
if ((i2 - i3 | 0) >>> 0 < i5 >>> 0) {
@@ -64754,9 +64368,9 @@ function __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assign
var i1 = 0, i2 = 0, i3 = 0;
i1 = HEAP8[i6 >> 0] | 0;
if (!(i1 & 1)) i3 = 10; else {
- i3 = HEAP32[i6 >> 2] | 0;
- i1 = i3 & 255;
- i3 = (i3 & -2) + -1 | 0;
+ i1 = HEAP32[i6 >> 2] | 0;
+ i3 = (i1 & -2) + -1 | 0;
+ i1 = i1 & 255;
}
i2 = (i1 & 1) == 0;
do if (i3 >>> 0 >= i4 >>> 0) {
@@ -64803,9 +64417,9 @@ function __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6append
var i1 = 0, i2 = 0, i3 = 0;
i1 = HEAP8[i6 >> 0] | 0;
if (!(i1 & 1)) i2 = 10; else {
- i2 = HEAP32[i6 >> 2] | 0;
- i1 = i2 & 255;
- i2 = (i2 & -2) + -1 | 0;
+ i1 = HEAP32[i6 >> 2] | 0;
+ i2 = (i1 & -2) + -1 | 0;
+ i1 = i1 & 255;
}
if (!(i1 & 1)) i3 = (i1 & 255) >>> 1; else i3 = HEAP32[i6 + 4 >> 2] | 0;
if ((i2 - i3 | 0) >>> 0 >= i4 >>> 0) {
@@ -64867,9 +64481,9 @@ function __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assign
var i1 = 0, i2 = 0, i3 = 0;
i1 = HEAP8[i6 >> 0] | 0;
if (!(i1 & 1)) i3 = 1; else {
- i3 = HEAP32[i6 >> 2] | 0;
- i1 = i3 & 255;
- i3 = (i3 & -2) + -1 | 0;
+ i1 = HEAP32[i6 >> 2] | 0;
+ i3 = (i1 & -2) + -1 | 0;
+ i1 = i1 & 255;
}
i2 = (i1 & 1) == 0;
do if (i3 >>> 0 >= i4 >>> 0) {
@@ -64890,28 +64504,28 @@ function __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assign
return i6 | 0;
}
-function __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9__grow_byEjjjjjj(i8, i5, i1, i6, i4, i3) {
+function __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9__grow_byEjjjjjj(i8, i6, i1, i7, i5, i4) {
i8 = i8 | 0;
- i5 = i5 | 0;
- i1 = i1 | 0;
i6 = i6 | 0;
+ i1 = i1 | 0;
+ i7 = i7 | 0;
+ i5 = i5 | 0;
i4 = i4 | 0;
- i3 = i3 | 0;
- var i2 = 0, i7 = 0;
- if ((-17 - i5 | 0) >>> 0 < i1 >>> 0) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i8);
- if (!(HEAP8[i8 >> 0] & 1)) i7 = i8 + 1 | 0; else i7 = HEAP32[i8 + 8 >> 2] | 0;
- if (i5 >>> 0 < 2147483623) {
- i2 = i1 + i5 | 0;
- i1 = i5 << 1;
- i2 = i2 >>> 0 < i1 >>> 0 ? i1 : i2;
- i2 = i2 >>> 0 < 11 ? 11 : i2 + 16 & -16;
- } else i2 = -17;
- i1 = _malloc(i2) | 0;
- if (i4 | 0) _memcpy(i1 | 0, i7 | 0, i4 | 0) | 0;
- if ((i6 | 0) != (i4 | 0)) _memcpy(i1 + i4 + i3 | 0, i7 + i4 | 0, i6 - i4 | 0) | 0;
- if ((i5 | 0) != 10) _free(i7);
- HEAP32[i8 + 8 >> 2] = i1;
- HEAP32[i8 >> 2] = i2 | 1;
+ var i2 = 0, i3 = 0;
+ if ((-17 - i6 | 0) >>> 0 < i1 >>> 0) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i8);
+ if (!(HEAP8[i8 >> 0] & 1)) i3 = i8 + 1 | 0; else i3 = HEAP32[i8 + 8 >> 2] | 0;
+ if (i6 >>> 0 < 2147483623) {
+ i1 = i1 + i6 | 0;
+ i2 = i6 << 1;
+ i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1;
+ i1 = i1 >>> 0 < 11 ? 11 : i1 + 16 & -16;
+ } else i1 = -17;
+ i2 = _malloc(i1) | 0;
+ if (i5 | 0) _memcpy(i2 | 0, i3 | 0, i5 | 0) | 0;
+ if ((i7 | 0) != (i5 | 0)) _memcpy(i2 + i5 + i4 | 0, i3 + i5 | 0, i7 - i5 | 0) | 0;
+ if ((i6 | 0) != 10) _free(i3);
+ HEAP32[i8 + 8 >> 2] = i2;
+ HEAP32[i8 >> 2] = i1 | 1;
return;
}
@@ -64940,18 +64554,18 @@ function __ZN4wasm5Table5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj
var i2 = 0, i3 = 0, i4 = 0, i6 = 0, i8 = 0;
i6 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i6 + 4 | 0;
+ i2 = i6 + 4 | 0;
i3 = i6;
- __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i7, 12193, 0) | 0;
- i2 = HEAP32[i5 + 4 >> 2] | 0;
+ __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i7, 12767, 0) | 0;
+ i4 = HEAP32[i5 + 4 >> 2] | 0;
i1 = HEAP32[i5 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i2 | 0)) break;
+ if ((i1 | 0) == (i4 | 0)) break;
i8 = HEAP32[i1 >> 2] | 0;
i5 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i7, 32) | 0;
HEAP32[i3 >> 2] = i8;
- HEAP32[i4 >> 2] = HEAP32[i3 >> 2];
- __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i5, i4) | 0;
+ HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
+ __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i5, i2) | 0;
i1 = i1 + 4 | 0;
}
i8 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i7, 41) | 0;
@@ -64967,7 +64581,7 @@ function __ZNK10__cxxabiv117__class_type_info9can_catchEPKNS_16__shim_type_infoE
i7 = STACKTOP;
STACKTOP = STACKTOP + 64 | 0;
i5 = i7;
- if ((i6 | 0) != (i1 | 0)) if ((i1 | 0) != 0 ? (i3 = ___dynamic_cast(i1, 2368, 2336, 0) | 0, (i3 | 0) != 0) : 0) {
+ if ((i6 | 0) != (i1 | 0)) if ((i1 | 0) != 0 ? (i3 = ___dynamic_cast(i1, 2568, 2536, 0) | 0, (i3 | 0) != 0) : 0) {
i1 = i5;
i2 = i1 + 56 | 0;
do {
@@ -65010,12 +64624,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj9EEERAT__Kc(i2, i1) {
HEAP8[i1 + 2 >> 0] = i3 >> 16;
HEAP8[i1 + 3 >> 0] = i3 >> 24;
HEAP8[i2 + 9 >> 0] = 0;
- i2 = i2 + 12 | 0;
- i1 = 0;
+ i1 = i2 + 12 | 0;
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
return;
}
@@ -65024,12 +64638,12 @@ function __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE9pba
i6 = i6 | 0;
i1 = i1 | 0;
var i2 = 0, i3 = 0, i4 = 0, i5 = 0;
- i4 = i6 + 44 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- i3 = HEAP32[i6 + 24 >> 2] | 0;
- if (i2 >>> 0 < i3 >>> 0) {
- HEAP32[i4 >> 2] = i3;
- i2 = i3;
+ i3 = i6 + 44 | 0;
+ i2 = HEAP32[i3 >> 2] | 0;
+ i4 = HEAP32[i6 + 24 >> 2] | 0;
+ if (i2 >>> 0 < i4 >>> 0) {
+ HEAP32[i3 >> 2] = i4;
+ i2 = i4;
}
i5 = i6 + 12 | 0;
i3 = HEAP32[i5 >> 2] | 0;
@@ -65048,8 +64662,8 @@ function __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE9pba
break;
}
} else {
- i3 = i3 + -1 | 0;
i4 = i1 & 255;
+ i3 = i3 + -1 | 0;
}
HEAP32[i5 >> 2] = i3;
HEAP32[i6 + 16 >> 2] = i2;
@@ -65058,20 +64672,20 @@ function __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE9pba
return i1 | 0;
}
-function __ZNSt3__13mapIN4wasm4NameEjNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_jEEEEEixERS7_(i6, i3) {
+function __ZNSt3__13mapIN4wasm4NameEjNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_jEEEEEixERS7_(i6, i4) {
i6 = i6 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i7 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i7 + 12 | 0;
- i2 = i7;
- i5 = __ZNSt3__13mapIN4wasm4NameEjNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_jEEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS7_(i6, i4, i3) | 0;
- i1 = HEAP32[i5 >> 2] | 0;
+ i5 = i7 + 12 | 0;
+ i3 = i7;
+ i2 = __ZNSt3__13mapIN4wasm4NameEjNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_jEEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS7_(i6, i5, i4) | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
- __ZNSt3__13mapIN4wasm4NameEjNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_jEEEEE25__construct_node_with_keyERS7_(i2, i6, i3);
- i1 = HEAP32[i2 >> 2] | 0;
- __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEjEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSF_SF_(i6, HEAP32[i4 >> 2] | 0, i5, i1);
+ __ZNSt3__13mapIN4wasm4NameEjNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_jEEEEE25__construct_node_with_keyERS7_(i3, i6, i4);
+ i1 = HEAP32[i3 >> 2] | 0;
+ __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEjEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSF_SF_(i6, HEAP32[i5 >> 2] | 0, i2, i1);
}
STACKTOP = i7;
return i1 + 20 | 0;
@@ -65119,7 +64733,7 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
i9 = i7;
i10 = __ZNKSt3__18ios_base6getlocEv(i4) | 0;
HEAP32[i11 >> 2] = i10;
- i4 = __ZNKSt3__16locale9use_facetERNS0_2idE(i11, 38996) | 0;
+ i4 = __ZNKSt3__16locale9use_facetERNS0_2idE(i11, 40468) | 0;
__ZNSt3__114__shared_count16__release_sharedEv(i10) | 0;
HEAP32[i9 >> 2] = HEAP32[i2 >> 2];
HEAP32[i8 >> 2] = HEAP32[i9 >> 2];
@@ -65143,7 +64757,7 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
i9 = i7;
i10 = __ZNKSt3__18ios_base6getlocEv(i4) | 0;
HEAP32[i11 >> 2] = i10;
- i4 = __ZNKSt3__16locale9use_facetERNS0_2idE(i11, 38996) | 0;
+ i4 = __ZNKSt3__16locale9use_facetERNS0_2idE(i11, 40468) | 0;
__ZNSt3__114__shared_count16__release_sharedEv(i10) | 0;
HEAP32[i9 >> 2] = HEAP32[i2 >> 2];
HEAP32[i8 >> 2] = HEAP32[i9 >> 2];
@@ -65167,7 +64781,7 @@ function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
i9 = i7;
i10 = __ZNKSt3__18ios_base6getlocEv(i4) | 0;
HEAP32[i11 >> 2] = i10;
- i4 = __ZNKSt3__16locale9use_facetERNS0_2idE(i11, 38964) | 0;
+ i4 = __ZNKSt3__16locale9use_facetERNS0_2idE(i11, 40436) | 0;
__ZNSt3__114__shared_count16__release_sharedEv(i10) | 0;
HEAP32[i9 >> 2] = HEAP32[i2 >> 2];
HEAP32[i8 >> 2] = HEAP32[i9 >> 2];
@@ -65191,7 +64805,7 @@ function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
i9 = i7;
i10 = __ZNKSt3__18ios_base6getlocEv(i4) | 0;
HEAP32[i11 >> 2] = i10;
- i4 = __ZNKSt3__16locale9use_facetERNS0_2idE(i11, 38964) | 0;
+ i4 = __ZNKSt3__16locale9use_facetERNS0_2idE(i11, 40436) | 0;
__ZNSt3__114__shared_count16__release_sharedEv(i10) | 0;
HEAP32[i9 >> 2] = HEAP32[i2 >> 2];
HEAP32[i8 >> 2] = HEAP32[i9 >> 2];
@@ -65204,7 +64818,7 @@ function __ZN6cashew12ValueBuilder15setBlockContentENS_3RefES1_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
var i3 = 0;
- do if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i2, 0) | 0, 36912) | 0)) if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i2, 0) | 0, 36916) | 0) {
+ do if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i2, 0) | 0, 38384) | 0)) if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i2, 0) | 0, 38388) | 0) {
i3 = __ZN6cashew3RefixEj(i2, 3) | 0;
i3 = HEAP32[i3 >> 2] | 0;
i2 = __ZN6cashew3RefixEj(i1, 1) | 0;
@@ -65276,7 +64890,7 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
i9 = i7;
i10 = __ZNKSt3__18ios_base6getlocEv(i4) | 0;
HEAP32[i11 >> 2] = i10;
- i4 = __ZNKSt3__16locale9use_facetERNS0_2idE(i11, 38996) | 0;
+ i4 = __ZNKSt3__16locale9use_facetERNS0_2idE(i11, 40468) | 0;
__ZNSt3__114__shared_count16__release_sharedEv(i10) | 0;
HEAP32[i9 >> 2] = HEAP32[i2 >> 2];
HEAP32[i8 >> 2] = HEAP32[i9 >> 2];
@@ -65300,7 +64914,7 @@ function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
i9 = i7;
i10 = __ZNKSt3__18ios_base6getlocEv(i4) | 0;
HEAP32[i11 >> 2] = i10;
- i4 = __ZNKSt3__16locale9use_facetERNS0_2idE(i11, 38964) | 0;
+ i4 = __ZNKSt3__16locale9use_facetERNS0_2idE(i11, 40436) | 0;
__ZNSt3__114__shared_count16__release_sharedEv(i10) | 0;
HEAP32[i9 >> 2] = HEAP32[i2 >> 2];
HEAP32[i8 >> 2] = HEAP32[i9 >> 2];
@@ -65319,7 +64933,7 @@ function __ZN6cashew12ValueBuilder10makeSwitchENS_3RefE(i1) {
i6 = i2 + 4 | 0;
i4 = i2;
i5 = __ZN6cashew12ValueBuilder12makeRawArrayEi(3) | 0;
- i8 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(37004) | 0;
+ i8 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38476) | 0;
HEAP32[i7 >> 2] = i8;
HEAP32[i3 >> 2] = HEAP32[i7 >> 2];
i5 = __ZN6cashew5Value9push_backENS_3RefE(i5, i3) | 0;
@@ -65388,7 +65002,7 @@ function __ZN6cashew12ValueBuilder8makeCallENS_3RefE(i1) {
i6 = i2 + 4 | 0;
i4 = i2;
i5 = __ZN6cashew12ValueBuilder12makeRawArrayEi(3) | 0;
- i8 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(36984) | 0;
+ i8 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38456) | 0;
HEAP32[i7 >> 2] = i8;
HEAP32[i3 >> 2] = HEAP32[i7 >> 2];
i5 = __ZN6cashew5Value9push_backENS_3RefE(i5, i3) | 0;
@@ -65409,23 +65023,23 @@ function __ZN6cashew10IStringSetC2EPKc(i6, i1) {
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i5 = i7 + 8 | 0;
- i4 = i7;
+ i4 = i7 + 8 | 0;
+ i5 = i7;
HEAP32[i6 >> 2] = 0;
HEAP32[i6 + 4 >> 2] = 0;
HEAP32[i6 + 8 >> 2] = 0;
HEAP32[i6 + 12 >> 2] = 0;
HEAPF32[i6 + 16 >> 2] = 1.0;
- i2 = _strlen(i1) | 0;
- i2 = __Znaj((i2 | 0) < -1 ? -1 : i2 + 1 | 0) | 0;
- _strcpy(i2, i1) | 0;
+ i3 = _strlen(i1) | 0;
+ i3 = __Znaj((i3 | 0) < -1 ? -1 : i3 + 1 | 0) | 0;
+ _strcpy(i3, i1) | 0;
while (1) {
- i1 = _strchr(i2, 32) | 0;
- i3 = (i1 | 0) != 0;
- if (i3) HEAP8[i1 >> 0] = 0;
- __ZN6cashew7IStringC2EPKcb(i4, i2, 1);
- __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE15__insert_uniqueIS2_EENS_4pairINS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEEbEEOT_(i5, i6, i4);
- if (i3) i2 = i1 + 1 | 0; else break;
+ i1 = _strchr(i3, 32) | 0;
+ i2 = (i1 | 0) != 0;
+ if (i2) HEAP8[i1 >> 0] = 0;
+ __ZN6cashew7IStringC2EPKcb(i5, i3, 1);
+ __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE15__insert_uniqueIS2_EENS_4pairINS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEEbEEOT_(i4, i6, i5);
+ if (i2) i3 = i1 + 1 | 0; else break;
}
STACKTOP = i7;
return;
@@ -65436,18 +65050,18 @@ function __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9push_b
i6 = i6 | 0;
var i1 = 0, i2 = 0, i3 = 0, i4 = 0;
i1 = HEAP8[i5 >> 0] | 0;
- i3 = (i1 & 1) != 0;
- if (i3) {
- i2 = (HEAP32[i5 >> 2] & -2) + -1 | 0;
+ i2 = (i1 & 1) != 0;
+ if (i2) {
+ i3 = (HEAP32[i5 >> 2] & -2) + -1 | 0;
i4 = HEAP32[i5 + 4 >> 2] | 0;
} else {
- i2 = 1;
+ i3 = 1;
i4 = (i1 & 255) >>> 1;
}
- if ((i4 | 0) == (i2 | 0)) {
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9__grow_byEjjjjjj(i5, i2, 1, i2, i2, 0, 0);
+ if ((i4 | 0) == (i3 | 0)) {
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9__grow_byEjjjjjj(i5, i3, 1, i3, i3, 0, 0);
if (!(HEAP8[i5 >> 0] & 1)) i2 = 7; else i2 = 8;
- } else if (i3) i2 = 8; else i2 = 7;
+ } else if (i2) i2 = 8; else i2 = 7;
if ((i2 | 0) == 7) {
HEAP8[i5 >> 0] = (i4 << 1) + 2;
i1 = i5 + 4 | 0;
@@ -65461,20 +65075,20 @@ function __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9push_b
return;
}
-function __ZNSt3__13mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixEOS2_(i5, i2) {
+function __ZNSt3__13mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixEOS2_(i5, i3) {
i5 = i5 | 0;
- i2 = i2 | 0;
- var i1 = 0, i3 = 0, i4 = 0, i6 = 0;
+ i3 = i3 | 0;
+ var i1 = 0, i2 = 0, i4 = 0, i6 = 0;
i6 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i3 = i6;
- i4 = __ZNSt3__13mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS9_(i5, i3, i2) | 0;
- i1 = HEAP32[i4 >> 2] | 0;
+ i4 = i6;
+ i2 = __ZNSt3__13mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS9_(i5, i4, i3) | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
i1 = __Znwj(24) | 0;
- HEAP32[i1 + 16 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i1 + 16 >> 2] = HEAP32[i3 >> 2];
HEAP32[i1 + 20 >> 2] = 0;
- __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i5, HEAP32[i3 >> 2] | 0, i4, i1);
+ __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i5, HEAP32[i4 >> 2] | 0, i2, i1);
}
STACKTOP = i6;
return i1 + 20 | 0;
@@ -65486,19 +65100,19 @@ function __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__init
i6 = i6 | 0;
var i2 = 0, i3 = 0, i5 = 0, i7 = 0;
i5 = i1;
- i3 = i6 - i5 | 0;
- i2 = i3 >> 2;
- if (i2 >>> 0 > 1073741807) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i4);
- if (i2 >>> 0 < 2) {
- HEAP8[i4 >> 0] = i3 >>> 1;
+ i2 = i6 - i5 | 0;
+ i3 = i2 >> 2;
+ if (i3 >>> 0 > 1073741807) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i4);
+ if (i3 >>> 0 < 2) {
+ HEAP8[i4 >> 0] = i2 >>> 1;
i4 = i4 + 4 | 0;
} else {
- i7 = i2 + 4 & -4;
- i3 = __Znwj(i7 << 2) | 0;
- HEAP32[i4 + 8 >> 2] = i3;
+ i7 = i3 + 4 & -4;
+ i2 = __Znwj(i7 << 2) | 0;
+ HEAP32[i4 + 8 >> 2] = i2;
HEAP32[i4 >> 2] = i7 | 1;
- HEAP32[i4 + 4 >> 2] = i2;
- i4 = i3;
+ HEAP32[i4 + 4 >> 2] = i3;
+ i4 = i2;
}
i3 = (i6 - i5 | 0) >>> 2;
i2 = i4;
@@ -65520,12 +65134,12 @@ function __ZNSt3__16vectorIN4wasm6Memory7SegmentENS_9allocatorIS3_EEEC2ERKS6_(i4
i6 = i4 + 4 | 0;
HEAP32[i6 >> 2] = 0;
HEAP32[i4 + 8 >> 2] = 0;
- i3 = i5 + 4 | 0;
- i1 = HEAP32[i3 >> 2] | 0;
- i2 = HEAP32[i5 >> 2] | 0;
- L1 : do if ((i1 | 0) != (i2 | 0)) {
- __ZNSt3__16vectorIN4wasm6Memory7SegmentENS_9allocatorIS3_EEE8allocateEj(i4, (i1 - i2 | 0) / 12 | 0);
- i2 = HEAP32[i3 >> 2] | 0;
+ i1 = i5 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ i3 = HEAP32[i5 >> 2] | 0;
+ L1 : do if ((i2 | 0) != (i3 | 0)) {
+ __ZNSt3__16vectorIN4wasm6Memory7SegmentENS_9allocatorIS3_EEE8allocateEj(i4, (i2 - i3 | 0) / 12 | 0);
+ i2 = HEAP32[i1 >> 2] | 0;
i1 = HEAP32[i5 >> 2] | 0;
while (1) {
if ((i1 | 0) == (i2 | 0)) break L1;
@@ -65546,26 +65160,26 @@ function __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2
var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0;
i4 = HEAP32[i1 >> 2] | 0;
HEAP32[i1 >> 2] = 0;
- i7 = i1 + 4 | 0;
- i5 = HEAP32[i7 >> 2] | 0;
- HEAP32[i7 >> 2] = 0;
+ i6 = i1 + 4 | 0;
+ i5 = HEAP32[i6 >> 2] | 0;
+ HEAP32[i6 >> 2] = 0;
HEAP32[i2 >> 2] = i4;
HEAP32[i2 + 4 >> 2] = i5;
- i7 = i2 + 8 | 0;
- i8 = i1 + 8 | 0;
- i3 = HEAP32[i8 >> 2] | 0;
- HEAP32[i7 >> 2] = i3;
- i6 = i1 + 12 | 0;
- i9 = HEAP32[i6 >> 2] | 0;
+ i6 = i2 + 8 | 0;
+ i7 = i1 + 8 | 0;
+ i3 = HEAP32[i7 >> 2] | 0;
+ HEAP32[i6 >> 2] = i3;
+ i8 = i1 + 12 | 0;
+ i9 = HEAP32[i8 >> 2] | 0;
HEAP32[i2 + 12 >> 2] = i9;
HEAP32[i2 + 16 >> 2] = HEAP32[i1 + 16 >> 2];
if (i9 | 0) {
i1 = HEAP32[i3 + 4 >> 2] | 0;
i2 = i5 + -1 | 0;
if (!(i2 & i5)) i1 = i2 & i1; else i1 = (i1 >>> 0) % (i5 >>> 0) | 0;
- HEAP32[i4 + (i1 << 2) >> 2] = i7;
+ HEAP32[i4 + (i1 << 2) >> 2] = i6;
+ HEAP32[i7 >> 2] = 0;
HEAP32[i8 >> 2] = 0;
- HEAP32[i6 >> 2] = 0;
}
return;
}
@@ -65619,18 +65233,18 @@ function __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_b
i6 = i6 | 0;
var i1 = 0, i2 = 0, i3 = 0, i4 = 0;
i1 = HEAP8[i5 >> 0] | 0;
- i3 = (i1 & 1) != 0;
- if (i3) {
- i2 = (HEAP32[i5 >> 2] & -2) + -1 | 0;
+ i2 = (i1 & 1) != 0;
+ if (i2) {
+ i3 = (HEAP32[i5 >> 2] & -2) + -1 | 0;
i4 = HEAP32[i5 + 4 >> 2] | 0;
} else {
- i2 = 10;
+ i3 = 10;
i4 = (i1 & 255) >>> 1;
}
- if ((i4 | 0) == (i2 | 0)) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9__grow_byEjjjjjj(i5, i2, 1, i2, i2, 0, 0);
+ if ((i4 | 0) == (i3 | 0)) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9__grow_byEjjjjjj(i5, i3, 1, i3, i3, 0, 0);
if (!(HEAP8[i5 >> 0] & 1)) i2 = 7; else i2 = 8;
- } else if (i3) i2 = 8; else i2 = 7;
+ } else if (i2) i2 = 8; else i2 = 7;
if ((i2 | 0) == 7) {
HEAP8[i5 >> 0] = (i4 << 1) + 2;
i1 = i5 + 1 | 0;
@@ -65662,7 +65276,7 @@ function __ZN4wasm17SExpressionParser14skipWhitespaceEv(i3) {
case 40:
{
if ((HEAP8[i1 + 1 >> 0] | 0) != 59) break L1;
- i1 = (_strstr(i1, 16014) | 0) + 2 | 0;
+ i1 = (_strstr(i1, 16597) | 0) + 2 | 0;
HEAP32[i3 >> 2] = i1;
continue L1;
}
@@ -65698,7 +65312,7 @@ function __ZN6cashew12ValueBuilder12makeIndexingENS_3RefES1_(i2, i1) {
i7 = i3 + 4 | 0;
i5 = i3;
i6 = __ZN6cashew12ValueBuilder12makeRawArrayEi(3) | 0;
- i9 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(36980) | 0;
+ i9 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38452) | 0;
HEAP32[i8 >> 2] = i9;
HEAP32[i4 >> 2] = HEAP32[i8 >> 2];
i6 = __ZN6cashew5Value9push_backENS_3RefE(i6, i4) | 0;
@@ -65712,20 +65326,20 @@ function __ZN6cashew12ValueBuilder12makeIndexingENS_3RefES1_(i2, i1) {
return i2 | 0;
}
-function __ZNSt3__13mapIN4wasm4NameEPNS1_8FunctionENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixEOS2_(i5, i2) {
+function __ZNSt3__13mapIN4wasm4NameEPNS1_8FunctionENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixEOS2_(i5, i3) {
i5 = i5 | 0;
- i2 = i2 | 0;
- var i1 = 0, i3 = 0, i4 = 0, i6 = 0;
+ i3 = i3 | 0;
+ var i1 = 0, i2 = 0, i4 = 0, i6 = 0;
i6 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i3 = i6;
- i4 = __ZNSt3__13mapIN4wasm4NameEPNS1_8FunctionENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS9_(i5, i3, i2) | 0;
- i1 = HEAP32[i4 >> 2] | 0;
+ i4 = i6;
+ i2 = __ZNSt3__13mapIN4wasm4NameEPNS1_8FunctionENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS9_(i5, i4, i3) | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
i1 = __Znwj(24) | 0;
- HEAP32[i1 + 16 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i1 + 16 >> 2] = HEAP32[i3 >> 2];
HEAP32[i1 + 20 >> 2] = 0;
- __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i5, HEAP32[i3 >> 2] | 0, i4, i1);
+ __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i5, HEAP32[i4 >> 2] | 0, i2, i1);
}
STACKTOP = i6;
return i1 + 20 | 0;
@@ -65737,19 +65351,19 @@ function __ZN4wasm15Asm2WasmBuilder8blockifyEPNS_10ExpressionE(i2, i1) {
var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
i6 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i5 = i6;
- HEAP32[i5 >> 2] = i1;
- i4 = i1;
+ i4 = i6;
+ HEAP32[i4 >> 2] = i1;
+ i5 = i1;
do if (!(__ZN4wasm10Expression2isINS_5BlockEEEbv(i1) | 0)) {
i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0;
- i3 = i1 + 16 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 20 >> 2] | 0)) {
- __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i1 + 12 | 0, i5);
+ i2 = i1 + 16 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 20 >> 2] | 0)) {
+ __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i1 + 12 | 0, i4);
break;
} else {
- HEAP32[i2 >> 2] = i4;
- HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + 4;
+ HEAP32[i3 >> 2] = i5;
+ HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4;
break;
}
} else i1 = __ZN4wasm10Expression8dyn_castINS_5BlockEEEPT_v(i1) | 0; while (0);
@@ -65757,20 +65371,20 @@ function __ZN4wasm15Asm2WasmBuilder8blockifyEPNS_10ExpressionE(i2, i1) {
return i1 | 0;
}
-function __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixEOS2_(i5, i2) {
+function __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixEOS2_(i5, i3) {
i5 = i5 | 0;
- i2 = i2 | 0;
- var i1 = 0, i3 = 0, i4 = 0, i6 = 0;
+ i3 = i3 | 0;
+ var i1 = 0, i2 = 0, i4 = 0, i6 = 0;
i6 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i3 = i6;
- i4 = __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS8_(i5, i3, i2) | 0;
- i1 = HEAP32[i4 >> 2] | 0;
+ i4 = i6;
+ i2 = __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS8_(i5, i4, i3) | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
i1 = __Znwj(24) | 0;
- HEAP32[i1 + 16 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i1 + 16 >> 2] = HEAP32[i3 >> 2];
HEAP32[i1 + 20 >> 2] = 0;
- __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSG_SG_(i5, HEAP32[i3 >> 2] | 0, i4, i1);
+ __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSG_SG_(i5, HEAP32[i4 >> 2] | 0, i2, i1);
}
STACKTOP = i6;
return i1 + 20 | 0;
@@ -65787,7 +65401,7 @@ function __ZN6cashew12ValueBuilder9makeWhileENS_3RefES1_(i2, i1) {
i7 = i3 + 4 | 0;
i5 = i3;
i6 = __ZN6cashew12ValueBuilder12makeRawArrayEi(3) | 0;
- i9 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(36964) | 0;
+ i9 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38436) | 0;
HEAP32[i8 >> 2] = i9;
HEAP32[i4 >> 2] = HEAP32[i8 >> 2];
i6 = __ZN6cashew5Value9push_backENS_3RefE(i6, i4) | 0;
@@ -65828,20 +65442,20 @@ function __ZNSt3__16vectorIN4wasm6Memory7SegmentENS_9allocatorIS3_EEE26__swap_ou
return;
}
-function __ZNSt3__13mapIN4wasm4NameEPNS1_6ExportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixEOS2_(i5, i2) {
+function __ZNSt3__13mapIN4wasm4NameEPNS1_6ExportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixEOS2_(i5, i3) {
i5 = i5 | 0;
- i2 = i2 | 0;
- var i1 = 0, i3 = 0, i4 = 0, i6 = 0;
+ i3 = i3 | 0;
+ var i1 = 0, i2 = 0, i4 = 0, i6 = 0;
i6 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i3 = i6;
- i4 = __ZNSt3__13mapIN4wasm4NameEPNS1_6ExportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS9_(i5, i3, i2) | 0;
- i1 = HEAP32[i4 >> 2] | 0;
+ i4 = i6;
+ i2 = __ZNSt3__13mapIN4wasm4NameEPNS1_6ExportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE16__find_equal_keyERPNS_16__tree_node_baseIPvEERS9_(i5, i4, i3) | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
i1 = __Znwj(24) | 0;
- HEAP32[i1 + 16 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i1 + 16 >> 2] = HEAP32[i3 >> 2];
HEAP32[i1 + 20 >> 2] = 0;
- __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i5, HEAP32[i3 >> 2] | 0, i4, i1);
+ __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i5, HEAP32[i4 >> 2] | 0, i2, i1);
}
STACKTOP = i6;
return i1 + 20 | 0;
@@ -65858,7 +65472,7 @@ function __ZN6cashew12ValueBuilder6makeDoENS_3RefES1_(i1, i2) {
i7 = i3 + 4 | 0;
i5 = i3;
i6 = __ZN6cashew12ValueBuilder12makeRawArrayEi(3) | 0;
- i9 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(36968) | 0;
+ i9 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38440) | 0;
HEAP32[i8 >> 2] = i9;
HEAP32[i4 >> 2] = HEAP32[i8 >> 2];
i6 = __ZN6cashew5Value9push_backENS_3RefE(i6, i4) | 0;
@@ -65899,6 +65513,58 @@ function __ZNSt3__16vectorIPNS0_IN6cashew3RefENS_9allocatorIS2_EEEENS3_IS6_EEE26
return;
}
+function __ZNKSt3__120__time_get_c_storageIwE7__am_pmEv(i1) {
+ i1 = i1 | 0;
+ var i2 = 0;
+ if ((HEAP8[37528] | 0) == 0 ? ___cxa_guard_acquire(37528) | 0 : 0) {
+ if ((HEAP8[37536] | 0) == 0 ? ___cxa_guard_acquire(37536) | 0 : 0) {
+ i1 = 41784;
+ do {
+ i2 = 0;
+ while (1) {
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
+ }
+ i1 = i1 + 12 | 0;
+ } while ((i1 | 0) != 42072);
+ ___cxa_atexit(200, 0, ___dso_handle | 0) | 0;
+ ___cxa_guard_release(37536);
+ }
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41784, 10272) | 0;
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(41796, 10284) | 0;
+ HEAP32[10518] = 41784;
+ ___cxa_guard_release(37528);
+ }
+ return HEAP32[10518] | 0;
+}
+
+function __ZNKSt3__120__time_get_c_storageIcE7__am_pmEv(i1) {
+ i1 = i1 | 0;
+ var i2 = 0;
+ if ((HEAP8[37448] | 0) == 0 ? ___cxa_guard_acquire(37448) | 0 : 0) {
+ if ((HEAP8[37456] | 0) == 0 ? ___cxa_guard_acquire(37456) | 0 : 0) {
+ i1 = 40972;
+ do {
+ i2 = 0;
+ while (1) {
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
+ }
+ i1 = i1 + 12 | 0;
+ } while ((i1 | 0) != 41260);
+ ___cxa_atexit(196, 0, ___dso_handle | 0) | 0;
+ ___cxa_guard_release(37456);
+ }
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40972, 33355) | 0;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(40984, 33358) | 0;
+ HEAP32[10315] = 40972;
+ ___cxa_guard_release(37448);
+ }
+ return HEAP32[10315] | 0;
+}
+
function __ZNSt3__16vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
@@ -65926,58 +65592,6 @@ function __ZNSt3__16vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE26_
return;
}
-function __ZNKSt3__120__time_get_c_storageIwE7__am_pmEv(i1) {
- i1 = i1 | 0;
- var i2 = 0;
- if ((HEAP8[36064] | 0) == 0 ? ___cxa_guard_acquire(36064) | 0 : 0) {
- if ((HEAP8[36072] | 0) == 0 ? ___cxa_guard_acquire(36072) | 0 : 0) {
- i2 = 40312;
- do {
- i1 = 0;
- while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
- }
- i2 = i2 + 12 | 0;
- } while ((i2 | 0) != 40600);
- ___cxa_atexit(179, 0, ___dso_handle | 0) | 0;
- ___cxa_guard_release(36072);
- }
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40312, 9704) | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(40324, 9716) | 0;
- HEAP32[10150] = 40312;
- ___cxa_guard_release(36064);
- }
- return HEAP32[10150] | 0;
-}
-
-function __ZNKSt3__120__time_get_c_storageIcE7__am_pmEv(i1) {
- i1 = i1 | 0;
- var i2 = 0;
- if ((HEAP8[35984] | 0) == 0 ? ___cxa_guard_acquire(35984) | 0 : 0) {
- if ((HEAP8[35992] | 0) == 0 ? ___cxa_guard_acquire(35992) | 0 : 0) {
- i2 = 39500;
- do {
- i1 = 0;
- while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
- }
- i2 = i2 + 12 | 0;
- } while ((i2 | 0) != 39788);
- ___cxa_atexit(175, 0, ___dso_handle | 0) | 0;
- ___cxa_guard_release(35992);
- }
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39500, 31891) | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(39512, 31894) | 0;
- HEAP32[9947] = 39500;
- ___cxa_guard_release(35984);
- }
- return HEAP32[9947] | 0;
-}
-
function __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEERNS_7ElementE(i3, i1) {
i3 = i3 | 0;
i1 = i1 | 0;
@@ -65992,7 +65606,7 @@ function __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEERNS_7Elemen
__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEERNS_7ElementE(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i3, 32) | 0, i4) | 0;
i1 = i1 + 4 | 0;
}
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i3, 16093) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i3, 16676) | 0;
}
return i3 | 0;
}
@@ -66262,6 +65876,54 @@ function __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE26__swap_out_circ
return;
}
+function __ZNSt3__114__num_put_base12__format_intEPcPKcbj(i1, i2, i5, i4) {
+ i1 = i1 | 0;
+ i2 = i2 | 0;
+ i5 = i5 | 0;
+ i4 = i4 | 0;
+ var i3 = 0;
+ if (i4 & 2048) {
+ HEAP8[i1 >> 0] = 43;
+ i1 = i1 + 1 | 0;
+ }
+ if (!(i4 & 512)) i3 = i2; else {
+ HEAP8[i1 >> 0] = 35;
+ i3 = i2;
+ i1 = i1 + 1 | 0;
+ }
+ while (1) {
+ i2 = HEAP8[i3 >> 0] | 0;
+ if (!(i2 << 24 >> 24)) break;
+ HEAP8[i1 >> 0] = i2;
+ i3 = i3 + 1 | 0;
+ i1 = i1 + 1 | 0;
+ }
+ L10 : do switch (i4 & 74 | 0) {
+ case 64:
+ {
+ HEAP8[i1 >> 0] = 111;
+ break;
+ }
+ case 8:
+ if (!(i4 & 16384)) {
+ HEAP8[i1 >> 0] = 120;
+ break L10;
+ } else {
+ HEAP8[i1 >> 0] = 88;
+ break L10;
+ }
+ default:
+ if (i5) {
+ HEAP8[i1 >> 0] = 100;
+ break L10;
+ } else {
+ HEAP8[i1 >> 0] = 117;
+ break L10;
+ }
+ } while (0);
+ return;
+}
+
function __ZN4wasm22SExpressionWasmBuilder12makeSetLocalERNS_7ElementE(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
@@ -66273,7 +65935,7 @@ function __ZN4wasm22SExpressionWasmBuilder12makeSetLocalERNS_7ElementE(i2, i1) {
i1 = __ZN4wasm7Element4listEv(i1) | 0;
i1 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i2, HEAP32[(HEAP32[i1 >> 2] | 0) + 8 >> 2] | 0) | 0;
HEAP32[i3 + 12 >> 2] = i1;
- i2 = __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i2 + 56 | 0, i3 + 8 | 0) | 0;
+ i2 = __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i2 + 60 | 0, i3 + 8 | 0) | 0;
HEAP32[i3 + 4 >> 2] = HEAP32[i2 >> 2];
return i3 | 0;
}
@@ -66440,26 +66102,26 @@ function __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEE26__swap_out_circular
return;
}
-function _fputc(i3, i6) {
- i3 = i3 | 0;
+function _fputc(i5, i6) {
+ i5 = i5 | 0;
i6 = i6 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i7 = 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0;
if ((HEAP32[i6 + 76 >> 2] | 0) >= 0 ? (___lockfile(i6) | 0) != 0 : 0) {
- if ((HEAP8[i6 + 75 >> 0] | 0) != (i3 | 0) ? (i5 = i6 + 20 | 0, i2 = HEAP32[i5 >> 2] | 0, i2 >>> 0 < (HEAP32[i6 + 16 >> 2] | 0) >>> 0) : 0) {
- HEAP32[i5 >> 2] = i2 + 1;
- HEAP8[i2 >> 0] = i3;
- i1 = i3 & 255;
- } else i1 = ___overflow(i6, i3) | 0;
+ if ((HEAP8[i6 + 75 >> 0] | 0) != (i5 | 0) ? (i2 = i6 + 20 | 0, i3 = HEAP32[i2 >> 2] | 0, i3 >>> 0 < (HEAP32[i6 + 16 >> 2] | 0) >>> 0) : 0) {
+ HEAP32[i2 >> 2] = i3 + 1;
+ HEAP8[i3 >> 0] = i5;
+ i1 = i5 & 255;
+ } else i1 = ___overflow(i6, i5) | 0;
___unlockfile(i6);
} else i7 = 3;
do if ((i7 | 0) == 3) {
- if ((HEAP8[i6 + 75 >> 0] | 0) != (i3 | 0) ? (i4 = i6 + 20 | 0, i1 = HEAP32[i4 >> 2] | 0, i1 >>> 0 < (HEAP32[i6 + 16 >> 2] | 0) >>> 0) : 0) {
+ if ((HEAP8[i6 + 75 >> 0] | 0) != (i5 | 0) ? (i4 = i6 + 20 | 0, i1 = HEAP32[i4 >> 2] | 0, i1 >>> 0 < (HEAP32[i6 + 16 >> 2] | 0) >>> 0) : 0) {
HEAP32[i4 >> 2] = i1 + 1;
- HEAP8[i1 >> 0] = i3;
- i1 = i3 & 255;
+ HEAP8[i1 >> 0] = i5;
+ i1 = i5 & 255;
break;
}
- i1 = ___overflow(i6, i3) | 0;
+ i1 = ___overflow(i6, i5) | 0;
} while (0);
return i1 | 0;
}
@@ -66475,9 +66137,9 @@ function __ZNSt3__19__num_getIwE17__stage2_int_prepERNS_8ios_baseEPwRw(i4, i2, i
i6 = i5;
i2 = __ZNKSt3__18ios_base6getlocEv(i2) | 0;
HEAP32[i6 >> 2] = i2;
- i7 = __ZNKSt3__16locale9use_facetERNS0_2idE(i6, 38996) | 0;
- FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i7 >> 2] | 0) + 48 >> 2] & 7](i7, 31159, 31185, i1) | 0;
- i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i6, 39004) | 0;
+ i7 = __ZNKSt3__16locale9use_facetERNS0_2idE(i6, 40468) | 0;
+ FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i7 >> 2] | 0) + 48 >> 2] & 7](i7, 32623, 32649, i1) | 0;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i6, 40476) | 0;
i6 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 16 >> 2] & 127](i1) | 0;
HEAP32[i3 >> 2] = i6;
FUNCTION_TABLE_vii[HEAP32[(HEAP32[i1 >> 2] | 0) + 20 >> 2] & 127](i4, i1);
@@ -66507,57 +66169,57 @@ function __ZNSt3__16vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_
return;
}
-function __ZNSt3__119__double_or_nothingIwEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i3, i5, i4) {
- i3 = i3 | 0;
- i5 = i5 | 0;
- i4 = i4 | 0;
- var i1 = 0, i2 = 0, i6 = 0, i7 = 0, i8 = 0;
- i6 = i3 + 4 | 0;
- i2 = (HEAP32[i6 >> 2] | 0) != 181;
- i1 = HEAP32[i3 >> 2] | 0;
- i7 = (HEAP32[i4 >> 2] | 0) - i1 | 0;
- i7 = i7 >>> 0 < 2147483647 ? i7 << 1 : -1;
- i8 = (HEAP32[i5 >> 2] | 0) - i1 >> 2;
- i1 = _realloc(i2 ? i1 : 0, i7) | 0;
+function __ZNSt3__119__double_or_nothingIwEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i6, i8, i7) {
+ i6 = i6 | 0;
+ i8 = i8 | 0;
+ i7 = i7 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0;
+ i4 = i6 + 4 | 0;
+ i2 = (HEAP32[i4 >> 2] | 0) != 202;
+ i1 = HEAP32[i6 >> 2] | 0;
+ i3 = (HEAP32[i7 >> 2] | 0) - i1 | 0;
+ i3 = i3 >>> 0 < 2147483647 ? i3 << 1 : -1;
+ i5 = (HEAP32[i8 >> 2] | 0) - i1 >> 2;
+ i1 = _realloc(i2 ? i1 : 0, i3) | 0;
if (!i1) __ZSt17__throw_bad_allocv();
if (!i2) {
- i2 = HEAP32[i3 >> 2] | 0;
- HEAP32[i3 >> 2] = i1;
+ i2 = HEAP32[i6 >> 2] | 0;
+ HEAP32[i6 >> 2] = i1;
if (i2) {
- FUNCTION_TABLE_vi[HEAP32[i6 >> 2] & 255](i2);
- i1 = HEAP32[i3 >> 2] | 0;
+ FUNCTION_TABLE_vi[HEAP32[i4 >> 2] & 255](i2);
+ i1 = HEAP32[i6 >> 2] | 0;
}
- } else HEAP32[i3 >> 2] = i1;
- HEAP32[i6 >> 2] = 182;
- HEAP32[i5 >> 2] = i1 + (i8 << 2);
- HEAP32[i4 >> 2] = (HEAP32[i3 >> 2] | 0) + (i7 >>> 2 << 2);
+ } else HEAP32[i6 >> 2] = i1;
+ HEAP32[i4 >> 2] = 203;
+ HEAP32[i8 >> 2] = i1 + (i5 << 2);
+ HEAP32[i7 >> 2] = (HEAP32[i6 >> 2] | 0) + (i3 >>> 2 << 2);
return;
}
-function __ZNSt3__119__double_or_nothingIjEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i3, i5, i4) {
- i3 = i3 | 0;
- i5 = i5 | 0;
- i4 = i4 | 0;
- var i1 = 0, i2 = 0, i6 = 0, i7 = 0, i8 = 0;
- i6 = i3 + 4 | 0;
- i2 = (HEAP32[i6 >> 2] | 0) != 181;
- i1 = HEAP32[i3 >> 2] | 0;
- i7 = (HEAP32[i4 >> 2] | 0) - i1 | 0;
- i7 = i7 >>> 0 < 2147483647 ? i7 << 1 : -1;
- i8 = (HEAP32[i5 >> 2] | 0) - i1 >> 2;
- i1 = _realloc(i2 ? i1 : 0, i7) | 0;
+function __ZNSt3__119__double_or_nothingIjEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i6, i8, i7) {
+ i6 = i6 | 0;
+ i8 = i8 | 0;
+ i7 = i7 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0;
+ i4 = i6 + 4 | 0;
+ i2 = (HEAP32[i4 >> 2] | 0) != 202;
+ i1 = HEAP32[i6 >> 2] | 0;
+ i3 = (HEAP32[i7 >> 2] | 0) - i1 | 0;
+ i3 = i3 >>> 0 < 2147483647 ? i3 << 1 : -1;
+ i5 = (HEAP32[i8 >> 2] | 0) - i1 >> 2;
+ i1 = _realloc(i2 ? i1 : 0, i3) | 0;
if (!i1) __ZSt17__throw_bad_allocv();
if (!i2) {
- i2 = HEAP32[i3 >> 2] | 0;
- HEAP32[i3 >> 2] = i1;
+ i2 = HEAP32[i6 >> 2] | 0;
+ HEAP32[i6 >> 2] = i1;
if (i2) {
- FUNCTION_TABLE_vi[HEAP32[i6 >> 2] & 255](i2);
- i1 = HEAP32[i3 >> 2] | 0;
+ FUNCTION_TABLE_vi[HEAP32[i4 >> 2] & 255](i2);
+ i1 = HEAP32[i6 >> 2] | 0;
}
- } else HEAP32[i3 >> 2] = i1;
- HEAP32[i6 >> 2] = 182;
- HEAP32[i5 >> 2] = i1 + (i8 << 2);
- HEAP32[i4 >> 2] = (HEAP32[i3 >> 2] | 0) + (i7 >>> 2 << 2);
+ } else HEAP32[i6 >> 2] = i1;
+ HEAP32[i4 >> 2] = 203;
+ HEAP32[i8 >> 2] = i1 + (i5 << 2);
+ HEAP32[i7 >> 2] = (HEAP32[i6 >> 2] | 0) + (i3 >>> 2 << 2);
return;
}
@@ -66602,9 +66264,9 @@ function __ZNSt3__19__num_getIcE17__stage2_int_prepERNS_8ios_baseEPcRc(i4, i2, i
i6 = i5;
i2 = __ZNKSt3__18ios_base6getlocEv(i2) | 0;
HEAP32[i6 >> 2] = i2;
- i7 = __ZNKSt3__16locale9use_facetERNS0_2idE(i6, 38964) | 0;
- FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i7 >> 2] | 0) + 32 >> 2] & 7](i7, 31159, 31185, i1) | 0;
- i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i6, 38976) | 0;
+ i7 = __ZNKSt3__16locale9use_facetERNS0_2idE(i6, 40436) | 0;
+ FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i7 >> 2] | 0) + 32 >> 2] & 7](i7, 32623, 32649, i1) | 0;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i6, 40448) | 0;
i6 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 16 >> 2] & 127](i1) | 0;
HEAP8[i3 >> 0] = i6;
FUNCTION_TABLE_vii[HEAP32[(HEAP32[i1 >> 2] | 0) + 20 >> 2] & 127](i4, i1);
@@ -66613,25 +66275,55 @@ function __ZNSt3__19__num_getIcE17__stage2_int_prepERNS_8ios_baseEPcRc(i4, i2, i
return;
}
-function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner9visitLoopEPNS_4LoopE(i3, i8, i5) {
+function __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initIPcEENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueEvE4typeES9_S9_(i3, i1, i6) {
i3 = i3 | 0;
+ i1 = i1 | 0;
+ i6 = i6 | 0;
+ var i2 = 0, i4 = 0, i5 = 0, i7 = 0;
+ i4 = i1;
+ i2 = i6 - i4 | 0;
+ if (i2 >>> 0 > 4294967279) __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i3);
+ if (i2 >>> 0 < 11) {
+ HEAP8[i3 >> 0] = i2 << 1;
+ i5 = i3 + 1 | 0;
+ } else {
+ i7 = i2 + 16 & -16;
+ i5 = __Znwj(i7) | 0;
+ HEAP32[i3 + 8 >> 2] = i5;
+ HEAP32[i3 >> 2] = i7 | 1;
+ HEAP32[i3 + 4 >> 2] = i2;
+ }
+ i3 = i6 - i4 | 0;
+ i2 = i5;
+ while (1) {
+ if ((i1 | 0) == (i6 | 0)) break;
+ HEAP8[i2 >> 0] = HEAP8[i1 >> 0] | 0;
+ i1 = i1 + 1 | 0;
+ i2 = i2 + 1 | 0;
+ }
+ HEAP8[i5 + i3 >> 0] = 0;
+ return;
+}
+
+function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner9visitLoopEPNS_4LoopE(i6, i8, i7) {
+ i6 = i6 | 0;
i8 = i8 | 0;
- i5 = i5 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i6 = 0, i7 = 0, i9 = 0;
- i4 = i5 + 16 | 0;
- i6 = i3 + 16 | 0;
- i7 = i5 + 12 | 0;
+ i7 = i7 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i9 = 0;
+ i2 = i7 + 16 | 0;
+ i3 = i6 + 16 | 0;
+ i4 = i7 + 12 | 0;
while (1) {
- __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i3, i8, HEAP32[i4 >> 2] | 0);
- i2 = HEAP32[i6 >> 2] | 0;
- if (!i2) break;
- if ((i2 | 0) != (HEAP32[i7 >> 2] | 0)) {
- i1 = i2;
+ __ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i6, i8, HEAP32[i2 >> 2] | 0);
+ i5 = HEAP32[i3 >> 2] | 0;
+ if (!i5) break;
+ if ((i5 | 0) != (HEAP32[i4 >> 2] | 0)) {
+ i1 = i5;
i9 = 4;
break;
}
}
- if ((i9 | 0) == 4 ? (i1 | 0) == (HEAP32[i5 + 8 >> 2] | 0) : 0) HEAP32[i6 >> 2] = 0;
+ if ((i9 | 0) == 4 ? (i1 | 0) == (HEAP32[i7 + 8 >> 2] | 0) : 0) HEAP32[i3 >> 2] = 0;
return;
}
@@ -66641,20 +66333,20 @@ function __ZN4wasm22SExpressionWasmBuilder10parseTableERNS_7ElementE(i8, i7) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i5 = i9;
- i4 = 1;
+ i1 = i9;
+ i6 = 1;
while (1) {
- if (i4 >>> 0 >= (__ZN4wasm7Element4sizeEv(i7) | 0) >>> 0) break;
- i6 = HEAP32[i8 >> 2] | 0;
- i1 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i7, i4) | 0) | 0;
- HEAP32[i5 >> 2] = i1;
- i3 = i6 + 100 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if (i2 >>> 0 < (HEAP32[i6 + 104 >> 2] | 0) >>> 0) {
- HEAP32[i2 >> 2] = i1;
- HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + 4;
- } else __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i6 + 96 | 0, i5);
- i4 = i4 + 1 | 0;
+ if (i6 >>> 0 >= (__ZN4wasm7Element4sizeEv(i7) | 0) >>> 0) break;
+ i2 = HEAP32[i8 >> 2] | 0;
+ i3 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i7, i6) | 0) | 0;
+ HEAP32[i1 >> 2] = i3;
+ i4 = i2 + 100 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ if (i5 >>> 0 < (HEAP32[i2 + 104 >> 2] | 0) >>> 0) {
+ HEAP32[i5 >> 2] = i3;
+ HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4;
+ } else __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i2 + 96 | 0, i1);
+ i6 = i6 + 1 | 0;
}
STACKTOP = i9;
return;
@@ -66696,7 +66388,7 @@ function __ZN4wasm6Export5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEE
STACKTOP = STACKTOP + 16 | 0;
i4 = i1 + 4 | 0;
i5 = i1;
- __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i2, 17607, 0) | 0;
+ __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i2, 18201, 0) | 0;
i2 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__Z9printTextRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKc(i2, HEAP32[i3 >> 2] | 0) | 0, 32) | 0;
HEAP32[i5 >> 2] = HEAP32[i3 + 4 >> 2];
HEAP32[i4 >> 2] = HEAP32[i5 >> 2];
@@ -66705,30 +66397,30 @@ function __ZN4wasm6Export5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEE
return i3 | 0;
}
-function ___overflow(i8, i5) {
+function ___overflow(i8, i6) {
i8 = i8 | 0;
- i5 = i5 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0, i9 = 0;
+ i6 = i6 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i9 = 0;
i9 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i9;
- i7 = i5 & 255;
- HEAP8[i6 >> 0] = i7;
- i3 = i8 + 16 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if (!i2) if (!(___towrite(i8) | 0)) {
- i2 = HEAP32[i3 >> 2] | 0;
+ i7 = i9;
+ i5 = i6 & 255;
+ HEAP8[i7 >> 0] = i5;
+ i2 = i8 + 16 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if (!i3) if (!(___towrite(i8) | 0)) {
+ i3 = HEAP32[i2 >> 2] | 0;
i4 = 4;
} else i1 = -1; else i4 = 4;
do if ((i4 | 0) == 4) {
- i4 = i8 + 20 | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if (i3 >>> 0 < i2 >>> 0 ? (i1 = i5 & 255, (i1 | 0) != (HEAP8[i8 + 75 >> 0] | 0)) : 0) {
- HEAP32[i4 >> 2] = i3 + 1;
- HEAP8[i3 >> 0] = i7;
+ i2 = i8 + 20 | 0;
+ i4 = HEAP32[i2 >> 2] | 0;
+ if (i4 >>> 0 < i3 >>> 0 ? (i1 = i6 & 255, (i1 | 0) != (HEAP8[i8 + 75 >> 0] | 0)) : 0) {
+ HEAP32[i2 >> 2] = i4 + 1;
+ HEAP8[i4 >> 0] = i5;
break;
}
- if ((FUNCTION_TABLE_iiii[HEAP32[i8 + 36 >> 2] & 31](i8, i6, 1) | 0) == 1) i1 = HEAPU8[i6 >> 0] | 0; else i1 = -1;
+ if ((FUNCTION_TABLE_iiii[HEAP32[i8 + 36 >> 2] & 31](i8, i7, 1) | 0) == 1) i1 = HEAPU8[i7 >> 0] | 0; else i1 = -1;
} while (0);
STACKTOP = i9;
return i1 | 0;
@@ -66740,21 +66432,21 @@ function __ZN6cashew12ValueBuilder7makeDotENS_3RefES1_(i6, i5) {
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i7 + 12 | 0;
- i2 = i7 + 8 | 0;
- i1 = i7 + 4 | 0;
- i3 = i7;
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i5, 0) | 0, 36932) | 0) {
- HEAP32[i1 >> 2] = HEAP32[i6 >> 2];
+ i2 = i7 + 12 | 0;
+ i1 = i7 + 8 | 0;
+ i3 = i7 + 4 | 0;
+ i4 = i7;
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i5, 0) | 0, 38404) | 0) {
+ HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
i6 = __ZN6cashew3RefixEj(i5, 1) | 0;
i6 = __ZN6cashew5Value10getIStringEv(HEAP32[i6 >> 2] | 0) | 0;
- HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
- HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
- HEAP32[i4 >> 2] = HEAP32[i3 >> 2];
- i6 = __ZN6cashew12ValueBuilder7makeDotENS_3RefENS_7IStringE(i2, i4) | 0;
+ HEAP32[i4 >> 2] = HEAP32[i6 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
+ i6 = __ZN6cashew12ValueBuilder7makeDotENS_3RefENS_7IStringE(i1, i2) | 0;
STACKTOP = i7;
return i6 | 0;
- } else ___assert_fail(23169, 27234, 1628, 23184);
+ } else ___assert_fail(23757, 28586, 1628, 23772);
return 0;
}
@@ -66777,77 +66469,30 @@ function __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_a
return;
}
-function __ZNSt3__119__double_or_nothingIcEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i3, i5, i4) {
- i3 = i3 | 0;
- i5 = i5 | 0;
- i4 = i4 | 0;
- var i1 = 0, i2 = 0, i6 = 0, i7 = 0, i8 = 0;
- i6 = i3 + 4 | 0;
- i2 = (HEAP32[i6 >> 2] | 0) != 181;
- i1 = HEAP32[i3 >> 2] | 0;
- i7 = (HEAP32[i4 >> 2] | 0) - i1 | 0;
- i7 = i7 >>> 0 < 2147483647 ? i7 << 1 : -1;
- i8 = (HEAP32[i5 >> 2] | 0) - i1 | 0;
- i1 = _realloc(i2 ? i1 : 0, i7) | 0;
+function __ZNSt3__119__double_or_nothingIcEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i6, i8, i7) {
+ i6 = i6 | 0;
+ i8 = i8 | 0;
+ i7 = i7 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0;
+ i4 = i6 + 4 | 0;
+ i2 = (HEAP32[i4 >> 2] | 0) != 202;
+ i1 = HEAP32[i6 >> 2] | 0;
+ i3 = (HEAP32[i7 >> 2] | 0) - i1 | 0;
+ i3 = i3 >>> 0 < 2147483647 ? i3 << 1 : -1;
+ i5 = (HEAP32[i8 >> 2] | 0) - i1 | 0;
+ i1 = _realloc(i2 ? i1 : 0, i3) | 0;
if (!i1) __ZSt17__throw_bad_allocv();
if (!i2) {
- i2 = HEAP32[i3 >> 2] | 0;
- HEAP32[i3 >> 2] = i1;
+ i2 = HEAP32[i6 >> 2] | 0;
+ HEAP32[i6 >> 2] = i1;
if (i2) {
- FUNCTION_TABLE_vi[HEAP32[i6 >> 2] & 255](i2);
- i1 = HEAP32[i3 >> 2] | 0;
- }
- } else HEAP32[i3 >> 2] = i1;
- HEAP32[i6 >> 2] = 182;
- HEAP32[i5 >> 2] = i1 + i8;
- HEAP32[i4 >> 2] = (HEAP32[i3 >> 2] | 0) + i7;
- return;
-}
-
-function __ZNSt3__114__num_put_base12__format_intEPcPKcbj(i1, i3, i5, i4) {
- i1 = i1 | 0;
- i3 = i3 | 0;
- i5 = i5 | 0;
- i4 = i4 | 0;
- var i2 = 0;
- if (i4 & 2048) {
- HEAP8[i1 >> 0] = 43;
- i1 = i1 + 1 | 0;
- }
- if (i4 & 512) {
- HEAP8[i1 >> 0] = 35;
- i1 = i1 + 1 | 0;
- }
- while (1) {
- i2 = HEAP8[i3 >> 0] | 0;
- if (!(i2 << 24 >> 24)) break;
- HEAP8[i1 >> 0] = i2;
- i1 = i1 + 1 | 0;
- i3 = i3 + 1 | 0;
- }
- L10 : do switch (i4 & 74 | 0) {
- case 64:
- {
- HEAP8[i1 >> 0] = 111;
- break;
- }
- case 8:
- if (!(i4 & 16384)) {
- HEAP8[i1 >> 0] = 120;
- break L10;
- } else {
- HEAP8[i1 >> 0] = 88;
- break L10;
- }
- default:
- if (i5) {
- HEAP8[i1 >> 0] = 100;
- break L10;
- } else {
- HEAP8[i1 >> 0] = 117;
- break L10;
+ FUNCTION_TABLE_vi[HEAP32[i4 >> 2] & 255](i2);
+ i1 = HEAP32[i6 >> 2] | 0;
}
- } while (0);
+ } else HEAP32[i6 >> 2] = i1;
+ HEAP32[i4 >> 2] = 203;
+ HEAP32[i8 >> 2] = i1 + i5;
+ HEAP32[i7 >> 2] = (HEAP32[i6 >> 2] | 0) + i3;
return;
}
@@ -66871,20 +66516,20 @@ function __ZNSt3__1plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_a
return;
}
-function __ZNSt3__16__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE15__insert_uniqueERKS2_(i6, i5, i3) {
+function __ZNSt3__16__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE15__insert_uniqueERKS2_(i6, i5, i4) {
i6 = i6 | 0;
i5 = i5 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i7 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i2 = i7;
- i4 = __ZNSt3__16__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE12__find_equalIS2_EERPNS_16__tree_node_baseIPvEESD_RKT_(i5, i2, i3) | 0;
- i1 = HEAP32[i4 >> 2] | 0;
+ i3 = i7;
+ i2 = __ZNSt3__16__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE12__find_equalIS2_EERPNS_16__tree_node_baseIPvEESD_RKT_(i5, i3, i4) | 0;
+ i1 = HEAP32[i2 >> 2] | 0;
if (!i1) {
i1 = __Znwj(20) | 0;
- HEAP32[i1 + 16 >> 2] = HEAP32[i3 >> 2];
- __ZNSt3__16__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSB_SB_(i5, HEAP32[i2 >> 2] | 0, i4, i1);
+ HEAP32[i1 + 16 >> 2] = HEAP32[i4 >> 2];
+ __ZNSt3__16__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSB_SB_(i5, HEAP32[i3 >> 2] | 0, i2, i1);
i2 = 1;
} else i2 = 0;
HEAP32[i6 >> 2] = i1;
@@ -66893,29 +66538,6 @@ function __ZNSt3__16__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE15__ins
return;
}
-function __ZN6cashew12ValueBuilder10makeReturnENS_3RefE(i4) {
- i4 = i4 | 0;
- var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0;
- i5 = STACKTOP;
- STACKTOP = STACKTOP + 16 | 0;
- i2 = i5 + 8 | 0;
- i6 = i5 + 4 | 0;
- i1 = i5;
- i3 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0;
- i7 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(36952) | 0;
- HEAP32[i6 >> 2] = i7;
- HEAP32[i2 >> 2] = HEAP32[i6 >> 2];
- i3 = __ZN6cashew5Value9push_backENS_3RefE(i3, i2) | 0;
- if (__ZN6cashew3RefntEv(i4) | 0) {
- i7 = __ZN6cashew12ValueBuilder8makeNullEv() | 0;
- HEAP32[i1 >> 2] = i7;
- } else HEAP32[i1 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
- i7 = __ZN6cashew5Value9push_backENS_3RefE(i3, i2) | 0;
- STACKTOP = i5;
- return i7 | 0;
-}
-
function _fflush(i2) {
i2 = i2 | 0;
var i1 = 0, i3 = 0;
@@ -66928,20 +66550,43 @@ function _fflush(i2) {
i1 = ___fflush_unlocked(i2) | 0;
if (!i3) ___unlockfile(i2);
} else {
- if (!(HEAP32[952] | 0)) i1 = 0; else i1 = _fflush(HEAP32[952] | 0) | 0;
- ___lock(37392);
- i2 = HEAP32[9347] | 0;
+ if (!(HEAP32[1065] | 0)) i1 = 0; else i1 = _fflush(HEAP32[1065] | 0) | 0;
+ ___lock(38864);
+ i2 = HEAP32[9715] | 0;
if (i2) do {
if ((HEAP32[i2 + 76 >> 2] | 0) > -1) i3 = ___lockfile(i2) | 0; else i3 = 0;
if ((HEAP32[i2 + 20 >> 2] | 0) >>> 0 > (HEAP32[i2 + 28 >> 2] | 0) >>> 0) i1 = ___fflush_unlocked(i2) | 0 | i1;
if (i3 | 0) ___unlockfile(i2);
i2 = HEAP32[i2 + 56 >> 2] | 0;
} while ((i2 | 0) != 0);
- ___unlock(37392);
+ ___unlock(38864);
} while (0);
return i1 | 0;
}
+function __ZN6cashew12ValueBuilder10makeReturnENS_3RefE(i4) {
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0;
+ i5 = STACKTOP;
+ STACKTOP = STACKTOP + 16 | 0;
+ i1 = i5 + 8 | 0;
+ i6 = i5 + 4 | 0;
+ i2 = i5;
+ i3 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0;
+ i7 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38424) | 0;
+ HEAP32[i6 >> 2] = i7;
+ HEAP32[i1 >> 2] = HEAP32[i6 >> 2];
+ i3 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0;
+ if (__ZN6cashew3RefntEv(i4) | 0) {
+ i7 = __ZN6cashew12ValueBuilder8makeNullEv() | 0;
+ HEAP32[i2 >> 2] = i7;
+ } else HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
+ i7 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0;
+ STACKTOP = i5;
+ return i7 | 0;
+}
+
function __ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE5flushEv(i2) {
i2 = i2 | 0;
var i1 = 0, i3 = 0, i4 = 0;
@@ -67033,17 +66678,17 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseContinueERP
var i3 = 0, i4 = 0;
i4 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i2 = i4 + 20 | 0;
+ i1 = i4 + 20 | 0;
i3 = i4;
- i1 = i4 + 16 | 0;
+ i2 = i4 + 16 | 0;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i5);
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i3, HEAP32[i5 >> 2] | 0);
if ((HEAP32[i3 + 12 >> 2] | 0) == 2) {
HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + (HEAP32[i3 + 8 >> 2] | 0);
- HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
- } else HEAP32[i1 >> 2] = 0;
- HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
- i5 = __ZN6cashew12ValueBuilder12makeContinueENS_7IStringE(i2) | 0;
+ HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
+ } else HEAP32[i2 >> 2] = 0;
+ HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
+ i5 = __ZN6cashew12ValueBuilder12makeContinueENS_7IStringE(i1) | 0;
STACKTOP = i4;
return i5 | 0;
}
@@ -67066,7 +66711,7 @@ function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
HEAP32[i10 >> 2] = HEAP32[i2 >> 2];
HEAP32[i9 >> 2] = HEAP32[i11 >> 2];
HEAP32[i8 >> 2] = HEAP32[i10 >> 2];
- i6 = __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i6, i9, i8, i4, i3, i5, 31628, 31636) | 0;
+ i6 = __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i6, i9, i8, i4, i3, i5, 33092, 33100) | 0;
STACKTOP = i7;
return i6 | 0;
}
@@ -67155,11 +66800,11 @@ function __ZN6cashew12ValueBuilder10makeDoubleEd(d1) {
i6 = i3 + 4 | 0;
i5 = i3;
i4 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0;
- i7 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(36988) | 0;
+ i7 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38460) | 0;
HEAP32[i6 >> 2] = i7;
HEAP32[i2 >> 2] = HEAP32[i6 >> 2];
i4 = __ZN6cashew5Value9push_backENS_3RefE(i4, i2) | 0;
- i6 = __ZN6cashew5Arena5allocEv(37288) | 0;
+ i6 = __ZN6cashew5Arena5allocEv(38760) | 0;
__ZN6cashew5Value4freeEv(i6);
HEAP32[i6 >> 2] = 1;
HEAPF64[i6 + 8 >> 3] = d1;
@@ -67188,7 +66833,7 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
HEAP32[i10 >> 2] = HEAP32[i2 >> 2];
HEAP32[i9 >> 2] = HEAP32[i11 >> 2];
HEAP32[i8 >> 2] = HEAP32[i10 >> 2];
- i6 = __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i6, i9, i8, i4, i3, i5, 8652, 8684) | 0;
+ i6 = __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i6, i9, i8, i4, i3, i5, 9220, 9252) | 0;
STACKTOP = i7;
return i6 | 0;
}
@@ -67200,43 +66845,43 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10parseBreakERPcPK
var i3 = 0, i4 = 0;
i4 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i2 = i4 + 20 | 0;
+ i1 = i4 + 20 | 0;
i3 = i4;
- i1 = i4 + 16 | 0;
+ i2 = i4 + 16 | 0;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i5);
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i3, HEAP32[i5 >> 2] | 0);
if ((HEAP32[i3 + 12 >> 2] | 0) == 2) {
HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + (HEAP32[i3 + 8 >> 2] | 0);
- HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
- } else HEAP32[i1 >> 2] = 0;
- HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
- i5 = __ZN6cashew12ValueBuilder9makeBreakENS_7IStringE(i2) | 0;
+ HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
+ } else HEAP32[i2 >> 2] = 0;
+ HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
+ i5 = __ZN6cashew12ValueBuilder9makeBreakENS_7IStringE(i1) | 0;
STACKTOP = i4;
return i5 | 0;
}
-function __ZNSt3__18functionIFPN4wasm4PassEvEEaSEOS5_(i5, i3) {
+function __ZNSt3__18functionIFPN4wasm4PassEvEEaSEOS5_(i5, i4) {
i5 = i5 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0;
- i4 = i5 + 16 | 0;
- i1 = HEAP32[i4 >> 2] | 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0;
+ i3 = i5 + 16 | 0;
+ i1 = HEAP32[i3 >> 2] | 0;
if ((i1 | 0) != (i5 | 0)) {
if (i1 | 0) FUNCTION_TABLE_vi[HEAP32[(HEAP32[i1 >> 2] | 0) + 20 >> 2] & 255](i1);
} else FUNCTION_TABLE_vi[HEAP32[(HEAP32[i1 >> 2] | 0) + 16 >> 2] & 255](i1);
- HEAP32[i4 >> 2] = 0;
- i2 = i3 + 16 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- do if (i1) if ((i1 | 0) == (i3 | 0)) {
- HEAP32[i4 >> 2] = i5;
- i4 = HEAP32[i2 >> 2] | 0;
+ HEAP32[i3 >> 2] = 0;
+ i1 = i4 + 16 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ do if (i2) if ((i2 | 0) == (i4 | 0)) {
+ HEAP32[i3 >> 2] = i5;
+ i4 = HEAP32[i1 >> 2] | 0;
FUNCTION_TABLE_vii[HEAP32[(HEAP32[i4 >> 2] | 0) + 12 >> 2] & 127](i4, i5);
break;
} else {
- HEAP32[i4 >> 2] = i1;
- HEAP32[i2 >> 2] = 0;
+ HEAP32[i3 >> 2] = i2;
+ HEAP32[i1 >> 2] = 0;
break;
- } else HEAP32[i4 >> 2] = 0; while (0);
+ } else HEAP32[i3 >> 2] = 0; while (0);
return i5 | 0;
}
@@ -67408,17 +67053,17 @@ function __ZNSt3__16vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE1
i5 = i5 + (i2 - i5 >> 3 << 3) | 0;
i1 = HEAP32[i3 >> 2] | 0;
L1 : do if ((i2 | 0) != (i1 | 0)) {
- i1 = i5 + (i1 - i2 >> 3 << 3) | 0;
- i2 = i4 + 4 | 0;
- i3 = (HEAP32[i2 >> 2] | 0) - i1 | 0;
- _memmove(i5 | 0, i1 | 0, i3 | 0) | 0;
- i3 = i5 + (i3 >> 3 << 3) | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i3 = i5 + (i1 - i2 >> 3 << 3) | 0;
+ i1 = i4 + 4 | 0;
+ i2 = (HEAP32[i1 >> 2] | 0) - i3 | 0;
+ _memmove(i5 | 0, i3 | 0, i2 | 0) | 0;
+ i2 = i5 + (i2 >> 3 << 3) | 0;
+ i3 = HEAP32[i1 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i3 | 0)) break L1;
- i4 = i1 + -8 | 0;
- HEAP32[i2 >> 2] = i4;
- i1 = i4;
+ if ((i3 | 0) == (i2 | 0)) break L1;
+ i4 = i3 + -8 | 0;
+ HEAP32[i1 >> 2] = i4;
+ i3 = i4;
}
} while (0);
return i5 | 0;
@@ -67428,13 +67073,13 @@ function __ZNSt3__114__split_bufferINS_6vectorINS1_IN10__cxxabiv112_GLOBAL__N_11
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
+ i2 = i4 + 8 | 0;
while (1) {
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (i1 | 0)) break;
- i2 = i2 + -16 | 0;
- HEAP32[i3 >> 2] = i2;
- __ZNSt3__113__vector_baseINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEED2Ev(i2);
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i3 = i3 + -16 | 0;
+ HEAP32[i2 >> 2] = i3;
+ __ZNSt3__113__vector_baseINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEED2Ev(i3);
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZN10__cxxabiv112_GLOBAL__N_15arenaILj4096EE10deallocateEPcj(HEAP32[HEAP32[i4 + 16 >> 2] >> 2] | 0, i1, (HEAP32[i4 + 12 >> 2] | 0) - i1 | 0);
@@ -67630,13 +67275,13 @@ function __ZNSt3__113__vector_baseINS_6vectorINS1_IN10__cxxabiv112_GLOBAL__N_111
var i1 = 0, i2 = 0, i3 = 0;
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) {
- i3 = i4 + 4 | 0;
+ i2 = i4 + 4 | 0;
while (1) {
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (i1 | 0)) break;
- i2 = i2 + -16 | 0;
- HEAP32[i3 >> 2] = i2;
- __ZNSt3__113__vector_baseINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEED2Ev(i2);
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i3 = i3 + -16 | 0;
+ HEAP32[i2 >> 2] = i3;
+ __ZNSt3__113__vector_baseINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEED2Ev(i3);
}
i3 = HEAP32[i4 >> 2] | 0;
__ZN10__cxxabiv112_GLOBAL__N_15arenaILj4096EE10deallocateEPcj(HEAP32[i4 + 12 >> 2] | 0, i3, (HEAP32[i4 + 8 >> 2] | 0) - i3 | 0);
@@ -67811,14 +67456,14 @@ function __ZN4wasm17SExpressionParser5parseEv(i4) {
case 40:
{
HEAP32[i4 >> 2] = i1 + 1;
- i2 = __ZN4wasm17SExpressionParser14parseInnerListEv(i4) | 0;
+ i1 = __ZN4wasm17SExpressionParser14parseInnerListEv(i4) | 0;
__ZN4wasm17SExpressionParser14skipWhitespaceEv(i4);
- i1 = HEAP32[i4 >> 2] | 0;
- if ((HEAP8[i1 >> 0] | 0) == 41) {
- HEAP32[i4 >> 2] = i1 + 1;
- i3 = i2;
+ i2 = HEAP32[i4 >> 2] | 0;
+ if ((HEAP8[i2 >> 0] | 0) == 41) {
+ HEAP32[i4 >> 2] = i2 + 1;
+ i3 = i1;
break L1;
- } else ___assert_fail(16058, 16023, 163, 16074);
+ } else ___assert_fail(16641, 16606, 163, 16657);
break;
}
default:
@@ -67921,11 +67566,11 @@ function __ZNSt3__111__stdoutbufIwEC2EP8_IO_FILEP11__mbstate_t(i3, i1, i2) {
i6 = i4 + 4 | 0;
i5 = i4;
__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEEC2Ev(i3);
- HEAP32[i3 >> 2] = 7444;
+ HEAP32[i3 >> 2] = 8012;
HEAP32[i3 + 32 >> 2] = i1;
__ZNSt3__16localeC2ERKS0_(i6, i3 + 4 | 0);
HEAP32[i5 >> 2] = HEAP32[i6 >> 2];
- i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i5, 40764) | 0;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i5, 42236) | 0;
__ZNSt3__16localeD2Ev(i5);
HEAP32[i3 + 36 >> 2] = i1;
HEAP32[i3 + 40 >> 2] = i2;
@@ -67945,11 +67590,11 @@ function __ZNSt3__111__stdoutbufIcEC2EP8_IO_FILEP11__mbstate_t(i3, i1, i2) {
i6 = i4 + 4 | 0;
i5 = i4;
__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEEC2Ev(i3);
- HEAP32[i3 >> 2] = 7316;
+ HEAP32[i3 >> 2] = 7884;
HEAP32[i3 + 32 >> 2] = i1;
__ZNSt3__16localeC2ERKS0_(i6, i3 + 4 | 0);
HEAP32[i5 >> 2] = HEAP32[i6 >> 2];
- i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i5, 40756) | 0;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i5, 42228) | 0;
__ZNSt3__16localeD2Ev(i5);
HEAP32[i3 + 36 >> 2] = i1;
HEAP32[i3 + 40 >> 2] = i2;
@@ -67973,9 +67618,9 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
i8 = i5;
HEAP32[i8 >> 2] = HEAP32[i4 >> 2];
HEAP32[i1 >> 2] = HEAP32[i8 >> 2];
- i2 = __ZNSt3__120__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 2) | 0;
- i1 = HEAP32[i6 >> 2] | 0;
- if ((i2 + -1 | 0) >>> 0 < 12 & (i1 & 4 | 0) == 0) HEAP32[i7 >> 2] = i2; else HEAP32[i6 >> 2] = i1 | 4;
+ i1 = __ZNSt3__120__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 2) | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ if ((i1 + -1 | 0) >>> 0 < 12 & (i2 & 4 | 0) == 0) HEAP32[i7 >> 2] = i1; else HEAP32[i6 >> 2] = i2 | 4;
STACKTOP = i5;
return;
}
@@ -67994,9 +67639,9 @@ function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
i8 = i5;
HEAP32[i8 >> 2] = HEAP32[i4 >> 2];
HEAP32[i1 >> 2] = HEAP32[i8 >> 2];
- i2 = __ZNSt3__120__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 2) | 0;
- i1 = HEAP32[i6 >> 2] | 0;
- if ((i2 + -1 | 0) >>> 0 < 12 & (i1 & 4 | 0) == 0) HEAP32[i7 >> 2] = i2; else HEAP32[i6 >> 2] = i1 | 4;
+ i1 = __ZNSt3__120__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 2) | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ if ((i1 + -1 | 0) >>> 0 < 12 & (i2 & 4 | 0) == 0) HEAP32[i7 >> 2] = i1; else HEAP32[i6 >> 2] = i2 | 4;
STACKTOP = i5;
return;
}
@@ -68085,94 +67730,6 @@ function __ZN4wasm6getSigENS_8WasmTypeERNSt3__16vectorIPNS_10ExpressionENS1_9all
return;
}
-function _atol(i1) {
- i1 = i1 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0;
- while (1) {
- i2 = i1 + 1 | 0;
- if (!(_isspace(HEAP8[i1 >> 0] | 0) | 0)) break; else i1 = i2;
- }
- i3 = HEAP8[i1 >> 0] | 0;
- switch (i3 << 24 >> 24 | 0) {
- case 45:
- {
- i1 = 1;
- i4 = 5;
- break;
- }
- case 43:
- {
- i1 = 0;
- i4 = 5;
- break;
- }
- default:
- {
- i5 = 0;
- i2 = i1;
- }
- }
- if ((i4 | 0) == 5) {
- i3 = HEAP8[i2 >> 0] | 0;
- i5 = i1;
- }
- i1 = (i3 << 24 >> 24) + -48 | 0;
- if (i1 >>> 0 < 10) {
- i3 = i1;
- i1 = 0;
- do {
- i2 = i2 + 1 | 0;
- i1 = (i1 * 10 | 0) - i3 | 0;
- i3 = (HEAP8[i2 >> 0] | 0) + -48 | 0;
- } while (i3 >>> 0 < 10);
- } else i1 = 0;
- return (i5 | 0 ? i1 : 0 - i1 | 0) | 0;
-}
-
-function _atoi(i1) {
- i1 = i1 | 0;
- var i2 = 0, i3 = 0, i4 = 0, i5 = 0;
- while (1) {
- i2 = i1 + 1 | 0;
- if (!(_isspace(HEAP8[i1 >> 0] | 0) | 0)) break; else i1 = i2;
- }
- i3 = HEAP8[i1 >> 0] | 0;
- switch (i3 << 24 >> 24 | 0) {
- case 45:
- {
- i1 = 1;
- i4 = 5;
- break;
- }
- case 43:
- {
- i1 = 0;
- i4 = 5;
- break;
- }
- default:
- {
- i5 = 0;
- i2 = i1;
- }
- }
- if ((i4 | 0) == 5) {
- i3 = HEAP8[i2 >> 0] | 0;
- i5 = i1;
- }
- i1 = (i3 << 24 >> 24) + -48 | 0;
- if (i1 >>> 0 < 10) {
- i3 = i1;
- i1 = 0;
- do {
- i2 = i2 + 1 | 0;
- i1 = (i1 * 10 | 0) - i3 | 0;
- i3 = (HEAP8[i2 >> 0] | 0) + -48 | 0;
- } while (i3 >>> 0 < 10);
- } else i1 = 0;
- return (i5 | 0 ? i1 : 0 - i1 | 0) | 0;
-}
-
function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE9__get_dayERiRS4_S4_RjRKNS_5ctypeIwEE(i1, i6, i2, i4, i7, i3) {
i1 = i1 | 0;
i6 = i6 | 0;
@@ -68187,9 +67744,9 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
i8 = i5;
HEAP32[i8 >> 2] = HEAP32[i4 >> 2];
HEAP32[i1 >> 2] = HEAP32[i8 >> 2];
- i2 = __ZNSt3__120__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i3, 2) | 0;
- i1 = HEAP32[i7 >> 2] | 0;
- if ((i2 + -1 | 0) >>> 0 < 31 & (i1 & 4 | 0) == 0) HEAP32[i6 >> 2] = i2; else HEAP32[i7 >> 2] = i1 | 4;
+ i1 = __ZNSt3__120__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i3, 2) | 0;
+ i2 = HEAP32[i7 >> 2] | 0;
+ if ((i1 + -1 | 0) >>> 0 < 31 & (i2 & 4 | 0) == 0) HEAP32[i6 >> 2] = i1; else HEAP32[i7 >> 2] = i2 | 4;
STACKTOP = i5;
return;
}
@@ -68208,9 +67765,9 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
i8 = i5;
HEAP32[i8 >> 2] = HEAP32[i4 >> 2];
HEAP32[i1 >> 2] = HEAP32[i8 >> 2];
- i2 = __ZNSt3__120__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i3, 3) | 0;
- i1 = HEAP32[i7 >> 2] | 0;
- if ((i2 | 0) < 366 & (i1 & 4 | 0) == 0) HEAP32[i6 >> 2] = i2; else HEAP32[i7 >> 2] = i1 | 4;
+ i1 = __ZNSt3__120__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i3, 3) | 0;
+ i2 = HEAP32[i7 >> 2] | 0;
+ if ((i1 | 0) < 366 & (i2 & 4 | 0) == 0) HEAP32[i6 >> 2] = i1; else HEAP32[i7 >> 2] = i2 | 4;
STACKTOP = i5;
return;
}
@@ -68229,9 +67786,9 @@ function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
i8 = i5;
HEAP32[i8 >> 2] = HEAP32[i4 >> 2];
HEAP32[i1 >> 2] = HEAP32[i8 >> 2];
- i2 = __ZNSt3__120__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i3, 2) | 0;
- i1 = HEAP32[i7 >> 2] | 0;
- if ((i2 + -1 | 0) >>> 0 < 31 & (i1 & 4 | 0) == 0) HEAP32[i6 >> 2] = i2; else HEAP32[i7 >> 2] = i1 | 4;
+ i1 = __ZNSt3__120__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i3, 2) | 0;
+ i2 = HEAP32[i7 >> 2] | 0;
+ if ((i1 + -1 | 0) >>> 0 < 31 & (i2 & 4 | 0) == 0) HEAP32[i6 >> 2] = i1; else HEAP32[i7 >> 2] = i2 | 4;
STACKTOP = i5;
return;
}
@@ -68250,9 +67807,9 @@ function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
i8 = i5;
HEAP32[i8 >> 2] = HEAP32[i4 >> 2];
HEAP32[i1 >> 2] = HEAP32[i8 >> 2];
- i2 = __ZNSt3__120__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i3, 3) | 0;
- i1 = HEAP32[i7 >> 2] | 0;
- if ((i2 | 0) < 366 & (i1 & 4 | 0) == 0) HEAP32[i6 >> 2] = i2; else HEAP32[i7 >> 2] = i1 | 4;
+ i1 = __ZNSt3__120__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i3, 3) | 0;
+ i2 = HEAP32[i7 >> 2] | 0;
+ if ((i1 | 0) < 366 & (i2 & 4 | 0) == 0) HEAP32[i6 >> 2] = i1; else HEAP32[i7 >> 2] = i2 | 4;
STACKTOP = i5;
return;
}
@@ -68291,9 +67848,9 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
i8 = i5;
HEAP32[i8 >> 2] = HEAP32[i4 >> 2];
HEAP32[i1 >> 2] = HEAP32[i8 >> 2];
- i2 = __ZNSt3__120__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 2) | 0;
- i1 = HEAP32[i6 >> 2] | 0;
- if ((i2 | 0) < 13 & (i1 & 4 | 0) == 0) HEAP32[i7 >> 2] = i2 + -1; else HEAP32[i6 >> 2] = i1 | 4;
+ i1 = __ZNSt3__120__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 2) | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ if ((i1 | 0) < 13 & (i2 & 4 | 0) == 0) HEAP32[i7 >> 2] = i1 + -1; else HEAP32[i6 >> 2] = i2 | 4;
STACKTOP = i5;
return;
}
@@ -68312,9 +67869,9 @@ function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
i8 = i5;
HEAP32[i8 >> 2] = HEAP32[i4 >> 2];
HEAP32[i1 >> 2] = HEAP32[i8 >> 2];
- i2 = __ZNSt3__120__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 2) | 0;
- i1 = HEAP32[i6 >> 2] | 0;
- if ((i2 | 0) < 13 & (i1 & 4 | 0) == 0) HEAP32[i7 >> 2] = i2 + -1; else HEAP32[i6 >> 2] = i1 | 4;
+ i1 = __ZNSt3__120__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 2) | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ if ((i1 | 0) < 13 & (i2 & 4 | 0) == 0) HEAP32[i7 >> 2] = i1 + -1; else HEAP32[i6 >> 2] = i2 | 4;
STACKTOP = i5;
return;
}
@@ -68360,7 +67917,7 @@ function __ZN6cashew12ValueBuilder10makeStringENS_7IStringE(i1) {
i6 = i2 + 4 | 0;
i5 = i2;
i4 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0;
- i7 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(37008) | 0;
+ i7 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38480) | 0;
HEAP32[i6 >> 2] = i7;
HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
i4 = __ZN6cashew5Value9push_backENS_3RefE(i4, i3) | 0;
@@ -68408,9 +67965,9 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
i8 = i5;
HEAP32[i8 >> 2] = HEAP32[i4 >> 2];
HEAP32[i1 >> 2] = HEAP32[i8 >> 2];
- i2 = __ZNSt3__120__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 1) | 0;
- i1 = HEAP32[i6 >> 2] | 0;
- if ((i2 | 0) < 7 & (i1 & 4 | 0) == 0) HEAP32[i7 >> 2] = i2; else HEAP32[i6 >> 2] = i1 | 4;
+ i1 = __ZNSt3__120__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 1) | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ if ((i1 | 0) < 7 & (i2 & 4 | 0) == 0) HEAP32[i7 >> 2] = i1; else HEAP32[i6 >> 2] = i2 | 4;
STACKTOP = i5;
return;
}
@@ -68429,9 +67986,9 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
i8 = i5;
HEAP32[i8 >> 2] = HEAP32[i4 >> 2];
HEAP32[i1 >> 2] = HEAP32[i8 >> 2];
- i2 = __ZNSt3__120__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 2) | 0;
- i1 = HEAP32[i6 >> 2] | 0;
- if ((i2 | 0) < 61 & (i1 & 4 | 0) == 0) HEAP32[i7 >> 2] = i2; else HEAP32[i6 >> 2] = i1 | 4;
+ i1 = __ZNSt3__120__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 2) | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ if ((i1 | 0) < 61 & (i2 & 4 | 0) == 0) HEAP32[i7 >> 2] = i1; else HEAP32[i6 >> 2] = i2 | 4;
STACKTOP = i5;
return;
}
@@ -68450,9 +68007,9 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
i8 = i5;
HEAP32[i8 >> 2] = HEAP32[i4 >> 2];
HEAP32[i1 >> 2] = HEAP32[i8 >> 2];
- i2 = __ZNSt3__120__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 2) | 0;
- i1 = HEAP32[i6 >> 2] | 0;
- if ((i2 | 0) < 60 & (i1 & 4 | 0) == 0) HEAP32[i7 >> 2] = i2; else HEAP32[i6 >> 2] = i1 | 4;
+ i1 = __ZNSt3__120__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 2) | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ if ((i1 | 0) < 60 & (i2 & 4 | 0) == 0) HEAP32[i7 >> 2] = i1; else HEAP32[i6 >> 2] = i2 | 4;
STACKTOP = i5;
return;
}
@@ -68471,9 +68028,9 @@ function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
i8 = i5;
HEAP32[i8 >> 2] = HEAP32[i4 >> 2];
HEAP32[i1 >> 2] = HEAP32[i8 >> 2];
- i2 = __ZNSt3__120__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 1) | 0;
- i1 = HEAP32[i6 >> 2] | 0;
- if ((i2 | 0) < 7 & (i1 & 4 | 0) == 0) HEAP32[i7 >> 2] = i2; else HEAP32[i6 >> 2] = i1 | 4;
+ i1 = __ZNSt3__120__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 1) | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ if ((i1 | 0) < 7 & (i2 & 4 | 0) == 0) HEAP32[i7 >> 2] = i1; else HEAP32[i6 >> 2] = i2 | 4;
STACKTOP = i5;
return;
}
@@ -68492,9 +68049,9 @@ function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
i8 = i5;
HEAP32[i8 >> 2] = HEAP32[i4 >> 2];
HEAP32[i1 >> 2] = HEAP32[i8 >> 2];
- i2 = __ZNSt3__120__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 2) | 0;
- i1 = HEAP32[i6 >> 2] | 0;
- if ((i2 | 0) < 61 & (i1 & 4 | 0) == 0) HEAP32[i7 >> 2] = i2; else HEAP32[i6 >> 2] = i1 | 4;
+ i1 = __ZNSt3__120__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 2) | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ if ((i1 | 0) < 61 & (i2 & 4 | 0) == 0) HEAP32[i7 >> 2] = i1; else HEAP32[i6 >> 2] = i2 | 4;
STACKTOP = i5;
return;
}
@@ -68513,9 +68070,9 @@ function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
i8 = i5;
HEAP32[i8 >> 2] = HEAP32[i4 >> 2];
HEAP32[i1 >> 2] = HEAP32[i8 >> 2];
- i2 = __ZNSt3__120__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 2) | 0;
- i1 = HEAP32[i6 >> 2] | 0;
- if ((i2 | 0) < 60 & (i1 & 4 | 0) == 0) HEAP32[i7 >> 2] = i2; else HEAP32[i6 >> 2] = i1 | 4;
+ i1 = __ZNSt3__120__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 2) | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ if ((i1 | 0) < 60 & (i2 & 4 | 0) == 0) HEAP32[i7 >> 2] = i1; else HEAP32[i6 >> 2] = i2 | 4;
STACKTOP = i5;
return;
}
@@ -68540,44 +68097,6 @@ function __ZNSt3__16__treeINS_12__value_typeIPN4wasm12CallIndirectEN6cashew7IStr
return;
}
-function __ZNKSt3__17codecvtIwc11__mbstate_tE9do_lengthERS1_PKcS5_j(i1, i9, i2, i7, i8) {
- i1 = i1 | 0;
- i9 = i9 | 0;
- i2 = i2 | 0;
- i7 = i7 | 0;
- i8 = i8 | 0;
- var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i10 = 0;
- i10 = i7;
- i6 = i1 + 8 | 0;
- i1 = 0;
- i5 = 0;
- L1 : while (1) {
- if ((i2 | 0) == (i7 | 0) | i5 >>> 0 >= i8 >>> 0) break;
- i3 = _uselocale(HEAP32[i6 >> 2] | 0) | 0;
- i4 = _mbrlen(i2, i10 - i2 | 0, i9) | 0;
- if (i3 | 0) _uselocale(i3) | 0;
- switch (i4 | 0) {
- case -2:
- case -1:
- break L1;
- case 0:
- {
- i3 = 1;
- i2 = i2 + 1 | 0;
- break;
- }
- default:
- {
- i3 = i4;
- i2 = i2 + i4 | 0;
- }
- }
- i1 = i3 + i1 | 0;
- i5 = i5 + 1 | 0;
- }
- return i1 | 0;
-}
-
function __ZN6cashew12ValueBuilder8makeNameENS_7IStringE(i1) {
i1 = i1 | 0;
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0;
@@ -68587,7 +68106,7 @@ function __ZN6cashew12ValueBuilder8makeNameENS_7IStringE(i1) {
i6 = i2 + 4 | 0;
i5 = i2;
i4 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0;
- i7 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(36932) | 0;
+ i7 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38404) | 0;
HEAP32[i6 >> 2] = i7;
HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
i4 = __ZN6cashew5Value9push_backENS_3RefE(i4, i3) | 0;
@@ -68599,19 +68118,19 @@ function __ZN6cashew12ValueBuilder8makeNameENS_7IStringE(i1) {
return i1 | 0;
}
-function __ZN4wasm12FunctionTypeeqERS0_(i3, i1) {
+function __ZN4wasm12FunctionTypeeqERS0_(i3, i2) {
i3 = i3 | 0;
- i1 = i1 | 0;
- var i2 = 0, i4 = 0, i5 = 0;
- L1 : do if (((HEAP32[i3 >> 2] | 0) == (HEAP32[i1 >> 2] | 0) ? (HEAP32[i3 + 4 >> 2] | 0) == (HEAP32[i1 + 4 >> 2] | 0) : 0) ? (i5 = HEAP32[i3 + 8 >> 2] | 0, i2 = (HEAP32[i3 + 12 >> 2] | 0) - i5 | 0, i3 = HEAP32[i1 + 8 >> 2] | 0, i4 = i3, i5, (i2 | 0) == ((HEAP32[i1 + 12 >> 2] | 0) - i3 | 0)) : 0) {
- i2 = i2 >> 2;
- i1 = 0;
+ i2 = i2 | 0;
+ var i1 = 0, i4 = 0, i5 = 0;
+ L1 : do if (((HEAP32[i3 >> 2] | 0) == (HEAP32[i2 >> 2] | 0) ? (HEAP32[i3 + 4 >> 2] | 0) == (HEAP32[i2 + 4 >> 2] | 0) : 0) ? (i5 = HEAP32[i3 + 8 >> 2] | 0, i1 = (HEAP32[i3 + 12 >> 2] | 0) - i5 | 0, i3 = HEAP32[i2 + 8 >> 2] | 0, i4 = i3, i5, (i1 | 0) == ((HEAP32[i2 + 12 >> 2] | 0) - i3 | 0)) : 0) {
+ i1 = i1 >> 2;
+ i2 = 0;
while (1) {
- if (i1 >>> 0 >= i2 >>> 0) {
+ if (i2 >>> 0 >= i1 >>> 0) {
i1 = 1;
break L1;
}
- if ((HEAP32[i5 + (i1 << 2) >> 2] | 0) == (HEAP32[i4 + (i1 << 2) >> 2] | 0)) i1 = i1 + 1 | 0; else {
+ if ((HEAP32[i5 + (i2 << 2) >> 2] | 0) == (HEAP32[i4 + (i2 << 2) >> 2] | 0)) i2 = i2 + 1 | 0; else {
i1 = 0;
break;
}
@@ -68654,9 +68173,9 @@ function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE
i8 = i5;
HEAP32[i8 >> 2] = HEAP32[i4 >> 2];
HEAP32[i1 >> 2] = HEAP32[i8 >> 2];
- i2 = __ZNSt3__120__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 2) | 0;
- i1 = HEAP32[i6 >> 2] | 0;
- if ((i2 | 0) < 24 & (i1 & 4 | 0) == 0) HEAP32[i7 >> 2] = i2; else HEAP32[i6 >> 2] = i1 | 4;
+ i1 = __ZNSt3__120__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 2) | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ if ((i1 | 0) < 24 & (i2 & 4 | 0) == 0) HEAP32[i7 >> 2] = i1; else HEAP32[i6 >> 2] = i2 | 4;
STACKTOP = i5;
return;
}
@@ -68675,31 +68194,31 @@ function __ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE
i8 = i5;
HEAP32[i8 >> 2] = HEAP32[i4 >> 2];
HEAP32[i1 >> 2] = HEAP32[i8 >> 2];
- i2 = __ZNSt3__120__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 2) | 0;
- i1 = HEAP32[i6 >> 2] | 0;
- if ((i2 | 0) < 24 & (i1 & 4 | 0) == 0) HEAP32[i7 >> 2] = i2; else HEAP32[i6 >> 2] = i1 | 4;
+ i1 = __ZNSt3__120__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i6, i3, 2) | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ if ((i1 | 0) < 24 & (i2 & 4 | 0) == 0) HEAP32[i7 >> 2] = i1; else HEAP32[i6 >> 2] = i2 | 4;
STACKTOP = i5;
return;
}
-function _ungetc(i1, i4) {
+function _ungetc(i1, i5) {
i1 = i1 | 0;
- i4 = i4 | 0;
- var i2 = 0, i3 = 0, i5 = 0, i6 = 0;
+ i5 = i5 | 0;
+ var i2 = 0, i3 = 0, i4 = 0, i6 = 0;
do if ((i1 | 0) != -1) {
- if ((HEAP32[i4 + 76 >> 2] | 0) > -1) i3 = ___lockfile(i4) | 0; else i3 = 0;
- if (!((HEAP32[i4 + 8 >> 2] | 0) == 0 ? (___toread(i4) | 0) != 0 : 0)) i6 = 6;
- if ((i6 | 0) == 6 ? (i5 = i4 + 4 | 0, i2 = HEAP32[i5 >> 2] | 0, i2 >>> 0 > ((HEAP32[i4 + 44 >> 2] | 0) + -8 | 0) >>> 0) : 0) {
- i6 = i2 + -1 | 0;
- HEAP32[i5 >> 2] = i6;
+ if ((HEAP32[i5 + 76 >> 2] | 0) > -1) i4 = ___lockfile(i5) | 0; else i4 = 0;
+ if (!((HEAP32[i5 + 8 >> 2] | 0) == 0 ? (___toread(i5) | 0) != 0 : 0)) i6 = 6;
+ if ((i6 | 0) == 6 ? (i2 = i5 + 4 | 0, i3 = HEAP32[i2 >> 2] | 0, i3 >>> 0 > ((HEAP32[i5 + 44 >> 2] | 0) + -8 | 0) >>> 0) : 0) {
+ i6 = i3 + -1 | 0;
+ HEAP32[i2 >> 2] = i6;
HEAP8[i6 >> 0] = i1;
- HEAP32[i4 >> 2] = HEAP32[i4 >> 2] & -17;
- if (!i3) break;
- ___unlockfile(i4);
+ HEAP32[i5 >> 2] = HEAP32[i5 >> 2] & -17;
+ if (!i4) break;
+ ___unlockfile(i5);
break;
}
- if (i3) {
- ___unlockfile(i4);
+ if (i4) {
+ ___unlockfile(i5);
i1 = -1;
} else i1 = -1;
} else i1 = -1; while (0);
@@ -68762,15 +68281,15 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseParennedERP
var i1 = 0;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i3);
i1 = HEAP32[i3 >> 2] | 0;
- if ((HEAP8[i1 >> 0] | 0) != 40) ___assert_fail(22391, 22233, 896, 22599);
+ if ((HEAP8[i1 >> 0] | 0) != 40) ___assert_fail(22979, 22821, 896, 23187);
HEAP32[i3 >> 2] = i1 + 1;
- i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i2, i3, 34358) | 0;
+ i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i2, i3, 35822) | 0;
__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i3);
- i1 = HEAP32[i3 >> 2] | 0;
- if ((HEAP8[i1 >> 0] | 0) == 41) {
- HEAP32[i3 >> 2] = i1 + 1;
- return i2 | 0;
- } else ___assert_fail(22613, 22233, 900, 22599);
+ i2 = HEAP32[i3 >> 2] | 0;
+ if ((HEAP8[i2 >> 0] | 0) == 41) {
+ HEAP32[i3 >> 2] = i2 + 1;
+ return i1 | 0;
+ } else ___assert_fail(23201, 22821, 900, 23187);
return 0;
}
@@ -68780,10 +68299,10 @@ function __ZZN4wasm15RemoveUnusedBrs7visitIfEPNS_2IfEENKUlPNS_10ExpressionEbE_cl
i4 = i4 | 0;
var i2 = 0, i3 = 0;
i1 = __ZZN4wasm15RemoveUnusedBrs7visitIfEPNS_2IfEENKUlPNS_10ExpressionEE_clES4_(HEAP32[i1 >> 2] | 0, i5) | 0;
- if ((((i1 | 0) != 0 ? (i3 = __ZN4wasm10Expression4castINS_5BlockEEEPT_v(i5) | 0, (HEAP32[i1 >> 2] | 0) == 4) : 0) ? (HEAP32[i1 + 8 >> 2] | 0) == 0 : 0) ? (i2 = HEAP32[i1 + 16 >> 2] | 0, (i2 | 0) != 0) : 0) {
+ if ((((i1 | 0) != 0 ? (i2 = __ZN4wasm10Expression4castINS_5BlockEEEPT_v(i5) | 0, (HEAP32[i1 >> 2] | 0) == 4) : 0) ? (HEAP32[i1 + 8 >> 2] | 0) == 0 : 0) ? (i3 = HEAP32[i1 + 16 >> 2] | 0, (i3 | 0) != 0) : 0) {
if (i4) {
- i5 = HEAP32[i3 + 12 >> 2] | 0;
- HEAP32[i5 + (((HEAP32[i3 + 16 >> 2] | 0) - i5 >> 2) + -1 << 2) >> 2] = i2;
+ i5 = HEAP32[i2 + 12 >> 2] | 0;
+ HEAP32[i5 + (((HEAP32[i2 + 16 >> 2] | 0) - i5 >> 2) + -1 << 2) >> 2] = i3;
}
i1 = HEAP32[i1 + 12 >> 2] | 0;
} else i1 = 0;
@@ -68810,6 +68329,88 @@ function __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19_
return;
}
+function _atol(i1) {
+ i1 = i1 | 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0;
+ while (1) {
+ i2 = i1 + 1 | 0;
+ if (!(_isspace(HEAP8[i1 >> 0] | 0) | 0)) break; else i1 = i2;
+ }
+ i3 = HEAP8[i1 >> 0] | 0;
+ switch (i3 << 24 >> 24 | 0) {
+ case 45:
+ {
+ i4 = 1;
+ i5 = 5;
+ break;
+ }
+ case 43:
+ {
+ i4 = 0;
+ i5 = 5;
+ break;
+ }
+ default:
+ i4 = 0;
+ }
+ if ((i5 | 0) == 5) {
+ i1 = i2;
+ i3 = HEAP8[i2 >> 0] | 0;
+ }
+ i2 = (i3 << 24 >> 24) + -48 | 0;
+ if (i2 >>> 0 < 10) {
+ i3 = i1;
+ i1 = 0;
+ do {
+ i3 = i3 + 1 | 0;
+ i1 = (i1 * 10 | 0) - i2 | 0;
+ i2 = (HEAP8[i3 >> 0] | 0) + -48 | 0;
+ } while (i2 >>> 0 < 10);
+ } else i1 = 0;
+ return (i4 | 0 ? i1 : 0 - i1 | 0) | 0;
+}
+
+function _atoi(i1) {
+ i1 = i1 | 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0;
+ while (1) {
+ i2 = i1 + 1 | 0;
+ if (!(_isspace(HEAP8[i1 >> 0] | 0) | 0)) break; else i1 = i2;
+ }
+ i3 = HEAP8[i1 >> 0] | 0;
+ switch (i3 << 24 >> 24 | 0) {
+ case 45:
+ {
+ i4 = 1;
+ i5 = 5;
+ break;
+ }
+ case 43:
+ {
+ i4 = 0;
+ i5 = 5;
+ break;
+ }
+ default:
+ i4 = 0;
+ }
+ if ((i5 | 0) == 5) {
+ i1 = i2;
+ i3 = HEAP8[i2 >> 0] | 0;
+ }
+ i2 = (i3 << 24 >> 24) + -48 | 0;
+ if (i2 >>> 0 < 10) {
+ i3 = i1;
+ i1 = 0;
+ do {
+ i3 = i3 + 1 | 0;
+ i1 = (i1 * 10 | 0) - i2 | 0;
+ i2 = (HEAP8[i3 >> 0] | 0) + -48 | 0;
+ } while (i2 >>> 0 < 10);
+ } else i1 = 0;
+ return (i4 | 0 ? i1 : 0 - i1 | 0) | 0;
+}
+
function __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE7destroyEPNS_11__tree_nodeIS6_PvEE(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
@@ -68939,13 +68540,13 @@ function __ZNSt3__114__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111stri
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
+ i2 = i4 + 8 | 0;
while (1) {
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (i1 | 0)) break;
- i2 = i2 + -16 | 0;
- HEAP32[i3 >> 2] = i2;
- __ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i2);
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i3 = i3 + -16 | 0;
+ HEAP32[i2 >> 2] = i3;
+ __ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i3);
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZN10__cxxabiv112_GLOBAL__N_15arenaILj4096EE10deallocateEPcj(HEAP32[HEAP32[i4 + 16 >> 2] >> 2] | 0, i1, (HEAP32[i4 + 12 >> 2] | 0) - i1 | 0);
@@ -68984,25 +68585,25 @@ function __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEEN
return i1 | 0;
}
-function __ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoENS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEE25__construct_node_with_keyERSD_(i5, i2, i1) {
- i5 = i5 | 0;
+function __ZNSt3__13mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoENS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEE25__construct_node_with_keyERSD_(i6, i2, i1) {
+ i6 = i6 | 0;
i2 = i2 | 0;
i1 = i1 | 0;
- var i3 = 0, i4 = 0, i6 = 0;
- i6 = __Znwj(72) | 0;
- i4 = i6;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i6 + 16 | 0, i1);
+ var i3 = 0, i4 = 0, i5 = 0;
+ i4 = __Znwj(72) | 0;
+ i5 = i4;
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i4 + 16 | 0, i1);
i1 = i2 + 4 | 0;
- i3 = i6 + 32 | 0;
- i2 = 0;
+ i2 = i4 + 32 | 0;
+ i3 = 0;
while (1) {
- if ((i2 | 0) == 3) break;
- HEAP32[i3 + (i2 << 2) >> 2] = 0;
- i2 = i2 + 1 | 0;
+ if ((i3 | 0) == 3) break;
+ HEAP32[i2 + (i3 << 2) >> 2] = 0;
+ i3 = i3 + 1 | 0;
}
- HEAP32[i6 + 64 >> 2] = 0;
- HEAP32[i5 >> 2] = i4;
- i6 = i5 + 4 | 0;
+ HEAP32[i4 + 64 >> 2] = 0;
+ HEAP32[i6 >> 2] = i5;
+ i6 = i6 + 4 | 0;
HEAP32[i6 >> 2] = i1;
HEAP32[i6 + 4 >> 2] = 257;
return;
@@ -69070,17 +68671,17 @@ function __ZN4wasm12PassRegistry8PassInfoaSEOS1_(i3, i1) {
return i3 | 0;
}
-function __ZN4wasm10WasmWalkerINS_17RemoveUnusedNamesEvE4walkERPNS_10ExpressionE(i6, i3) {
+function __ZN4wasm10WasmWalkerINS_17RemoveUnusedNamesEvE4walkERPNS_10ExpressionE(i6, i5) {
i6 = i6 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i7 = 0;
+ i5 = i5 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i5 = i7;
- i1 = HEAP32[i3 >> 2] | 0;
- if (i1 | 0 ? (HEAP32[i5 >> 2] = 3304, HEAP32[i5 + 4 >> 2] = i6, __ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEEEvE5visitEPNS_10ExpressionE(i5, i1), __ZN4wasm11WasmVisitorINS_17RemoveUnusedNamesEvE5visitEPNS_10ExpressionE(i6, HEAP32[i3 >> 2] | 0), i4 = i6 + 4 | 0, i2 = HEAP32[i4 >> 2] | 0, i2 | 0) : 0) {
- HEAP32[i3 >> 2] = i2;
- HEAP32[i4 >> 2] = 0;
+ i1 = i7;
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i2 | 0 ? (HEAP32[i1 >> 2] = 3744, HEAP32[i1 + 4 >> 2] = i6, __ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEEEvE5visitEPNS_10ExpressionE(i1, i2), __ZN4wasm11WasmVisitorINS_17RemoveUnusedNamesEvE5visitEPNS_10ExpressionE(i6, HEAP32[i5 >> 2] | 0), i3 = i6 + 4 | 0, i4 = HEAP32[i3 >> 2] | 0, i4 | 0) : 0) {
+ HEAP32[i5 >> 2] = i4;
+ HEAP32[i3 >> 2] = 0;
}
STACKTOP = i7;
return;
@@ -69091,13 +68692,13 @@ function __ZNSt3__113__vector_baseINS_6vectorIN10__cxxabiv112_GLOBAL__N_111strin
var i1 = 0, i2 = 0, i3 = 0;
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) {
- i3 = i4 + 4 | 0;
+ i2 = i4 + 4 | 0;
while (1) {
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (i1 | 0)) break;
- i2 = i2 + -16 | 0;
- HEAP32[i3 >> 2] = i2;
- __ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i2);
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i3 = i3 + -16 | 0;
+ HEAP32[i2 >> 2] = i3;
+ __ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i3);
}
i3 = HEAP32[i4 >> 2] | 0;
__ZN10__cxxabiv112_GLOBAL__N_15arenaILj4096EE10deallocateEPcj(HEAP32[i4 + 12 >> 2] | 0, i3, (HEAP32[i4 + 8 >> 2] | 0) - i3 | 0);
@@ -69105,6 +68706,86 @@ function __ZNSt3__113__vector_baseINS_6vectorIN10__cxxabiv112_GLOBAL__N_111strin
return;
}
+function __ZNKSt3__17codecvtIwc11__mbstate_tE9do_lengthERS1_PKcS5_j(i1, i10, i2, i8, i9) {
+ i1 = i1 | 0;
+ i10 = i10 | 0;
+ i2 = i2 | 0;
+ i8 = i8 | 0;
+ i9 = i9 | 0;
+ var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0;
+ i7 = i8;
+ i6 = i1 + 8 | 0;
+ i1 = 0;
+ i5 = 0;
+ L1 : while (1) {
+ if ((i2 | 0) == (i8 | 0) | i5 >>> 0 >= i9 >>> 0) break;
+ i4 = _uselocale(HEAP32[i6 >> 2] | 0) | 0;
+ i3 = _mbrlen(i2, i7 - i2 | 0, i10) | 0;
+ if (i4 | 0) _uselocale(i4) | 0;
+ switch (i3 | 0) {
+ case -2:
+ case -1:
+ break L1;
+ case 0:
+ {
+ i2 = i2 + 1 | 0;
+ i3 = 1;
+ break;
+ }
+ default:
+ i2 = i2 + i3 | 0;
+ }
+ i1 = i3 + i1 | 0;
+ i5 = i5 + 1 | 0;
+ }
+ return i1 | 0;
+}
+
+function __ZN4wasm11WasmVisitorINS_14PostEmscriptenEvE5visitEPNS_10ExpressionE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ if (!i1) ___assert_fail(27822, 27572, 1310, 27827);
+ switch (HEAP32[i1 >> 2] | 0) {
+ case 0:
+ {
+ _abort();
+ break;
+ }
+ case 20:
+ case 19:
+ case 18:
+ case 17:
+ case 16:
+ case 15:
+ case 14:
+ case 13:
+ case 10:
+ case 9:
+ case 8:
+ case 7:
+ case 6:
+ case 5:
+ case 4:
+ case 3:
+ case 2:
+ case 1:
+ break;
+ case 11:
+ {
+ __ZN4wasm14PostEmscripten13visitMemoryOpINS_4LoadEEEvPT_(i2 + -4 | 0, i1);
+ break;
+ }
+ case 12:
+ {
+ __ZN4wasm14PostEmscripten13visitMemoryOpINS_5StoreEEEvPT_(i2 + -4 | 0, i1);
+ break;
+ }
+ default:
+ {}
+ }
+ return;
+}
+
function __ZNSt3__16vectorIPN4wasm8FunctionENS_9allocatorIS3_EEEC2ERKS6_(i3, i4) {
i3 = i3 | 0;
i4 = i4 | 0;
@@ -69154,51 +68835,51 @@ function __ZNSt3__16vectorIN6cashew3RefENS_9allocatorIS2_EEE13shrink_to_fitEv(i3
var i1 = 0, i2 = 0, i4 = 0, i5 = 0;
i4 = STACKTOP;
STACKTOP = STACKTOP + 32 | 0;
- i1 = i4;
+ i2 = i4;
i5 = HEAP32[i3 >> 2] | 0;
- i2 = (HEAP32[i3 + 4 >> 2] | 0) - i5 | 0;
- if (((HEAP32[i3 + 8 >> 2] | 0) - i5 | 0) >>> 0 > i2 >>> 0) {
- i5 = i2 >> 2;
- __ZNSt3__114__split_bufferIN6cashew3RefERNS_9allocatorIS2_EEEC2EjjS5_(i1, i5, i5, i3 + 8 | 0);
- __ZNSt3__16vectorIN6cashew3RefENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i3, i1);
- __ZNSt3__114__split_bufferIN6cashew3RefERNS_9allocatorIS2_EEED2Ev(i1);
+ i1 = (HEAP32[i3 + 4 >> 2] | 0) - i5 | 0;
+ if (((HEAP32[i3 + 8 >> 2] | 0) - i5 | 0) >>> 0 > i1 >>> 0) {
+ i5 = i1 >> 2;
+ __ZNSt3__114__split_bufferIN6cashew3RefERNS_9allocatorIS2_EEEC2EjjS5_(i2, i5, i5, i3 + 8 | 0);
+ __ZNSt3__16vectorIN6cashew3RefENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i3, i2);
+ __ZNSt3__114__split_bufferIN6cashew3RefERNS_9allocatorIS2_EEED2Ev(i2);
}
STACKTOP = i4;
return;
}
-function __ZN4wasm10WasmWalkerINS_15RemoveUnusedBrsEvE4walkERPNS_10ExpressionE(i6, i3) {
+function __ZN4wasm10WasmWalkerINS_15RemoveUnusedBrsEvE4walkERPNS_10ExpressionE(i6, i5) {
i6 = i6 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i7 = 0;
+ i5 = i5 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i5 = i7;
- i1 = HEAP32[i3 >> 2] | 0;
- if (i1 | 0 ? (HEAP32[i5 >> 2] = 3176, HEAP32[i5 + 4 >> 2] = i6, __ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEEEvE5visitEPNS_10ExpressionE(i5, i1), __ZN4wasm11WasmVisitorINS_15RemoveUnusedBrsEvE5visitEPNS_10ExpressionE(i6, HEAP32[i3 >> 2] | 0), i4 = i6 + 4 | 0, i2 = HEAP32[i4 >> 2] | 0, i2 | 0) : 0) {
- HEAP32[i3 >> 2] = i2;
- HEAP32[i4 >> 2] = 0;
+ i1 = i7;
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i2 | 0 ? (HEAP32[i1 >> 2] = 3616, HEAP32[i1 + 4 >> 2] = i6, __ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEEEvE5visitEPNS_10ExpressionE(i1, i2), __ZN4wasm11WasmVisitorINS_15RemoveUnusedBrsEvE5visitEPNS_10ExpressionE(i6, HEAP32[i5 >> 2] | 0), i3 = i6 + 4 | 0, i4 = HEAP32[i3 >> 2] | 0, i4 | 0) : 0) {
+ HEAP32[i5 >> 2] = i4;
+ HEAP32[i3 >> 2] = 0;
}
STACKTOP = i7;
return;
}
-function ___fflush_unlocked(i3) {
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0;
- i7 = i3 + 20 | 0;
- i6 = i3 + 28 | 0;
- if ((HEAP32[i7 >> 2] | 0) >>> 0 > (HEAP32[i6 >> 2] | 0) >>> 0 ? (FUNCTION_TABLE_iiii[HEAP32[i3 + 36 >> 2] & 31](i3, 0, 0) | 0, (HEAP32[i7 >> 2] | 0) == 0) : 0) i1 = -1; else {
- i5 = i3 + 4 | 0;
- i1 = HEAP32[i5 >> 2] | 0;
- i4 = i3 + 8 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- if (i1 >>> 0 < i2 >>> 0) FUNCTION_TABLE_iiii[HEAP32[i3 + 40 >> 2] & 31](i3, i1 - i2 | 0, 1) | 0;
- HEAP32[i3 + 16 >> 2] = 0;
- HEAP32[i6 >> 2] = 0;
- HEAP32[i7 >> 2] = 0;
- HEAP32[i4 >> 2] = 0;
+function ___fflush_unlocked(i7) {
+ i7 = i7 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0;
+ i1 = i7 + 20 | 0;
+ i5 = i7 + 28 | 0;
+ if ((HEAP32[i1 >> 2] | 0) >>> 0 > (HEAP32[i5 >> 2] | 0) >>> 0 ? (FUNCTION_TABLE_iiii[HEAP32[i7 + 36 >> 2] & 31](i7, 0, 0) | 0, (HEAP32[i1 >> 2] | 0) == 0) : 0) i1 = -1; else {
+ i6 = i7 + 4 | 0;
+ i2 = HEAP32[i6 >> 2] | 0;
+ i3 = i7 + 8 | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ if (i2 >>> 0 < i4 >>> 0) FUNCTION_TABLE_iiii[HEAP32[i7 + 40 >> 2] & 31](i7, i2 - i4 | 0, 1) | 0;
+ HEAP32[i7 + 16 >> 2] = 0;
HEAP32[i5 >> 2] = 0;
+ HEAP32[i1 >> 2] = 0;
+ HEAP32[i3 >> 2] = 0;
+ HEAP32[i6 >> 2] = 0;
i1 = 0;
}
return i1 | 0;
@@ -69252,44 +68933,89 @@ function __ZNSt3__16vectorIPN4wasm6ExportENS_9allocatorIS3_EEEC2ERKS6_(i3, i4) {
return;
}
-function __ZN4wasm10WasmWalkerINS_14SimplifyLocalsEvE4walkERPNS_10ExpressionE(i6, i3) {
+function __ZN4wasm11WasmVisitorINS_17RemoveUnusedNamesEvE5visitEPNS_10ExpressionE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ if (!i1) ___assert_fail(27822, 27572, 1310, 27827);
+ switch (HEAP32[i1 >> 2] | 0) {
+ case 0:
+ {
+ _abort();
+ break;
+ }
+ case 1:
+ {
+ __ZN4wasm17RemoveUnusedNames10visitBlockEPNS_5BlockE(i2 + -4 | 0, i1);
+ break;
+ }
+ case 20:
+ case 19:
+ case 18:
+ case 17:
+ case 16:
+ case 15:
+ case 14:
+ case 13:
+ case 12:
+ case 11:
+ case 10:
+ case 9:
+ case 8:
+ case 7:
+ case 6:
+ case 5:
+ case 3:
+ case 2:
+ break;
+ case 4:
+ {
+ __ZN4wasm17RemoveUnusedNames10visitBreakEPNS_5BreakE(i2 + -4 | 0, i1);
+ break;
+ }
+ default:
+ {}
+ }
+ return;
+}
+
+function __ZN4wasm10WasmWalkerINS_14PostEmscriptenEvE4walkERPNS_10ExpressionE(i6, i5) {
i6 = i6 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i7 = 0;
+ i5 = i5 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0;
i7 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i5 = i7;
- i1 = HEAP32[i3 >> 2] | 0;
- if (i1 | 0 ? (HEAP32[i5 >> 2] = 3432, HEAP32[i5 + 4 >> 2] = i6, __ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEEEvE5visitEPNS_10ExpressionE(i5, i1), __ZN4wasm11WasmVisitorINS_14SimplifyLocalsEvE5visitEPNS_10ExpressionE(i6, HEAP32[i3 >> 2] | 0), i4 = i6 + 4 | 0, i2 = HEAP32[i4 >> 2] | 0, i2 | 0) : 0) {
- HEAP32[i3 >> 2] = i2;
- HEAP32[i4 >> 2] = 0;
+ i1 = i7;
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i2 | 0 ? (HEAP32[i1 >> 2] = 3872, HEAP32[i1 + 4 >> 2] = i6, __ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEEEvE5visitEPNS_10ExpressionE(i1, i2), __ZN4wasm11WasmVisitorINS_14PostEmscriptenEvE5visitEPNS_10ExpressionE(i6, HEAP32[i5 >> 2] | 0), i3 = i6 + 4 | 0, i4 = HEAP32[i3 >> 2] | 0, i4 | 0) : 0) {
+ HEAP32[i5 >> 2] = i4;
+ HEAP32[i3 >> 2] = 0;
}
STACKTOP = i7;
return;
}
-function __ZNSt3__115__num_get_floatIfEET_PKcS3_Rj(i2, i4, i5) {
+function __ZNSt3__115__num_get_floatIfEET_PKcS3_Rj(i2, i5, i6) {
i2 = i2 | 0;
- i4 = i4 | 0;
i5 = i5 | 0;
- var d1 = 0.0, i3 = 0, i6 = 0, i7 = 0, i8 = 0;
+ i6 = i6 | 0;
+ var d1 = 0.0, i3 = 0, i4 = 0, i7 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
- if ((i2 | 0) == (i4 | 0)) {
- HEAP32[i5 >> 2] = 4;
+ i7 = i8;
+ if ((i2 | 0) == (i5 | 0)) {
+ HEAP32[i6 >> 2] = 4;
d1 = 0.0;
} else {
- i7 = ___errno_location() | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- HEAP32[i7 >> 2] = 0;
- d1 = +_strtold_l(i2, i6, __ZNSt3__16__clocEv() | 0);
- i2 = HEAP32[i7 >> 2] | 0;
- if (!i2) HEAP32[i7 >> 2] = i3;
- if ((HEAP32[i6 >> 2] | 0) == (i4 | 0)) {
- if ((i2 | 0) == 34) HEAP32[i5 >> 2] = 4;
+ i3 = ___errno_location() | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ HEAP32[i3 >> 2] = 0;
+ d1 = +_strtold_l(i2, i7, __ZNSt3__16__clocEv() | 0);
+ i2 = HEAP32[i3 >> 2] | 0;
+ if (!i2) HEAP32[i3 >> 2] = i4;
+ if ((HEAP32[i7 >> 2] | 0) == (i5 | 0)) {
+ if ((i2 | 0) == 34) HEAP32[i6 >> 2] = 4;
} else {
- HEAP32[i5 >> 2] = 4;
+ HEAP32[i6 >> 2] = 4;
d1 = 0.0;
}
}
@@ -69297,28 +69023,28 @@ function __ZNSt3__115__num_get_floatIfEET_PKcS3_Rj(i2, i4, i5) {
return +d1;
}
-function __ZNSt3__115__num_get_floatIeEET_PKcS3_Rj(i2, i4, i5) {
+function __ZNSt3__115__num_get_floatIeEET_PKcS3_Rj(i2, i5, i6) {
i2 = i2 | 0;
- i4 = i4 | 0;
i5 = i5 | 0;
- var d1 = 0.0, i3 = 0, i6 = 0, i7 = 0, i8 = 0;
+ i6 = i6 | 0;
+ var d1 = 0.0, i3 = 0, i4 = 0, i7 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
- if ((i2 | 0) == (i4 | 0)) {
- HEAP32[i5 >> 2] = 4;
+ i7 = i8;
+ if ((i2 | 0) == (i5 | 0)) {
+ HEAP32[i6 >> 2] = 4;
d1 = 0.0;
} else {
- i7 = ___errno_location() | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- HEAP32[i7 >> 2] = 0;
- d1 = +_strtold_l(i2, i6, __ZNSt3__16__clocEv() | 0);
- i2 = HEAP32[i7 >> 2] | 0;
- if (!i2) HEAP32[i7 >> 2] = i3;
- if ((HEAP32[i6 >> 2] | 0) == (i4 | 0)) {
- if ((i2 | 0) == 34) HEAP32[i5 >> 2] = 4;
+ i3 = ___errno_location() | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ HEAP32[i3 >> 2] = 0;
+ d1 = +_strtold_l(i2, i7, __ZNSt3__16__clocEv() | 0);
+ i2 = HEAP32[i3 >> 2] | 0;
+ if (!i2) HEAP32[i3 >> 2] = i4;
+ if ((HEAP32[i7 >> 2] | 0) == (i5 | 0)) {
+ if ((i2 | 0) == 34) HEAP32[i6 >> 2] = 4;
} else {
- HEAP32[i5 >> 2] = 4;
+ HEAP32[i6 >> 2] = 4;
d1 = 0.0;
}
}
@@ -69326,28 +69052,28 @@ function __ZNSt3__115__num_get_floatIeEET_PKcS3_Rj(i2, i4, i5) {
return +d1;
}
-function __ZNSt3__115__num_get_floatIdEET_PKcS3_Rj(i2, i4, i5) {
+function __ZNSt3__115__num_get_floatIdEET_PKcS3_Rj(i2, i5, i6) {
i2 = i2 | 0;
- i4 = i4 | 0;
i5 = i5 | 0;
- var d1 = 0.0, i3 = 0, i6 = 0, i7 = 0, i8 = 0;
+ i6 = i6 | 0;
+ var d1 = 0.0, i3 = 0, i4 = 0, i7 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i6 = i8;
- if ((i2 | 0) == (i4 | 0)) {
- HEAP32[i5 >> 2] = 4;
+ i7 = i8;
+ if ((i2 | 0) == (i5 | 0)) {
+ HEAP32[i6 >> 2] = 4;
d1 = 0.0;
} else {
- i7 = ___errno_location() | 0;
- i3 = HEAP32[i7 >> 2] | 0;
- HEAP32[i7 >> 2] = 0;
- d1 = +_strtold_l(i2, i6, __ZNSt3__16__clocEv() | 0);
- i2 = HEAP32[i7 >> 2] | 0;
- if (!i2) HEAP32[i7 >> 2] = i3;
- if ((HEAP32[i6 >> 2] | 0) == (i4 | 0)) {
- if ((i2 | 0) == 34) HEAP32[i5 >> 2] = 4;
+ i3 = ___errno_location() | 0;
+ i4 = HEAP32[i3 >> 2] | 0;
+ HEAP32[i3 >> 2] = 0;
+ d1 = +_strtold_l(i2, i7, __ZNSt3__16__clocEv() | 0);
+ i2 = HEAP32[i3 >> 2] | 0;
+ if (!i2) HEAP32[i3 >> 2] = i4;
+ if ((HEAP32[i7 >> 2] | 0) == (i5 | 0)) {
+ if ((i2 | 0) == 34) HEAP32[i6 >> 2] = 4;
} else {
- HEAP32[i5 >> 2] = 4;
+ HEAP32[i6 >> 2] = 4;
d1 = 0.0;
}
}
@@ -69355,6 +69081,22 @@ function __ZNSt3__115__num_get_floatIdEET_PKcS3_Rj(i2, i4, i5) {
return +d1;
}
+function __ZN4wasm10WasmWalkerINS_14SimplifyLocalsEvE4walkERPNS_10ExpressionE(i6, i5) {
+ i6 = i6 | 0;
+ i5 = i5 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0;
+ i7 = STACKTOP;
+ STACKTOP = STACKTOP + 16 | 0;
+ i1 = i7;
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i2 | 0 ? (HEAP32[i1 >> 2] = 4e3, HEAP32[i1 + 4 >> 2] = i6, __ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEEEvE5visitEPNS_10ExpressionE(i1, i2), __ZN4wasm11WasmVisitorINS_14SimplifyLocalsEvE5visitEPNS_10ExpressionE(i6, HEAP32[i5 >> 2] | 0), i3 = i6 + 4 | 0, i4 = HEAP32[i3 >> 2] | 0, i4 | 0) : 0) {
+ HEAP32[i5 >> 2] = i4;
+ HEAP32[i3 >> 2] = 0;
+ }
+ STACKTOP = i7;
+ return;
+}
+
function __ZN4wasm22SExpressionWasmBuilder8makeCallERNS_7ElementE(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
@@ -69364,12 +69106,40 @@ function __ZN4wasm22SExpressionWasmBuilder8makeCallERNS_7ElementE(i2, i1) {
i5 = __ZN4wasm7Element4listEv(i1) | 0;
i5 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i5 >> 2] | 0) + 4 >> 2] | 0) | 0;
HEAP32[i4 >> 2] = i5;
- i4 = __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i2 + 36 | 0, i4) | 0;
+ i4 = __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i2 + 40 | 0, i4) | 0;
HEAP32[i3 + 4 >> 2] = HEAP32[i4 >> 2];
__ZN4wasm22SExpressionWasmBuilder17parseCallOperandsINS_4CallEEEvRNS_7ElementEjPT_(i2, i1, 2, i3);
return i3 | 0;
}
+function _strtox_17(i7, i6, i1) {
+ i7 = i7 | 0;
+ i6 = i6 | 0;
+ i1 = i1 | 0;
+ var d2 = 0.0, i3 = 0, i4 = 0, i5 = 0, i8 = 0;
+ i8 = STACKTOP;
+ STACKTOP = STACKTOP + 112 | 0;
+ i5 = i8;
+ i3 = i5;
+ i4 = i3 + 112 | 0;
+ do {
+ HEAP32[i3 >> 2] = 0;
+ i3 = i3 + 4 | 0;
+ } while ((i3 | 0) < (i4 | 0));
+ i3 = i5 + 4 | 0;
+ HEAP32[i3 >> 2] = i7;
+ i4 = i5 + 8 | 0;
+ HEAP32[i4 >> 2] = -1;
+ HEAP32[i5 + 44 >> 2] = i7;
+ HEAP32[i5 + 76 >> 2] = -1;
+ ___shlim(i5, 0);
+ d2 = +___floatscan(i5, i1, 1);
+ i1 = (HEAP32[i3 >> 2] | 0) - (HEAP32[i4 >> 2] | 0) + (HEAP32[i5 + 108 >> 2] | 0) | 0;
+ if (i6 | 0) HEAP32[i6 >> 2] = i1 | 0 ? i7 + i1 | 0 : i7;
+ STACKTOP = i8;
+ return +d2;
+}
+
function __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_(i2, i3) {
i2 = i2 | 0;
i3 = i3 | 0;
@@ -69390,21 +69160,21 @@ function __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__m
return i1 | 0;
}
-function __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i2, i1) {
- i2 = i2 | 0;
+function __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i3, i1) {
+ i3 = i3 | 0;
i1 = i1 | 0;
- var i3 = 0, i4 = 0, i5 = 0;
+ var i2 = 0, i4 = 0, i5 = 0;
i5 = i1 + 12 | 0;
- i3 = HEAP8[i5 >> 0] | 0;
- i4 = (i3 & 1) == 0;
- i3 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i1, i4 ? i5 + 1 | 0 : HEAP32[i1 + 20 >> 2] | 0, i4 ? (i3 & 255) >>> 1 : HEAP32[i1 + 16 >> 2] | 0) | 0;
- HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i2 + 4 >> 2] = HEAP32[i3 + 4 >> 2];
- HEAP32[i2 + 8 >> 2] = HEAP32[i3 + 8 >> 2];
+ i2 = HEAP8[i5 >> 0] | 0;
+ i4 = (i2 & 1) == 0;
+ i2 = __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i1, i4 ? i5 + 1 | 0 : HEAP32[i1 + 20 >> 2] | 0, i4 ? (i2 & 255) >>> 1 : HEAP32[i1 + 16 >> 2] | 0) | 0;
+ HEAP32[i3 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i3 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
+ HEAP32[i3 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
i1 = 0;
while (1) {
if ((i1 | 0) == 3) break;
- HEAP32[i3 + (i1 << 2) >> 2] = 0;
+ HEAP32[i2 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
return;
@@ -69414,13 +69184,13 @@ function __ZNSt3__114__split_bufferINS_13unordered_mapIN6cashew7IStringEiNS_4has
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
+ i2 = i4 + 8 | 0;
while (1) {
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (i1 | 0)) break;
- i2 = i2 + -20 | 0;
- HEAP32[i3 >> 2] = i2;
- __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEED2Ev(i2);
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i3 = i3 + -20 | 0;
+ HEAP32[i2 >> 2] = i3;
+ __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEED2Ev(i3);
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZdlPv(i1);
@@ -69436,7 +69206,7 @@ function __ZN6cashew12ValueBuilder7makeVarEb(i1) {
i5 = i2 + 4 | 0;
i4 = i2;
i3 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0;
- i6 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(36936) | 0;
+ i6 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38408) | 0;
HEAP32[i5 >> 2] = i6;
HEAP32[i1 >> 2] = HEAP32[i5 >> 2];
i3 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0;
@@ -69448,34 +69218,6 @@ function __ZN6cashew12ValueBuilder7makeVarEb(i1) {
return i1 | 0;
}
-function _strtox(i7, i6, i1) {
- i7 = i7 | 0;
- i6 = i6 | 0;
- i1 = i1 | 0;
- var d2 = 0.0, i3 = 0, i4 = 0, i5 = 0, i8 = 0;
- i8 = STACKTOP;
- STACKTOP = STACKTOP + 112 | 0;
- i5 = i8;
- i3 = i5;
- i4 = i3 + 112 | 0;
- do {
- HEAP32[i3 >> 2] = 0;
- i3 = i3 + 4 | 0;
- } while ((i3 | 0) < (i4 | 0));
- i3 = i5 + 4 | 0;
- HEAP32[i3 >> 2] = i7;
- i4 = i5 + 8 | 0;
- HEAP32[i4 >> 2] = -1;
- HEAP32[i5 + 44 >> 2] = i7;
- HEAP32[i5 + 76 >> 2] = -1;
- ___shlim(i5, 0);
- d2 = +___floatscan(i5, i1, 1);
- i1 = (HEAP32[i3 >> 2] | 0) - (HEAP32[i4 >> 2] | 0) + (HEAP32[i5 + 108 >> 2] | 0) | 0;
- if (i6 | 0) HEAP32[i6 >> 2] = i1 | 0 ? i7 + i1 | 0 : i7;
- STACKTOP = i8;
- return +d2;
-}
-
function __ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunner6fixNaNEff(i2, d3, d1) {
i2 = i2 | 0;
d3 = +d3;
@@ -69523,13 +69265,13 @@ function __ZNSt3__113__vector_baseINS_13unordered_mapIN6cashew7IStringEiNS_4hash
var i1 = 0, i2 = 0, i3 = 0;
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) {
- i3 = i4 + 4 | 0;
+ i2 = i4 + 4 | 0;
while (1) {
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (i1 | 0)) break;
- i2 = i2 + -20 | 0;
- HEAP32[i3 >> 2] = i2;
- __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEED2Ev(i2);
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i3 = i3 + -20 | 0;
+ HEAP32[i2 >> 2] = i3;
+ __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEED2Ev(i3);
}
__ZdlPv(HEAP32[i4 >> 2] | 0);
}
@@ -69544,27 +69286,7 @@ function __ZN6cashew12ValueBuilder12makeToplevelEv() {
i5 = i2 + 4 | 0;
i4 = i2;
i3 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0;
- i6 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(36912) | 0;
- HEAP32[i5 >> 2] = i6;
- HEAP32[i1 >> 2] = HEAP32[i5 >> 2];
- i3 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0;
- i5 = __ZN6cashew12ValueBuilder12makeRawArrayEi(0) | 0;
- HEAP32[i4 >> 2] = i5;
- HEAP32[i1 >> 2] = HEAP32[i4 >> 2];
- i1 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0;
- STACKTOP = i2;
- return i1 | 0;
-}
-
-function __ZN6cashew12ValueBuilder10makeObjectEv() {
- var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0;
- i2 = STACKTOP;
- STACKTOP = STACKTOP + 16 | 0;
- i1 = i2 + 8 | 0;
- i5 = i2 + 4 | 0;
- i4 = i2;
- i3 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0;
- i6 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(37232) | 0;
+ i6 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38384) | 0;
HEAP32[i5 >> 2] = i6;
HEAP32[i1 >> 2] = HEAP32[i5 >> 2];
i3 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0;
@@ -69576,43 +69298,27 @@ function __ZN6cashew12ValueBuilder10makeObjectEv() {
return i1 | 0;
}
-function __ZN4wasm10WasmWalkerINS_11MergeBlocksEvE4walkERPNS_10ExpressionE(i6, i3) {
- i6 = i6 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i7 = 0;
- i7 = STACKTOP;
- STACKTOP = STACKTOP + 16 | 0;
- i5 = i7;
- i1 = HEAP32[i3 >> 2] | 0;
- if (i1 | 0 ? (HEAP32[i5 >> 2] = 3048, HEAP32[i5 + 4 >> 2] = i6, __ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEEEvE5visitEPNS_10ExpressionE(i5, i1), __ZN4wasm11WasmVisitorINS_11MergeBlocksEvE5visitEPNS_10ExpressionE(i6, HEAP32[i3 >> 2] | 0), i4 = i6 + 4 | 0, i2 = HEAP32[i4 >> 2] | 0, i2 | 0) : 0) {
- HEAP32[i3 >> 2] = i2;
- HEAP32[i4 >> 2] = 0;
- }
- STACKTOP = i7;
- return;
-}
-
-function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4dumpEPKcPc(i1, i2) {
- i1 = i1 | 0;
+function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4dumpEPKcPc(i2, i1) {
i2 = i2 | 0;
+ i1 = i1 | 0;
var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
i6 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
i3 = i6;
- i5 = HEAP32[894] | 0;
- HEAP32[i3 >> 2] = i1;
- _fprintf(i5, 22313, i3) | 0;
+ i5 = HEAP32[1007] | 0;
+ HEAP32[i3 >> 2] = i2;
+ _fprintf(i5, 22901, i3) | 0;
i3 = 200;
- i1 = 2;
+ i2 = 2;
L1 : while (1) {
- i4 = HEAP8[i2 >> 0] | 0;
+ i4 = HEAP8[i1 >> 0] | 0;
switch (i4 << 24 >> 24) {
case 0:
break L1;
case 10:
{
- i1 = i1 + -1 | 0;
- if (!i1) break L1;
+ i2 = i2 + -1 | 0;
+ if (!i2) break L1;
break;
}
default:
@@ -69621,54 +69327,46 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4dumpEPKcPc(i1, i2
i3 = i3 + -1 | 0;
if (!i3) break;
_fputc(i4 << 24 >> 24, i5) | 0;
- i2 = i2 + 1 | 0;
+ i1 = i1 + 1 | 0;
}
- _fwrite(22329, 2, 1, i5) | 0;
+ _fwrite(22917, 2, 1, i5) | 0;
STACKTOP = i6;
return;
}
-function __ZN4wasm11WasmVisitorINS_17RemoveUnusedNamesEvE5visitEPNS_10ExpressionE(i2, i1) {
- i2 = i2 | 0;
- i1 = i1 | 0;
- if (!i1) ___assert_fail(26470, 26220, 1229, 26475);
- switch (HEAP32[i1 >> 2] | 0) {
- case 0:
- {
- _abort();
- break;
- }
- case 1:
- {
- __ZN4wasm17RemoveUnusedNames10visitBlockEPNS_5BlockE(i2 + -4 | 0, i1);
- break;
- }
- case 19:
- case 18:
- case 17:
- case 16:
- case 15:
- case 14:
- case 13:
- case 12:
- case 11:
- case 10:
- case 9:
- case 8:
- case 7:
- case 6:
- case 5:
- case 3:
- case 2:
- break;
- case 4:
- {
- __ZN4wasm17RemoveUnusedNames10visitBreakEPNS_5BreakE(i2 + -4 | 0, i1);
- break;
- }
- default:
- {}
+function __ZN6cashew12ValueBuilder10makeObjectEv() {
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0;
+ i2 = STACKTOP;
+ STACKTOP = STACKTOP + 16 | 0;
+ i1 = i2 + 8 | 0;
+ i5 = i2 + 4 | 0;
+ i4 = i2;
+ i3 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0;
+ i6 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38704) | 0;
+ HEAP32[i5 >> 2] = i6;
+ HEAP32[i1 >> 2] = HEAP32[i5 >> 2];
+ i3 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0;
+ i5 = __ZN6cashew12ValueBuilder12makeRawArrayEi(0) | 0;
+ HEAP32[i4 >> 2] = i5;
+ HEAP32[i1 >> 2] = HEAP32[i4 >> 2];
+ i1 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0;
+ STACKTOP = i2;
+ return i1 | 0;
+}
+
+function __ZN4wasm10WasmWalkerINS_11MergeBlocksEvE4walkERPNS_10ExpressionE(i6, i5) {
+ i6 = i6 | 0;
+ i5 = i5 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0;
+ i7 = STACKTOP;
+ STACKTOP = STACKTOP + 16 | 0;
+ i1 = i7;
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i2 | 0 ? (HEAP32[i1 >> 2] = 3488, HEAP32[i1 + 4 >> 2] = i6, __ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEEEvE5visitEPNS_10ExpressionE(i1, i2), __ZN4wasm11WasmVisitorINS_11MergeBlocksEvE5visitEPNS_10ExpressionE(i6, HEAP32[i5 >> 2] | 0), i3 = i6 + 4 | 0, i4 = HEAP32[i3 >> 2] | 0, i4 | 0) : 0) {
+ HEAP32[i5 >> 2] = i4;
+ HEAP32[i3 >> 2] = 0;
}
+ STACKTOP = i7;
return;
}
@@ -69680,7 +69378,7 @@ function __ZN6cashew12ValueBuilder9makeBlockEv() {
i5 = i2 + 4 | 0;
i4 = i2;
i3 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0;
- i6 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(36920) | 0;
+ i6 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38392) | 0;
HEAP32[i5 >> 2] = i6;
HEAP32[i1 >> 2] = HEAP32[i5 >> 2];
i3 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0;
@@ -69700,7 +69398,7 @@ function __ZN6cashew12ValueBuilder9makeArrayEv() {
i5 = i2 + 4 | 0;
i4 = i2;
i3 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0;
- i6 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(37228) | 0;
+ i6 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38700) | 0;
HEAP32[i5 >> 2] = i6;
HEAP32[i1 >> 2] = HEAP32[i5 >> 2];
i3 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0;
@@ -69729,6 +69427,51 @@ function __ZNSt3__16vectorIN4wasm7LiteralENS_9allocatorIS2_EEE7reserveEj(i4, i2)
return;
}
+function __ZN4wasm11WasmVisitorINS_15RemoveUnusedBrsEvE5visitEPNS_10ExpressionE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ if (!i1) ___assert_fail(27822, 27572, 1310, 27827);
+ switch (HEAP32[i1 >> 2] | 0) {
+ case 0:
+ {
+ _abort();
+ break;
+ }
+ case 1:
+ {
+ __ZN4wasm15RemoveUnusedBrs10visitBlockEPNS_5BlockE(i2 + -4 | 0, i1);
+ break;
+ }
+ case 2:
+ {
+ __ZN4wasm15RemoveUnusedBrs7visitIfEPNS_2IfE(i2 + -4 | 0, i1);
+ break;
+ }
+ case 20:
+ case 19:
+ case 18:
+ case 17:
+ case 16:
+ case 15:
+ case 14:
+ case 13:
+ case 12:
+ case 11:
+ case 10:
+ case 9:
+ case 8:
+ case 7:
+ case 6:
+ case 5:
+ case 4:
+ case 3:
+ break;
+ default:
+ {}
+ }
+ return;
+}
+
function __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEiEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE4findIS3_EENS_15__tree_iteratorIS4_PNS_11__tree_nodeIS4_PvEEiEERKT_(i2, i3) {
i2 = i2 | 0;
i3 = i3 | 0;
@@ -69766,44 +69509,71 @@ function __ZN6cashew12ValueBuilder24appendArgumentToFunctionENS_3RefENS_7IString
var i1 = 0, i2 = 0, i5 = 0;
i5 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i2 = i5 + 4 | 0;
- i1 = i5;
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 0) | 0, 36916) | 0) {
+ i1 = i5 + 4 | 0;
+ i2 = i5;
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 0) | 0, 38388) | 0) {
i4 = __ZN6cashew3RefixEj(i4, 2) | 0;
i4 = HEAP32[i4 >> 2] | 0;
i3 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(i3) | 0;
- HEAP32[i1 >> 2] = i3;
- HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
- __ZN6cashew5Value9push_backENS_3RefE(i4, i2) | 0;
+ HEAP32[i2 >> 2] = i3;
+ HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
+ __ZN6cashew5Value9push_backENS_3RefE(i4, i1) | 0;
STACKTOP = i5;
return;
- } else ___assert_fail(22421, 27234, 1508, 22438);
+ } else ___assert_fail(23009, 28586, 1508, 23026);
}
-function _vasprintf(i7, i6, i3) {
+function _vasprintf(i7, i6, i5) {
i7 = i7 | 0;
i6 = i6 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i8 = 0;
+ i5 = i5 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i8 = 0;
i8 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
i1 = i8;
- i4 = _malloc(240) | 0;
- do if (i4) {
- HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
- i1 = _vsnprintf(i4, 240, i6, i1) | 0;
+ i2 = _malloc(240) | 0;
+ do if (i2) {
+ HEAP32[i1 >> 2] = HEAP32[i5 >> 2];
+ i1 = _vsnprintf(i2, 240, i6, i1) | 0;
if (i1 >>> 0 < 240) {
- i6 = _realloc(i4, i1 + 1 | 0) | 0;
- HEAP32[i7 >> 2] = i6 | 0 ? i6 : i4;
+ i6 = _realloc(i2, i1 + 1 | 0) | 0;
+ HEAP32[i7 >> 2] = i6 | 0 ? i6 : i2;
break;
}
- _free(i4);
- if ((i1 | 0) >= 0 ? (i2 = i1 + 1 | 0, i5 = _malloc(i2) | 0, HEAP32[i7 >> 2] = i5, (i5 | 0) != 0) : 0) i1 = _vsnprintf(i5, i2, i6, i3) | 0; else i1 = -1;
+ _free(i2);
+ if ((i1 | 0) >= 0 ? (i4 = i1 + 1 | 0, i3 = _malloc(i4) | 0, HEAP32[i7 >> 2] = i3, (i3 | 0) != 0) : 0) i1 = _vsnprintf(i3, i4, i6, i5) | 0; else i1 = -1;
} else i1 = -1; while (0);
STACKTOP = i8;
return i1 | 0;
}
+function _getc(i4) {
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0;
+ if ((HEAP32[i4 + 76 >> 2] | 0) >= 0 ? (___lockfile(i4) | 0) != 0 : 0) {
+ i1 = i4 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i4 + 8 >> 2] | 0) >>> 0) {
+ HEAP32[i1 >> 2] = i2 + 1;
+ i1 = HEAPU8[i2 >> 0] | 0;
+ } else i1 = ___uflow(i4) | 0;
+ ___unlockfile(i4);
+ } else i3 = 3;
+ do if ((i3 | 0) == 3) {
+ i1 = i4 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i4 + 8 >> 2] | 0) >>> 0) {
+ HEAP32[i1 >> 2] = i2 + 1;
+ i1 = HEAPU8[i2 >> 0] | 0;
+ break;
+ } else {
+ i1 = ___uflow(i4) | 0;
+ break;
+ }
+ } while (0);
+ return i1 | 0;
+}
+
function __ZNSt3__16vectorIN6cashew3RefENS_9allocatorIS2_EEE7reserveEj(i4, i2) {
i4 = i4 | 0;
i2 = i2 | 0;
@@ -69853,50 +69623,6 @@ function _realloc(i3, i2) {
return i3 | 0;
}
-function __ZN4wasm11WasmVisitorINS_15RemoveUnusedBrsEvE5visitEPNS_10ExpressionE(i2, i1) {
- i2 = i2 | 0;
- i1 = i1 | 0;
- if (!i1) ___assert_fail(26470, 26220, 1229, 26475);
- switch (HEAP32[i1 >> 2] | 0) {
- case 0:
- {
- _abort();
- break;
- }
- case 1:
- {
- __ZN4wasm15RemoveUnusedBrs10visitBlockEPNS_5BlockE(i2 + -4 | 0, i1);
- break;
- }
- case 2:
- {
- __ZN4wasm15RemoveUnusedBrs7visitIfEPNS_2IfE(i2 + -4 | 0, i1);
- break;
- }
- case 19:
- case 18:
- case 17:
- case 16:
- case 15:
- case 14:
- case 13:
- case 12:
- case 11:
- case 10:
- case 9:
- case 8:
- case 7:
- case 6:
- case 5:
- case 4:
- case 3:
- break;
- default:
- {}
- }
- return;
-}
-
function _memcpy(i1, i4, i2) {
i1 = i1 | 0;
i4 = i4 | 0;
@@ -69957,11 +69683,11 @@ function __ZN7AsmData8addParamEN6cashew7IStringE7AsmType(i4, i3, i1) {
i2 = __ZNSt3__113unordered_mapIN6cashew7IStringEN7AsmData5LocalENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERSB_(i4, i3) | 0;
HEAP32[i2 >> 2] = i1;
HEAP8[i2 + 4 >> 0] = 1;
- i2 = i4 + 24 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i4 + 28 >> 2] | 0)) __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i4 + 20 | 0, i3); else {
- HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4;
+ i1 = i4 + 24 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i4 + 28 >> 2] | 0)) __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i4 + 20 | 0, i3); else {
+ HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 4;
}
return;
}
@@ -69984,15 +69710,92 @@ function __ZN7AsmData6addVarEN6cashew7IStringE7AsmType(i4, i3, i1) {
i2 = __ZNSt3__113unordered_mapIN6cashew7IStringEN7AsmData5LocalENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERSB_(i4, i3) | 0;
HEAP32[i2 >> 2] = i1;
HEAP8[i2 + 4 >> 0] = 0;
- i2 = i4 + 36 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if ((i1 | 0) == (HEAP32[i4 + 40 >> 2] | 0)) __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i4 + 32 | 0, i3); else {
- HEAP32[i1 >> 2] = HEAP32[i3 >> 2];
- HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4;
+ i1 = i4 + 36 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ if ((i2 | 0) == (HEAP32[i4 + 40 >> 2] | 0)) __ZNSt3__16vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i4 + 32 | 0, i3); else {
+ HEAP32[i2 >> 2] = HEAP32[i3 >> 2];
+ HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 4;
}
return;
}
+function __ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE6xsputnEPKwi(i7, i1, i6) {
+ i7 = i7 | 0;
+ i1 = i1 | 0;
+ i6 = i6 | 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0;
+ i4 = i7 + 24 | 0;
+ i5 = i7 + 28 | 0;
+ i2 = i1;
+ i1 = 0;
+ while (1) {
+ if ((i1 | 0) >= (i6 | 0)) break;
+ i3 = HEAP32[i4 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i5 >> 2] | 0) >>> 0) {
+ if ((FUNCTION_TABLE_iii[HEAP32[(HEAP32[i7 >> 2] | 0) + 52 >> 2] & 31](i7, HEAP32[i2 >> 2] | 0) | 0) == -1) break;
+ } else {
+ i8 = HEAP32[i2 >> 2] | 0;
+ HEAP32[i4 >> 2] = i3 + 4;
+ HEAP32[i3 >> 2] = i8;
+ }
+ i2 = i2 + 4 | 0;
+ i1 = i1 + 1 | 0;
+ }
+ return i1 | 0;
+}
+
+function __ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE6xsgetnEPci(i7, i1, i6) {
+ i7 = i7 | 0;
+ i1 = i1 | 0;
+ i6 = i6 | 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0;
+ i4 = i7 + 12 | 0;
+ i5 = i7 + 16 | 0;
+ i3 = i1;
+ i1 = 0;
+ while (1) {
+ if ((i1 | 0) >= (i6 | 0)) break;
+ i2 = HEAP32[i4 >> 2] | 0;
+ if (i2 >>> 0 < (HEAP32[i5 >> 2] | 0) >>> 0) {
+ HEAP32[i4 >> 2] = i2 + 1;
+ i2 = HEAP8[i2 >> 0] | 0;
+ } else {
+ i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i7 >> 2] | 0) + 40 >> 2] & 127](i7) | 0;
+ if ((i2 | 0) == -1) break;
+ i2 = i2 & 255;
+ }
+ HEAP8[i3 >> 0] = i2;
+ i3 = i3 + 1 | 0;
+ i1 = i1 + 1 | 0;
+ }
+ return i1 | 0;
+}
+
+function __ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE6xsputnEPKci(i7, i1, i6) {
+ i7 = i7 | 0;
+ i1 = i1 | 0;
+ i6 = i6 | 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0;
+ i4 = i7 + 24 | 0;
+ i5 = i7 + 28 | 0;
+ i2 = i1;
+ i1 = 0;
+ while (1) {
+ if ((i1 | 0) >= (i6 | 0)) break;
+ i3 = HEAP32[i4 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i5 >> 2] | 0) >>> 0) {
+ if ((FUNCTION_TABLE_iii[HEAP32[(HEAP32[i7 >> 2] | 0) + 52 >> 2] & 31](i7, HEAPU8[i2 >> 0] | 0) | 0) == -1) break;
+ } else {
+ i8 = HEAP8[i2 >> 0] | 0;
+ HEAP32[i4 >> 2] = i3 + 1;
+ HEAP8[i3 >> 0] = i8;
+ }
+ i2 = i2 + 1 | 0;
+ i1 = i1 + 1 | 0;
+ }
+ return i1 | 0;
+}
+
function __ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11__get_year4ERiRS4_S4_RjRKNS_5ctypeIwEE(i1, i7, i2, i4, i6, i3) {
i1 = i1 | 0;
i7 = i7 | 0;
@@ -70081,7 +69884,7 @@ function __ZN6cashew12ValueBuilder7makeNewENS_3RefE(i1) {
i6 = i2 + 4 | 0;
i5 = i2;
i4 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0;
- i7 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(37224) | 0;
+ i7 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(38696) | 0;
HEAP32[i6 >> 2] = i7;
HEAP32[i3 >> 2] = HEAP32[i6 >> 2];
i4 = __ZN6cashew5Value9push_backENS_3RefE(i4, i3) | 0;
@@ -70092,29 +69895,29 @@ function __ZN6cashew12ValueBuilder7makeNewENS_3RefE(i1) {
return i1 | 0;
}
-function __ZNKSt3__110__time_put8__do_putEPcRS1_PK2tmcc(i9, i3, i4, i5, i1, i2) {
+function __ZNKSt3__110__time_put8__do_putEPcRS1_PK2tmcc(i9, i5, i6, i7, i3, i4) {
i9 = i9 | 0;
+ i5 = i5 | 0;
+ i6 = i6 | 0;
+ i7 = i7 | 0;
i3 = i3 | 0;
i4 = i4 | 0;
- i5 = i5 | 0;
- i1 = i1 | 0;
- i2 = i2 | 0;
- var i6 = 0, i7 = 0, i8 = 0, i10 = 0;
+ var i1 = 0, i2 = 0, i8 = 0, i10 = 0;
i10 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
i8 = i10;
HEAP8[i8 >> 0] = 37;
- i6 = i8 + 1 | 0;
- HEAP8[i6 >> 0] = i1;
- i7 = i8 + 2 | 0;
- HEAP8[i7 >> 0] = i2;
+ i1 = i8 + 1 | 0;
+ HEAP8[i1 >> 0] = i3;
+ i2 = i8 + 2 | 0;
+ HEAP8[i2 >> 0] = i4;
HEAP8[i8 + 3 >> 0] = 0;
- if (i2 << 24 >> 24) {
- HEAP8[i6 >> 0] = i2;
- HEAP8[i7 >> 0] = i1;
+ if (i4 << 24 >> 24) {
+ HEAP8[i1 >> 0] = i4;
+ HEAP8[i2 >> 0] = i3;
}
- i9 = i3 + (_strftime_l(i3 | 0, (HEAP32[i4 >> 2] | 0) - i3 | 0, i8 | 0, i5 | 0, HEAP32[i9 >> 2] | 0) | 0) | 0;
- HEAP32[i4 >> 2] = i9;
+ i9 = i5 + (_strftime_l(i5 | 0, (HEAP32[i6 >> 2] | 0) - i5 | 0, i8 | 0, i7 | 0, HEAP32[i9 >> 2] | 0) | 0) | 0;
+ HEAP32[i6 >> 2] = i9;
STACKTOP = i10;
return;
}
@@ -70123,17 +69926,17 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE17vis
i1 = i1 | 0;
i2 = i2 | 0;
var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
- i5 = i1 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i4 >> 2] | 0) + 8 >> 2] & 127](i4, i2 + 24 | 0);
- i4 = i2 + 8 | 0;
- i2 = i2 + 12 | 0;
+ i4 = i1 + 4 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i2 + 24 | 0);
+ i5 = i2 + 8 | 0;
+ i1 = i2 + 12 | 0;
i3 = 0;
while (1) {
- i1 = HEAP32[i4 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i2 >> 2] | 0) - i1 >> 2 >>> 0) break;
- i6 = HEAP32[i5 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i1 + (i3 << 2) | 0);
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i1 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
i3 = i3 + 1 | 0;
}
return;
@@ -70152,16 +69955,16 @@ function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i1) {
HEAP32[i1 + (i2 << 2) >> 2] = 0;
i2 = i2 + 1 | 0;
}
- i3 = i3 + 12 | 0;
- i2 = i1 + 12 | 0;
- HEAP32[i3 >> 2] = HEAP32[i2 >> 2];
- HEAP32[i3 + 4 >> 2] = HEAP32[i2 + 4 >> 2];
- HEAP32[i3 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
- i1 = 0;
+ i2 = i3 + 12 | 0;
+ i1 = i1 + 12 | 0;
+ HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i2 + 4 >> 2] = HEAP32[i1 + 4 >> 2];
+ HEAP32[i2 + 8 >> 2] = HEAP32[i1 + 8 >> 2];
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
return;
}
@@ -70184,17 +69987,17 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE17visit
i1 = i1 | 0;
i2 = i2 | 0;
var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
- i5 = i1 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i4 >> 2] | 0) + 8 >> 2] & 127](i4, i2 + 24 | 0);
- i4 = i2 + 8 | 0;
- i2 = i2 + 12 | 0;
+ i4 = i1 + 4 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i2 + 24 | 0);
+ i5 = i2 + 8 | 0;
+ i1 = i2 + 12 | 0;
i3 = 0;
while (1) {
- i1 = HEAP32[i4 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i2 >> 2] | 0) - i1 >> 2 >>> 0) break;
- i6 = HEAP32[i5 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i1 + (i3 << 2) | 0);
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i1 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
i3 = i3 + 1 | 0;
}
return;
@@ -70204,70 +70007,40 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE17visitC
i1 = i1 | 0;
i2 = i2 | 0;
var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
- i5 = i1 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i4 >> 2] | 0) + 8 >> 2] & 127](i4, i2 + 24 | 0);
- i4 = i2 + 8 | 0;
- i2 = i2 + 12 | 0;
+ i4 = i1 + 4 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i2 + 24 | 0);
+ i5 = i2 + 8 | 0;
+ i1 = i2 + 12 | 0;
i3 = 0;
while (1) {
- i1 = HEAP32[i4 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i2 >> 2] | 0) - i1 >> 2 >>> 0) break;
- i6 = HEAP32[i5 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i1 + (i3 << 2) | 0);
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i1 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
i3 = i3 + 1 | 0;
}
return;
}
-function __ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE6xsputnEPKwi(i7, i2, i5) {
- i7 = i7 | 0;
- i2 = i2 | 0;
- i5 = i5 | 0;
- var i1 = 0, i3 = 0, i4 = 0, i6 = 0, i8 = 0;
- i6 = i7 + 24 | 0;
- i4 = i7 + 28 | 0;
- i1 = 0;
- while (1) {
- if ((i1 | 0) >= (i5 | 0)) break;
- i3 = HEAP32[i6 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) >>> 0) {
- if ((FUNCTION_TABLE_iii[HEAP32[(HEAP32[i7 >> 2] | 0) + 52 >> 2] & 31](i7, HEAP32[i2 >> 2] | 0) | 0) == -1) break;
- } else {
- i8 = HEAP32[i2 >> 2] | 0;
- HEAP32[i6 >> 2] = i3 + 4;
- HEAP32[i3 >> 2] = i8;
- }
- i1 = i1 + 1 | 0;
- i2 = i2 + 4 | 0;
- }
- return i1 | 0;
-}
-
-function __ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE6xsgetnEPci(i7, i2, i5) {
- i7 = i7 | 0;
+function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEE17visitCallIndirectEPNS_12CallIndirectE(i1, i2) {
+ i1 = i1 | 0;
i2 = i2 | 0;
- i5 = i5 | 0;
- var i1 = 0, i3 = 0, i4 = 0, i6 = 0;
- i6 = i7 + 12 | 0;
- i4 = i7 + 16 | 0;
- i1 = 0;
+ var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
+ i4 = i1 + 4 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i2 + 24 | 0);
+ i5 = i2 + 8 | 0;
+ i1 = i2 + 12 | 0;
+ i3 = 0;
while (1) {
- if ((i1 | 0) >= (i5 | 0)) break;
- i3 = HEAP32[i6 >> 2] | 0;
- if (i3 >>> 0 < (HEAP32[i4 >> 2] | 0) >>> 0) {
- HEAP32[i6 >> 2] = i3 + 1;
- i3 = HEAP8[i3 >> 0] | 0;
- } else {
- i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i7 >> 2] | 0) + 40 >> 2] & 127](i7) | 0;
- if ((i3 | 0) == -1) break;
- i3 = i3 & 255;
- }
- HEAP8[i2 >> 0] = i3;
- i1 = i1 + 1 | 0;
- i2 = i2 + 1 | 0;
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i1 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
+ i3 = i3 + 1 | 0;
}
- return i1 | 0;
+ return;
}
function __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringENS2_3RefEEENS_22__unordered_map_hasherIS3_S5_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S5_NS_8equal_toIS3_EELb1EEENS_9allocatorIS5_EEED2Ev(i2) {
@@ -70280,71 +70053,21 @@ function __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringENS2_3R
return;
}
-function _getc(i3) {
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0;
- if ((HEAP32[i3 + 76 >> 2] | 0) >= 0 ? (___lockfile(i3) | 0) != 0 : 0) {
- i2 = i3 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i3 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i2 >> 2] = i1 + 1;
- i1 = HEAPU8[i1 >> 0] | 0;
- } else i1 = ___uflow(i3) | 0;
- } else i4 = 3;
- do if ((i4 | 0) == 3) {
- i2 = i3 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if (i1 >>> 0 < (HEAP32[i3 + 8 >> 2] | 0) >>> 0) {
- HEAP32[i2 >> 2] = i1 + 1;
- i1 = HEAPU8[i1 >> 0] | 0;
- break;
- } else {
- i1 = ___uflow(i3) | 0;
- break;
- }
- } while (0);
- return i1 | 0;
-}
-
-function __ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE6xsputnEPKci(i7, i2, i5) {
- i7 = i7 | 0;
- i2 = i2 | 0;
- i5 = i5 | 0;
- var i1 = 0, i3 = 0, i4 = 0, i6 = 0, i8 = 0;
- i6 = i7 + 24 | 0;
- i4 = i7 + 28 | 0;
- i1 = 0;
- while (1) {
- if ((i1 | 0) >= (i5 | 0)) break;
- i3 = HEAP32[i6 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) >>> 0) {
- if ((FUNCTION_TABLE_iii[HEAP32[(HEAP32[i7 >> 2] | 0) + 52 >> 2] & 31](i7, HEAPU8[i2 >> 0] | 0) | 0) == -1) break;
- } else {
- i8 = HEAP8[i2 >> 0] | 0;
- HEAP32[i6 >> 2] = i3 + 1;
- HEAP8[i3 >> 0] = i8;
- }
- i1 = i1 + 1 | 0;
- i2 = i2 + 1 | 0;
- }
- return i1 | 0;
-}
-
function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE17visitCallIndirectEPNS_12CallIndirectE(i1, i2) {
i1 = i1 | 0;
i2 = i2 | 0;
var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
- i5 = i1 + 4 | 0;
- i4 = HEAP32[i5 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i4 >> 2] | 0) + 8 >> 2] & 127](i4, i2 + 24 | 0);
- i4 = i2 + 8 | 0;
- i2 = i2 + 12 | 0;
+ i4 = i1 + 4 | 0;
+ i5 = HEAP32[i4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 8 >> 2] & 127](i5, i2 + 24 | 0);
+ i5 = i2 + 8 | 0;
+ i1 = i2 + 12 | 0;
i3 = 0;
while (1) {
- i1 = HEAP32[i4 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i2 >> 2] | 0) - i1 >> 2 >>> 0) break;
- i6 = HEAP32[i5 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i1 + (i3 << 2) | 0);
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i1 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i4 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
i3 = i3 + 1 | 0;
}
return;
@@ -70375,47 +70098,68 @@ function ___toread(i3) {
return i1 | 0;
}
-function _strtox_686(i8, i6, i3, i1, i2) {
- i8 = i8 | 0;
- i6 = i6 | 0;
- i3 = i3 | 0;
- i1 = i1 | 0;
+function __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i4, i5) {
i2 = i2 | 0;
- var i4 = 0, i5 = 0, i7 = 0, i9 = 0;
- i9 = STACKTOP;
- STACKTOP = STACKTOP + 112 | 0;
- i5 = i9;
- HEAP32[i5 >> 2] = 0;
- i7 = i5 + 4 | 0;
- HEAP32[i7 >> 2] = i8;
- HEAP32[i5 + 44 >> 2] = i8;
- i4 = i5 + 8 | 0;
- HEAP32[i4 >> 2] = (i8 | 0) < 0 ? -1 : i8 + 2147483647 | 0;
- HEAP32[i5 + 76 >> 2] = -1;
- ___shlim(i5, 0);
- i1 = ___intscan(i5, i3, 1, i1, i2) | 0;
- if (i6 | 0) HEAP32[i6 >> 2] = i8 + ((HEAP32[i7 >> 2] | 0) + (HEAP32[i5 + 108 >> 2] | 0) - (HEAP32[i4 >> 2] | 0));
- STACKTOP = i9;
+ i4 = i4 | 0;
+ i5 = i5 | 0;
+ var i1 = 0, i3 = 0;
+ __ZNSt3__114__shared_count12__add_sharedEv(i4);
+ i3 = i2 + 8 | 0;
+ i1 = HEAP32[i3 >> 2] | 0;
+ if ((HEAP32[i2 + 12 >> 2] | 0) - i1 >> 2 >>> 0 > i5 >>> 0) i2 = i3; else {
+ __ZNSt3__16vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE6resizeEj(i3, i5 + 1 | 0);
+ i2 = i3;
+ i1 = HEAP32[i3 >> 2] | 0;
+ }
+ i1 = HEAP32[i1 + (i5 << 2) >> 2] | 0;
+ if (i1 | 0) __ZNSt3__114__shared_count16__release_sharedEv(i1) | 0;
+ HEAP32[(HEAP32[i2 >> 2] | 0) + (i5 << 2) >> 2] = i4;
+ return;
+}
+
+function __ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE6xsgetnEPwi(i7, i1, i6) {
+ i7 = i7 | 0;
+ i1 = i1 | 0;
+ i6 = i6 | 0;
+ var i2 = 0, i3 = 0, i4 = 0, i5 = 0;
+ i4 = i7 + 12 | 0;
+ i5 = i7 + 16 | 0;
+ i3 = i1;
+ i1 = 0;
+ while (1) {
+ if ((i1 | 0) >= (i6 | 0)) break;
+ i2 = HEAP32[i4 >> 2] | 0;
+ if (i2 >>> 0 >= (HEAP32[i5 >> 2] | 0) >>> 0) {
+ i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i7 >> 2] | 0) + 40 >> 2] & 127](i7) | 0;
+ if ((i2 | 0) == -1) break;
+ } else {
+ HEAP32[i4 >> 2] = i2 + 4;
+ i2 = HEAP32[i2 >> 2] | 0;
+ }
+ HEAP32[i3 >> 2] = i2;
+ i3 = i3 + 4 | 0;
+ i1 = i1 + 1 | 0;
+ }
return i1 | 0;
}
-function __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i4, i3, i2) {
+function __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i5, i4, i3) {
+ i5 = i5 | 0;
i4 = i4 | 0;
i3 = i3 | 0;
- i2 = i2 | 0;
- var i1 = 0, i5 = 0;
- i1 = HEAP8[i4 >> 0] | 0;
- i5 = (i1 & 1) == 0;
- if (i5) i1 = (i1 & 255) >>> 1; else i1 = HEAP32[i4 + 4 >> 2] | 0;
- do if (i1 >>> 0 >= i3 >>> 0) if (i5) {
- HEAP8[i4 + 1 + i3 >> 0] = 0;
- HEAP8[i4 >> 0] = i3 << 1;
+ var i1 = 0, i2 = 0;
+ i1 = HEAP8[i5 >> 0] | 0;
+ i2 = (i1 & 1) == 0;
+ if (i2) i1 = (i1 & 255) >>> 1; else i1 = HEAP32[i5 + 4 >> 2] | 0;
+ do if (i1 >>> 0 >= i4 >>> 0) if (i2) {
+ HEAP8[i5 + 1 + i4 >> 0] = 0;
+ HEAP8[i5 >> 0] = i4 << 1;
break;
} else {
- HEAP8[(HEAP32[i4 + 8 >> 2] | 0) + i3 >> 0] = 0;
- HEAP32[i4 + 4 >> 2] = i3;
+ HEAP8[(HEAP32[i5 + 8 >> 2] | 0) + i4 >> 0] = 0;
+ HEAP32[i5 + 4 >> 2] = i4;
break;
- } else __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEjc(i4, i3 - i1 | 0, i2) | 0; while (0);
+ } else __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEjc(i5, i4 - i1 | 0, i3) | 0; while (0);
return;
}
@@ -70425,10 +70169,10 @@ function __ZNK10__cxxabiv117__class_type_info24process_found_base_classEPNS_19__
i3 = i3 | 0;
i5 = i5 | 0;
var i2 = 0;
- i2 = i4 + 16 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- do if (i1) {
- if ((i1 | 0) != (i3 | 0)) {
+ i1 = i4 + 16 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ do if (i2) {
+ if ((i2 | 0) != (i3 | 0)) {
i5 = i4 + 36 | 0;
HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 1;
HEAP32[i4 + 24 >> 2] = 2;
@@ -70438,13 +70182,37 @@ function __ZNK10__cxxabiv117__class_type_info24process_found_base_classEPNS_19__
i1 = i4 + 24 | 0;
if ((HEAP32[i1 >> 2] | 0) == 2) HEAP32[i1 >> 2] = i5;
} else {
- HEAP32[i2 >> 2] = i3;
+ HEAP32[i1 >> 2] = i3;
HEAP32[i4 + 24 >> 2] = i5;
HEAP32[i4 + 36 >> 2] = 1;
} while (0);
return;
}
+function _strtox(i8, i7, i3, i1, i2) {
+ i8 = i8 | 0;
+ i7 = i7 | 0;
+ i3 = i3 | 0;
+ i1 = i1 | 0;
+ i2 = i2 | 0;
+ var i4 = 0, i5 = 0, i6 = 0, i9 = 0;
+ i9 = STACKTOP;
+ STACKTOP = STACKTOP + 112 | 0;
+ i6 = i9;
+ HEAP32[i6 >> 2] = 0;
+ i4 = i6 + 4 | 0;
+ HEAP32[i4 >> 2] = i8;
+ HEAP32[i6 + 44 >> 2] = i8;
+ i5 = i6 + 8 | 0;
+ HEAP32[i5 >> 2] = (i8 | 0) < 0 ? -1 : i8 + 2147483647 | 0;
+ HEAP32[i6 + 76 >> 2] = -1;
+ ___shlim(i6, 0);
+ i1 = ___intscan(i6, i3, 1, i1, i2) | 0;
+ if (i7 | 0) HEAP32[i7 >> 2] = i8 + ((HEAP32[i4 >> 2] | 0) + (HEAP32[i6 + 108 >> 2] | 0) - (HEAP32[i5 >> 2] | 0));
+ STACKTOP = i9;
+ return i1 | 0;
+}
+
function __ZNSt3__110__stdinbufIwEC2EP8_IO_FILEP11__mbstate_t(i3, i1, i2) {
i3 = i3 | 0;
i1 = i1 | 0;
@@ -70455,7 +70223,7 @@ function __ZNSt3__110__stdinbufIwEC2EP8_IO_FILEP11__mbstate_t(i3, i1, i2) {
i6 = i4 + 4 | 0;
i5 = i4;
__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEEC2Ev(i3);
- HEAP32[i3 >> 2] = 7380;
+ HEAP32[i3 >> 2] = 7948;
HEAP32[i3 + 32 >> 2] = i1;
HEAP32[i3 + 40 >> 2] = i2;
HEAP32[i3 + 48 >> 2] = -1;
@@ -70478,7 +70246,7 @@ function __ZNSt3__110__stdinbufIcEC2EP8_IO_FILEP11__mbstate_t(i3, i1, i2) {
i6 = i4 + 4 | 0;
i5 = i4;
__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEEC2Ev(i3);
- HEAP32[i3 >> 2] = 7252;
+ HEAP32[i3 >> 2] = 7820;
HEAP32[i3 + 32 >> 2] = i1;
HEAP32[i3 + 40 >> 2] = i2;
HEAP32[i3 + 48 >> 2] = -1;
@@ -70500,7 +70268,7 @@ function __ZN4wasm8GetLocal7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIc
STACKTOP = STACKTOP + 16 | 0;
i4 = i1 + 4 | 0;
i5 = i1;
- i2 = __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i2, 16758, 0) | 0;
+ i2 = __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i2, 17349, 0) | 0;
HEAP32[i5 >> 2] = HEAP32[i3 + 8 >> 2];
HEAP32[i4 >> 2] = HEAP32[i5 >> 2];
i3 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i2, i4) | 0, 41) | 0;
@@ -70528,31 +70296,6 @@ function __ZNSt3__16__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE16__ins
return;
}
-function __ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE6xsgetnEPwi(i7, i2, i5) {
- i7 = i7 | 0;
- i2 = i2 | 0;
- i5 = i5 | 0;
- var i1 = 0, i3 = 0, i4 = 0, i6 = 0;
- i6 = i7 + 12 | 0;
- i4 = i7 + 16 | 0;
- i1 = 0;
- while (1) {
- if ((i1 | 0) >= (i5 | 0)) break;
- i3 = HEAP32[i6 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) >>> 0) {
- i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i7 >> 2] | 0) + 40 >> 2] & 127](i7) | 0;
- if ((i3 | 0) == -1) break;
- } else {
- HEAP32[i6 >> 2] = i3 + 4;
- i3 = HEAP32[i3 >> 2] | 0;
- }
- HEAP32[i2 >> 2] = i3;
- i1 = i1 + 1 | 0;
- i2 = i2 + 4 | 0;
- }
- return i1 | 0;
-}
-
function __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEED2Ev(i2) {
i2 = i2 | 0;
var i1 = 0;
@@ -70563,17 +70306,17 @@ function __ZNSt3__112__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_
return;
}
-function __ZNSt3__16vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE6resizeEj(i5, i3) {
+function __ZNSt3__16vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE6resizeEj(i5, i4) {
i5 = i5 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i6 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i6 = 0;
i6 = i5 + 4 | 0;
i1 = HEAP32[i6 >> 2] | 0;
- i2 = HEAP32[i5 >> 2] | 0;
- i4 = i1 - i2 >> 2;
- L1 : do if (i4 >>> 0 >= i3 >>> 0) {
- if (i4 >>> 0 > i3 >>> 0) {
- i2 = i2 + (i3 << 2) | 0;
+ i3 = HEAP32[i5 >> 2] | 0;
+ i2 = i1 - i3 >> 2;
+ L1 : do if (i2 >>> 0 >= i4 >>> 0) {
+ if (i2 >>> 0 > i4 >>> 0) {
+ i2 = i3 + (i4 << 2) | 0;
while (1) {
if ((i1 | 0) == (i2 | 0)) break L1;
i5 = i1 + -4 | 0;
@@ -70581,44 +70324,10 @@ function __ZNSt3__16vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE6re
i1 = i5;
}
}
- } else __ZNSt3__16vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE8__appendEj(i5, i3 - i4 | 0); while (0);
+ } else __ZNSt3__16vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE8__appendEj(i5, i4 - i2 | 0); while (0);
return;
}
-function __ZNKSt3__17collateIcE10do_compareEPKcS3_S3_S3_(i2, i1, i6, i3, i5) {
- i2 = i2 | 0;
- i1 = i1 | 0;
- i6 = i6 | 0;
- i3 = i3 | 0;
- i5 = i5 | 0;
- var i4 = 0, i7 = 0;
- i4 = i3;
- while (1) {
- if ((i4 | 0) == (i5 | 0)) {
- i7 = 7;
- break;
- }
- if ((i1 | 0) == (i6 | 0)) {
- i1 = -1;
- break;
- }
- i2 = HEAP8[i1 >> 0] | 0;
- i3 = HEAP8[i4 >> 0] | 0;
- if (i2 << 24 >> 24 < i3 << 24 >> 24) {
- i1 = -1;
- break;
- }
- if (i3 << 24 >> 24 < i2 << 24 >> 24) {
- i1 = 1;
- break;
- }
- i1 = i1 + 1 | 0;
- i4 = i4 + 1 | 0;
- }
- if ((i7 | 0) == 7) i1 = (i1 | 0) != (i6 | 0) & 1;
- return i1 | 0;
-}
-
function _trunc(d1) {
d1 = +d1;
var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0;
@@ -70640,16 +70349,16 @@ function __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N
var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0;
i1 = HEAP8[i6 >> 0] | 0;
if (!(i1 & 1)) {
+ i2 = (i1 & 255) >>> 1;
i5 = i6 + 1 | 0;
- i3 = (i1 & 255) >>> 1;
} else {
+ i2 = HEAP32[i6 + 4 >> 2] | 0;
i5 = HEAP32[i6 + 8 >> 2] | 0;
- i3 = HEAP32[i6 + 4 >> 2] | 0;
}
- i2 = (i3 | 0) != 0 & 1;
- i4 = i3 - i2 | 0;
- if ((i3 | 0) != (i2 | 0)) {
- _memmove(i5 | 0, i5 + i2 | 0, i4 | 0) | 0;
+ i3 = (i2 | 0) != 0 & 1;
+ i4 = i2 - i3 | 0;
+ if ((i2 | 0) != (i3 | 0)) {
+ _memmove(i5 | 0, i5 + i3 | 0, i4 | 0) | 0;
i1 = HEAP8[i6 >> 0] | 0;
}
if (!(i1 & 1)) HEAP8[i6 >> 0] = i4 << 1; else HEAP32[i6 + 4 >> 2] = i4;
@@ -70657,6 +70366,36 @@ function __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N
return;
}
+function __ZN10__cxxabiv112_GLOBAL__N_119parse_cv_qualifiersEPKcS2_Rj(i1, i2, i4) {
+ i1 = i1 | 0;
+ i2 = i2 | 0;
+ i4 = i4 | 0;
+ var i3 = 0;
+ HEAP32[i4 >> 2] = 0;
+ if ((i1 | 0) != (i2 | 0)) {
+ i2 = HEAP8[i1 >> 0] | 0;
+ if (i2 << 24 >> 24 == 114) {
+ HEAP32[i4 >> 2] = 4;
+ i2 = i1 + 1 | 0;
+ i1 = i2;
+ i2 = HEAP8[i2 >> 0] | 0;
+ i3 = 4;
+ } else i3 = 0;
+ if (i2 << 24 >> 24 == 86) {
+ i3 = i3 | 2;
+ HEAP32[i4 >> 2] = i3;
+ i2 = i1 + 1 | 0;
+ i1 = i2;
+ i2 = HEAP8[i2 >> 0] | 0;
+ }
+ if (i2 << 24 >> 24 == 75) {
+ HEAP32[i4 >> 2] = i3 | 1;
+ i1 = i1 + 1 | 0;
+ }
+ }
+ return i1 | 0;
+}
+
function _fmt_u(i2, i3, i1) {
i2 = i2 | 0;
i3 = i3 | 0;
@@ -70709,22 +70448,37 @@ function __ZNSt3__114__split_bufferIPNS_6locale5facetERNS_15__sso_allocatorIS3_L
return;
}
-function __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i3, i4, i5) {
+function __ZNKSt3__17collateIcE10do_compareEPKcS3_S3_S3_(i3, i1, i6, i2, i5) {
i3 = i3 | 0;
- i4 = i4 | 0;
+ i1 = i1 | 0;
+ i6 = i6 | 0;
+ i2 = i2 | 0;
i5 = i5 | 0;
- var i1 = 0, i2 = 0;
- __ZNSt3__114__shared_count12__add_sharedEv(i4);
- i2 = i3 + 8 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
- if ((HEAP32[i3 + 12 >> 2] | 0) - i1 >> 2 >>> 0 <= i5 >>> 0) {
- __ZNSt3__16vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE6resizeEj(i2, i5 + 1 | 0);
- i1 = HEAP32[i2 >> 2] | 0;
+ var i4 = 0, i7 = 0;
+ while (1) {
+ if ((i2 | 0) == (i5 | 0)) {
+ i7 = 7;
+ break;
+ }
+ if ((i1 | 0) == (i6 | 0)) {
+ i1 = -1;
+ break;
+ }
+ i3 = HEAP8[i1 >> 0] | 0;
+ i4 = HEAP8[i2 >> 0] | 0;
+ if (i3 << 24 >> 24 < i4 << 24 >> 24) {
+ i1 = -1;
+ break;
+ }
+ if (i4 << 24 >> 24 < i3 << 24 >> 24) {
+ i1 = 1;
+ break;
+ }
+ i2 = i2 + 1 | 0;
+ i1 = i1 + 1 | 0;
}
- i1 = HEAP32[i1 + (i5 << 2) >> 2] | 0;
- if (i1 | 0) __ZNSt3__114__shared_count16__release_sharedEv(i1) | 0;
- HEAP32[(HEAP32[i2 >> 2] | 0) + (i5 << 2) >> 2] = i4;
- return;
+ if ((i7 | 0) == 7) i1 = (i1 | 0) != (i6 | 0) & 1;
+ return i1 | 0;
}
function __Z9parseHeapPKc(i1, i2) {
@@ -70792,19 +70546,19 @@ function __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N
function __ZNSt3__16locale5__impD2Ev(i5) {
i5 = i5 | 0;
var i1 = 0, i2 = 0, i3 = 0, i4 = 0;
- HEAP32[i5 >> 2] = 10532;
- i3 = i5 + 8 | 0;
- i2 = i5 + 12 | 0;
+ HEAP32[i5 >> 2] = 11100;
+ i2 = i5 + 8 | 0;
+ i3 = i5 + 12 | 0;
i4 = 0;
while (1) {
- i1 = HEAP32[i3 >> 2] | 0;
- if (i4 >>> 0 >= (HEAP32[i2 >> 2] | 0) - i1 >> 2 >>> 0) break;
+ i1 = HEAP32[i2 >> 2] | 0;
+ if (i4 >>> 0 >= (HEAP32[i3 >> 2] | 0) - i1 >> 2 >>> 0) break;
i1 = HEAP32[i1 + (i4 << 2) >> 2] | 0;
if (i1 | 0) __ZNSt3__114__shared_count16__release_sharedEv(i1) | 0;
i4 = i4 + 1 | 0;
}
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5 + 144 | 0);
- __ZNSt3__113__vector_baseIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEED2Ev(i3);
+ __ZNSt3__113__vector_baseIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEED2Ev(i2);
return;
}
@@ -70812,13 +70566,13 @@ function __ZNSt3__114__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
+ i2 = i4 + 8 | 0;
while (1) {
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (i1 | 0)) break;
- i2 = i2 + -24 | 0;
- HEAP32[i3 >> 2] = i2;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i2);
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i3 = i3 + -24 | 0;
+ HEAP32[i2 >> 2] = i3;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i3);
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZN10__cxxabiv112_GLOBAL__N_15arenaILj4096EE10deallocateEPcj(HEAP32[HEAP32[i4 + 16 >> 2] >> 2] | 0, i1, (HEAP32[i4 + 12 >> 2] | 0) - i1 | 0);
@@ -70833,22 +70587,45 @@ function __ZN4wasm22SExpressionWasmBuilder12makeGetLocalERNS_7ElementE(i2, i1) {
i1 = __ZN4wasm7Element4listEv(i1) | 0;
i1 = __ZN4wasm22SExpressionWasmBuilder12getLocalNameERNS_7ElementE(i2, HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] | 0) | 0;
HEAP32[i3 + 8 >> 2] = i1;
- i2 = __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i2 + 56 | 0, i3 + 8 | 0) | 0;
+ i2 = __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i2 + 60 | 0, i3 + 8 | 0) | 0;
HEAP32[i3 + 4 >> 2] = HEAP32[i2 >> 2];
return i3 | 0;
}
-function __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE6resizeEj(i5, i3) {
+function __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE9underflowEv(i4) {
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0;
+ i1 = i4 + 44 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ i3 = HEAP32[i4 + 24 >> 2] | 0;
+ if (i2 >>> 0 < i3 >>> 0) {
+ HEAP32[i1 >> 2] = i3;
+ i1 = i3;
+ } else i1 = i2;
+ if (HEAP32[i4 + 48 >> 2] & 8) {
+ i3 = i4 + 16 | 0;
+ i2 = HEAP32[i3 >> 2] | 0;
+ if (i2 >>> 0 < i1 >>> 0) {
+ HEAP32[i3 >> 2] = i1;
+ i2 = i1;
+ }
+ i1 = HEAP32[i4 + 12 >> 2] | 0;
+ if (i1 >>> 0 < i2 >>> 0) i1 = HEAPU8[i1 >> 0] | 0; else i1 = -1;
+ } else i1 = -1;
+ return i1 | 0;
+}
+
+function __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE6resizeEj(i5, i4) {
i5 = i5 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i6 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i6 = 0;
i6 = i5 + 4 | 0;
i1 = HEAP32[i6 >> 2] | 0;
- i2 = HEAP32[i5 >> 2] | 0;
- i4 = i1 - i2 >> 2;
- L1 : do if (i4 >>> 0 >= i3 >>> 0) {
- if (i4 >>> 0 > i3 >>> 0) {
- i2 = i2 + (i3 << 2) | 0;
+ i3 = HEAP32[i5 >> 2] | 0;
+ i2 = i1 - i3 >> 2;
+ L1 : do if (i2 >>> 0 >= i4 >>> 0) {
+ if (i2 >>> 0 > i4 >>> 0) {
+ i2 = i3 + (i4 << 2) | 0;
while (1) {
if ((i1 | 0) == (i2 | 0)) break L1;
i5 = i1 + -4 | 0;
@@ -70856,7 +70633,7 @@ function __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE6resizeEj(i5,
i1 = i5;
}
}
- } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE8__appendEj(i5, i3 - i4 | 0); while (0);
+ } else __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE8__appendEj(i5, i4 - i2 | 0); while (0);
return;
}
@@ -70865,13 +70642,13 @@ function __ZNSt3__113__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_
var i1 = 0, i2 = 0, i3 = 0;
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) {
- i3 = i4 + 4 | 0;
+ i2 = i4 + 4 | 0;
while (1) {
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (i1 | 0)) break;
- i2 = i2 + -24 | 0;
- HEAP32[i3 >> 2] = i2;
- __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i2);
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i3 = i3 + -24 | 0;
+ HEAP32[i2 >> 2] = i3;
+ __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i3);
}
i3 = HEAP32[i4 >> 2] | 0;
__ZN10__cxxabiv112_GLOBAL__N_15arenaILj4096EE10deallocateEPcj(HEAP32[i4 + 12 >> 2] | 0, i3, (HEAP32[i4 + 8 >> 2] | 0) - i3 | 0);
@@ -70885,14 +70662,14 @@ function __ZN4wasm22SExpressionWasmBuilder12getLocalNameERNS_7ElementE(i2, i1) {
var i3 = 0, i4 = 0;
do if (!(HEAP8[i1 + 20 >> 0] | 0)) {
i4 = _atoi(__ZN4wasm7Element5c_strEv(i1) | 0) | 0;
- i1 = HEAP32[i2 + 52 >> 2] | 0;
- i2 = HEAP32[i1 + 8 >> 2] | 0;
- i3 = (HEAP32[i1 + 12 >> 2] | 0) - i2 >> 3;
- if (i4 >>> 0 < i3 >>> 0) {
- i1 = HEAP32[i2 + (i4 << 3) >> 2] | 0;
+ i3 = HEAP32[i2 + 56 >> 2] | 0;
+ i1 = HEAP32[i3 + 8 >> 2] | 0;
+ i2 = (HEAP32[i3 + 12 >> 2] | 0) - i1 >> 3;
+ if (i4 >>> 0 < i2 >>> 0) {
+ i1 = HEAP32[i1 + (i4 << 3) >> 2] | 0;
break;
} else {
- i1 = HEAP32[(HEAP32[i1 + 20 >> 2] | 0) + (i4 - i3 << 3) >> 2] | 0;
+ i1 = HEAP32[(HEAP32[i3 + 20 >> 2] | 0) + (i4 - i2 << 3) >> 2] | 0;
break;
}
} else i1 = __ZN4wasm7Element3strEv(i1) | 0; while (0);
@@ -70915,70 +70692,6 @@ function __ZN4wasm22SExpressionWasmBuilder8makeHostERNS_7ElementENS_6HostOpE(i4,
return i1 | 0;
}
-function _strlen(i2) {
- i2 = i2 | 0;
- var i1 = 0, i3 = 0, i4 = 0;
- i4 = i2;
- L1 : do if (!(i4 & 3)) {
- i1 = i2;
- i3 = 4;
- } else {
- i1 = i4;
- while (1) {
- if (!(HEAP8[i2 >> 0] | 0)) break L1;
- i2 = i2 + 1 | 0;
- i1 = i2;
- if (!(i1 & 3)) {
- i1 = i2;
- i3 = 4;
- break;
- }
- }
- } while (0);
- if ((i3 | 0) == 4) {
- while (1) {
- i2 = HEAP32[i1 >> 2] | 0;
- if (!((i2 & -2139062144 ^ -2139062144) & i2 + -16843009)) i1 = i1 + 4 | 0; else break;
- }
- if ((i2 & 255) << 24 >> 24) do i1 = i1 + 1 | 0; while ((HEAP8[i1 >> 0] | 0) != 0);
- }
- return i1 - i4 | 0;
-}
-
-function __ZNKSt3__17collateIwE10do_compareEPKwS3_S3_S3_(i2, i1, i6, i3, i5) {
- i2 = i2 | 0;
- i1 = i1 | 0;
- i6 = i6 | 0;
- i3 = i3 | 0;
- i5 = i5 | 0;
- var i4 = 0, i7 = 0;
- i4 = i3;
- while (1) {
- if ((i4 | 0) == (i5 | 0)) {
- i7 = 7;
- break;
- }
- if ((i1 | 0) == (i6 | 0)) {
- i1 = -1;
- break;
- }
- i2 = HEAP32[i1 >> 2] | 0;
- i3 = HEAP32[i4 >> 2] | 0;
- if ((i2 | 0) < (i3 | 0)) {
- i1 = -1;
- break;
- }
- if ((i3 | 0) < (i2 | 0)) {
- i1 = 1;
- break;
- }
- i1 = i1 + 4 | 0;
- i4 = i4 + 4 | 0;
- }
- if ((i7 | 0) == 7) i1 = (i1 | 0) != (i6 | 0) & 1;
- return i1 | 0;
-}
-
function __ZNKSt3__17codecvtIDsc11__mbstate_tE6do_outERS1_PKDsS5_RS5_PcS7_RS7_(i5, i1, i2, i3, i4, i6, i7, i8) {
i5 = i5 | 0;
i1 = i1 | 0;
@@ -71102,89 +70815,99 @@ function __ZN4wasm22SExpressionWasmBuilder11parseExportERNS_7ElementE(i2, i1) {
return;
}
-function __ZN10__cxxabiv112_GLOBAL__N_119parse_cv_qualifiersEPKcS2_Rj(i1, i2, i4) {
- i1 = i1 | 0;
- i2 = i2 | 0;
- i4 = i4 | 0;
- var i3 = 0;
- HEAP32[i4 >> 2] = 0;
- if ((i1 | 0) != (i2 | 0)) {
- i2 = HEAP8[i1 >> 0] | 0;
- if (i2 << 24 >> 24 == 114) {
- HEAP32[i4 >> 2] = 4;
- i1 = i1 + 1 | 0;
- i2 = HEAP8[i1 >> 0] | 0;
- i3 = 4;
- } else i3 = 0;
- if (i2 << 24 >> 24 == 86) {
- i3 = i3 | 2;
- HEAP32[i4 >> 2] = i3;
- i1 = i1 + 1 | 0;
- i2 = HEAP8[i1 >> 0] | 0;
- }
- if (i2 << 24 >> 24 == 75) {
- HEAP32[i4 >> 2] = i3 | 1;
- i1 = i1 + 1 | 0;
- }
- }
- return i1 | 0;
-}
-
function __ZNSt3__114__split_bufferINS_6vectorIN6cashew6ParserINS2_3RefENS2_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS7_EEEERNS8_ISA_EEED2Ev(i4) {
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
+ i2 = i4 + 8 | 0;
while (1) {
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (i1 | 0)) break;
- i2 = i2 + -12 | 0;
- HEAP32[i3 >> 2] = i2;
- __ZNSt3__113__vector_baseIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEED2Ev(i2);
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i3 = i3 + -12 | 0;
+ HEAP32[i2 >> 2] = i3;
+ __ZNSt3__113__vector_baseIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEED2Ev(i3);
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZdlPv(i1);
return;
}
+function _strlen(i1) {
+ i1 = i1 | 0;
+ var i2 = 0, i3 = 0, i4 = 0;
+ i4 = i1;
+ L1 : do if (!(i4 & 3)) i3 = 4; else {
+ i2 = i1;
+ i1 = i4;
+ while (1) {
+ if (!(HEAP8[i2 >> 0] | 0)) break L1;
+ i2 = i2 + 1 | 0;
+ i1 = i2;
+ if (!(i1 & 3)) {
+ i1 = i2;
+ i3 = 4;
+ break;
+ }
+ }
+ } while (0);
+ if ((i3 | 0) == 4) {
+ while (1) {
+ i2 = HEAP32[i1 >> 2] | 0;
+ if (!((i2 & -2139062144 ^ -2139062144) & i2 + -16843009)) i1 = i1 + 4 | 0; else break;
+ }
+ if ((i2 & 255) << 24 >> 24) do i1 = i1 + 1 | 0; while ((HEAP8[i1 >> 0] | 0) != 0);
+ }
+ return i1 - i4 | 0;
+}
+
function __ZNSt3__113__vector_baseINS_6vectorIN6cashew6ParserINS2_3RefENS2_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS7_EEEENS8_ISA_EEED2Ev(i4) {
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0;
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) {
- i3 = i4 + 4 | 0;
+ i2 = i4 + 4 | 0;
while (1) {
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (i1 | 0)) break;
- i2 = i2 + -12 | 0;
- HEAP32[i3 >> 2] = i2;
- __ZNSt3__113__vector_baseIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEED2Ev(i2);
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i3 = i3 + -12 | 0;
+ HEAP32[i2 >> 2] = i3;
+ __ZNSt3__113__vector_baseIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEED2Ev(i3);
}
__ZdlPv(HEAP32[i4 >> 2] | 0);
}
return;
}
-function __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE9underflowEv(i4) {
- i4 = i4 | 0;
- var i1 = 0, i2 = 0, i3 = 0;
- i3 = i4 + 44 | 0;
- i1 = HEAP32[i3 >> 2] | 0;
- i2 = HEAP32[i4 + 24 >> 2] | 0;
- if (i1 >>> 0 < i2 >>> 0) {
- HEAP32[i3 >> 2] = i2;
- i1 = i2;
- }
- if (HEAP32[i4 + 48 >> 2] & 8) {
- i3 = i4 + 16 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if (i2 >>> 0 < i1 >>> 0) {
- HEAP32[i3 >> 2] = i1;
- i2 = i1;
+function __ZNKSt3__17collateIwE10do_compareEPKwS3_S3_S3_(i3, i1, i6, i2, i5) {
+ i3 = i3 | 0;
+ i1 = i1 | 0;
+ i6 = i6 | 0;
+ i2 = i2 | 0;
+ i5 = i5 | 0;
+ var i4 = 0, i7 = 0;
+ while (1) {
+ if ((i2 | 0) == (i5 | 0)) {
+ i7 = 7;
+ break;
}
- i1 = HEAP32[i4 + 12 >> 2] | 0;
- if (i1 >>> 0 < i2 >>> 0) i1 = HEAPU8[i1 >> 0] | 0; else i1 = -1;
- } else i1 = -1;
+ if ((i1 | 0) == (i6 | 0)) {
+ i1 = -1;
+ break;
+ }
+ i3 = HEAP32[i1 >> 2] | 0;
+ i4 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) < (i4 | 0)) {
+ i1 = -1;
+ break;
+ }
+ if ((i4 | 0) < (i3 | 0)) {
+ i1 = 1;
+ break;
+ }
+ i2 = i2 + 4 | 0;
+ i1 = i1 + 4 | 0;
+ }
+ if ((i7 | 0) == 7) i1 = (i1 | 0) != (i6 | 0) & 1;
return i1 | 0;
}
@@ -71206,21 +70929,21 @@ function __ZN4wasm10Expression4castINS_5BlockEEEPT_v(i2) {
__ZNSt3__113__vector_baseIPN4wasm10ExpressionENS_9allocatorIS3_EEED2Ev(i1 + 12 | 0);
STACKTOP = i3;
return i2 | 0;
- } else ___assert_fail(24996, 26220, 335, 25011);
+ } else ___assert_fail(25584, 27572, 367, 25599);
return 0;
}
-function __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEE6resizeEj(i5, i3) {
+function __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEE6resizeEj(i5, i4) {
i5 = i5 | 0;
- i3 = i3 | 0;
- var i1 = 0, i2 = 0, i4 = 0, i6 = 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0, i3 = 0, i6 = 0;
i6 = i5 + 4 | 0;
i1 = HEAP32[i6 >> 2] | 0;
- i2 = HEAP32[i5 >> 2] | 0;
- i4 = i1 - i2 >> 2;
- L1 : do if (i4 >>> 0 >= i3 >>> 0) {
- if (i4 >>> 0 > i3 >>> 0) {
- i2 = i2 + (i3 << 2) | 0;
+ i3 = HEAP32[i5 >> 2] | 0;
+ i2 = i1 - i3 >> 2;
+ L1 : do if (i2 >>> 0 >= i4 >>> 0) {
+ if (i2 >>> 0 > i4 >>> 0) {
+ i2 = i3 + (i4 << 2) | 0;
while (1) {
if ((i1 | 0) == (i2 | 0)) break L1;
i5 = i1 + -4 | 0;
@@ -71228,39 +70951,60 @@ function __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEE6resizeEj(i5, i3) {
i1 = i5;
}
}
- } else __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEE8__appendEj(i5, i3 - i4 | 0); while (0);
+ } else __ZNSt3__16vectorIN4wasm4NameENS_9allocatorIS2_EEE8__appendEj(i5, i4 - i2 | 0); while (0);
return;
}
-function __ZN6cashew5Value8setArrayERNSt3__16vectorINS_3RefENS1_9allocatorIS3_EEEE(i3, i1) {
+function __ZN6cashew5Value8setArrayERNSt3__16vectorINS_3RefENS1_9allocatorIS3_EEEE(i3, i2) {
i3 = i3 | 0;
- i1 = i1 | 0;
- var i2 = 0;
+ i2 = i2 | 0;
+ var i1 = 0;
__ZN6cashew5Value4freeEv(i3);
HEAP32[i3 >> 2] = 2;
- i2 = __ZN6cashew5Arena10allocArrayEv(37288) | 0;
- HEAP32[i3 + 8 >> 2] = i2;
- if ((i2 | 0) != (i1 | 0)) __ZNSt3__16vectorIN6cashew3RefENS_9allocatorIS2_EEE6assignIPS2_EENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIS2_NS_15iterator_traitsIS9_E9referenceEEE5valueEvE4typeES9_S9_(i2, HEAP32[i1 >> 2] | 0, HEAP32[i1 + 4 >> 2] | 0);
+ i1 = __ZN6cashew5Arena10allocArrayEv(38760) | 0;
+ HEAP32[i3 + 8 >> 2] = i1;
+ if ((i1 | 0) != (i2 | 0)) __ZNSt3__16vectorIN6cashew3RefENS_9allocatorIS2_EEE6assignIPS2_EENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIS2_NS_15iterator_traitsIS9_E9referenceEEE5valueEvE4typeES9_S9_(i1, HEAP32[i2 >> 2] | 0, HEAP32[i2 + 4 >> 2] | 0);
return i3 | 0;
}
+function __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i3, i4) {
+ i3 = i3 | 0;
+ i4 = i4 | 0;
+ var i1 = 0, i2 = 0;
+ L1 : do if ((i3 | 0) != (i4 | 0) ? (i1 = (HEAP8[i3 >> 0] | 0) == 110 ? i3 + 1 | 0 : i3, (i1 | 0) != (i4 | 0)) : 0) {
+ i2 = HEAP8[i1 >> 0] | 0;
+ if (i2 << 24 >> 24 == 48) {
+ i1 = i1 + 1 | 0;
+ break;
+ }
+ if ((i2 + -49 & 255) < 9) do {
+ i1 = i1 + 1 | 0;
+ if ((i1 | 0) == (i4 | 0)) {
+ i1 = i4;
+ break L1;
+ }
+ } while (((HEAP8[i1 >> 0] | 0) + -48 | 0) >>> 0 < 10); else i1 = i3;
+ } else i1 = i3; while (0);
+ return i1 | 0;
+}
+
function __ZN6cashew12ValueBuilder13appendToBlockENS_3RefES1_(i3, i4) {
i3 = i3 | 0;
i4 = i4 | 0;
var i1 = 0, i2 = 0, i5 = 0;
i5 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i2 = i5 + 4 | 0;
- i1 = i5;
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 0) | 0, 36920) | 0) {
+ i1 = i5 + 4 | 0;
+ i2 = i5;
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 0) | 0, 38392) | 0) {
i3 = __ZN6cashew3RefixEj(i3, 1) | 0;
i3 = HEAP32[i3 >> 2] | 0;
- HEAP32[i1 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
- __ZN6cashew5Value9push_backENS_3RefE(i3, i2) | 0;
+ HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
+ __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0;
STACKTOP = i5;
return;
- } else ___assert_fail(23357, 27234, 1361, 23375);
+ } else ___assert_fail(23945, 28586, 1361, 23963);
}
function __ZN6cashew12ValueBuilder13appendToArrayENS_3RefES1_(i3, i4) {
@@ -71269,41 +71013,17 @@ function __ZN6cashew12ValueBuilder13appendToArrayENS_3RefES1_(i3, i4) {
var i1 = 0, i2 = 0, i5 = 0;
i5 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i2 = i5 + 4 | 0;
- i1 = i5;
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 0) | 0, 37228) | 0) {
+ i1 = i5 + 4 | 0;
+ i2 = i5;
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 0) | 0, 38700) | 0) {
i3 = __ZN6cashew3RefixEj(i3, 1) | 0;
i3 = HEAP32[i3 >> 2] | 0;
- HEAP32[i1 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
- __ZN6cashew5Value9push_backENS_3RefE(i3, i2) | 0;
+ HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
+ __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0;
STACKTOP = i5;
return;
- } else ___assert_fail(23232, 27234, 1643, 23250);
-}
-
-function __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i1, i4) {
- i1 = i1 | 0;
- i4 = i4 | 0;
- var i2 = 0, i3 = 0;
- L1 : do if ((i1 | 0) != (i4 | 0) ? (i3 = (HEAP8[i1 >> 0] | 0) == 110 ? i1 + 1 | 0 : i1, (i3 | 0) != (i4 | 0)) : 0) {
- i2 = HEAP8[i3 >> 0] | 0;
- if (i2 << 24 >> 24 == 48) {
- i1 = i3 + 1 | 0;
- break;
- }
- if ((i2 + -49 & 255) < 9) {
- i1 = i3;
- do {
- i1 = i1 + 1 | 0;
- if ((i1 | 0) == (i4 | 0)) {
- i1 = i4;
- break L1;
- }
- } while (((HEAP8[i1 >> 0] | 0) + -48 | 0) >>> 0 < 10);
- }
- } while (0);
- return i1 | 0;
+ } else ___assert_fail(23820, 28586, 1643, 23838);
}
function __ZN6cashew12ValueBuilder12appendToCallENS_3RefES1_(i3, i4) {
@@ -71312,17 +71032,58 @@ function __ZN6cashew12ValueBuilder12appendToCallENS_3RefES1_(i3, i4) {
var i1 = 0, i2 = 0, i5 = 0;
i5 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i2 = i5 + 4 | 0;
- i1 = i5;
- if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 0) | 0, 36984) | 0) {
+ i1 = i5 + 4 | 0;
+ i2 = i5;
+ if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 0) | 0, 38456) | 0) {
i3 = __ZN6cashew3RefixEj(i3, 2) | 0;
i3 = HEAP32[i3 >> 2] | 0;
- HEAP32[i1 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i2 >> 2] = HEAP32[i1 >> 2];
- __ZN6cashew5Value9push_backENS_3RefE(i3, i2) | 0;
+ HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
+ __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0;
STACKTOP = i5;
return;
- } else ___assert_fail(22936, 27234, 1446, 22952);
+ } else ___assert_fail(23524, 28586, 1446, 23540);
+}
+
+function __ZN4wasm11WasmVisitorINS_14SimplifyLocalsEvE5visitEPNS_10ExpressionE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ if (!i1) ___assert_fail(27822, 27572, 1310, 27827);
+ switch (HEAP32[i1 >> 2] | 0) {
+ case 0:
+ {
+ _abort();
+ break;
+ }
+ case 1:
+ {
+ __ZN4wasm14SimplifyLocals10visitBlockEPNS_5BlockE(i2 + -4 | 0, i1);
+ break;
+ }
+ case 20:
+ case 19:
+ case 18:
+ case 17:
+ case 16:
+ case 15:
+ case 14:
+ case 13:
+ case 12:
+ case 11:
+ case 10:
+ case 9:
+ case 8:
+ case 7:
+ case 6:
+ case 5:
+ case 4:
+ case 3:
+ case 2:
+ break;
+ default:
+ {}
+ }
+ return;
}
function __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcjj(i2, i3, i4, i1) {
@@ -71413,9 +71174,9 @@ function __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__init
function __ZN4wasmL8abort_onENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew3RefE(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS_13basic_ostreamIT_T0_EES9_RKNS_12basic_stringIS6_S7_T1_EE(38088, i2) | 0, 32) | 0;
- __ZN6cashew5Value9stringifyERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEb(HEAP32[i1 >> 2] | 0, 38088, 0);
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(38088, 10) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS_13basic_ostreamIT_T0_EES9_RKNS_12basic_stringIS6_S7_T1_EE(39560, i2) | 0, 32) | 0;
+ __ZN6cashew5Value9stringifyERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEb(HEAP32[i1 >> 2] | 0, 39560, 0);
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(39560, 10) | 0;
_abort();
}
@@ -71463,6 +71224,47 @@ function __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__init
return;
}
+function __ZN4wasm11WasmVisitorINS_11MergeBlocksEvE5visitEPNS_10ExpressionE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ if (!i1) ___assert_fail(27822, 27572, 1310, 27827);
+ switch (HEAP32[i1 >> 2] | 0) {
+ case 0:
+ {
+ _abort();
+ break;
+ }
+ case 1:
+ {
+ __ZN4wasm11MergeBlocks10visitBlockEPNS_5BlockE(i2 + -4 | 0, i1);
+ break;
+ }
+ case 20:
+ case 19:
+ case 18:
+ case 17:
+ case 16:
+ case 15:
+ case 14:
+ case 13:
+ case 12:
+ case 11:
+ case 10:
+ case 9:
+ case 8:
+ case 7:
+ case 6:
+ case 5:
+ case 4:
+ case 3:
+ case 2:
+ break;
+ default:
+ {}
+ }
+ return;
+}
+
function _memset(i2, i6, i1) {
i2 = i2 | 0;
i6 = i6 | 0;
@@ -71526,46 +71328,6 @@ function __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBu
return i1 | 0;
}
-function __ZN4wasm11WasmVisitorINS_14SimplifyLocalsEvE5visitEPNS_10ExpressionE(i2, i1) {
- i2 = i2 | 0;
- i1 = i1 | 0;
- if (!i1) ___assert_fail(26470, 26220, 1229, 26475);
- switch (HEAP32[i1 >> 2] | 0) {
- case 0:
- {
- _abort();
- break;
- }
- case 1:
- {
- __ZN4wasm14SimplifyLocals10visitBlockEPNS_5BlockE(i2 + -4 | 0, i1);
- break;
- }
- case 19:
- case 18:
- case 17:
- case 16:
- case 15:
- case 14:
- case 13:
- case 12:
- case 11:
- case 10:
- case 9:
- case 8:
- case 7:
- case 6:
- case 5:
- case 4:
- case 3:
- case 2:
- break;
- default:
- {}
- }
- return;
-}
-
function __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE16__construct_nodeIJS2_EEENS_10unique_ptrINS_11__hash_nodeIS2_PvEENS_22__hash_node_destructorINS7_ISE_EEEEEEDpOT_(i2, i3, i1) {
i2 = i2 | 0;
i3 = i3 | 0;
@@ -71582,19 +71344,19 @@ function __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2
return;
}
-function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE11visitSwitchEPNS_6SwitchE(i1, i3) {
+function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE11visitSwitchEPNS_6SwitchE(i1, i4) {
i1 = i1 | 0;
- i3 = i3 | 0;
- var i2 = 0, i4 = 0;
- i4 = i1 + 4 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i3 + 12 | 0);
- i2 = HEAP32[i3 + 36 >> 2] | 0;
- i1 = HEAP32[i3 + 32 >> 2] | 0;
+ i4 = i4 | 0;
+ var i2 = 0, i3 = 0;
+ i2 = i1 + 4 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 127](i3, i4 + 12 | 0);
+ i3 = HEAP32[i4 + 36 >> 2] | 0;
+ i1 = HEAP32[i4 + 32 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i2 | 0)) break;
- i3 = HEAP32[i4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 127](i3, i1 + 4 | 0);
+ if ((i1 | 0) == (i3 | 0)) break;
+ i4 = HEAP32[i2 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i4 >> 2] | 0) + 8 >> 2] & 127](i4, i1 + 4 | 0);
i1 = i1 + 8 | 0;
}
return;
@@ -71603,24 +71365,24 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE11vis
function __ZN4wasmL8abort_onENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew7IStringE(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- i2 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS_13basic_ostreamIT_T0_EES9_RKNS_12basic_stringIS6_S7_T1_EE(38088, i2) | 0, 32) | 0;
+ i2 = __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS_13basic_ostreamIT_T0_EES9_RKNS_12basic_stringIS6_S7_T1_EE(39560, i2) | 0, 32) | 0;
__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i2, HEAP32[i1 >> 2] | 0) | 0, 10) | 0;
_abort();
}
-function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE11visitSwitchEPNS_6SwitchE(i1, i3) {
+function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE11visitSwitchEPNS_6SwitchE(i1, i4) {
i1 = i1 | 0;
- i3 = i3 | 0;
- var i2 = 0, i4 = 0;
- i4 = i1 + 4 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i3 + 12 | 0);
- i2 = HEAP32[i3 + 36 >> 2] | 0;
- i1 = HEAP32[i3 + 32 >> 2] | 0;
+ i4 = i4 | 0;
+ var i2 = 0, i3 = 0;
+ i2 = i1 + 4 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 127](i3, i4 + 12 | 0);
+ i3 = HEAP32[i4 + 36 >> 2] | 0;
+ i1 = HEAP32[i4 + 32 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i2 | 0)) break;
- i3 = HEAP32[i4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 127](i3, i1 + 4 | 0);
+ if ((i1 | 0) == (i3 | 0)) break;
+ i4 = HEAP32[i2 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i4 >> 2] | 0) + 8 >> 2] & 127](i4, i1 + 4 | 0);
i1 = i1 + 8 | 0;
}
return;
@@ -71630,13 +71392,13 @@ function __ZNSt3__114__split_bufferIPNS_6locale5facetERNS_15__sso_allocatorIS3_L
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 8 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -4 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -4 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
i2 = HEAP32[i4 >> 2] | 0;
do if (i2 | 0) {
@@ -71652,59 +71414,37 @@ function __ZNSt3__114__split_bufferIPNS_6locale5facetERNS_15__sso_allocatorIS3_L
return;
}
-function __ZN4wasm11WasmVisitorINS_11MergeBlocksEvE5visitEPNS_10ExpressionE(i2, i1) {
- i2 = i2 | 0;
+function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE11visitSwitchEPNS_6SwitchE(i1, i4) {
i1 = i1 | 0;
- if (!i1) ___assert_fail(26470, 26220, 1229, 26475);
- switch (HEAP32[i1 >> 2] | 0) {
- case 0:
- {
- _abort();
- break;
- }
- case 1:
- {
- __ZN4wasm11MergeBlocks10visitBlockEPNS_5BlockE(i2 + -4 | 0, i1);
- break;
- }
- case 19:
- case 18:
- case 17:
- case 16:
- case 15:
- case 14:
- case 13:
- case 12:
- case 11:
- case 10:
- case 9:
- case 8:
- case 7:
- case 6:
- case 5:
- case 4:
- case 3:
- case 2:
- break;
- default:
- {}
+ i4 = i4 | 0;
+ var i2 = 0, i3 = 0;
+ i2 = i1 + 4 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 127](i3, i4 + 12 | 0);
+ i3 = HEAP32[i4 + 36 >> 2] | 0;
+ i1 = HEAP32[i4 + 32 >> 2] | 0;
+ while (1) {
+ if ((i1 | 0) == (i3 | 0)) break;
+ i4 = HEAP32[i2 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i4 >> 2] | 0) + 8 >> 2] & 127](i4, i1 + 4 | 0);
+ i1 = i1 + 8 | 0;
}
return;
}
-function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE11visitSwitchEPNS_6SwitchE(i1, i3) {
+function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEE11visitSwitchEPNS_6SwitchE(i1, i4) {
i1 = i1 | 0;
- i3 = i3 | 0;
- var i2 = 0, i4 = 0;
- i4 = i1 + 4 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i3 + 12 | 0);
- i2 = HEAP32[i3 + 36 >> 2] | 0;
- i1 = HEAP32[i3 + 32 >> 2] | 0;
+ i4 = i4 | 0;
+ var i2 = 0, i3 = 0;
+ i2 = i1 + 4 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 127](i3, i4 + 12 | 0);
+ i3 = HEAP32[i4 + 36 >> 2] | 0;
+ i1 = HEAP32[i4 + 32 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i2 | 0)) break;
- i3 = HEAP32[i4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 127](i3, i1 + 4 | 0);
+ if ((i1 | 0) == (i3 | 0)) break;
+ i4 = HEAP32[i2 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i4 >> 2] | 0) + 8 >> 2] & 127](i4, i1 + 4 | 0);
i1 = i1 + 8 | 0;
}
return;
@@ -71722,12 +71462,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj6EEERAT__Kc(i2, i1) {
HEAP8[i3 + 3 >> 0] = HEAP8[i1 + 3 >> 0] | 0;
HEAP8[i3 + 4 >> 0] = HEAP8[i1 + 4 >> 0] | 0;
HEAP8[i2 + 6 >> 0] = 0;
- i2 = i2 + 12 | 0;
- i1 = 0;
+ i1 = i2 + 12 | 0;
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
return;
}
@@ -71744,12 +71484,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj5EEERAT__Kc(i2, i1) {
HEAP8[i3 + 2 >> 0] = i1 >> 16;
HEAP8[i3 + 3 >> 0] = i1 >> 24;
HEAP8[i2 + 5 >> 0] = 0;
- i2 = i2 + 12 | 0;
- i1 = 0;
+ i1 = i2 + 12 | 0;
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
return;
}
@@ -71767,12 +71507,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__112basic_stringIcNS
HEAP32[i2 + (i1 << 2) >> 2] = 0;
i1 = i1 + 1 | 0;
}
- i2 = i3 + 12 | 0;
- i1 = 0;
+ i1 = i3 + 12 | 0;
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
return;
}
@@ -71781,20 +71521,20 @@ function __ZNSt3__111__call_onceERVmPvPFvS2_E(i2, i1, i3) {
i2 = i2 | 0;
i1 = i1 | 0;
i3 = i3 | 0;
- _pthread_mutex_lock(40804) | 0;
+ _pthread_mutex_lock(42276) | 0;
while (1) {
if ((HEAP32[i2 >> 2] | 0) != 1) break;
- _pthread_cond_wait(40832, 40804) | 0;
+ _pthread_cond_wait(42304, 42276) | 0;
}
if (!(HEAP32[i2 >> 2] | 0)) {
HEAP32[i2 >> 2] = 1;
- _pthread_mutex_unlock(40804) | 0;
+ _pthread_mutex_unlock(42276) | 0;
FUNCTION_TABLE_vi[i3 & 255](i1);
- _pthread_mutex_lock(40804) | 0;
+ _pthread_mutex_lock(42276) | 0;
HEAP32[i2 >> 2] = -1;
- _pthread_mutex_unlock(40804) | 0;
- _pthread_cond_broadcast(40832) | 0;
- } else _pthread_mutex_unlock(40804) | 0;
+ _pthread_mutex_unlock(42276) | 0;
+ _pthread_cond_broadcast(42304) | 0;
+ } else _pthread_mutex_unlock(42276) | 0;
return;
}
@@ -71815,44 +71555,24 @@ function __ZNSt3__16__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBu
return i1 | 0;
}
-function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE11visitSwitchEPNS_6SwitchE(i1, i3) {
+function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE11visitSwitchEPNS_6SwitchE(i1, i4) {
i1 = i1 | 0;
- i3 = i3 | 0;
- var i2 = 0, i4 = 0;
- i4 = i1 + 4 | 0;
- i2 = HEAP32[i4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i3 + 12 | 0);
- i2 = HEAP32[i3 + 36 >> 2] | 0;
- i1 = HEAP32[i3 + 32 >> 2] | 0;
+ i4 = i4 | 0;
+ var i2 = 0, i3 = 0;
+ i2 = i1 + 4 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 127](i3, i4 + 12 | 0);
+ i3 = HEAP32[i4 + 36 >> 2] | 0;
+ i1 = HEAP32[i4 + 32 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i2 | 0)) break;
- i3 = HEAP32[i4 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 127](i3, i1 + 4 | 0);
+ if ((i1 | 0) == (i3 | 0)) break;
+ i4 = HEAP32[i2 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i4 >> 2] | 0) + 8 >> 2] & 127](i4, i1 + 4 | 0);
i1 = i1 + 8 | 0;
}
return;
}
-function __ZNSt3__16vectorINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEE18__construct_at_endEj(i1, i4) {
- i1 = i1 | 0;
- i4 = i4 | 0;
- var i2 = 0, i3 = 0;
- i3 = i1 + 4 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- i1 = i4;
- do {
- HEAP32[i2 >> 2] = 0;
- HEAP32[i2 + 4 >> 2] = 0;
- HEAP32[i2 + 8 >> 2] = 0;
- HEAP32[i2 + 12 >> 2] = 0;
- HEAPF32[i2 + 16 >> 2] = 1.0;
- i2 = (HEAP32[i3 >> 2] | 0) + 20 | 0;
- HEAP32[i3 >> 2] = i2;
- i1 = i1 + -1 | 0;
- } while ((i1 | 0) != 0);
- return;
-}
-
function __ZNSt3__16vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEEC2Ej(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
@@ -71893,20 +71613,20 @@ function _strerror(i1) {
var i2 = 0, i3 = 0;
i2 = 0;
while (1) {
- if ((HEAPU8[28079 + i2 >> 0] | 0) == (i1 | 0)) {
+ if ((HEAPU8[29770 + i2 >> 0] | 0) == (i1 | 0)) {
i3 = 2;
break;
}
i2 = i2 + 1 | 0;
if ((i2 | 0) == 87) {
i2 = 87;
- i1 = 28167;
+ i1 = 29858;
i3 = 5;
break;
}
}
- if ((i3 | 0) == 2) if (!i2) i1 = 28167; else {
- i1 = 28167;
+ if ((i3 | 0) == 2) if (!i2) i1 = 29858; else {
+ i1 = 29858;
i3 = 5;
}
if ((i3 | 0) == 5) while (1) {
@@ -71982,7 +71702,7 @@ function __ZN6cashew19DotZeroValueBuilder10makeDoubleEd(d1) {
i4 = i3 + 8 | 0;
i6 = i3 + 4 | 0;
i5 = i3;
- HEAP32[i6 >> 2] = HEAP32[9264];
+ HEAP32[i6 >> 2] = HEAP32[9632];
i7 = __ZN6cashew12ValueBuilder10makeDoubleEd(d1) | 0;
HEAP32[i5 >> 2] = i7;
HEAP32[i4 >> 2] = HEAP32[i6 >> 2];
@@ -71992,19 +71712,24 @@ function __ZN6cashew19DotZeroValueBuilder10makeDoubleEd(d1) {
return i2 | 0;
}
-function __ZN4wasm22SExpressionWasmBuilder10makeReturnERNS_7ElementE(i3, i2) {
- i3 = i3 | 0;
+function __ZNSt3__16vectorINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEE18__construct_at_endEj(i1, i2) {
+ i1 = i1 | 0;
i2 = i2 | 0;
- var i1 = 0;
- HEAP8[i3 + 88 >> 0] = 1;
- i1 = __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(HEAP32[i3 + 4 >> 2] | 0) | 0;
- HEAP32[i1 + 12 >> 2] = HEAP32[9202];
- if ((__ZN4wasm7Element4sizeEv(i2) | 0) >>> 0 > 1) {
- i2 = __ZN4wasm7Element4listEv(i2) | 0;
- i3 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i3, HEAP32[(HEAP32[i2 >> 2] | 0) + 4 >> 2] | 0) | 0;
- HEAP32[i1 + 16 >> 2] = i3;
- }
- return i1 | 0;
+ var i3 = 0;
+ i3 = i1 + 4 | 0;
+ i1 = i2;
+ i2 = HEAP32[i3 >> 2] | 0;
+ do {
+ HEAP32[i2 >> 2] = 0;
+ HEAP32[i2 + 4 >> 2] = 0;
+ HEAP32[i2 + 8 >> 2] = 0;
+ HEAP32[i2 + 12 >> 2] = 0;
+ HEAPF32[i2 + 16 >> 2] = 1.0;
+ i2 = (HEAP32[i3 >> 2] | 0) + 20 | 0;
+ HEAP32[i3 >> 2] = i2;
+ i1 = i1 + -1 | 0;
+ } while ((i1 | 0) != 0);
+ return;
}
function __ZNSt3__13mapIN6cashew7IStringEN4wasm12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE25__construct_node_with_keyERS9_(i2, i3, i1) {
@@ -72032,30 +71757,30 @@ function __ZSt9terminatev() {
i3 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
i4 = i3 + 8 | 0;
- i2 = ___cxa_get_globals_fast() | 0;
- if ((i2 | 0 ? (i1 = HEAP32[i2 >> 2] | 0, i1 | 0) : 0) ? (i2 = i1 + 48 | 0, (HEAP32[i2 >> 2] & -256 | 0) == 1126902528 ? (HEAP32[i2 + 4 >> 2] | 0) == 1129074247 : 0) : 0) {
- FUNCTION_TABLE_v[HEAP32[i1 + 12 >> 2] & 3]();
- _abort_message(33815, i3);
+ i1 = ___cxa_get_globals_fast() | 0;
+ if ((i1 | 0 ? (i2 = HEAP32[i1 >> 2] | 0, i2 | 0) : 0) ? (i1 = i2 + 48 | 0, (HEAP32[i1 >> 2] & -256 | 0) == 1126902528 ? (HEAP32[i1 + 4 >> 2] | 0) == 1129074247 : 0) : 0) {
+ FUNCTION_TABLE_v[HEAP32[i2 + 12 >> 2] & 3]();
+ _abort_message(35279, i3);
}
- i3 = HEAP32[2738] | 0;
- HEAP32[2738] = i3 + 0;
+ i3 = HEAP32[2880] | 0;
+ HEAP32[2880] = i3 + 0;
FUNCTION_TABLE_v[i3 & 3]();
- _abort_message(33815, i4);
+ _abort_message(35279, i4);
}
-function __ZNSt3__18functionIFPN4wasm4PassEvEEC2ERKS5_(i4, i2) {
+function __ZNSt3__18functionIFPN4wasm4PassEvEEC2ERKS5_(i4, i3) {
i4 = i4 | 0;
- i2 = i2 | 0;
- var i1 = 0, i3 = 0;
- i3 = i2 + 16 | 0;
- i1 = HEAP32[i3 >> 2] | 0;
- do if (i1) if ((i1 | 0) == (i2 | 0)) {
+ i3 = i3 | 0;
+ var i1 = 0, i2 = 0;
+ i1 = i3 + 16 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ do if (i2) if ((i2 | 0) == (i3 | 0)) {
HEAP32[i4 + 16 >> 2] = i4;
- i3 = HEAP32[i3 >> 2] | 0;
+ i3 = HEAP32[i1 >> 2] | 0;
FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 12 >> 2] & 127](i3, i4);
break;
} else {
- i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 8 >> 2] & 127](i1) | 0;
+ i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2) | 0;
HEAP32[i4 + 16 >> 2] = i3;
break;
} else HEAP32[i4 + 16 >> 2] = 0; while (0);
@@ -72093,22 +71818,22 @@ function __ZNK10__cxxabiv120__si_class_type_info16search_above_dstEPNS_19__dynam
return;
}
-function __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEjEEclES5_j(i2, i3, i1) {
+function __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEjEEclES5_j(i2, i4, i1) {
i2 = i2 | 0;
- i3 = i3 | 0;
+ i4 = i4 | 0;
i1 = i1 | 0;
- var i4 = 0, i5 = 0;
+ var i3 = 0, i5 = 0;
i5 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- i4 = i5;
- HEAP32[i4 >> 2] = i1;
+ i3 = i5;
+ HEAP32[i3 >> 2] = i1;
i1 = HEAP32[i2 + 16 >> 2] | 0;
if (!i1) {
i5 = ___cxa_allocate_exception(4) | 0;
- HEAP32[i5 >> 2] = 2680;
+ HEAP32[i5 >> 2] = 2880;
___cxa_throw(i5 | 0, 152, 15);
} else {
- i4 = FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 24 >> 2] & 31](i1, i3, i4) | 0;
+ i4 = FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 24 >> 2] & 31](i1, i4, i3) | 0;
STACKTOP = i5;
return i4 | 0;
}
@@ -72168,30 +71893,30 @@ function __ZN6cashew5Value9push_backENS_3RefE(i5, i4) {
i5 = i5 | 0;
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0;
- if ((HEAP32[i5 >> 2] | 0) != 2) ___assert_fail(27224, 27234, 478, 22202);
+ if ((HEAP32[i5 >> 2] | 0) != 2) ___assert_fail(28576, 28586, 478, 22790);
i1 = HEAP32[i5 + 8 >> 2] | 0;
- i3 = i1 + 4 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (HEAP32[i1 + 8 >> 2] | 0)) __ZNSt3__16vectorIN6cashew3RefENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i1, i4); else {
- HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
- HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + 4;
+ i2 = i1 + 4 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (HEAP32[i1 + 8 >> 2] | 0)) __ZNSt3__16vectorIN6cashew3RefENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i1, i4); else {
+ HEAP32[i3 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4;
}
return i5 | 0;
}
-function __ZNSt3__18functionIFvvEEC2ERKS2_(i4, i2) {
+function __ZNSt3__18functionIFvvEEC2ERKS2_(i4, i3) {
i4 = i4 | 0;
- i2 = i2 | 0;
- var i1 = 0, i3 = 0;
- i3 = i2 + 16 | 0;
- i1 = HEAP32[i3 >> 2] | 0;
- do if (i1) if ((i1 | 0) == (i2 | 0)) {
+ i3 = i3 | 0;
+ var i1 = 0, i2 = 0;
+ i1 = i3 + 16 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ do if (i2) if ((i2 | 0) == (i3 | 0)) {
HEAP32[i4 + 16 >> 2] = i4;
- i3 = HEAP32[i3 >> 2] | 0;
+ i3 = HEAP32[i1 >> 2] | 0;
FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 12 >> 2] & 127](i3, i4);
break;
} else {
- i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 8 >> 2] & 127](i1) | 0;
+ i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2) | 0;
HEAP32[i4 + 16 >> 2] = i3;
break;
} else HEAP32[i4 + 16 >> 2] = 0; while (0);
@@ -72276,6 +72001,20 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE11visitS
return;
}
+function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEE11visitSelectEPNS_6SelectE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ var i3 = 0;
+ i2 = i2 + 4 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 127](i3, i1 + 8 | 0);
+ i3 = HEAP32[i2 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 127](i3, i1 + 12 | 0);
+ i2 = HEAP32[i2 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 16 | 0);
+ return;
+}
+
function __ZNSt3__16__treeINS_12__value_typeIN4wasm4NameEjEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE13__lower_boundIS3_EENS_15__tree_iteratorIS4_PNS_11__tree_nodeIS4_PvEEiEERKT_SH_SH_(i3, i4, i2, i1) {
i3 = i3 | 0;
i4 = i4 | 0;
@@ -72299,13 +72038,13 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE15vis
var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
i5 = i1 + 8 | 0;
i4 = i1 + 12 | 0;
- i2 = i2 + 4 | 0;
+ i1 = i2 + 4 | 0;
i3 = 0;
while (1) {
- i1 = HEAP32[i5 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i1 >> 2 >>> 0) break;
- i6 = HEAP32[i2 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i1 + (i3 << 2) | 0);
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i1 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
i3 = i3 + 1 | 0;
}
return;
@@ -72358,13 +72097,13 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE15visit
var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
i5 = i1 + 8 | 0;
i4 = i1 + 12 | 0;
- i2 = i2 + 4 | 0;
+ i1 = i2 + 4 | 0;
i3 = 0;
while (1) {
- i1 = HEAP32[i5 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i1 >> 2 >>> 0) break;
- i6 = HEAP32[i2 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i1 + (i3 << 2) | 0);
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i1 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
i3 = i3 + 1 | 0;
}
return;
@@ -72406,13 +72145,31 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE15visitC
var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
i5 = i1 + 8 | 0;
i4 = i1 + 12 | 0;
- i2 = i2 + 4 | 0;
+ i1 = i2 + 4 | 0;
i3 = 0;
while (1) {
- i1 = HEAP32[i5 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i1 >> 2 >>> 0) break;
- i6 = HEAP32[i2 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i1 + (i3 << 2) | 0);
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i1 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
+ i3 = i3 + 1 | 0;
+ }
+ return;
+}
+
+function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEE15visitCallImportEPNS_10CallImportE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
+ i5 = i1 + 8 | 0;
+ i4 = i1 + 12 | 0;
+ i1 = i2 + 4 | 0;
+ i3 = 0;
+ while (1) {
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i1 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
i3 = i3 + 1 | 0;
}
return;
@@ -72500,19 +72257,33 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE7visitIf
return;
}
+function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEE7visitIfEPNS_2IfE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ var i3 = 0;
+ i2 = i2 + 4 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 127](i3, i1 + 8 | 0);
+ i3 = HEAP32[i2 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 127](i3, i1 + 12 | 0);
+ i2 = HEAP32[i2 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 16 | 0);
+ return;
+}
+
function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE15visitCallImportEPNS_10CallImportE(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
i5 = i1 + 8 | 0;
i4 = i1 + 12 | 0;
- i2 = i2 + 4 | 0;
+ i1 = i2 + 4 | 0;
i3 = 0;
while (1) {
- i1 = HEAP32[i5 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i1 >> 2 >>> 0) break;
- i6 = HEAP32[i2 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i1 + (i3 << 2) | 0);
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i1 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
i3 = i3 + 1 | 0;
}
return;
@@ -72526,12 +72297,12 @@ function __ZNSt3__119__tree_right_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i5) {
i1 = HEAP32[i4 >> 2] | 0;
HEAP32[i5 >> 2] = i1;
if (i1 | 0) HEAP32[i1 + 8 >> 2] = i5;
- i2 = i5 + 8 | 0;
- HEAP32[i3 + 8 >> 2] = HEAP32[i2 >> 2];
- i1 = HEAP32[i2 >> 2] | 0;
- if ((HEAP32[i1 >> 2] | 0) == (i5 | 0)) HEAP32[i1 >> 2] = i3; else HEAP32[i1 + 4 >> 2] = i3;
+ i1 = i5 + 8 | 0;
+ HEAP32[i3 + 8 >> 2] = HEAP32[i1 >> 2];
+ i2 = HEAP32[i1 >> 2] | 0;
+ if ((HEAP32[i2 >> 2] | 0) == (i5 | 0)) HEAP32[i2 >> 2] = i3; else HEAP32[i2 + 4 >> 2] = i3;
HEAP32[i4 >> 2] = i5;
- HEAP32[i2 >> 2] = i3;
+ HEAP32[i1 >> 2] = i3;
return;
}
@@ -72555,13 +72326,13 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE10vis
var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
i5 = i1 + 12 | 0;
i4 = i1 + 16 | 0;
- i2 = i2 + 4 | 0;
+ i1 = i2 + 4 | 0;
i3 = 0;
while (1) {
- i1 = HEAP32[i5 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i1 >> 2 >>> 0) break;
- i6 = HEAP32[i2 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i1 + (i3 << 2) | 0);
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i1 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
i3 = i3 + 1 | 0;
}
return;
@@ -72597,13 +72368,13 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE10visit
var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
i5 = i1 + 12 | 0;
i4 = i1 + 16 | 0;
- i2 = i2 + 4 | 0;
+ i1 = i2 + 4 | 0;
i3 = 0;
while (1) {
- i1 = HEAP32[i5 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i1 >> 2 >>> 0) break;
- i6 = HEAP32[i2 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i1 + (i3 << 2) | 0);
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i1 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
i3 = i3 + 1 | 0;
}
return;
@@ -72613,18 +72384,18 @@ function __ZNSt3__16vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuild
i1 = i1 | 0;
i5 = i5 | 0;
var i2 = 0, i3 = 0, i4 = 0;
- i2 = i1 + 4 | 0;
- i3 = HEAP32[i2 >> 2] | 0;
- i1 = i3;
- i4 = i5;
+ i3 = i1 + 4 | 0;
+ i2 = HEAP32[i3 >> 2] | 0;
+ i1 = i5;
+ i4 = i2;
while (1) {
- HEAP32[i1 >> 2] = 0;
- HEAP32[i1 + 4 >> 2] = 0;
- HEAP32[i1 + 8 >> 2] = 0;
- i4 = i4 + -1 | 0;
- if (!i4) break; else i1 = i1 + 12 | 0;
+ HEAP32[i4 >> 2] = 0;
+ HEAP32[i4 + 4 >> 2] = 0;
+ HEAP32[i4 + 8 >> 2] = 0;
+ i1 = i1 + -1 | 0;
+ if (!i1) break; else i4 = i4 + 12 | 0;
}
- HEAP32[i2 >> 2] = i3 + (i5 * 12 | 0);
+ HEAP32[i3 >> 2] = i2 + (i5 * 12 | 0);
return;
}
@@ -72634,13 +72405,13 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE9visi
var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
i5 = i1 + 16 | 0;
i4 = i1 + 20 | 0;
- i2 = i2 + 4 | 0;
+ i1 = i2 + 4 | 0;
i3 = 0;
while (1) {
- i1 = HEAP32[i5 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i1 >> 2 >>> 0) break;
- i6 = HEAP32[i2 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i1 + (i3 << 2) | 0);
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i1 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
i3 = i3 + 1 | 0;
}
return;
@@ -72652,13 +72423,31 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE10visitB
var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
i5 = i1 + 12 | 0;
i4 = i1 + 16 | 0;
- i2 = i2 + 4 | 0;
+ i1 = i2 + 4 | 0;
i3 = 0;
while (1) {
- i1 = HEAP32[i5 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i1 >> 2 >>> 0) break;
- i6 = HEAP32[i2 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i1 + (i3 << 2) | 0);
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i1 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
+ i3 = i3 + 1 | 0;
+ }
+ return;
+}
+
+function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEE10visitBlockEPNS_5BlockE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
+ i5 = i1 + 12 | 0;
+ i4 = i1 + 16 | 0;
+ i1 = i2 + 4 | 0;
+ i3 = 0;
+ while (1) {
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i1 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
i3 = i3 + 1 | 0;
}
return;
@@ -72670,13 +72459,13 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE9visi
var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
i5 = i1 + 8 | 0;
i4 = i1 + 12 | 0;
- i2 = i2 + 4 | 0;
+ i1 = i2 + 4 | 0;
i3 = 0;
while (1) {
- i1 = HEAP32[i5 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i1 >> 2 >>> 0) break;
- i6 = HEAP32[i2 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i1 + (i3 << 2) | 0);
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i1 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
i3 = i3 + 1 | 0;
}
return;
@@ -72688,13 +72477,13 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE9visitH
var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
i5 = i1 + 16 | 0;
i4 = i1 + 20 | 0;
- i2 = i2 + 4 | 0;
+ i1 = i2 + 4 | 0;
i3 = 0;
while (1) {
- i1 = HEAP32[i5 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i1 >> 2 >>> 0) break;
- i6 = HEAP32[i2 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i1 + (i3 << 2) | 0);
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i1 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
i3 = i3 + 1 | 0;
}
return;
@@ -72706,13 +72495,13 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE9visitC
var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
i5 = i1 + 8 | 0;
i4 = i1 + 12 | 0;
- i2 = i2 + 4 | 0;
+ i1 = i2 + 4 | 0;
i3 = 0;
while (1) {
- i1 = HEAP32[i5 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i1 >> 2 >>> 0) break;
- i6 = HEAP32[i2 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i1 + (i3 << 2) | 0);
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i1 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
i3 = i3 + 1 | 0;
}
return;
@@ -72724,13 +72513,31 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE9visitHo
var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
i5 = i1 + 16 | 0;
i4 = i1 + 20 | 0;
- i2 = i2 + 4 | 0;
+ i1 = i2 + 4 | 0;
i3 = 0;
while (1) {
- i1 = HEAP32[i5 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i1 >> 2 >>> 0) break;
- i6 = HEAP32[i2 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i1 + (i3 << 2) | 0);
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i1 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
+ i3 = i3 + 1 | 0;
+ }
+ return;
+}
+
+function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEE9visitHostEPNS_4HostE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
+ i5 = i1 + 16 | 0;
+ i4 = i1 + 20 | 0;
+ i1 = i2 + 4 | 0;
+ i3 = 0;
+ while (1) {
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i1 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
i3 = i3 + 1 | 0;
}
return;
@@ -72742,13 +72549,13 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE10visitBloc
var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
i5 = i1 + 12 | 0;
i4 = i1 + 16 | 0;
- i2 = i2 + 4 | 0;
+ i1 = i2 + 4 | 0;
i3 = 0;
while (1) {
- i1 = HEAP32[i5 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i1 >> 2 >>> 0) break;
- i6 = HEAP32[i2 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i1 + (i3 << 2) | 0);
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i1 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
i3 = i3 + 1 | 0;
}
return;
@@ -72762,12 +72569,12 @@ function __ZNSt3__118__tree_left_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i4) {
i1 = HEAP32[i3 >> 2] | 0;
HEAP32[i2 >> 2] = i1;
if (i1 | 0) HEAP32[i1 + 8 >> 2] = i4;
- i2 = i4 + 8 | 0;
- HEAP32[i3 + 8 >> 2] = HEAP32[i2 >> 2];
- i1 = HEAP32[i2 >> 2] | 0;
- if ((HEAP32[i1 >> 2] | 0) == (i4 | 0)) HEAP32[i1 >> 2] = i3; else HEAP32[i1 + 4 >> 2] = i3;
+ i1 = i4 + 8 | 0;
+ HEAP32[i3 + 8 >> 2] = HEAP32[i1 >> 2];
+ i2 = HEAP32[i1 >> 2] | 0;
+ if ((HEAP32[i2 >> 2] | 0) == (i4 | 0)) HEAP32[i2 >> 2] = i3; else HEAP32[i2 + 4 >> 2] = i3;
HEAP32[i3 >> 2] = i4;
- HEAP32[i2 >> 2] = i3;
+ HEAP32[i1 >> 2] = i3;
return;
}
@@ -72776,13 +72583,13 @@ function __ZNSt3__113__vector_baseIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj2
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 >> 2] | 0;
do if (i1 | 0) {
- i3 = i4 + 4 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 4 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -4 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -4 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
if ((i4 + 16 | 0) == (i1 | 0)) {
HEAP8[i4 + 128 >> 0] = 0;
@@ -72801,23 +72608,77 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE9visitCa
var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
i5 = i1 + 8 | 0;
i4 = i1 + 12 | 0;
- i2 = i2 + 4 | 0;
+ i1 = i2 + 4 | 0;
i3 = 0;
while (1) {
- i1 = HEAP32[i5 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i1 >> 2 >>> 0) break;
- i6 = HEAP32[i2 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i1 + (i3 << 2) | 0);
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i1 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
+ i3 = i3 + 1 | 0;
+ }
+ return;
+}
+
+function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEE9visitCallEPNS_4CallE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
+ i5 = i1 + 8 | 0;
+ i4 = i1 + 12 | 0;
+ i1 = i2 + 4 | 0;
+ i3 = 0;
+ while (1) {
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i1 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
i3 = i3 + 1 | 0;
}
return;
}
+function __ZNSt3__111__stdoutbufIwE6xsputnEPKwi(i4, i1, i3) {
+ i4 = i4 | 0;
+ i1 = i1 | 0;
+ i3 = i3 | 0;
+ var i2 = 0;
+ L1 : do if (!(HEAP8[i4 + 44 >> 0] | 0)) {
+ i2 = i1;
+ i1 = 0;
+ while (1) {
+ if ((i1 | 0) >= (i3 | 0)) break L1;
+ if ((FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 52 >> 2] & 31](i4, HEAP32[i2 >> 2] | 0) | 0) == -1) break L1;
+ i2 = i2 + 4 | 0;
+ i1 = i1 + 1 | 0;
+ }
+ } else i1 = _fwrite(i1, 4, i3, HEAP32[i4 + 32 >> 2] | 0) | 0; while (0);
+ return i1 | 0;
+}
+
+function __ZNSt3__111__stdoutbufIcE6xsputnEPKci(i4, i1, i3) {
+ i4 = i4 | 0;
+ i1 = i1 | 0;
+ i3 = i3 | 0;
+ var i2 = 0;
+ L1 : do if (!(HEAP8[i4 + 44 >> 0] | 0)) {
+ i2 = i1;
+ i1 = 0;
+ while (1) {
+ if ((i1 | 0) >= (i3 | 0)) break L1;
+ if ((FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 52 >> 2] & 31](i4, HEAPU8[i2 >> 0] | 0) | 0) == -1) break L1;
+ i2 = i2 + 1 | 0;
+ i1 = i1 + 1 | 0;
+ }
+ } else i1 = _fwrite(i1, 1, i3, HEAP32[i4 + 32 >> 2] | 0) | 0; while (0);
+ return i1 | 0;
+}
+
function __ZNSt3__110__stdinbufIwE5imbueERKNS_6localeE(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
var i3 = 0, i4 = 0;
- i4 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 40764) | 0;
+ i4 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 42236) | 0;
i3 = i2 + 36 | 0;
HEAP32[i3 >> 2] = i4;
i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 24 >> 2] & 127](i4) | 0;
@@ -72833,7 +72694,7 @@ function __ZNSt3__110__stdinbufIcE5imbueERKNS_6localeE(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
var i3 = 0, i4 = 0;
- i4 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 40756) | 0;
+ i4 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 42228) | 0;
i3 = i2 + 36 | 0;
HEAP32[i3 >> 2] = i4;
i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 24 >> 2] & 127](i4) | 0;
@@ -72851,13 +72712,13 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE9visitHostE
var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
i5 = i1 + 16 | 0;
i4 = i1 + 20 | 0;
- i2 = i2 + 4 | 0;
+ i1 = i2 + 4 | 0;
i3 = 0;
while (1) {
- i1 = HEAP32[i5 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i1 >> 2 >>> 0) break;
- i6 = HEAP32[i2 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i1 + (i3 << 2) | 0);
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i1 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
i3 = i3 + 1 | 0;
}
return;
@@ -72869,20 +72730,20 @@ function __ZNKSt3__15ctypeIwE5do_isEPKwS3_Pt(i1, i6, i5, i2) {
i5 = i5 | 0;
i2 = i2 | 0;
var i3 = 0, i4 = 0, i7 = 0;
- i3 = (i5 - i6 | 0) >>> 2;
- i4 = i6;
+ i4 = (i5 - i6 | 0) >>> 2;
+ i3 = i6;
while (1) {
- if ((i4 | 0) == (i5 | 0)) break;
- i1 = HEAP32[i4 >> 2] | 0;
+ if ((i3 | 0) == (i5 | 0)) break;
+ i1 = HEAP32[i3 >> 2] | 0;
if (i1 >>> 0 < 128) {
i7 = ___ctype_b_loc() | 0;
i1 = HEAPU16[(HEAP32[i7 >> 2] | 0) + (i1 << 1) >> 1] | 0;
} else i1 = 0;
HEAP16[i2 >> 1] = i1;
- i4 = i4 + 4 | 0;
i2 = i2 + 2 | 0;
+ i3 = i3 + 4 | 0;
}
- return i6 + (i3 << 2) | 0;
+ return i6 + (i4 << 2) | 0;
}
function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE8parseNewERPcPKc(i3, i2, i1) {
@@ -72908,13 +72769,13 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEE9visitCallE
var i3 = 0, i4 = 0, i5 = 0, i6 = 0;
i5 = i1 + 8 | 0;
i4 = i1 + 12 | 0;
- i2 = i2 + 4 | 0;
+ i1 = i2 + 4 | 0;
i3 = 0;
while (1) {
- i1 = HEAP32[i5 >> 2] | 0;
- if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i1 >> 2 >>> 0) break;
- i6 = HEAP32[i2 >> 2] | 0;
- FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i1 + (i3 << 2) | 0);
+ i2 = HEAP32[i5 >> 2] | 0;
+ if (i3 >>> 0 >= (HEAP32[i4 >> 2] | 0) - i2 >> 2 >>> 0) break;
+ i6 = HEAP32[i1 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 8 >> 2] & 127](i6, i2 + (i3 << 2) | 0);
i3 = i3 + 1 | 0;
}
return;
@@ -72939,6 +72800,32 @@ function __ZN4wasm10Expression2isINS_10CallImportEEEbv(i1) {
return (i1 | 0) == 7 | 0;
}
+function _wmemmove(i4, i3, i1) {
+ i4 = i4 | 0;
+ i3 = i3 | 0;
+ i1 = i1 | 0;
+ var i2 = 0;
+ i2 = (i1 | 0) == 0;
+ if (i4 - i3 >> 2 >>> 0 < i1 >>> 0) {
+ if (!i2) do {
+ i1 = i1 + -1 | 0;
+ HEAP32[i4 + (i1 << 2) >> 2] = HEAP32[i3 + (i1 << 2) >> 2];
+ } while ((i1 | 0) != 0);
+ } else if (!i2) {
+ i2 = i3;
+ i3 = i4;
+ while (1) {
+ i1 = i1 + -1 | 0;
+ HEAP32[i3 >> 2] = HEAP32[i2 >> 2];
+ if (!i1) break; else {
+ i2 = i2 + 4 | 0;
+ i3 = i3 + 4 | 0;
+ }
+ }
+ }
+ return i4 | 0;
+}
+
function __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
@@ -72996,40 +72883,6 @@ function __ZN4wasm10Expression2isINS_5BlockEEEbv(i1) {
return (i1 | 0) == 1 | 0;
}
-function __ZNSt3__111__stdoutbufIwE6xsputnEPKwi(i4, i2, i3) {
- i4 = i4 | 0;
- i2 = i2 | 0;
- i3 = i3 | 0;
- var i1 = 0;
- L1 : do if (!(HEAP8[i4 + 44 >> 0] | 0)) {
- i1 = 0;
- while (1) {
- if ((i1 | 0) >= (i3 | 0)) break L1;
- if ((FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 52 >> 2] & 31](i4, HEAP32[i2 >> 2] | 0) | 0) == -1) break L1;
- i1 = i1 + 1 | 0;
- i2 = i2 + 4 | 0;
- }
- } else i1 = _fwrite(i2, 4, i3, HEAP32[i4 + 32 >> 2] | 0) | 0; while (0);
- return i1 | 0;
-}
-
-function __ZNSt3__111__stdoutbufIcE6xsputnEPKci(i4, i2, i3) {
- i4 = i4 | 0;
- i2 = i2 | 0;
- i3 = i3 | 0;
- var i1 = 0;
- L1 : do if (!(HEAP8[i4 + 44 >> 0] | 0)) {
- i1 = 0;
- while (1) {
- if ((i1 | 0) >= (i3 | 0)) break L1;
- if ((FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 52 >> 2] & 31](i4, HEAPU8[i2 >> 0] | 0) | 0) == -1) break L1;
- i1 = i1 + 1 | 0;
- i2 = i2 + 1 | 0;
- }
- } else i1 = _fwrite(i2, 1, i3, HEAP32[i4 + 32 >> 2] | 0) | 0; while (0);
- return i1 | 0;
-}
-
function __ZN4wasm10Expression2isINS_4CallEEEbv(i1) {
i1 = i1 | 0;
var i2 = 0, i3 = 0, i4 = 0;
@@ -73063,13 +72916,13 @@ function __ZNSt3__114__split_bufferIN6cashew13OperatorClassERNS_9allocatorIS2_EE
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
+ i2 = i4 + 8 | 0;
while (1) {
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (i1 | 0)) break;
- i2 = i2 + -28 | 0;
- HEAP32[i3 >> 2] = i2;
- __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev(i2);
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i3 = i3 + -28 | 0;
+ HEAP32[i2 >> 2] = i3;
+ __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev(i3);
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZdlPv(i1);
@@ -73081,13 +72934,13 @@ function __ZNSt3__113__vector_baseIN6cashew13OperatorClassENS_9allocatorIS2_EEED
var i1 = 0, i2 = 0, i3 = 0;
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) {
- i3 = i4 + 4 | 0;
+ i2 = i4 + 4 | 0;
while (1) {
- i2 = HEAP32[i3 >> 2] | 0;
- if ((i2 | 0) == (i1 | 0)) break;
- i2 = i2 + -28 | 0;
- HEAP32[i3 >> 2] = i2;
- __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev(i2);
+ i3 = HEAP32[i2 >> 2] | 0;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i3 = i3 + -28 | 0;
+ HEAP32[i2 >> 2] = i3;
+ __ZNSt3__112__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev(i3);
}
__ZdlPv(HEAP32[i4 >> 2] | 0);
}
@@ -73109,31 +72962,6 @@ function __ZNK10__cxxabiv122__base_class_type_info16search_below_dstEPNS_19__dyn
return;
}
-function _wmemmove(i4, i2, i1) {
- i4 = i4 | 0;
- i2 = i2 | 0;
- i1 = i1 | 0;
- var i3 = 0;
- i3 = (i1 | 0) == 0;
- if (i4 - i2 >> 2 >>> 0 < i1 >>> 0) {
- if (!i3) do {
- i1 = i1 + -1 | 0;
- HEAP32[i4 + (i1 << 2) >> 2] = HEAP32[i2 + (i1 << 2) >> 2];
- } while ((i1 | 0) != 0);
- } else if (!i3) {
- i3 = i4;
- while (1) {
- i1 = i1 + -1 | 0;
- HEAP32[i3 >> 2] = HEAP32[i2 >> 2];
- if (!i1) break; else {
- i3 = i3 + 4 | 0;
- i2 = i2 + 4 | 0;
- }
- }
- }
- return i4 | 0;
-}
-
function __ZNK10__cxxabiv120__si_class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi(i4, i2, i1, i3) {
i4 = i4 | 0;
i2 = i2 | 0;
@@ -73154,7 +72982,7 @@ function __ZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsI
i4 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
i5 = i4;
- HEAP32[i5 >> 2] = 2700;
+ HEAP32[i5 >> 2] = 2900;
HEAP32[i5 + 4 >> 2] = i2;
HEAP32[i5 + 8 >> 2] = i1;
__ZN4wasm11WasmVisitorIZNS_10Expression5printERNSt3__113basic_ostreamIcNS2_11char_traitsIcEEEEjE17ExpressionPrintervE5visitEPS1_(i5, i3);
@@ -73162,6 +72990,24 @@ function __ZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsI
return i2 | 0;
}
+function __ZNSt3__13mapIN6cashew7IStringEN4wasm7LiteralENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE25__construct_node_with_keyERS9_(i2, i3, i1) {
+ i2 = i2 | 0;
+ i3 = i3 | 0;
+ i1 = i1 | 0;
+ var i4 = 0;
+ i4 = __Znwj(40) | 0;
+ HEAP32[i4 + 16 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i4 + 24 >> 2] = 0;
+ i1 = i4 + 32 | 0;
+ HEAP32[i1 >> 2] = 0;
+ HEAP32[i1 + 4 >> 2] = 0;
+ HEAP32[i2 >> 2] = i4;
+ i2 = i2 + 4 | 0;
+ HEAP32[i2 >> 2] = i3 + 4;
+ HEAP32[i2 + 4 >> 2] = 257;
+ return;
+}
+
function __ZNSt3__114__split_bufferIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementERNS_9allocatorIS6_EEEC2EjjS9_(i4, i2, i3, i1) {
i4 = i4 | 0;
i2 = i2 | 0;
@@ -73200,6 +73046,19 @@ function ___towrite(i2) {
return i1 | 0;
}
+function __ZN4wasm22SExpressionWasmBuilder10makeReturnERNS_7ElementE(i3, i2) {
+ i3 = i3 | 0;
+ i2 = i2 | 0;
+ var i1 = 0;
+ i1 = __ZN10MixedArena5allocIN4wasm6ReturnEEEPT_v(HEAP32[i3 + 4 >> 2] | 0) | 0;
+ if ((__ZN4wasm7Element4sizeEv(i2) | 0) >>> 0 > 1) {
+ i2 = __ZN4wasm7Element4listEv(i2) | 0;
+ i3 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i3, HEAP32[(HEAP32[i2 >> 2] | 0) + 4 >> 2] | 0) | 0;
+ HEAP32[i1 + 8 >> 2] = i3;
+ }
+ return i1 | 0;
+}
+
function __ZN4wasm15Asm2WasmBuilder14detectWasmTypeEN6cashew3RefEP7AsmData(i3, i1, i2) {
i3 = i3 | 0;
i1 = i1 | 0;
@@ -73226,7 +73085,7 @@ function __ZN4wasm12RegisterPassINS_17RemoveUnusedNamesEEC2EPKcS4_(i3, i2, i1) {
i4 = i3;
i5 = __ZN4wasm12PassRegistry3getEv() | 0;
HEAP32[i4 + 16 >> 2] = i4;
- HEAP32[i4 >> 2] = 3204;
+ HEAP32[i4 >> 2] = 3644;
__ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__18functionIFPNS_4PassEvEEE(i5, i2, i1, i4);
__ZNSt3__18functionIFPN4wasm4PassEvEED2Ev(i4);
STACKTOP = i3;
@@ -73246,12 +73105,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i3, i1) {
i1 = i1 + 1 | 0;
} while ((i4 | 0) < (i2 | 0));
HEAP8[i3 + 11 >> 0] = 0;
- i2 = i3 + 12 | 0;
- i1 = 0;
+ i1 = i3 + 12 | 0;
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
return;
}
@@ -73268,6 +73127,28 @@ function __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N
return;
}
+function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i3, i1) {
+ i3 = i3 | 0;
+ i1 = i1 | 0;
+ var i2 = 0, i4 = 0;
+ HEAP8[i3 >> 0] = 18;
+ i4 = i3 + 1 | 0;
+ i2 = i4 + 9 | 0;
+ do {
+ HEAP8[i4 >> 0] = HEAP8[i1 >> 0] | 0;
+ i4 = i4 + 1 | 0;
+ i1 = i1 + 1 | 0;
+ } while ((i4 | 0) < (i2 | 0));
+ HEAP8[i3 + 10 >> 0] = 0;
+ i1 = i3 + 12 | 0;
+ i2 = 0;
+ while (1) {
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
+ }
+ return;
+}
function __ZN4wasm12RegisterPassINS_15RemoveUnusedBrsEEC2EPKcS4_(i3, i2, i1) {
i3 = i3 | 0;
i2 = i2 | 0;
@@ -73278,37 +73159,31 @@ function __ZN4wasm12RegisterPassINS_15RemoveUnusedBrsEEC2EPKcS4_(i3, i2, i1) {
i4 = i3;
i5 = __ZN4wasm12PassRegistry3getEv() | 0;
HEAP32[i4 + 16 >> 2] = i4;
- HEAP32[i4 >> 2] = 3076;
+ HEAP32[i4 >> 2] = 3516;
__ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__18functionIFPNS_4PassEvEEE(i5, i2, i1, i4);
__ZNSt3__18functionIFPN4wasm4PassEvEED2Ev(i4);
STACKTOP = i3;
return;
}
-function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i3, i1) {
+function __ZN4wasm12RegisterPassINS_14SimplifyLocalsEEC2EPKcS4_(i3, i2, i1) {
i3 = i3 | 0;
+ i2 = i2 | 0;
i1 = i1 | 0;
- var i2 = 0, i4 = 0;
- HEAP8[i3 >> 0] = 18;
- i4 = i3 + 1 | 0;
- i2 = i4 + 9 | 0;
- do {
- HEAP8[i4 >> 0] = HEAP8[i1 >> 0] | 0;
- i4 = i4 + 1 | 0;
- i1 = i1 + 1 | 0;
- } while ((i4 | 0) < (i2 | 0));
- HEAP8[i3 + 10 >> 0] = 0;
- i2 = i3 + 12 | 0;
- i1 = 0;
- while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
- }
+ var i4 = 0, i5 = 0;
+ i3 = STACKTOP;
+ STACKTOP = STACKTOP + 32 | 0;
+ i4 = i3;
+ i5 = __ZN4wasm12PassRegistry3getEv() | 0;
+ HEAP32[i4 + 16 >> 2] = i4;
+ HEAP32[i4 >> 2] = 3900;
+ __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__18functionIFPNS_4PassEvEEE(i5, i2, i1, i4);
+ __ZNSt3__18functionIFPN4wasm4PassEvEED2Ev(i4);
+ STACKTOP = i3;
return;
}
-function __ZN4wasm12RegisterPassINS_14SimplifyLocalsEEC2EPKcS4_(i3, i2, i1) {
+function __ZN4wasm12RegisterPassINS_14PostEmscriptenEEC2EPKcS4_(i3, i2, i1) {
i3 = i3 | 0;
i2 = i2 | 0;
i1 = i1 | 0;
@@ -73318,7 +73193,7 @@ function __ZN4wasm12RegisterPassINS_14SimplifyLocalsEEC2EPKcS4_(i3, i2, i1) {
i4 = i3;
i5 = __ZN4wasm12PassRegistry3getEv() | 0;
HEAP32[i4 + 16 >> 2] = i4;
- HEAP32[i4 >> 2] = 3332;
+ HEAP32[i4 >> 2] = 3772;
__ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__18functionIFPNS_4PassEvEEE(i5, i2, i1, i4);
__ZNSt3__18functionIFPN4wasm4PassEvEED2Ev(i4);
STACKTOP = i3;
@@ -73361,7 +73236,7 @@ function __ZN4wasm12RegisterPassINS_11MergeBlocksEEC2EPKcS4_(i3, i2, i1) {
i4 = i3;
i5 = __ZN4wasm12PassRegistry3getEv() | 0;
HEAP32[i4 + 16 >> 2] = i4;
- HEAP32[i4 >> 2] = 2948;
+ HEAP32[i4 >> 2] = 3388;
__ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__18functionIFPNS_4PassEvEEE(i5, i2, i1, i4);
__ZNSt3__18functionIFPN4wasm4PassEvEED2Ev(i4);
STACKTOP = i3;
@@ -73386,24 +73261,24 @@ function __ZN4wasm10Expression2isINS_12CallIndirectEEEbv(i1) {
return (i1 | 0) == 8 | 0;
}
-function _memcmp(i1, i3, i2) {
- i1 = i1 | 0;
- i3 = i3 | 0;
+function _memcmp(i2, i3, i1) {
i2 = i2 | 0;
+ i3 = i3 | 0;
+ i1 = i1 | 0;
var i4 = 0, i5 = 0;
- L1 : do if (!i2) i1 = 0; else {
+ L1 : do if (!i1) i1 = 0; else {
i5 = i1;
i4 = i2;
while (1) {
- i2 = HEAP8[i5 >> 0] | 0;
+ i2 = HEAP8[i4 >> 0] | 0;
i1 = HEAP8[i3 >> 0] | 0;
if (i2 << 24 >> 24 != i1 << 24 >> 24) break;
- i4 = i4 + -1 | 0;
- if (!i4) {
+ i5 = i5 + -1 | 0;
+ if (!i5) {
i1 = 0;
break L1;
} else {
- i5 = i5 + 1 | 0;
+ i4 = i4 + 1 | 0;
i3 = i3 + 1 | 0;
}
}
@@ -73420,7 +73295,7 @@ function ___stdout_write(i2, i1, i3) {
i5 = STACKTOP;
STACKTOP = STACKTOP + 80 | 0;
i4 = i5;
- HEAP32[i2 + 36 >> 2] = 8;
+ HEAP32[i2 + 36 >> 2] = 6;
if ((HEAP32[i2 >> 2] & 64 | 0) == 0 ? (HEAP32[i4 >> 2] = HEAP32[i2 + 60 >> 2], HEAP32[i4 + 4 >> 2] = 21505, HEAP32[i4 + 8 >> 2] = i5 + 12, ___syscall54(54, i4 | 0) | 0) : 0) HEAP8[i2 + 75 >> 0] = -1;
i4 = ___stdio_write(i2, i1, i3) | 0;
STACKTOP = i5;
@@ -73479,40 +73354,16 @@ function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj4EEERAT__Kc(i2, i1) {
HEAP8[i3 + 1 >> 0] = HEAP8[i1 + 1 >> 0] | 0;
HEAP8[i3 + 2 >> 0] = HEAP8[i1 + 2 >> 0] | 0;
HEAP8[i2 + 4 >> 0] = 0;
- i2 = i2 + 12 | 0;
- i1 = 0;
+ i1 = i2 + 12 | 0;
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
return;
}
-function __ZNKSt3__15ctypeIwE11do_scan_notEtPKwS3_(i3, i4, i2, i1) {
- i3 = i3 | 0;
- i4 = i4 | 0;
- i2 = i2 | 0;
- i1 = i1 | 0;
- var i5 = 0;
- i3 = i2;
- while (1) {
- if ((i3 | 0) == (i1 | 0)) break;
- i2 = HEAP32[i3 >> 2] | 0;
- if (i2 >>> 0 >= 128) {
- i1 = i3;
- break;
- }
- i5 = ___ctype_b_loc() | 0;
- if (!((HEAP16[(HEAP32[i5 >> 2] | 0) + (i2 << 1) >> 1] & i4) << 16 >> 16)) {
- i1 = i3;
- break;
- }
- i3 = i3 + 4 | 0;
- }
- return i1 | 0;
-}
-
function __ZN7AsmDataD2Ev(i1) {
i1 = i1 | 0;
__ZNSt3__113__vector_baseIN6cashew7IStringENS_9allocatorIS2_EEED2Ev(i1 + 32 | 0);
@@ -73548,7 +73399,7 @@ function __ZN4wasm12toUInteger64Ed(d1) {
i3 = +Math_abs(d1) >= 1.0 ? (d1 > 0.0 ? ~~+Math_min(+Math_floor(d1 / 4294967296.0), 4294967295.0) >>> 0 : ~~+Math_ceil((d1 - +(~~d1 >>> 0)) / 4294967296.0) >>> 0) : 0;
tempRet0 = i2 ? i3 : -1;
return (i2 ? ~~d1 >>> 0 : -1) | 0;
- } else ___assert_fail(27560, 27489, 62, 27576);
+ } else ___assert_fail(28912, 28841, 62, 28928);
return 0;
}
@@ -73571,8 +73422,8 @@ function __Znwj(i1) {
}
if ((i2 | 0) == 5) {
i2 = ___cxa_allocate_exception(4) | 0;
- HEAP32[i2 >> 2] = 11048;
- ___cxa_throw(i2 | 0, 2392, 160);
+ HEAP32[i2 >> 2] = 11616;
+ ___cxa_throw(i2 | 0, 2592, 181);
} else if ((i2 | 0) == 6) return i1 | 0;
return 0;
}
@@ -73604,19 +73455,19 @@ function __ZNKSt3__15ctypeIwE10do_toupperEPwPKw(i1, i5, i4) {
i5 = i5 | 0;
i4 = i4 | 0;
var i2 = 0, i3 = 0, i6 = 0;
- i2 = (i4 - i5 | 0) >>> 2;
- i3 = i5;
+ i3 = (i4 - i5 | 0) >>> 2;
+ i2 = i5;
while (1) {
- if ((i3 | 0) == (i4 | 0)) break;
- i1 = HEAP32[i3 >> 2] | 0;
+ if ((i2 | 0) == (i4 | 0)) break;
+ i1 = HEAP32[i2 >> 2] | 0;
if (i1 >>> 0 < 128) {
i6 = ___ctype_toupper_loc() | 0;
i1 = HEAP32[(HEAP32[i6 >> 2] | 0) + (i1 << 2) >> 2] | 0;
}
- HEAP32[i3 >> 2] = i1;
- i3 = i3 + 4 | 0;
+ HEAP32[i2 >> 2] = i1;
+ i2 = i2 + 4 | 0;
}
- return i5 + (i2 << 2) | 0;
+ return i5 + (i3 << 2) | 0;
}
function __ZNKSt3__15ctypeIwE10do_tolowerEPwPKw(i1, i5, i4) {
@@ -73624,19 +73475,19 @@ function __ZNKSt3__15ctypeIwE10do_tolowerEPwPKw(i1, i5, i4) {
i5 = i5 | 0;
i4 = i4 | 0;
var i2 = 0, i3 = 0, i6 = 0;
- i2 = (i4 - i5 | 0) >>> 2;
- i3 = i5;
+ i3 = (i4 - i5 | 0) >>> 2;
+ i2 = i5;
while (1) {
- if ((i3 | 0) == (i4 | 0)) break;
- i1 = HEAP32[i3 >> 2] | 0;
+ if ((i2 | 0) == (i4 | 0)) break;
+ i1 = HEAP32[i2 >> 2] | 0;
if (i1 >>> 0 < 128) {
i6 = ___ctype_tolower_loc() | 0;
i1 = HEAP32[(HEAP32[i6 >> 2] | 0) + (i1 << 2) >> 2] | 0;
}
- HEAP32[i3 >> 2] = i1;
- i3 = i3 + 4 | 0;
+ HEAP32[i2 >> 2] = i1;
+ i2 = i2 + 4 | 0;
}
- return i5 + (i2 << 2) | 0;
+ return i5 + (i3 << 2) | 0;
}
function __ZNSt3__18ios_base4initEPv(i2, i1) {
@@ -73665,17 +73516,17 @@ function __ZNSt3__16vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE10deallocateE
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) {
- i3 = i4 + 4 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 4 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -4 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -4 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
__ZdlPv(i1);
HEAP32[i4 + 8 >> 2] = 0;
- HEAP32[i3 >> 2] = 0;
+ HEAP32[i2 >> 2] = 0;
HEAP32[i4 >> 2] = 0;
}
return;
@@ -73699,6 +73550,24 @@ function __ZN4wasm15Asm2WasmBuilder10getLiteralEN6cashew3RefE(i1, i3, i2) {
}
}
+function _strcmp(i4, i2) {
+ i4 = i4 | 0;
+ i2 = i2 | 0;
+ var i1 = 0, i3 = 0;
+ i3 = HEAP8[i4 >> 0] | 0;
+ i1 = HEAP8[i2 >> 0] | 0;
+ if (i3 << 24 >> 24 == 0 ? 1 : i3 << 24 >> 24 != i1 << 24 >> 24) i2 = i3; else {
+ do {
+ i4 = i4 + 1 | 0;
+ i2 = i2 + 1 | 0;
+ i3 = HEAP8[i4 >> 0] | 0;
+ i1 = HEAP8[i2 >> 0] | 0;
+ } while (!(i3 << 24 >> 24 == 0 ? 1 : i3 << 24 >> 24 != i1 << 24 >> 24));
+ i2 = i3;
+ }
+ return (i2 & 255) - (i1 & 255) | 0;
+}
+
function __ZNSt3__1lsIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS_13basic_ostreamIT_T0_EES9_RKNS_12basic_stringIS6_S7_T1_EE(i1, i2) {
i1 = i1 | 0;
i2 = i2 | 0;
@@ -73713,17 +73582,17 @@ function __ZNSt3__16vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE10deallocateEv(i4
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) {
- i3 = i4 + 4 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 4 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -4 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -4 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
__ZdlPv(i1);
HEAP32[i4 + 8 >> 2] = 0;
- HEAP32[i3 >> 2] = 0;
+ HEAP32[i2 >> 2] = 0;
HEAP32[i4 >> 2] = 0;
}
return;
@@ -73734,17 +73603,17 @@ function __ZNSt3__16vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE10deallocateEv(i4
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) {
- i3 = i4 + 4 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 4 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -8 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -8 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
__ZdlPv(i1);
HEAP32[i4 + 8 >> 2] = 0;
- HEAP32[i3 >> 2] = 0;
+ HEAP32[i2 >> 2] = 0;
HEAP32[i4 >> 2] = 0;
}
return;
@@ -73754,13 +73623,13 @@ function __ZNSt3__114__split_bufferIN6cashew6ParserINS1_3RefENS1_19DotZeroValueB
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 8 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -8 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -8 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZdlPv(i1);
@@ -73771,22 +73640,22 @@ function __ZN6cashew5Value10getIntegerEv(i2) {
i2 = i2 | 0;
var i1 = 0;
i1 = __ZN6cashew5Value9getNumberEv(i2) | 0;
- if (!(+_fmod(+HEAPF64[i1 >> 3], 1.0) == 0.0)) ___assert_fail(21600, 27234, 228, 21626);
+ if (!(+_fmod(+HEAPF64[i1 >> 3], 1.0) == 0.0)) ___assert_fail(22188, 28586, 228, 22214);
i1 = __ZN6cashew5Value9getNumberEv(i2) | 0;
i1 = ~~+HEAPF64[i1 >> 3];
i2 = __ZN6cashew5Value9getNumberEv(i2) | 0;
- if (+(i1 | 0) == +HEAPF64[i2 >> 3]) return i1 | 0; else ___assert_fail(21637, 27234, 230, 21626);
+ if (+(i1 | 0) == +HEAPF64[i2 >> 3]) return i1 | 0; else ___assert_fail(22225, 28586, 230, 22214);
return 0;
}
function __ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE7__cloneEv(i1) {
i1 = i1 | 0;
var i2 = 0, i3 = 0, i4 = 0;
- i3 = __Znwj(68) | 0;
- HEAP32[i3 >> 2] = 2772;
+ i3 = __Znwj(64) | 0;
+ HEAP32[i3 >> 2] = 3212;
i4 = i3 + 4 | 0;
i1 = i1 + 4 | 0;
- i2 = i4 + 64 | 0;
+ i2 = i4 + 60 | 0;
do {
HEAP32[i4 >> 2] = HEAP32[i1 >> 2];
i4 = i4 + 4 | 0;
@@ -73800,17 +73669,17 @@ function __ZNSt3__16vectorIN6cashew3RefENS_9allocatorIS2_EEE10deallocateEv(i4) {
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) {
- i3 = i4 + 4 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 4 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -4 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -4 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
__ZdlPv(i1);
HEAP32[i4 + 8 >> 2] = 0;
- HEAP32[i3 >> 2] = 0;
+ HEAP32[i2 >> 2] = 0;
HEAP32[i4 >> 2] = 0;
}
return;
@@ -73849,22 +73718,6 @@ function __ZNSt3__112__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CString
return;
}
-function __ZNSt3__13mapIN6cashew7IStringEN4wasm7LiteralENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE25__construct_node_with_keyERS9_(i2, i3, i1) {
- i2 = i2 | 0;
- i3 = i3 | 0;
- i1 = i1 | 0;
- var i4 = 0;
- i4 = __Znwj(40) | 0;
- HEAP32[i4 + 16 >> 2] = HEAP32[i1 >> 2];
- HEAP32[i4 + 24 >> 2] = 0;
- HEAPF64[i4 + 32 >> 3] = 0.0;
- HEAP32[i2 >> 2] = i4;
- i2 = i2 + 4 | 0;
- HEAP32[i2 >> 2] = i3 + 4;
- HEAP32[i2 + 4 >> 2] = 257;
- return;
-}
-
function __ZNSt3__114__split_bufferIN6cashew13OperatorClassERNS_9allocatorIS2_EEEC2EjjS5_(i4, i2, i3, i1) {
i4 = i4 | 0;
i2 = i2 | 0;
@@ -73923,8 +73776,8 @@ function __ZZN4wasm12RegisterPassINS_17RemoveUnusedNamesEEC1EPKcS4_ENKUlvE_clEv(
HEAP32[i1 + 8 >> 2] = 0;
HEAP32[i1 + 12 >> 2] = 0;
HEAP32[i1 + 16 >> 2] = 0;
- HEAP32[i1 >> 2] = 3248;
- HEAP32[i1 + 4 >> 2] = 3276;
+ HEAP32[i1 >> 2] = 3688;
+ HEAP32[i1 + 4 >> 2] = 3716;
i2 = i1 + 16 | 0;
HEAP32[i2 >> 2] = 0;
HEAP32[i1 + 20 >> 2] = 0;
@@ -73984,10 +73837,10 @@ function __ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctio
i2 = i2 | 0;
i1 = i1 | 0;
var i3 = 0;
- HEAP32[i1 >> 2] = 2772;
+ HEAP32[i1 >> 2] = 3212;
i3 = i1 + 4 | 0;
i1 = i2 + 4 | 0;
- i2 = i3 + 64 | 0;
+ i2 = i3 + 60 | 0;
do {
HEAP32[i3 >> 2] = HEAP32[i1 >> 2];
i3 = i3 + 4 | 0;
@@ -74020,9 +73873,9 @@ function __ZN4wasm10WalkerPassINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE3runEP
i3 = i3 | 0;
i2 = i2 | 0;
i1 = i1 | 0;
- FUNCTION_TABLE_viii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 7](i3, i2, i1);
+ FUNCTION_TABLE_viii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 15](i3, i2, i1);
__ZN4wasm10WasmWalkerINS_17RemoveUnusedNamesEvE9startWalkEPNS_6ModuleE(i3 + 4 | 0, i1);
- FUNCTION_TABLE_viii[HEAP32[(HEAP32[i3 >> 2] | 0) + 16 >> 2] & 7](i3, i2, i1);
+ FUNCTION_TABLE_viii[HEAP32[(HEAP32[i3 >> 2] | 0) + 16 >> 2] & 15](i3, i2, i1);
return;
}
@@ -74070,6 +73923,16 @@ function __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEaSERKS5
return i2 | 0;
}
+function __ZN4wasm10WalkerPassINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE3runEPNS_10PassRunnerEPNS_6ModuleE(i3, i2, i1) {
+ i3 = i3 | 0;
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ FUNCTION_TABLE_viii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 15](i3, i2, i1);
+ __ZN4wasm10WasmWalkerINS_15RemoveUnusedBrsEvE9startWalkEPNS_6ModuleE(i3 + 4 | 0, i1);
+ FUNCTION_TABLE_viii[HEAP32[(HEAP32[i3 >> 2] | 0) + 16 >> 2] & 15](i3, i2, i1);
+ return;
+}
+
function __ZNSt3__13mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEE25__construct_node_with_keyERSA_(i2, i3, i1) {
i2 = i2 | 0;
i3 = i3 | 0;
@@ -74101,29 +73964,23 @@ function __ZNSt3__114__split_bufferIPN4wasm10ExpressionERNS_9allocatorIS3_EEEC2E
return;
}
-function __ZN4wasm10WalkerPassINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE3runEPNS_10PassRunnerEPNS_6ModuleE(i3, i2, i1) {
+function __ZN4wasm10WalkerPassINS_10WasmWalkerINS_14SimplifyLocalsEvEEE3runEPNS_10PassRunnerEPNS_6ModuleE(i3, i2, i1) {
i3 = i3 | 0;
i2 = i2 | 0;
i1 = i1 | 0;
- FUNCTION_TABLE_viii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 7](i3, i2, i1);
- __ZN4wasm10WasmWalkerINS_15RemoveUnusedBrsEvE9startWalkEPNS_6ModuleE(i3 + 4 | 0, i1);
- FUNCTION_TABLE_viii[HEAP32[(HEAP32[i3 >> 2] | 0) + 16 >> 2] & 7](i3, i2, i1);
+ FUNCTION_TABLE_viii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 15](i3, i2, i1);
+ __ZN4wasm10WasmWalkerINS_14SimplifyLocalsEvE9startWalkEPNS_6ModuleE(i3 + 4 | 0, i1);
+ FUNCTION_TABLE_viii[HEAP32[(HEAP32[i3 >> 2] | 0) + 16 >> 2] & 15](i3, i2, i1);
return;
}
-function __ZNSt3__114__split_bufferIN4wasm6Switch4CaseERNS_9allocatorIS3_EEEC2EjjS6_(i4, i2, i3, i1) {
- i4 = i4 | 0;
- i2 = i2 | 0;
+function __ZN4wasm10WalkerPassINS_10WasmWalkerINS_14PostEmscriptenEvEEE3runEPNS_10PassRunnerEPNS_6ModuleE(i3, i2, i1) {
i3 = i3 | 0;
+ i2 = i2 | 0;
i1 = i1 | 0;
- HEAP32[i4 + 12 >> 2] = 0;
- HEAP32[i4 + 16 >> 2] = i1;
- if (!i2) i1 = 0; else i1 = __Znwj(i2 << 3) | 0;
- HEAP32[i4 >> 2] = i1;
- i3 = i1 + (i3 << 3) | 0;
- HEAP32[i4 + 8 >> 2] = i3;
- HEAP32[i4 + 4 >> 2] = i3;
- HEAP32[i4 + 12 >> 2] = i1 + (i2 << 3);
+ FUNCTION_TABLE_viii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 15](i3, i2, i1);
+ __ZN4wasm10WasmWalkerINS_14PostEmscriptenEvE9startWalkEPNS_6ModuleE(i3 + 4 | 0, i1);
+ FUNCTION_TABLE_viii[HEAP32[(HEAP32[i3 >> 2] | 0) + 16 >> 2] & 15](i3, i2, i1);
return;
}
@@ -74132,41 +73989,52 @@ function __ZN4wasm10PassRunner3runEPNS_6ModuleE(i5, i4) {
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0, i6 = 0;
i1 = HEAP32[i5 + 8 >> 2] | 0;
- i3 = i5 + 16 | 0;
- i2 = HEAP32[i5 + 4 >> 2] | 0;
+ i2 = i5 + 16 | 0;
+ i3 = HEAP32[i5 + 4 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i6 = HEAP32[i2 >> 2] | 0;
- HEAP32[i3 >> 2] = i6;
- FUNCTION_TABLE_viii[HEAP32[(HEAP32[i6 >> 2] | 0) + 12 >> 2] & 7](i6, i5, i4);
- i2 = i2 + 4 | 0;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i6 = HEAP32[i3 >> 2] | 0;
+ HEAP32[i2 >> 2] = i6;
+ FUNCTION_TABLE_viii[HEAP32[(HEAP32[i6 >> 2] | 0) + 12 >> 2] & 15](i6, i5, i4);
+ i3 = i3 + 4 | 0;
}
return;
}
-function __ZNSt3__113unordered_mapIN6cashew7IStringEiNS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorINS_4pairIKS2_iEEEEE25__construct_node_with_keyERS9_(i2, i3, i1) {
+function __ZNSt3__114__split_bufferIN4wasm6Switch4CaseERNS_9allocatorIS3_EEEC2EjjS6_(i4, i2, i3, i1) {
+ i4 = i4 | 0;
i2 = i2 | 0;
i3 = i3 | 0;
i1 = i1 | 0;
- var i4 = 0;
- i4 = __Znwj(16) | 0;
- HEAP32[i4 + 8 >> 2] = HEAP32[i1 >> 2];
HEAP32[i4 + 12 >> 2] = 0;
- HEAP32[i2 >> 2] = i4;
- i2 = i2 + 4 | 0;
- HEAP32[i2 >> 2] = i3 + 8;
- HEAP32[i2 + 4 >> 2] = 257;
+ HEAP32[i4 + 16 >> 2] = i1;
+ if (!i2) i1 = 0; else i1 = __Znwj(i2 << 3) | 0;
+ HEAP32[i4 >> 2] = i1;
+ i3 = i1 + (i3 << 3) | 0;
+ HEAP32[i4 + 8 >> 2] = i3;
+ HEAP32[i4 + 4 >> 2] = i3;
+ HEAP32[i4 + 12 >> 2] = i1 + (i2 << 3);
return;
}
-function __ZN4wasm10WalkerPassINS_10WasmWalkerINS_14SimplifyLocalsEvEEE3runEPNS_10PassRunnerEPNS_6ModuleE(i3, i2, i1) {
- i3 = i3 | 0;
+function __ZNKSt3__15ctypeIwE11do_scan_notEtPKwS3_(i2, i4, i1, i3) {
i2 = i2 | 0;
+ i4 = i4 | 0;
i1 = i1 | 0;
- FUNCTION_TABLE_viii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 7](i3, i2, i1);
- __ZN4wasm10WasmWalkerINS_14SimplifyLocalsEvE9startWalkEPNS_6ModuleE(i3 + 4 | 0, i1);
- FUNCTION_TABLE_viii[HEAP32[(HEAP32[i3 >> 2] | 0) + 16 >> 2] & 7](i3, i2, i1);
- return;
+ i3 = i3 | 0;
+ var i5 = 0;
+ while (1) {
+ if ((i1 | 0) == (i3 | 0)) {
+ i1 = i3;
+ break;
+ }
+ i2 = HEAP32[i1 >> 2] | 0;
+ if (i2 >>> 0 >= 128) break;
+ i5 = ___ctype_b_loc() | 0;
+ if (!((HEAP16[(HEAP32[i5 >> 2] | 0) + (i2 << 1) >> 1] & i4) << 16 >> 16)) break;
+ i1 = i1 + 4 | 0;
+ }
+ return i1 | 0;
}
function __ZNSt3__18ios_base16__call_callbacksENS0_5eventE(i5, i3) {
@@ -74179,12 +74047,27 @@ function __ZNSt3__18ios_base16__call_callbacksENS0_5eventE(i5, i3) {
while (1) {
if (!i4) break;
i6 = i4 + -1 | 0;
- FUNCTION_TABLE_viii[HEAP32[(HEAP32[i1 >> 2] | 0) + (i6 << 2) >> 2] & 7](i3, i5, HEAP32[(HEAP32[i2 >> 2] | 0) + (i6 << 2) >> 2] | 0);
+ FUNCTION_TABLE_viii[HEAP32[(HEAP32[i1 >> 2] | 0) + (i6 << 2) >> 2] & 15](i3, i5, HEAP32[(HEAP32[i2 >> 2] | 0) + (i6 << 2) >> 2] | 0);
i4 = i6;
}
return;
}
+function __ZNSt3__113unordered_mapIN6cashew7IStringEiNS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorINS_4pairIKS2_iEEEEE25__construct_node_with_keyERS9_(i2, i3, i1) {
+ i2 = i2 | 0;
+ i3 = i3 | 0;
+ i1 = i1 | 0;
+ var i4 = 0;
+ i4 = __Znwj(16) | 0;
+ HEAP32[i4 + 8 >> 2] = HEAP32[i1 >> 2];
+ HEAP32[i4 + 12 >> 2] = 0;
+ HEAP32[i2 >> 2] = i4;
+ i2 = i2 + 4 | 0;
+ HEAP32[i2 >> 2] = i3 + 8;
+ HEAP32[i2 + 4 >> 2] = 257;
+ return;
+}
+
function __ZNSt3__114__split_bufferIPN4wasm8FunctionERNS_9allocatorIS3_EEEC2EjjS6_(i4, i2, i3, i1) {
i4 = i4 | 0;
i2 = i2 | 0;
@@ -74290,25 +74173,6 @@ function __ZNSt3__114__split_bufferIN4wasm8NameTypeERNS_9allocatorIS2_EEEC2EjjS5
return;
}
-function __ZNKSt3__15ctypeIwE10do_scan_isEtPKwS3_(i3, i4, i2, i1) {
- i3 = i3 | 0;
- i4 = i4 | 0;
- i2 = i2 | 0;
- i1 = i1 | 0;
- var i5 = 0;
- i3 = i2;
- while (1) {
- if ((i3 | 0) == (i1 | 0)) break;
- i2 = HEAP32[i3 >> 2] | 0;
- if (i2 >>> 0 < 128 ? (i5 = ___ctype_b_loc() | 0, (HEAP16[(HEAP32[i5 >> 2] | 0) + (i2 << 1) >> 1] & i4) << 16 >> 16) : 0) {
- i1 = i3;
- break;
- }
- i3 = i3 + 4 | 0;
- }
- return i1 | 0;
-}
-
function __ZNSt3__114__split_bufferIPN4wasm6ImportERNS_9allocatorIS3_EEEC2EjjS6_(i4, i2, i3, i1) {
i4 = i4 | 0;
i2 = i2 | 0;
@@ -74357,6 +74221,16 @@ function __ZNSt3__114__split_bufferIN4wasm7LiteralERNS_9allocatorIS2_EEEC2EjjS5_
return;
}
+function __ZN4wasm10WalkerPassINS_10WasmWalkerINS_11MergeBlocksEvEEE3runEPNS_10PassRunnerEPNS_6ModuleE(i3, i2, i1) {
+ i3 = i3 | 0;
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ FUNCTION_TABLE_viii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 15](i3, i2, i1);
+ __ZN4wasm10WasmWalkerINS_11MergeBlocksEvE9startWalkEPNS_6ModuleE(i3 + 4 | 0, i1);
+ FUNCTION_TABLE_viii[HEAP32[(HEAP32[i3 >> 2] | 0) + 16 >> 2] & 15](i3, i2, i1);
+ return;
+}
+
function __ZNSt3__13mapIPN4wasm12CallIndirectEN6cashew7IStringENS_4lessIS3_EENS_9allocatorINS_4pairIKS3_S5_EEEEE25__construct_node_with_keyERSA_(i2, i3, i1) {
i2 = i2 | 0;
i3 = i3 | 0;
@@ -74409,13 +74283,13 @@ function __ZNSt3__113__vector_baseIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBu
var i2 = 0, i3 = 0, i4 = 0;
i3 = HEAP32[i1 >> 2] | 0;
if (i3 | 0) {
- i2 = i1 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i1 = i1 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i3 | 0)) break;
- i4 = i1 + -8 | 0;
- HEAP32[i2 >> 2] = i4;
- i1 = i4;
+ if ((i2 | 0) == (i3 | 0)) break;
+ i4 = i2 + -8 | 0;
+ HEAP32[i1 >> 2] = i4;
+ i2 = i4;
}
__ZdlPv(i3);
}
@@ -74438,16 +74312,6 @@ function __ZNSt3__114__split_bufferIN4wasm4NameERNS_9allocatorIS2_EEEC2EjjS5_(i4
return;
}
-function __ZN4wasm10WalkerPassINS_10WasmWalkerINS_11MergeBlocksEvEEE3runEPNS_10PassRunnerEPNS_6ModuleE(i3, i2, i1) {
- i3 = i3 | 0;
- i2 = i2 | 0;
- i1 = i1 | 0;
- FUNCTION_TABLE_viii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 7](i3, i2, i1);
- __ZN4wasm10WasmWalkerINS_11MergeBlocksEvE9startWalkEPNS_6ModuleE(i3 + 4 | 0, i1);
- FUNCTION_TABLE_viii[HEAP32[(HEAP32[i3 >> 2] | 0) + 16 >> 2] & 7](i3, i2, i1);
- return;
-}
-
function ___muldsi3(i1, i2) {
i1 = i1 | 0;
i2 = i2 | 0;
@@ -74462,6 +74326,26 @@ function ___muldsi3(i1, i2) {
return (tempRet0 = (i1 >>> 16) + (Math_imul(i5, i4) | 0) + (((i1 & 65535) + i2 | 0) >>> 16) | 0, i1 + i2 << 16 | i3 & 65535 | 0) | 0;
}
+function __ZNKSt3__15ctypeIwE9do_narrowEPKwS3_cPc(i1, i6, i5, i4, i2) {
+ i1 = i1 | 0;
+ i6 = i6 | 0;
+ i5 = i5 | 0;
+ i4 = i4 | 0;
+ i2 = i2 | 0;
+ var i3 = 0, i7 = 0;
+ i3 = (i5 - i6 | 0) >>> 2;
+ i1 = i2;
+ i2 = i6;
+ while (1) {
+ if ((i2 | 0) == (i5 | 0)) break;
+ i7 = HEAP32[i2 >> 2] | 0;
+ HEAP8[i1 >> 0] = i7 >>> 0 < 128 ? i7 & 255 : i4;
+ i1 = i1 + 1 | 0;
+ i2 = i2 + 4 | 0;
+ }
+ return i6 + (i3 << 2) | 0;
+}
+
function __ZNKSt3__15ctypeIcE10do_toupperEPcPKc(i2, i1, i3) {
i2 = i2 | 0;
i1 = i1 | 0;
@@ -74500,21 +74384,6 @@ function __ZNKSt3__15ctypeIcE10do_tolowerEPcPKc(i2, i1, i3) {
return i3 | 0;
}
-function _strcmp(i3, i4) {
- i3 = i3 | 0;
- i4 = i4 | 0;
- var i1 = 0, i2 = 0;
- i2 = HEAP8[i3 >> 0] | 0;
- i1 = HEAP8[i4 >> 0] | 0;
- if (!(i2 << 24 >> 24 == 0 ? 1 : i2 << 24 >> 24 != i1 << 24 >> 24)) do {
- i3 = i3 + 1 | 0;
- i4 = i4 + 1 | 0;
- i2 = HEAP8[i3 >> 0] | 0;
- i1 = HEAP8[i4 >> 0] | 0;
- } while (!(i2 << 24 >> 24 == 0 ? 1 : i2 << 24 >> 24 != i1 << 24 >> 24));
- return (i2 & 255) - (i1 & 255) | 0;
-}
-
function __ZNSt3__113unordered_mapIN6cashew7IStringEN7AsmData5LocalENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEE25__construct_node_with_keyERSB_(i2, i3, i1) {
i2 = i2 | 0;
i3 = i3 | 0;
@@ -74586,6 +74455,24 @@ function __ZNSt3__13mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9alloca
return;
}
+function __ZNKSt3__15ctypeIwE10do_scan_isEtPKwS3_(i2, i4, i1, i3) {
+ i2 = i2 | 0;
+ i4 = i4 | 0;
+ i1 = i1 | 0;
+ i3 = i3 | 0;
+ var i5 = 0;
+ while (1) {
+ if ((i1 | 0) == (i3 | 0)) {
+ i1 = i3;
+ break;
+ }
+ i2 = HEAP32[i1 >> 2] | 0;
+ if (i2 >>> 0 < 128 ? (i5 = ___ctype_b_loc() | 0, (HEAP16[(HEAP32[i5 >> 2] | 0) + (i2 << 1) >> 1] & i4) << 16 >> 16) : 0) break;
+ i1 = i1 + 4 | 0;
+ }
+ return i1 | 0;
+}
+
function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE11visitBinaryEPNS_6BinaryE(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
@@ -74602,13 +74489,13 @@ function __ZNSt3__114__split_bufferIPNS_6vectorIN6cashew3RefENS_9allocatorIS3_EE
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 8 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -4 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -4 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZdlPv(i1);
@@ -74691,6 +74578,18 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE11visitB
return;
}
+function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEE11visitBinaryEPNS_6BinaryE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ var i3 = 0;
+ i2 = i2 + 4 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 127](i3, i1 + 12 | 0);
+ i2 = HEAP32[i2 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 16 | 0);
+ return;
+}
+
function __ZNSt3__114__split_bufferIPcRNS_9allocatorIS1_EEEC2EjjS4_(i4, i2, i3, i1) {
i4 = i4 | 0;
i2 = i2 | 0;
@@ -74734,11 +74633,23 @@ function __ZNSt3__13mapIN4wasm4NameEPNS1_8FunctionENS_4lessIS2_EENS_9allocatorIN
return;
}
+function __ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1, i2) {
+ i1 = i1 | 0;
+ i2 = i2 | 0;
+ var i3 = 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ HEAP32[i1 >> 2] = i3;
+ HEAP32[i1 + (HEAP32[i3 + -12 >> 2] | 0) >> 2] = HEAP32[i2 + 32 >> 2];
+ HEAP32[i1 + 8 >> 2] = HEAP32[i2 + 36 >> 2];
+ __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1 + 12 | 0);
+ return;
+}
+
function __ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7__cloneEv(i1) {
i1 = i1 | 0;
var i2 = 0, i3 = 0, i4 = 0;
i2 = __Znwj(12) | 0;
- HEAP32[i2 >> 2] = 2860;
+ HEAP32[i2 >> 2] = 3300;
i4 = i1 + 4 | 0;
i3 = HEAP32[i4 + 4 >> 2] | 0;
i1 = i2 + 4 | 0;
@@ -74751,7 +74662,7 @@ function __ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctio
i1 = i1 | 0;
var i2 = 0, i3 = 0, i4 = 0;
i2 = __Znwj(12) | 0;
- HEAP32[i2 >> 2] = 2816;
+ HEAP32[i2 >> 2] = 3256;
i4 = i1 + 4 | 0;
i3 = HEAP32[i4 + 4 >> 2] | 0;
i1 = i2 + 4 | 0;
@@ -74784,6 +74695,18 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE10visitS
return;
}
+function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEE10visitStoreEPNS_5StoreE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ var i3 = 0;
+ i2 = i2 + 4 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 127](i3, i1 + 20 | 0);
+ i2 = HEAP32[i2 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 24 | 0);
+ return;
+}
+
function __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEE25__construct_node_with_keyERS8_(i2, i3, i1) {
i2 = i2 | 0;
i3 = i3 | 0;
@@ -74799,26 +74722,19 @@ function __ZNSt3__13mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS
return;
}
-function __ZNKSt3__15ctypeIwE9do_narrowEPKwS3_cPc(i1, i6, i5, i4, i2) {
- i1 = i1 | 0;
- i6 = i6 | 0;
- i5 = i5 | 0;
- i4 = i4 | 0;
+function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE10visitBreakEPNS_5BreakE(i2, i1) {
i2 = i2 | 0;
- var i3 = 0, i7 = 0;
- i3 = (i5 - i6 | 0) >>> 2;
- i1 = i6;
- while (1) {
- if ((i1 | 0) == (i5 | 0)) break;
- i7 = HEAP32[i1 >> 2] | 0;
- HEAP8[i2 >> 0] = i7 >>> 0 < 128 ? i7 & 255 : i4;
- i2 = i2 + 1 | 0;
- i1 = i1 + 4 | 0;
- }
- return i6 + (i3 << 2) | 0;
+ i1 = i1 | 0;
+ var i3 = 0;
+ i2 = i2 + 4 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 127](i3, i1 + 8 | 0);
+ i2 = HEAP32[i2 >> 2] | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 16 | 0);
+ return;
}
-function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEE10visitBreakEPNS_5BreakE(i2, i1) {
+function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEE10visitBreakEPNS_5BreakE(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
var i3 = 0;
@@ -74876,7 +74792,7 @@ function __ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctio
i2 = i2 | 0;
i1 = i1 | 0;
var i3 = 0, i4 = 0;
- HEAP32[i1 >> 2] = 2860;
+ HEAP32[i1 >> 2] = 3300;
i4 = i2 + 4 | 0;
i3 = HEAP32[i4 + 4 >> 2] | 0;
i2 = i1 + 4 | 0;
@@ -74889,7 +74805,7 @@ function __ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctio
i2 = i2 | 0;
i1 = i1 | 0;
var i3 = 0, i4 = 0;
- HEAP32[i1 >> 2] = 2816;
+ HEAP32[i1 >> 2] = 3256;
i4 = i2 + 4 | 0;
i3 = HEAP32[i4 + 4 >> 2] | 0;
i2 = i1 + 4 | 0;
@@ -74989,13 +74905,13 @@ function __ZNSt3__114__split_bufferIN4wasm6Memory7SegmentERNS_9allocatorIS3_EEED
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 8 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -12 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -12 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZdlPv(i1);
@@ -75006,13 +74922,13 @@ function __ZNSt3__114__split_bufferIPN4wasm12FunctionTypeERNS_9allocatorIS3_EEED
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 8 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -4 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -4 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZdlPv(i1);
@@ -75046,13 +74962,13 @@ function __ZNSt3__114__split_bufferIPN4wasm10ExpressionERNS_9allocatorIS3_EEED2E
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 8 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -4 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -4 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZdlPv(i1);
@@ -75083,13 +74999,13 @@ function __ZNSt3__114__split_bufferIN4wasm6Switch4CaseERNS_9allocatorIS3_EEED2Ev
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 8 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -8 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -8 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZdlPv(i1);
@@ -75148,13 +75064,13 @@ function __ZNSt3__114__split_bufferIPN4wasm8FunctionERNS_9allocatorIS3_EEED2Ev(i
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 8 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -4 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -4 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZdlPv(i1);
@@ -75165,13 +75081,13 @@ function __ZNSt3__114__split_bufferIN6cashew7IStringERNS_9allocatorIS2_EEED2Ev(i
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 8 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -4 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -4 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZdlPv(i1);
@@ -75182,7 +75098,7 @@ function __ZNSt3__111__stdoutbufIwE5imbueERKNS_6localeE(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 127](i2) | 0;
- i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 40764) | 0;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 42236) | 0;
HEAP32[i2 + 36 >> 2] = i1;
i1 = (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 127](i1) | 0) & 1;
HEAP8[i2 + 44 >> 0] = i1;
@@ -75193,7 +75109,7 @@ function __ZNSt3__111__stdoutbufIcE5imbueERKNS_6localeE(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 127](i2) | 0;
- i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 40756) | 0;
+ i1 = __ZNKSt3__16locale9use_facetERNS0_2idE(i1, 42228) | 0;
HEAP32[i2 + 36 >> 2] = i1;
i1 = (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 127](i1) | 0) & 1;
HEAP8[i2 + 44 >> 0] = i1;
@@ -75210,13 +75126,13 @@ function __ZNSt3__114__split_bufferIPN6cashew5ValueERNS_9allocatorIS3_EEED2Ev(i4
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 8 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -4 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -4 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZdlPv(i1);
@@ -75227,13 +75143,13 @@ function __ZNSt3__114__split_bufferIPN4wasm7ElementERNS_9allocatorIS3_EEED2Ev(i4
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 8 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -4 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -4 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZdlPv(i1);
@@ -75244,13 +75160,13 @@ function __ZNSt3__114__split_bufferIN4wasm8WasmTypeERNS_9allocatorIS2_EEED2Ev(i4
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 8 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -4 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -4 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZdlPv(i1);
@@ -75261,13 +75177,13 @@ function __ZNSt3__114__split_bufferIN4wasm8NameTypeERNS_9allocatorIS2_EEED2Ev(i4
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 8 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -8 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -8 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZdlPv(i1);
@@ -75278,13 +75194,13 @@ function __ZNSt3__114__split_bufferIN4wasm7LiteralERNS_9allocatorIS2_EEED2Ev(i4)
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 8 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -16 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -16 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZdlPv(i1);
@@ -75295,13 +75211,13 @@ function __ZNSt3__114__split_bufferIPN4wasm6ImportERNS_9allocatorIS3_EEED2Ev(i4)
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 8 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -4 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -4 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZdlPv(i1);
@@ -75312,13 +75228,13 @@ function __ZNSt3__114__split_bufferIPN4wasm6ExportERNS_9allocatorIS3_EEED2Ev(i4)
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 8 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -4 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -4 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZdlPv(i1);
@@ -75354,13 +75270,13 @@ function __ZNSt3__114__split_bufferIPN4wasm4PassERNS_9allocatorIS3_EEED2Ev(i4) {
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 8 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -4 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -4 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZdlPv(i1);
@@ -75371,13 +75287,13 @@ function __ZNSt3__114__split_bufferIN6cashew3RefERNS_9allocatorIS2_EEED2Ev(i4) {
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 8 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -4 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -4 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZdlPv(i1);
@@ -75412,13 +75328,13 @@ function __ZNSt3__114__split_bufferIN4wasm4NameERNS_9allocatorIS2_EEED2Ev(i4) {
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 8 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -4 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -4 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZdlPv(i1);
@@ -75430,13 +75346,13 @@ function __ZNSt3__113__vector_baseIPNS_6vectorIN6cashew3RefENS_9allocatorIS3_EEE
var i2 = 0, i3 = 0, i4 = 0;
i3 = HEAP32[i1 >> 2] | 0;
if (i3 | 0) {
- i2 = i1 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i1 = i1 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i3 | 0)) break;
- i4 = i1 + -4 | 0;
- HEAP32[i2 >> 2] = i4;
- i1 = i4;
+ if ((i2 | 0) == (i3 | 0)) break;
+ i4 = i2 + -4 | 0;
+ HEAP32[i1 >> 2] = i4;
+ i2 = i4;
}
__ZdlPv(i3);
}
@@ -75447,7 +75363,7 @@ function __ZN4wasmlsERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i
i2 = i2 | 0;
i1 = i1 | 0;
i1 = HEAP32[i1 >> 2] | 0;
- if (!i1) ___assert_fail(16648, 26220, 78, 34722); else return __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i2, 36) | 0, i1) | 0;
+ if (!i1) ___assert_fail(17232, 27572, 78, 36186); else return __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i2, 36) | 0, i1) | 0;
return 0;
}
@@ -75495,9 +75411,9 @@ function __ZNSt3__16locale2id5__getEv(i2) {
i1 = i3;
if ((HEAP32[i2 >> 2] | 0) != -1) {
HEAP32[i1 >> 2] = i2;
- HEAP32[i1 + 4 >> 2] = 171;
+ HEAP32[i1 + 4 >> 2] = 192;
HEAP32[i1 + 8 >> 2] = 0;
- __ZNSt3__111__call_onceERVmPvPFvS2_E(i2, i1, 172);
+ __ZNSt3__111__call_onceERVmPvPFvS2_E(i2, i1, 193);
}
STACKTOP = i3;
return (HEAP32[i2 + 4 >> 2] | 0) + -1 | 0;
@@ -75535,13 +75451,13 @@ function __ZNSt3__114__split_bufferIPcRNS_9allocatorIS1_EEED2Ev(i4) {
i4 = i4 | 0;
var i1 = 0, i2 = 0, i3 = 0, i5 = 0;
i1 = HEAP32[i4 + 4 >> 2] | 0;
- i3 = i4 + 8 | 0;
- i2 = HEAP32[i3 >> 2] | 0;
+ i2 = i4 + 8 | 0;
+ i3 = HEAP32[i2 >> 2] | 0;
while (1) {
- if ((i2 | 0) == (i1 | 0)) break;
- i5 = i2 + -4 | 0;
- HEAP32[i3 >> 2] = i5;
- i2 = i5;
+ if ((i3 | 0) == (i1 | 0)) break;
+ i5 = i3 + -4 | 0;
+ HEAP32[i2 >> 2] = i5;
+ i3 = i5;
}
i1 = HEAP32[i4 >> 2] | 0;
if (i1 | 0) __ZdlPv(i1);
@@ -75658,12 +75574,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj18EEERAT__Kc(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i2, i1, 17);
- i2 = i2 + 12 | 0;
- i1 = 0;
+ i1 = i2 + 12 | 0;
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
return;
}
@@ -75672,12 +75588,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj15EEERAT__Kc(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i2, i1, 14);
- i2 = i2 + 12 | 0;
- i1 = 0;
+ i1 = i2 + 12 | 0;
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
return;
}
@@ -75686,12 +75602,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj14EEERAT__Kc(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i2, i1, 13);
- i2 = i2 + 12 | 0;
- i1 = 0;
+ i1 = i2 + 12 | 0;
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
return;
}
@@ -75700,12 +75616,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj13EEERAT__Kc(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i2, i1, 12);
- i2 = i2 + 12 | 0;
- i1 = 0;
+ i1 = i2 + 12 | 0;
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
return;
}
@@ -75714,12 +75630,12 @@ function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj12EEERAT__Kc(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i2, i1, 11);
- i2 = i2 + 12 | 0;
- i1 = 0;
+ i1 = i2 + 12 | 0;
+ i2 = 0;
while (1) {
- if ((i1 | 0) == 3) break;
- HEAP32[i2 + (i1 << 2) >> 2] = 0;
- i1 = i1 + 1 | 0;
+ if ((i2 | 0) == 3) break;
+ HEAP32[i1 + (i2 << 2) >> 2] = 0;
+ i2 = i2 + 1 | 0;
}
return;
}
@@ -75742,13 +75658,13 @@ function __ZNSt3__113__vector_baseIN4wasm6Memory7SegmentENS_9allocatorIS3_EEED2E
var i2 = 0, i3 = 0, i4 = 0;
i3 = HEAP32[i1 >> 2] | 0;
if (i3 | 0) {
- i2 = i1 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i1 = i1 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i3 | 0)) break;
- i4 = i1 + -12 | 0;
- HEAP32[i2 >> 2] = i4;
- i1 = i4;
+ if ((i2 | 0) == (i3 | 0)) break;
+ i4 = i2 + -12 | 0;
+ HEAP32[i1 >> 2] = i4;
+ i2 = i4;
}
__ZdlPv(i3);
}
@@ -75790,13 +75706,13 @@ function __ZNSt3__113__vector_baseIPN4wasm12FunctionTypeENS_9allocatorIS3_EEED2E
var i2 = 0, i3 = 0, i4 = 0;
i3 = HEAP32[i1 >> 2] | 0;
if (i3 | 0) {
- i2 = i1 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i1 = i1 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i3 | 0)) break;
- i4 = i1 + -4 | 0;
- HEAP32[i2 >> 2] = i4;
- i1 = i4;
+ if ((i2 | 0) == (i3 | 0)) break;
+ i4 = i2 + -4 | 0;
+ HEAP32[i1 >> 2] = i4;
+ i2 = i4;
}
__ZdlPv(i3);
}
@@ -75809,7 +75725,7 @@ function __ZNKSt3__18functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i1, i2)
i1 = HEAP32[i1 + 16 >> 2] | 0;
if (!i1) {
i2 = ___cxa_allocate_exception(4) | 0;
- HEAP32[i2 >> 2] = 2680;
+ HEAP32[i2 >> 2] = 2880;
___cxa_throw(i2 | 0, 152, 15);
} else return FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 24 >> 2] & 31](i1, i2) | 0;
return 0;
@@ -75820,19 +75736,59 @@ function __ZNSt3__113__vector_baseIPN4wasm10ExpressionENS_9allocatorIS3_EEED2Ev(
var i2 = 0, i3 = 0, i4 = 0;
i3 = HEAP32[i1 >> 2] | 0;
if (i3 | 0) {
- i2 = i1 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i1 = i1 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i3 | 0)) break;
- i4 = i1 + -4 | 0;
- HEAP32[i2 >> 2] = i4;
- i1 = i4;
+ if ((i2 | 0) == (i3 | 0)) break;
+ i4 = i2 + -4 | 0;
+ HEAP32[i1 >> 2] = i4;
+ i2 = i4;
}
__ZdlPv(i3);
}
return;
}
+function __ZNKSt3__120__time_get_c_storageIwE3__xEv(i1) {
+ i1 = i1 | 0;
+ if ((HEAP8[37560] | 0) == 0 ? ___cxa_guard_acquire(37560) | 0 : 0) {
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwj(42100, 10428, _wcslen(10428) | 0);
+ ___cxa_atexit(201, 42100, ___dso_handle | 0) | 0;
+ ___cxa_guard_release(37560);
+ }
+ return 42100;
+}
+
+function __ZNKSt3__120__time_get_c_storageIwE3__rEv(i1) {
+ i1 = i1 | 0;
+ if ((HEAP8[37552] | 0) == 0 ? ___cxa_guard_acquire(37552) | 0 : 0) {
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwj(42088, 10380, _wcslen(10380) | 0);
+ ___cxa_atexit(201, 42088, ___dso_handle | 0) | 0;
+ ___cxa_guard_release(37552);
+ }
+ return 42088;
+}
+
+function __ZNKSt3__120__time_get_c_storageIwE3__cEv(i1) {
+ i1 = i1 | 0;
+ if ((HEAP8[37544] | 0) == 0 ? ___cxa_guard_acquire(37544) | 0 : 0) {
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwj(42076, 10296, _wcslen(10296) | 0);
+ ___cxa_atexit(201, 42076, ___dso_handle | 0) | 0;
+ ___cxa_guard_release(37544);
+ }
+ return 42076;
+}
+
+function __ZNKSt3__120__time_get_c_storageIwE3__XEv(i1) {
+ i1 = i1 | 0;
+ if ((HEAP8[37568] | 0) == 0 ? ___cxa_guard_acquire(37568) | 0 : 0) {
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwj(42112, 10464, _wcslen(10464) | 0);
+ ___cxa_atexit(201, 42112, ___dso_handle | 0) | 0;
+ ___cxa_guard_release(37568);
+ }
+ return 42112;
+}
+
function __ZN4wasm17SExpressionParserC2EPc(i3, i1) {
i3 = i3 | 0;
i1 = i1 | 0;
@@ -75885,46 +75841,6 @@ function __ZNSt3__110__sscanf_lEPKcP15__locale_structS1_z(i4, i1, i3, i2) {
return i1 | 0;
}
-function __ZNKSt3__120__time_get_c_storageIwE3__xEv(i1) {
- i1 = i1 | 0;
- if ((HEAP8[36096] | 0) == 0 ? ___cxa_guard_acquire(36096) | 0 : 0) {
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwj(40628, 9860, _wcslen(9860) | 0);
- ___cxa_atexit(180, 40628, ___dso_handle | 0) | 0;
- ___cxa_guard_release(36096);
- }
- return 40628;
-}
-
-function __ZNKSt3__120__time_get_c_storageIwE3__rEv(i1) {
- i1 = i1 | 0;
- if ((HEAP8[36088] | 0) == 0 ? ___cxa_guard_acquire(36088) | 0 : 0) {
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwj(40616, 9812, _wcslen(9812) | 0);
- ___cxa_atexit(180, 40616, ___dso_handle | 0) | 0;
- ___cxa_guard_release(36088);
- }
- return 40616;
-}
-
-function __ZNKSt3__120__time_get_c_storageIwE3__cEv(i1) {
- i1 = i1 | 0;
- if ((HEAP8[36080] | 0) == 0 ? ___cxa_guard_acquire(36080) | 0 : 0) {
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwj(40604, 9728, _wcslen(9728) | 0);
- ___cxa_atexit(180, 40604, ___dso_handle | 0) | 0;
- ___cxa_guard_release(36080);
- }
- return 40604;
-}
-
-function __ZNKSt3__120__time_get_c_storageIwE3__XEv(i1) {
- i1 = i1 | 0;
- if ((HEAP8[36104] | 0) == 0 ? ___cxa_guard_acquire(36104) | 0 : 0) {
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwj(40640, 9896, _wcslen(9896) | 0);
- ___cxa_atexit(180, 40640, ___dso_handle | 0) | 0;
- ___cxa_guard_release(36104);
- }
- return 40640;
-}
-
function _truncf(d1) {
d1 = +d1;
var i2 = 0, i3 = 0, i4 = 0;
@@ -75939,13 +75855,13 @@ function __ZNSt3__113__vector_baseIPN4wasm8FunctionENS_9allocatorIS3_EEED2Ev(i1)
var i2 = 0, i3 = 0, i4 = 0;
i3 = HEAP32[i1 >> 2] | 0;
if (i3 | 0) {
- i2 = i1 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i1 = i1 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i3 | 0)) break;
- i4 = i1 + -4 | 0;
- HEAP32[i2 >> 2] = i4;
- i1 = i4;
+ if ((i2 | 0) == (i3 | 0)) break;
+ i4 = i2 + -4 | 0;
+ HEAP32[i1 >> 2] = i4;
+ i2 = i4;
}
__ZdlPv(i3);
}
@@ -75957,13 +75873,13 @@ function __ZNSt3__113__vector_baseIN6cashew7IStringENS_9allocatorIS2_EEED2Ev(i1)
var i2 = 0, i3 = 0, i4 = 0;
i3 = HEAP32[i1 >> 2] | 0;
if (i3 | 0) {
- i2 = i1 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i1 = i1 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i3 | 0)) break;
- i4 = i1 + -4 | 0;
- HEAP32[i2 >> 2] = i4;
- i1 = i4;
+ if ((i2 | 0) == (i3 | 0)) break;
+ i4 = i2 + -4 | 0;
+ HEAP32[i1 >> 2] = i4;
+ i2 = i4;
}
__ZdlPv(i3);
}
@@ -75981,13 +75897,13 @@ function __ZNSt3__113__vector_baseIPN6cashew5ValueENS_9allocatorIS3_EEED2Ev(i1)
var i2 = 0, i3 = 0, i4 = 0;
i3 = HEAP32[i1 >> 2] | 0;
if (i3 | 0) {
- i2 = i1 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i1 = i1 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i3 | 0)) break;
- i4 = i1 + -4 | 0;
- HEAP32[i2 >> 2] = i4;
- i1 = i4;
+ if ((i2 | 0) == (i3 | 0)) break;
+ i4 = i2 + -4 | 0;
+ HEAP32[i1 >> 2] = i4;
+ i2 = i4;
}
__ZdlPv(i3);
}
@@ -75999,13 +75915,13 @@ function __ZNSt3__113__vector_baseIN4wasm8WasmTypeENS_9allocatorIS2_EEED2Ev(i1)
var i2 = 0, i3 = 0, i4 = 0;
i3 = HEAP32[i1 >> 2] | 0;
if (i3 | 0) {
- i2 = i1 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i1 = i1 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i3 | 0)) break;
- i4 = i1 + -4 | 0;
- HEAP32[i2 >> 2] = i4;
- i1 = i4;
+ if ((i2 | 0) == (i3 | 0)) break;
+ i4 = i2 + -4 | 0;
+ HEAP32[i1 >> 2] = i4;
+ i2 = i4;
}
__ZdlPv(i3);
}
@@ -76017,13 +75933,13 @@ function __ZNSt3__113__vector_baseIN4wasm8NameTypeENS_9allocatorIS2_EEED2Ev(i1)
var i2 = 0, i3 = 0, i4 = 0;
i3 = HEAP32[i1 >> 2] | 0;
if (i3 | 0) {
- i2 = i1 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i1 = i1 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i3 | 0)) break;
- i4 = i1 + -8 | 0;
- HEAP32[i2 >> 2] = i4;
- i1 = i4;
+ if ((i2 | 0) == (i3 | 0)) break;
+ i4 = i2 + -8 | 0;
+ HEAP32[i1 >> 2] = i4;
+ i2 = i4;
}
__ZdlPv(i3);
}
@@ -76035,13 +75951,13 @@ function __ZNSt3__113__vector_baseIN4wasm7LiteralENS_9allocatorIS2_EEED2Ev(i1) {
var i2 = 0, i3 = 0, i4 = 0;
i3 = HEAP32[i1 >> 2] | 0;
if (i3 | 0) {
- i2 = i1 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i1 = i1 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i3 | 0)) break;
- i4 = i1 + -16 | 0;
- HEAP32[i2 >> 2] = i4;
- i1 = i4;
+ if ((i2 | 0) == (i3 | 0)) break;
+ i4 = i2 + -16 | 0;
+ HEAP32[i1 >> 2] = i4;
+ i2 = i4;
}
__ZdlPv(i3);
}
@@ -76049,17 +75965,17 @@ function __ZNSt3__113__vector_baseIN4wasm7LiteralENS_9allocatorIS2_EEED2Ev(i1) {
}
function __GLOBAL__sub_I_simple_ast_cpp() {
- HEAP32[9322] = 0;
- HEAP32[9323] = 0;
- HEAP32[9324] = 0;
- HEAP32[9325] = 0;
- HEAP32[9326] = 0;
- HEAP32[9327] = 0;
- HEAP32[9328] = 0;
- HEAP32[9329] = 0;
- ___cxa_atexit(167, 37288, ___dso_handle | 0) | 0;
- __ZN6cashew10IStringSetC2EPKc(37320, 27135);
- ___cxa_atexit(164, 37320, ___dso_handle | 0) | 0;
+ HEAP32[9690] = 0;
+ HEAP32[9691] = 0;
+ HEAP32[9692] = 0;
+ HEAP32[9693] = 0;
+ HEAP32[9694] = 0;
+ HEAP32[9695] = 0;
+ HEAP32[9696] = 0;
+ HEAP32[9697] = 0;
+ ___cxa_atexit(188, 38760, ___dso_handle | 0) | 0;
+ __ZN6cashew10IStringSetC2EPKc(38792, 28487);
+ ___cxa_atexit(185, 38792, ___dso_handle | 0) | 0;
return;
}
@@ -76079,13 +75995,13 @@ function __ZNSt3__113__vector_baseIPN4wasm6ImportENS_9allocatorIS3_EEED2Ev(i1) {
var i2 = 0, i3 = 0, i4 = 0;
i3 = HEAP32[i1 >> 2] | 0;
if (i3 | 0) {
- i2 = i1 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i1 = i1 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i3 | 0)) break;
- i4 = i1 + -4 | 0;
- HEAP32[i2 >> 2] = i4;
- i1 = i4;
+ if ((i2 | 0) == (i3 | 0)) break;
+ i4 = i2 + -4 | 0;
+ HEAP32[i1 >> 2] = i4;
+ i2 = i4;
}
__ZdlPv(i3);
}
@@ -76097,19 +76013,34 @@ function __ZNSt3__113__vector_baseIPN4wasm6ExportENS_9allocatorIS3_EEED2Ev(i1) {
var i2 = 0, i3 = 0, i4 = 0;
i3 = HEAP32[i1 >> 2] | 0;
if (i3 | 0) {
- i2 = i1 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i1 = i1 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i3 | 0)) break;
- i4 = i1 + -4 | 0;
- HEAP32[i2 >> 2] = i4;
- i1 = i4;
+ if ((i2 | 0) == (i3 | 0)) break;
+ i4 = i2 + -4 | 0;
+ HEAP32[i1 >> 2] = i4;
+ i2 = i4;
}
__ZdlPv(i3);
}
return;
}
+function __ZN4wasm7Literal9castToF64Ev(i1, i2) {
+ i1 = i1 | 0;
+ i2 = i2 | 0;
+ var i3 = 0, i4 = 0;
+ if ((HEAP32[i2 >> 2] | 0) == 2) {
+ i4 = i2 + 8 | 0;
+ i3 = HEAP32[i4 + 4 >> 2] | 0;
+ i2 = i1 + 8 | 0;
+ HEAP32[i2 >> 2] = HEAP32[i4 >> 2];
+ HEAP32[i2 + 4 >> 2] = i3;
+ HEAP32[i1 >> 2] = 4;
+ return;
+ } else ___assert_fail(16253, 27572, 176, 16275);
+}
+
function __ZN4wasm12PassRegistry8PassInfoC2ENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS2_8functionIFPNS_4PassEvEEE(i3, i2, i1) {
i3 = i3 | 0;
i2 = i2 | 0;
@@ -76124,13 +76055,13 @@ function __ZNSt3__113__vector_baseIPN4wasm4PassENS_9allocatorIS3_EEED2Ev(i1) {
var i2 = 0, i3 = 0, i4 = 0;
i3 = HEAP32[i1 >> 2] | 0;
if (i3 | 0) {
- i2 = i1 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i1 = i1 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i3 | 0)) break;
- i4 = i1 + -4 | 0;
- HEAP32[i2 >> 2] = i4;
- i1 = i4;
+ if ((i2 | 0) == (i3 | 0)) break;
+ i4 = i2 + -4 | 0;
+ HEAP32[i1 >> 2] = i4;
+ i2 = i4;
}
__ZdlPv(i3);
}
@@ -76142,13 +76073,13 @@ function __ZNSt3__113__vector_baseIN6cashew3RefENS_9allocatorIS2_EEED2Ev(i1) {
var i2 = 0, i3 = 0, i4 = 0;
i3 = HEAP32[i1 >> 2] | 0;
if (i3 | 0) {
- i2 = i1 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i1 = i1 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i3 | 0)) break;
- i4 = i1 + -4 | 0;
- HEAP32[i2 >> 2] = i4;
- i1 = i4;
+ if ((i2 | 0) == (i3 | 0)) break;
+ i4 = i2 + -4 | 0;
+ HEAP32[i1 >> 2] = i4;
+ i2 = i4;
}
__ZdlPv(i3);
}
@@ -76161,7 +76092,7 @@ function __ZN4wasm22SExpressionWasmBuilder15preParseImportsERNS_7ElementE(i2, i1
var i3 = 0;
i3 = __ZN4wasm7Element4listEv(i1) | 0;
i3 = __ZN4wasm7Element3strEv(HEAP32[HEAP32[i3 >> 2] >> 2] | 0) | 0;
- if ((i3 | 0) == (HEAP32[9187] | 0)) __ZN4wasm22SExpressionWasmBuilder11parseImportERNS_7ElementE(i2, i1);
+ if ((i3 | 0) == (HEAP32[9554] | 0)) __ZN4wasm22SExpressionWasmBuilder11parseImportERNS_7ElementE(i2, i1);
return;
}
@@ -76170,13 +76101,13 @@ function __ZNSt3__113__vector_baseIN4wasm4NameENS_9allocatorIS2_EEED2Ev(i1) {
var i2 = 0, i3 = 0, i4 = 0;
i3 = HEAP32[i1 >> 2] | 0;
if (i3 | 0) {
- i2 = i1 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i1 = i1 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i3 | 0)) break;
- i4 = i1 + -4 | 0;
- HEAP32[i2 >> 2] = i4;
- i1 = i4;
+ if ((i2 | 0) == (i3 | 0)) break;
+ i4 = i2 + -4 | 0;
+ HEAP32[i1 >> 2] = i4;
+ i2 = i4;
}
__ZdlPv(i3);
}
@@ -76185,10 +76116,10 @@ function __ZNSt3__113__vector_baseIN4wasm4NameENS_9allocatorIS2_EEED2Ev(i1) {
function __ZNSt3__18ios_base4InitD2Ev(i1) {
i1 = i1 | 0;
- __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5flushEv(38004) | 0;
- __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5flushEv(38172) | 0;
- __ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE5flushEv(38344) | 0;
- __ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE5flushEv(38512) | 0;
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5flushEv(39476) | 0;
+ __ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5flushEv(39644) | 0;
+ __ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE5flushEv(39816) | 0;
+ __ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE5flushEv(39984) | 0;
return;
}
@@ -76236,10 +76167,10 @@ function __ZN6cashew13OperatorClassC2EOS0_(i2, i1) {
function __ZN4wasm14AstStackHelperC2EN6cashew3RefE(i1, i2) {
i1 = i1 | 0;
i2 = i2 | 0;
- i1 = HEAP32[9216] | 0;
- if ((i1 | 0) == (HEAP32[9217] | 0)) __ZNSt3__16vectorIN6cashew3RefENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(36860, i2); else {
+ i1 = HEAP32[9583] | 0;
+ if ((i1 | 0) == (HEAP32[9584] | 0)) __ZNSt3__16vectorIN6cashew3RefENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(38328, i2); else {
HEAP32[i1 >> 2] = HEAP32[i2 >> 2];
- HEAP32[9216] = (HEAP32[9216] | 0) + 4;
+ HEAP32[9583] = (HEAP32[9583] | 0) + 4;
}
return;
}
@@ -76301,12 +76232,22 @@ function ___shlim(i3, i4) {
function __ZNKSt3__120__time_get_c_storageIcE3__rEv(i1) {
i1 = i1 | 0;
- if ((HEAP8[36008] | 0) == 0 ? ___cxa_guard_acquire(36008) | 0 : 0) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(39804, 31918, 11);
- ___cxa_atexit(176, 39804, ___dso_handle | 0) | 0;
- ___cxa_guard_release(36008);
+ if ((HEAP8[37472] | 0) == 0 ? ___cxa_guard_acquire(37472) | 0 : 0) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(41276, 33382, 11);
+ ___cxa_atexit(197, 41276, ___dso_handle | 0) | 0;
+ ___cxa_guard_release(37472);
}
- return 39804;
+ return 41276;
+}
+
+function __ZNKSt3__120__time_get_c_storageIcE3__cEv(i1) {
+ i1 = i1 | 0;
+ if ((HEAP8[37464] | 0) == 0 ? ___cxa_guard_acquire(37464) | 0 : 0) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(41264, 33361, 20);
+ ___cxa_atexit(197, 41264, ___dso_handle | 0) | 0;
+ ___cxa_guard_release(37464);
+ }
+ return 41264;
}
function __ZNK10__cxxabiv117__class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi(i4, i2, i1, i3) {
@@ -76355,22 +76296,22 @@ function __ZN4wasm13sigToWasmTypeEc(i2) {
function __ZNKSt3__120__time_get_c_storageIcE3__xEv(i1) {
i1 = i1 | 0;
- if ((HEAP8[36016] | 0) == 0 ? ___cxa_guard_acquire(36016) | 0 : 0) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(39816, 31930, 8);
- ___cxa_atexit(176, 39816, ___dso_handle | 0) | 0;
- ___cxa_guard_release(36016);
+ if ((HEAP8[37480] | 0) == 0 ? ___cxa_guard_acquire(37480) | 0 : 0) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(41288, 33394, 8);
+ ___cxa_atexit(197, 41288, ___dso_handle | 0) | 0;
+ ___cxa_guard_release(37480);
}
- return 39816;
+ return 41288;
}
function __ZNKSt3__120__time_get_c_storageIcE3__XEv(i1) {
i1 = i1 | 0;
- if ((HEAP8[36024] | 0) == 0 ? ___cxa_guard_acquire(36024) | 0 : 0) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(39828, 31939, 8);
- ___cxa_atexit(176, 39828, ___dso_handle | 0) | 0;
- ___cxa_guard_release(36024);
+ if ((HEAP8[37488] | 0) == 0 ? ___cxa_guard_acquire(37488) | 0 : 0) {
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(41300, 33403, 8);
+ ___cxa_atexit(197, 41300, ___dso_handle | 0) | 0;
+ ___cxa_guard_release(37488);
}
- return 39828;
+ return 41300;
}
function __ZNSt3__16__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE5clearEv(i1) {
@@ -76389,29 +76330,19 @@ function __ZNSt3__113__vector_baseIPcNS_9allocatorIS1_EEED2Ev(i1) {
var i2 = 0, i3 = 0, i4 = 0;
i3 = HEAP32[i1 >> 2] | 0;
if (i3 | 0) {
- i2 = i1 + 4 | 0;
- i1 = HEAP32[i2 >> 2] | 0;
+ i1 = i1 + 4 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
while (1) {
- if ((i1 | 0) == (i3 | 0)) break;
- i4 = i1 + -4 | 0;
- HEAP32[i2 >> 2] = i4;
- i1 = i4;
+ if ((i2 | 0) == (i3 | 0)) break;
+ i4 = i2 + -4 | 0;
+ HEAP32[i1 >> 2] = i4;
+ i2 = i4;
}
__ZdlPv(i3);
}
return;
}
-function __ZNKSt3__120__time_get_c_storageIcE3__cEv(i1) {
- i1 = i1 | 0;
- if ((HEAP8[36e3] | 0) == 0 ? ___cxa_guard_acquire(36e3) | 0 : 0) {
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(39792, 31897, 20);
- ___cxa_atexit(176, 39792, ___dso_handle | 0) | 0;
- ___cxa_guard_release(36e3);
- }
- return 39792;
-}
-
function __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter17visitCallIndirectEPNS_12CallIndirectE(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
@@ -76482,7 +76413,7 @@ function __ZN4wasm10CallImport7doPrintERNSt3__113basic_ostreamIcNS1_11char_trait
i3 = i3 | 0;
i2 = i2 | 0;
i1 = i1 | 0;
- __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i2, 16730, 0) | 0;
+ __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i2, 17321, 0) | 0;
return __ZN4wasm4Call9printBodyERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i3, i2, i1) | 0;
}
@@ -76534,7 +76465,7 @@ function __ZNSt3__15ctypeIcEC2EPKtbj(i4, i3, i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
HEAP32[i4 + 4 >> 2] = i1 + -1;
- HEAP32[i4 >> 2] = 10552;
+ HEAP32[i4 >> 2] = 11120;
i1 = i4 + 8 | 0;
HEAP32[i1 >> 2] = i3;
HEAP8[i4 + 12 >> 0] = i2 & 1;
@@ -76547,7 +76478,7 @@ function __ZNSt3__15ctypeIcEC2EPKtbj(i4, i3, i2, i1) {
function __ZNSt3__115basic_streambufIwNS_11char_traitsIwEEEC2Ev(i1) {
i1 = i1 | 0;
- HEAP32[i1 >> 2] = 7972;
+ HEAP32[i1 >> 2] = 8540;
__ZNSt3__16localeC2Ev(i1 + 4 | 0);
i1 = i1 + 8 | 0;
HEAP32[i1 >> 2] = 0;
@@ -76573,7 +76504,7 @@ function __ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE5uflowEv(i1) {
function __ZNSt3__115basic_streambufIcNS_11char_traitsIcEEEC2Ev(i1) {
i1 = i1 | 0;
- HEAP32[i1 >> 2] = 7908;
+ HEAP32[i1 >> 2] = 8476;
__ZNSt3__16localeC2Ev(i1 + 4 | 0);
i1 = i1 + 8 | 0;
HEAP32[i1 >> 2] = 0;
@@ -76601,25 +76532,25 @@ function __ZN4wasm4Call7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEE
i3 = i3 | 0;
i2 = i2 | 0;
i1 = i1 | 0;
- __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i2, 16724, 0) | 0;
+ __Z12printOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i2, 17315, 0) | 0;
return __ZN4wasm4Call9printBodyERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i3, i2, i1) | 0;
}
-function __ZN4wasm5unhexEc(i1) {
- i1 = i1 | 0;
- var i2 = 0, i3 = 0;
- i2 = i1 << 24 >> 24;
- do if ((i1 + -48 & 255) >= 10) {
- if ((i1 + -97 & 255) < 6) {
- i3 = i2 + -87 | 0;
+function __ZN4wasm5unhexEc(i3) {
+ i3 = i3 | 0;
+ var i1 = 0, i2 = 0;
+ i2 = i3 << 24 >> 24;
+ do if ((i3 + -48 & 255) >= 10) {
+ if ((i3 + -97 & 255) < 6) {
+ i1 = i2 + -87 | 0;
break;
}
- if ((i1 + -65 & 255) < 6) {
- i3 = i2 + -55 | 0;
+ if ((i3 + -65 & 255) < 6) {
+ i1 = i2 + -55 | 0;
break;
} else _abort();
- } else i3 = i2 + -48 | 0; while (0);
- return i3 | 0;
+ } else i1 = i2 + -48 | 0; while (0);
+ return i1 | 0;
}
function __ZNKSt3__15ctypeIcE9do_narrowEPKcS3_cPc(i3, i1, i5, i4, i2) {
@@ -76681,7 +76612,7 @@ function __ZNSt3__18numpunctIwEC2Ej(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
HEAP32[i2 + 4 >> 2] = i1 + -1;
- HEAP32[i2 >> 2] = 10644;
+ HEAP32[i2 >> 2] = 11212;
HEAP32[i2 + 8 >> 2] = 46;
HEAP32[i2 + 12 >> 2] = 44;
i1 = i2 + 16 | 0;
@@ -76698,7 +76629,7 @@ function __ZNSt3__18numpunctIcEC2Ej(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
HEAP32[i2 + 4 >> 2] = i1 + -1;
- HEAP32[i2 >> 2] = 10604;
+ HEAP32[i2 >> 2] = 11172;
HEAP8[i2 + 8 >> 0] = 46;
HEAP8[i2 + 9 >> 0] = 44;
i1 = i2 + 12 | 0;
@@ -76713,7 +76644,7 @@ function __ZNSt3__18numpunctIcEC2Ej(i2, i1) {
function __ZNSt3__18ios_baseD2Ev(i1) {
i1 = i1 | 0;
- HEAP32[i1 >> 2] = 7892;
+ HEAP32[i1 >> 2] = 8460;
__ZNSt3__18ios_base16__call_callbacksENS0_5eventE(i1, 0);
__ZNSt3__16localeD2Ev(i1 + 28 | 0);
_free(HEAP32[i1 + 32 >> 2] | 0);
@@ -76752,15 +76683,6 @@ function __ZN4wasm6MemoryC2ERKS0_(i2, i1) {
return;
}
-function _copysignf(d1, d2) {
- d1 = +d1;
- d2 = +d2;
- var i3 = 0;
- i3 = (HEAPF32[tempDoublePtr >> 2] = d2, HEAP32[tempDoublePtr >> 2] | 0);
- d2 = +Math_abs(+d1);
- return +(HEAP32[tempDoublePtr >> 2] = i3 & -2147483648 | (HEAPF32[tempDoublePtr >> 2] = d2, HEAP32[tempDoublePtr >> 2] | 0), +HEAPF32[tempDoublePtr >> 2]);
-}
-
function __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i3, i1, i2) {
i3 = i3 | 0;
i1 = i1 | 0;
@@ -76785,12 +76707,12 @@ function __ZNKSt3__17collateIcE7do_hashEPKcS3_(i1, i2, i3) {
}
function __GLOBAL__sub_I_optimizer_shared_cpp() {
- HEAP32[9335] = 0;
- __ZN6cashew7IString3setEPKcb(37344, 27272, 1);
- __ZN6cashew7IString3setEPKcb(37348, 27291, 1);
- __ZN6cashew7IString3setEPKcb(37352, 27310, 1);
- __ZN6cashew7IString3setEPKcb(37356, 27329, 1);
- __ZN6cashew7IString3setEPKcb(37360, 27350, 1);
+ HEAP32[9703] = 0;
+ __ZN6cashew7IString3setEPKcb(38816, 28624, 1);
+ __ZN6cashew7IString3setEPKcb(38820, 28643, 1);
+ __ZN6cashew7IString3setEPKcb(38824, 28662, 1);
+ __ZN6cashew7IString3setEPKcb(38828, 28681, 1);
+ __ZN6cashew7IString3setEPKcb(38832, 28702, 1);
return;
}
@@ -76808,6 +76730,13 @@ function __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traits
return;
}
+function __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter11visitReturnEPNS_6ReturnE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ __ZN4wasm6Return7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj(i1, HEAP32[i2 + 4 >> 2] | 0, HEAP32[i2 + 8 >> 2] | 0) | 0;
+ return;
+}
+
function __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter11visitBinaryEPNS_6BinaryE(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
@@ -76819,7 +76748,7 @@ function __ZN4wasm11Unreachable7doPrintERNSt3__113basic_ostreamIcNS1_11char_trai
i3 = i3 | 0;
i2 = i2 | 0;
i1 = i1 | 0;
- return __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__Z17printMinorOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKc(i2, 17244) | 0, 41) | 0;
+ return __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__Z17printMinorOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKc(i2, 17838) | 0, 41) | 0;
}
function __ZNSt3__18functionIFPN4wasm4PassEvEED2Ev(i2) {
@@ -76837,7 +76766,7 @@ function __ZNKSt3__18functionIFPN4wasm4PassEvEEclEv(i1) {
i1 = HEAP32[i1 + 16 >> 2] | 0;
if (!i1) {
i1 = ___cxa_allocate_exception(4) | 0;
- HEAP32[i1 >> 2] = 2680;
+ HEAP32[i1 >> 2] = 2880;
___cxa_throw(i1 | 0, 152, 15);
} else return FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 24 >> 2] & 127](i1) | 0;
return 0;
@@ -76852,35 +76781,35 @@ function __ZNSt3__16vectorIN6cashew3RefENS_9allocatorIS2_EEE2atEj(i3, i2) {
return 0;
}
-function __ZN4wasm15Asm2WasmBuilder12bytesToShiftEj(i3, i1) {
+function __ZN4wasm15Asm2WasmBuilder12bytesToShiftEj(i3, i2) {
i3 = i3 | 0;
- i1 = i1 | 0;
- var i2 = 0;
- switch (i1 | 0) {
+ i2 = i2 | 0;
+ var i1 = 0;
+ switch (i2 | 0) {
case 1:
{
- i2 = 0;
+ i1 = 0;
break;
}
case 2:
{
- i2 = 1;
+ i1 = 1;
break;
}
case 4:
{
- i2 = 2;
+ i1 = 2;
break;
}
case 8:
{
- i2 = 3;
+ i1 = 3;
break;
}
default:
_abort();
}
- return i2 | 0;
+ return i1 | 0;
}
function __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinter10visitUnaryEPNS_5UnaryE(i2, i1) {
@@ -76955,7 +76884,7 @@ function __ZN4wasm3Nop7doPrintERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEj
i3 = i3 | 0;
i2 = i2 | 0;
i1 = i1 | 0;
- return __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__Z17printMinorOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKc(i2, 17240) | 0, 41) | 0;
+ return __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__Z17printMinorOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKc(i2, 17834) | 0, 41) | 0;
}
function __ZN10__cxxabiv112_GLOBAL__N_15arenaILj4096EE8allocateEj(i4, i1) {
@@ -76998,7 +76927,7 @@ function __ZN6cashew5Value8setArrayEj(i2, i1) {
var i3 = 0;
__ZN6cashew5Value4freeEv(i2);
HEAP32[i2 >> 2] = 2;
- i3 = __ZN6cashew5Arena10allocArrayEv(37288) | 0;
+ i3 = __ZN6cashew5Arena10allocArrayEv(38760) | 0;
HEAP32[i2 + 8 >> 2] = i3;
__ZNSt3__16vectorIN6cashew3RefENS_9allocatorIS2_EEE7reserveEj(i3, i1);
return i2 | 0;
@@ -77012,7 +76941,7 @@ function __ZN4wasm18CountLeadingZeroesIjEEiT_(i1) {
i1 = i1 >>> 8 | i1;
i1 = i1 >>> 16 | i1;
if (!i1) i1 = 32; else {
- i1 = 19920 + ((Math_imul(i1, 130329821) | 0) >>> 27) | 0;
+ i1 = 28973 + ((Math_imul(i1, 130329821) | 0) >>> 27) | 0;
i1 = HEAPU8[i1 >> 0] | 0;
}
return i1 | 0;
@@ -77049,7 +76978,7 @@ function __ZNSt3__18functionIFvvEED2Ev(i2) {
function __ZN6cashew5Value4backEv(i1) {
i1 = i1 | 0;
var i2 = 0;
- if ((HEAP32[i1 >> 2] | 0) != 2) ___assert_fail(27224, 27234, 490, 22857);
+ if ((HEAP32[i1 >> 2] | 0) != 2) ___assert_fail(28576, 28586, 490, 23445);
i2 = HEAP32[i1 + 8 >> 2] | 0;
i1 = HEAP32[i2 + 4 >> 2] | 0;
if ((i1 | 0) == (HEAP32[i2 >> 2] | 0)) i1 = 0; else i1 = HEAP32[i1 + -4 >> 2] | 0;
@@ -77133,7 +77062,7 @@ function __Z8doIndentRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEj(i3, i2) {
i1 = 0;
while (1) {
if ((i1 | 0) == (i2 | 0)) break;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i3, 14806) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i3, 15325) | 0;
i1 = i1 + 1 | 0;
}
return i3 | 0;
@@ -77144,7 +77073,7 @@ function __ZNKSt3__18functionIFvvEEclEv(i1) {
i1 = HEAP32[i1 + 16 >> 2] | 0;
if (!i1) {
i1 = ___cxa_allocate_exception(4) | 0;
- HEAP32[i1 >> 2] = 2680;
+ HEAP32[i1 >> 2] = 2880;
___cxa_throw(i1 | 0, 152, 15);
} else {
FUNCTION_TABLE_vi[HEAP32[(HEAP32[i1 >> 2] | 0) + 24 >> 2] & 255](i1);
@@ -77183,25 +77112,25 @@ function __ZN4wasm15getWasmTypeSizeENS_8WasmTypeE(i2) {
return i1 | 0;
}
-function __ZN4wasm11getWasmTypeEjb(i3, i1) {
+function __ZN4wasm11getWasmTypeEjb(i3, i2) {
i3 = i3 | 0;
- i1 = i1 | 0;
- var i2 = 0;
- L1 : do if (i3 >>> 0 < 4) i2 = 1; else switch (i3 | 0) {
+ i2 = i2 | 0;
+ var i1 = 0;
+ L1 : do if (i3 >>> 0 < 4) i1 = 1; else switch (i3 | 0) {
case 4:
{
- i2 = i1 ? 3 : 1;
+ i1 = i2 ? 3 : 1;
break L1;
}
case 8:
{
- i2 = i1 ? 4 : 2;
+ i1 = i2 ? 4 : 2;
break L1;
}
default:
_abort();
} while (0);
- return i2 | 0;
+ return i1 | 0;
}
function __Z17printMinorOpeningRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEEPKc(i1, i2) {
@@ -77228,7 +77157,7 @@ function __ZNSt3__114__shared_count16__release_sharedEv(i1) {
function __ZZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_ENKUlvE_clEv(i1) {
i1 = i1 | 0;
i1 = __ZN10MixedArena5allocIN4wasm8GetLocalEEEPT_v(HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] | 0) | 0;
- HEAP32[i1 + 8 >> 2] = HEAP32[9176];
+ HEAP32[i1 + 8 >> 2] = HEAP32[9542];
HEAP32[i1 + 4 >> 2] = 1;
return i1 | 0;
}
@@ -77287,43 +77216,53 @@ function __ZN4wasm13wasmToAsmTypeENS_8WasmTypeE(i2) {
return i1 | 0;
}
-function __ZN4wasm13asmToWasmTypeE7AsmType(i1) {
+function __ZN4wasm22SExpressionWasmBuilder10parseStartERNS_7ElementE(i2, i1) {
+ i2 = i2 | 0;
i1 = i1 | 0;
- var i2 = 0;
- switch (i1 | 0) {
+ i2 = HEAP32[i2 >> 2] | 0;
+ i1 = __ZN4wasm7Element4listEv(i1) | 0;
+ i1 = __ZN4wasm7Element3strEv(HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] | 0) | 0;
+ HEAP32[i2 + 128 >> 2] = i1;
+ return;
+}
+
+function __ZN4wasm13asmToWasmTypeE7AsmType(i2) {
+ i2 = i2 | 0;
+ var i1 = 0;
+ switch (i2 | 0) {
case 0:
{
- i2 = 1;
+ i1 = 1;
break;
}
case 1:
{
- i2 = 4;
+ i1 = 4;
break;
}
case 2:
{
- i2 = 3;
+ i1 = 3;
break;
}
case 8:
{
- i2 = 0;
+ i1 = 0;
break;
}
default:
_abort();
}
- return i2 | 0;
+ return i1 | 0;
}
function __ZL12prepare2wasmv() {
var i1 = 0;
- if ((HEAP32[9220] | 0) == 0 & (HEAP32[9221] | 0) == 0 & (HEAP32[9222] | 0) == 0 & (HEAP32[9223] | 0) == 0) {
+ if ((HEAP32[9588] | 0) == 0 & (HEAP32[9589] | 0) == 0 & (HEAP32[9590] | 0) == 0 & (HEAP32[9591] | 0) == 0) {
i1 = (_emscripten_asm_const_i(5) | 0) != 0 & 1;
- HEAP8[40892] = i1;
+ HEAP8[42364] = i1;
return;
- } else ___assert_fail(15702, 14162, 46, 15814);
+ } else ___assert_fail(16285, 14681, 46, 16397);
}
function __ZN4wasm10WasmWalkerIZZNS_15Asm2WasmBuilder8optimizeEvEN19BlockBreakOptimizer10visitBlockEPNS_5BlockEE11BreakSeekervE9startWalkEPNS_8FunctionE(i2, i1) {
@@ -77333,23 +77272,23 @@ function __ZN4wasm10WasmWalkerIZZNS_15Asm2WasmBuilder8optimizeEvEN19BlockBreakOp
return;
}
-function _wmemcpy(i3, i2, i1) {
- i3 = i3 | 0;
+function _wmemcpy(i4, i2, i1) {
+ i4 = i4 | 0;
i2 = i2 | 0;
i1 = i1 | 0;
- var i4 = 0;
+ var i3 = 0;
if (i1 | 0) {
- i4 = i3;
+ i3 = i4;
while (1) {
i1 = i1 + -1 | 0;
- HEAP32[i4 >> 2] = HEAP32[i2 >> 2];
+ HEAP32[i3 >> 2] = HEAP32[i2 >> 2];
if (!i1) break; else {
- i4 = i4 + 4 | 0;
i2 = i2 + 4 | 0;
+ i3 = i3 + 4 | 0;
}
}
}
- return i3 | 0;
+ return i4 | 0;
}
function ___muldi3(i1, i2, i3, i4) {
@@ -77367,7 +77306,7 @@ function ___muldi3(i1, i2, i3, i4) {
function __ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1) {
i1 = i1 | 0;
- HEAP32[i1 >> 2] = 2616;
+ HEAP32[i1 >> 2] = 2816;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1 + 32 | 0);
__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEED2Ev(i1);
return;
@@ -77417,14 +77356,28 @@ function ___cxa_get_globals_fast() {
var i1 = 0, i2 = 0;
i1 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- if (!(_pthread_once(40880, 2) | 0)) {
- i2 = _pthread_getspecific(HEAP32[10221] | 0) | 0;
+ if (!(_pthread_once(42352, 2) | 0)) {
+ i2 = _pthread_getspecific(HEAP32[10589] | 0) | 0;
STACKTOP = i1;
return i2 | 0;
- } else _abort_message(33491, i1);
+ } else _abort_message(34955, i1);
return 0;
}
+function __Z8parseIntPKc(i1) {
+ i1 = i1 | 0;
+ var i2 = 0, i3 = 0;
+ i2 = i1;
+ i1 = (HEAP8[i1 >> 0] | 0) + -48 | 0;
+ while (1) {
+ i2 = i2 + 1 | 0;
+ i3 = HEAP8[i2 >> 0] | 0;
+ if (!(i3 << 24 >> 24)) break;
+ i1 = (i1 * 10 | 0) + -48 + (i3 << 24 >> 24) | 0;
+ }
+ return i1 | 0;
+}
+
function dynCall_iiiiiiii(i8, i1, i2, i3, i4, i5, i6, i7) {
i8 = i8 | 0;
i1 = i1 | 0;
@@ -77440,19 +77393,19 @@ function dynCall_iiiiiiii(i8, i1, i2, i3, i4, i5, i6, i7) {
function __ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE6targetERKSt9type_info(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- return ((HEAP32[i1 + 4 >> 2] | 0) == 22139 ? i2 + 4 | 0 : 0) | 0;
+ return ((HEAP32[i1 + 4 >> 2] | 0) == 22727 ? i2 + 4 | 0 : 0) | 0;
}
function __ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE6targetERKSt9type_info(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- return ((HEAP32[i1 + 4 >> 2] | 0) == 21945 ? i2 + 4 | 0 : 0) | 0;
+ return ((HEAP32[i1 + 4 >> 2] | 0) == 22533 ? i2 + 4 | 0 : 0) | 0;
}
function __ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE6targetERKSt9type_info(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- return ((HEAP32[i1 + 4 >> 2] | 0) == 21664 ? i2 + 4 | 0 : 0) | 0;
+ return ((HEAP32[i1 + 4 >> 2] | 0) == 22252 ? i2 + 4 | 0 : 0) | 0;
}
function __ZNKSt3__15ctypeIcE8do_widenEPKcS3_Pc(i3, i1, i4, i2) {
@@ -77471,7 +77424,7 @@ function __ZNKSt3__15ctypeIcE8do_widenEPKcS3_Pc(i3, i1, i4, i2) {
function __ZNSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i1) {
i1 = i1 | 0;
- __ZNSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1, 2552);
+ __ZNSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1, 2752);
__ZNSt3__19basic_iosIcNS_11char_traitsIcEEED2Ev(i1 + 60 | 0);
return;
}
@@ -77482,23 +77435,10 @@ function __ZN10__cxxabiv112_GLOBAL__N_19destruct_EPv(i1) {
i2 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
_free(i1);
- if (!(_pthread_setspecific(HEAP32[10221] | 0, 0) | 0)) {
+ if (!(_pthread_setspecific(HEAP32[10589] | 0, 0) | 0)) {
STACKTOP = i2;
return;
- } else _abort_message(33388, i2);
-}
-
-function __Z8parseIntPKc(i2) {
- i2 = i2 | 0;
- var i1 = 0, i3 = 0;
- i1 = (HEAP8[i2 >> 0] | 0) + -48 | 0;
- while (1) {
- i2 = i2 + 1 | 0;
- i3 = HEAP8[i2 >> 0] | 0;
- if (!(i3 << 24 >> 24)) break;
- i1 = (i1 * 10 | 0) + -48 + (i3 << 24 >> 24) | 0;
- }
- return i1 | 0;
+ } else _abort_message(34852, i2);
}
function _snprintf(i3, i2, i1, i4) {
@@ -77522,15 +77462,15 @@ function __ZZN4wasm12RegisterPassINS_15RemoveUnusedBrsEEC1EPKcS4_ENKUlvE_clEv(i1
HEAP32[i1 >> 2] = 0;
HEAP32[i1 + 4 >> 2] = 0;
HEAP32[i1 + 8 >> 2] = 0;
- HEAP32[i1 >> 2] = 3120;
- HEAP32[i1 + 4 >> 2] = 3148;
+ HEAP32[i1 >> 2] = 3560;
+ HEAP32[i1 + 4 >> 2] = 3588;
return i1 | 0;
}
function __ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_17RemoveUnusedNamesEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE6targetERKSt9type_info(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- return ((HEAP32[i1 + 4 >> 2] | 0) == 25749 ? i2 + 4 | 0 : 0) | 0;
+ return ((HEAP32[i1 + 4 >> 2] | 0) == 26337 ? i2 + 4 | 0 : 0) | 0;
}
function __ZZN4wasm12RegisterPassINS_14SimplifyLocalsEEC1EPKcS4_ENKUlvE_clEv(i1) {
@@ -77539,11 +77479,29 @@ function __ZZN4wasm12RegisterPassINS_14SimplifyLocalsEEC1EPKcS4_ENKUlvE_clEv(i1)
HEAP32[i1 >> 2] = 0;
HEAP32[i1 + 4 >> 2] = 0;
HEAP32[i1 + 8 >> 2] = 0;
- HEAP32[i1 >> 2] = 3376;
- HEAP32[i1 + 4 >> 2] = 3404;
+ HEAP32[i1 >> 2] = 3944;
+ HEAP32[i1 + 4 >> 2] = 3972;
+ return i1 | 0;
+}
+
+function __ZZN4wasm12RegisterPassINS_14PostEmscriptenEEC1EPKcS4_ENKUlvE_clEv(i1) {
+ i1 = i1 | 0;
+ i1 = __Znwj(12) | 0;
+ HEAP32[i1 >> 2] = 0;
+ HEAP32[i1 + 4 >> 2] = 0;
+ HEAP32[i1 + 8 >> 2] = 0;
+ HEAP32[i1 >> 2] = 3816;
+ HEAP32[i1 + 4 >> 2] = 3844;
return i1 | 0;
}
+function __ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i1) {
+ i1 = i1 | 0;
+ __ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1, 3016);
+ __ZNSt3__19basic_iosIcNS_11char_traitsIcEEED2Ev(i1 + 64 | 0);
+ return;
+}
+
function __ZNKSt3__15ctypeIwE8do_widenEPKcS3_Pw(i3, i1, i4, i2) {
i3 = i3 | 0;
i1 = i1 | 0;
@@ -77561,13 +77519,19 @@ function __ZNKSt3__15ctypeIwE8do_widenEPKcS3_Pw(i3, i1, i4, i2) {
function __ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_15RemoveUnusedBrsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE6targetERKSt9type_info(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- return ((HEAP32[i1 + 4 >> 2] | 0) == 25016 ? i2 + 4 | 0 : 0) | 0;
+ return ((HEAP32[i1 + 4 >> 2] | 0) == 25604 ? i2 + 4 | 0 : 0) | 0;
}
function __ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocalsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE6targetERKSt9type_info(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- return ((HEAP32[i1 + 4 >> 2] | 0) == 26481 ? i2 + 4 | 0 : 0) | 0;
+ return ((HEAP32[i1 + 4 >> 2] | 0) == 27833 ? i2 + 4 | 0 : 0) | 0;
+}
+
+function __ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14PostEmscriptenEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE6targetERKSt9type_info(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ return ((HEAP32[i1 + 4 >> 2] | 0) == 27104 ? i2 + 4 | 0 : 0) | 0;
}
function __ZZN4wasm12RegisterPassINS_11MergeBlocksEEC1EPKcS4_ENKUlvE_clEv(i1) {
@@ -77576,29 +77540,39 @@ function __ZZN4wasm12RegisterPassINS_11MergeBlocksEEC1EPKcS4_ENKUlvE_clEv(i1) {
HEAP32[i1 >> 2] = 0;
HEAP32[i1 + 4 >> 2] = 0;
HEAP32[i1 + 8 >> 2] = 0;
- HEAP32[i1 >> 2] = 2992;
- HEAP32[i1 + 4 >> 2] = 3020;
+ HEAP32[i1 >> 2] = 3432;
+ HEAP32[i1 + 4 >> 2] = 3460;
return i1 | 0;
}
+function __ZN4wasm2If8finalizeEv(i1) {
+ i1 = i1 | 0;
+ var i2 = 0;
+ if (HEAP32[i1 + 8 >> 2] | 0) {
+ i2 = HEAP32[(HEAP32[i1 + 12 >> 2] | 0) + 4 >> 2] | 0;
+ HEAP32[i1 + 4 >> 2] = (i2 | 0) != 5 ? i2 : HEAP32[(HEAP32[i1 + 16 >> 2] | 0) + 4 >> 2] | 0;
+ }
+ return;
+}
+
function __ZN4wasm12PassRegistry3getEv() {
var i1 = 0;
- i1 = HEAP32[9227] | 0;
+ i1 = HEAP32[9595] | 0;
if (!i1) {
i1 = __Znwj(12) | 0;
HEAP32[i1 >> 2] = 0;
HEAP32[i1 + 4 >> 2] = 0;
HEAP32[i1 + 8 >> 2] = 0;
HEAP32[i1 >> 2] = i1 + 4;
- HEAP32[9227] = i1;
+ HEAP32[9595] = i1;
}
return i1 | 0;
}
function __ZL8abort_onN6cashew3RefE(i1) {
i1 = i1 | 0;
- __ZN6cashew5Value9stringifyERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEb(HEAP32[i1 >> 2] | 0, 38088, 0);
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(38088, 10) | 0;
+ __ZN6cashew5Value9stringifyERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEb(HEAP32[i1 >> 2] | 0, 39560, 0);
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(39560, 10) | 0;
_abort();
}
@@ -77634,13 +77608,13 @@ function __ZNKSt3__15ctypeIwE5do_isEtw(i3, i2, i1) {
function __ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE6targetERKSt9type_info(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- return ((HEAP32[i1 + 4 >> 2] | 0) == 24286 ? i2 + 4 | 0 : 0) | 0;
+ return ((HEAP32[i1 + 4 >> 2] | 0) == 24874 ? i2 + 4 | 0 : 0) | 0;
}
function __ZN6cashew5ValueixEj(i1, i2) {
i1 = i1 | 0;
i2 = i2 | 0;
- if ((HEAP32[i1 >> 2] | 0) == 2) return __ZNSt3__16vectorIN6cashew3RefENS_9allocatorIS2_EEE2atEj(HEAP32[i1 + 8 >> 2] | 0, i2) | 0; else ___assert_fail(27224, 27234, 473, 34688);
+ if ((HEAP32[i1 >> 2] | 0) == 2) return __ZNSt3__16vectorIN6cashew3RefENS_9allocatorIS2_EEE2atEj(HEAP32[i1 + 8 >> 2] | 0, i2) | 0; else ___assert_fail(28576, 28586, 473, 36152);
return 0;
}
@@ -77659,56 +77633,56 @@ function __ZTv0_n12_NSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9alloca
function __ZNSt3__16locale5__imp7installINS_9money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40732) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(42204) | 0);
return;
}
function __ZNSt3__16locale5__imp7installINS_9money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40724) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(42196) | 0);
return;
}
function __ZNSt3__16locale5__imp7installINS_9money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40716) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(42188) | 0);
return;
}
function __ZNSt3__16locale5__imp7installINS_9money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40708) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(42180) | 0);
return;
}
function __ZNSt3__16locale5__imp7installINS_8time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40668) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(42140) | 0);
return;
}
function __ZNSt3__16locale5__imp7installINS_8time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40660) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(42132) | 0);
return;
}
function __ZNSt3__16locale5__imp7installINS_8time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40652) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(42124) | 0);
return;
}
function __ZNSt3__16locale5__imp7installINS_8time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(39840) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(41312) | 0);
return;
}
@@ -77717,31 +77691,43 @@ function __ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_17RemoveUnusedN
return __ZZN4wasm12RegisterPassINS_17RemoveUnusedNamesEEC1EPKcS4_ENKUlvE_clEv(i1 + 4 | 0) | 0;
}
+function __ZTv0_n12_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i1) {
+ i1 = i1 | 0;
+ __ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) | 0);
+ return;
+}
+
+function __ZTv0_n12_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev(i1) {
+ i1 = i1 | 0;
+ __ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) | 0);
+ return;
+}
+
function __ZNSt3__16locale5__imp7installINS_7num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(39028) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40500) | 0);
return;
}
function __ZNSt3__16locale5__imp7installINS_7num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(39020) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40492) | 0);
return;
}
function __ZNSt3__16locale5__imp7installINS_7num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(39012) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40484) | 0);
return;
}
function __ZNSt3__16locale5__imp7installINS_7num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(38988) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40460) | 0);
return;
}
@@ -77776,13 +77762,13 @@ function __ZN6cashew5Value4sizeEv(i1) {
if ((HEAP32[i1 >> 2] | 0) == 2) {
i1 = HEAP32[i1 + 8 >> 2] | 0;
return (HEAP32[i1 + 4 >> 2] | 0) - (HEAP32[i1 >> 2] | 0) >> 2 | 0;
- } else ___assert_fail(27224, 27234, 457, 14430);
+ } else ___assert_fail(28576, 28586, 457, 14949);
return 0;
}
function __ZN4wasm12toSInteger32Ed(d1) {
d1 = +d1;
- if (__ZN4wasm12isSInteger32Ed(d1) | 0) return ~~(d1 > -2147483648.0 & d1 < 2147483647.0 ? d1 : d1 < 0.0 ? -2147483648.0 : 2147483647.0) | 0; else ___assert_fail(27531, 27489, 44, 27547);
+ if (__ZN4wasm12isSInteger32Ed(d1) | 0) return ~~(d1 > -2147483648.0 & d1 < 2147483647.0 ? d1 : d1 < 0.0 ? -2147483648.0 : 2147483647.0) | 0; else ___assert_fail(28883, 28841, 44, 28899);
return 0;
}
@@ -77791,6 +77777,11 @@ function __ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocal
return __ZZN4wasm12RegisterPassINS_14SimplifyLocalsEEC1EPKcS4_ENKUlvE_clEv(i1 + 4 | 0) | 0;
}
+function __ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14PostEmscriptenEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEEclEv(i1) {
+ i1 = i1 | 0;
+ return __ZZN4wasm12RegisterPassINS_14PostEmscriptenEEC1EPKcS4_ENKUlvE_clEv(i1 + 4 | 0) | 0;
+}
+
function ___stdio_close(i1) {
i1 = i1 | 0;
var i2 = 0, i3 = 0;
@@ -77828,7 +77819,7 @@ function __ZN4wasm7Literal14reinterpreti64Ev(i1) {
i1 = i1 + 8 | 0;
tempRet0 = HEAP32[i1 + 4 >> 2] | 0;
return HEAP32[i1 >> 2] | 0;
- } else ___assert_fail(18322, 26220, 159, 20117);
+ } else ___assert_fail(20647, 27572, 190, 20669);
return 0;
}
@@ -77859,21 +77850,21 @@ function dynCall_iiiiiii(i7, i1, i2, i3, i4, i5, i6) {
}
function __ZNSt3__16locale8__globalEv() {
- if ((HEAP8[36592] | 0) == 0 ? ___cxa_guard_acquire(36592) | 0 : 0) {
+ if ((HEAP8[38056] | 0) == 0 ? ___cxa_guard_acquire(38056) | 0 : 0) {
__ZNSt3__16locale5__imp11make_globalEv() | 0;
- HEAP32[10200] = 40796;
- ___cxa_guard_release(36592);
+ HEAP32[10568] = 42268;
+ ___cxa_guard_release(38056);
}
- return HEAP32[10200] | 0;
+ return HEAP32[10568] | 0;
}
function __ZNSt3__16locale7classicEv() {
- if ((HEAP8[36424] | 0) == 0 ? ___cxa_guard_acquire(36424) | 0 : 0) {
+ if ((HEAP8[37888] | 0) == 0 ? ___cxa_guard_acquire(37888) | 0 : 0) {
__ZNSt3__16locale5__imp12make_classicEv() | 0;
- HEAP32[10198] = 40788;
- ___cxa_guard_release(36424);
+ HEAP32[10566] = 42260;
+ ___cxa_guard_release(37888);
}
- return HEAP32[10198] | 0;
+ return HEAP32[10566] | 0;
}
function _bitshift64Ashr(i3, i2, i1) {
@@ -77892,10 +77883,20 @@ function _newlocale(i2, i3, i1) {
i2 = i2 | 0;
i3 = i3 | 0;
i1 = i1 | 0;
- if (((HEAP8[i3 >> 0] | 0) != 0 ? (_strcmp(i3, 31192) | 0) != 0 : 0) ? (_strcmp(i3, 30009) | 0) != 0 : 0) i1 = 0; else if (!i1) i1 = _calloc(1, 4) | 0;
+ if (((HEAP8[i3 >> 0] | 0) != 0 ? (_strcmp(i3, 32656) | 0) != 0 : 0) ? (_strcmp(i3, 31704) | 0) != 0 : 0) i1 = 0; else if (!i1) i1 = _calloc(1, 4) | 0;
return i1 | 0;
}
+function __ZNSt3__16__clocEv() {
+ var i1 = 0;
+ if ((HEAP8[37408] | 0) == 0 ? ___cxa_guard_acquire(37408) | 0 : 0) {
+ i1 = _newlocale(2147483647, 32656, 0) | 0;
+ HEAP32[10114] = i1;
+ ___cxa_guard_release(37408);
+ }
+ return HEAP32[10114] | 0;
+}
+
function __ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEEclEv(i1) {
i1 = i1 | 0;
return __ZZN4wasm12RegisterPassINS_11MergeBlocksEEC1EPKcS4_ENKUlvE_clEv(i1 + 4 | 0) | 0;
@@ -77917,23 +77918,13 @@ function __ZNSt3__113unordered_setIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS
function __ZNSt3__17codecvtIwc11__mbstate_tED2Ev(i1) {
i1 = i1 | 0;
var i2 = 0;
- HEAP32[i1 >> 2] = 10484;
+ HEAP32[i1 >> 2] = 11052;
i1 = i1 + 8 | 0;
i2 = HEAP32[i1 >> 2] | 0;
if ((i2 | 0) != (__ZNSt3__16__clocEv() | 0)) _freelocale(HEAP32[i1 >> 2] | 0);
return;
}
-function __ZNSt3__16__clocEv() {
- var i1 = 0;
- if ((HEAP8[35944] | 0) == 0 ? ___cxa_guard_acquire(35944) | 0 : 0) {
- i1 = _newlocale(2147483647, 31192, 0) | 0;
- HEAP32[9746] = i1;
- ___cxa_guard_release(35944);
- }
- return HEAP32[9746] | 0;
-}
-
function _fprintf(i1, i2, i3) {
i1 = i1 | 0;
i2 = i2 | 0;
@@ -77948,6 +77939,16 @@ function _fprintf(i1, i2, i3) {
return i3 | 0;
}
+function __ZN4wasm7Literal9castToF32Ev(i1, i2) {
+ i1 = i1 | 0;
+ i2 = i2 | 0;
+ if ((HEAP32[i2 >> 2] | 0) == 1) {
+ HEAP32[i1 + 8 >> 2] = HEAP32[i2 + 8 >> 2];
+ HEAP32[i1 >> 2] = 3;
+ return;
+ } else ___assert_fail(16221, 27572, 170, 16243);
+}
+
function dynCall_iiiiiid(i7, i1, i2, i3, i4, i5, d6) {
i7 = i7 | 0;
i1 = i1 | 0;
@@ -77965,7 +77966,7 @@ function __ZN4wasm7Literal6geti64Ev(i1) {
i1 = i1 + 8 | 0;
tempRet0 = HEAP32[i1 + 4 >> 2] | 0;
return HEAP32[i1 >> 2] | 0;
- } else ___assert_fail(19891, 26220, 154, 19913);
+ } else ___assert_fail(16253, 27572, 183, 20424);
return 0;
}
@@ -78001,20 +78002,20 @@ function __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6append
return __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcj(i2, i1, _strlen(i1) | 0) | 0;
}
-function _wmemset(i3, i2, i1) {
+function _wmemset(i4, i3, i1) {
+ i4 = i4 | 0;
i3 = i3 | 0;
- i2 = i2 | 0;
i1 = i1 | 0;
- var i4 = 0;
+ var i2 = 0;
if (i1 | 0) {
- i4 = i3;
+ i2 = i4;
while (1) {
i1 = i1 + -1 | 0;
- HEAP32[i4 >> 2] = i2;
- if (!i1) break; else i4 = i4 + 4 | 0;
+ HEAP32[i2 >> 2] = i3;
+ if (!i1) break; else i2 = i2 + 4 | 0;
}
}
- return i3 | 0;
+ return i4 | 0;
}
function __ZNSt3__16__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEED2Ev(i1) {
@@ -78036,7 +78037,7 @@ function __ZNKSt3__15ctypeIcE10do_tolowerEc(i2, i1) {
function __ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_17RemoveUnusedNamesEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEPNS0_6__baseISD_EE(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- HEAP32[i1 >> 2] = 3204;
+ HEAP32[i1 >> 2] = 3644;
return;
}
@@ -78061,7 +78062,7 @@ function dynCall_viiiiii(i7, i1, i2, i3, i4, i5, i6) {
function __ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_15RemoveUnusedBrsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEPNS0_6__baseISD_EE(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- HEAP32[i1 >> 2] = 3076;
+ HEAP32[i1 >> 2] = 3516;
return;
}
@@ -78078,7 +78079,14 @@ function __ZNKSt3__15ctypeIcE10do_toupperEc(i2, i1) {
function __ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocalsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEPNS0_6__baseISD_EE(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- HEAP32[i1 >> 2] = 3332;
+ HEAP32[i1 >> 2] = 3900;
+ return;
+}
+
+function __ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14PostEmscriptenEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEPNS0_6__baseISD_EE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ HEAP32[i1 >> 2] = 3772;
return;
}
@@ -78104,8 +78112,8 @@ function __ZN4wasm19CountTrailingZeroesIyEEiT_(i1, i2) {
function __ZN4wasm14AstStackHelper9getParentEv(i1) {
i1 = i1 | 0;
var i2 = 0;
- i1 = HEAP32[9215] | 0;
- i2 = (HEAP32[9216] | 0) - i1 >> 2;
+ i1 = HEAP32[9582] | 0;
+ i2 = (HEAP32[9583] | 0) - i1 >> 2;
if (i2 >>> 0 > 1) i1 = HEAP32[i1 + (i2 + -2 << 2) >> 2] | 0; else i1 = 0;
return i1 | 0;
}
@@ -78113,7 +78121,7 @@ function __ZN4wasm14AstStackHelper9getParentEv(i1) {
function __ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEPNS0_6__baseISD_EE(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- HEAP32[i1 >> 2] = 2948;
+ HEAP32[i1 >> 2] = 3388;
return;
}
@@ -78123,22 +78131,15 @@ function __ZNK6cashew7IStringltERKS0_(i2, i1) {
var i3 = 0;
i3 = HEAP32[i2 >> 2] | 0;
i2 = HEAP32[i1 >> 2] | 0;
- return (_strcmp((i3 | 0) == 0 ? 44980 : i3, (i2 | 0) == 0 ? 44980 : i2) | 0) < 0 | 0;
+ return (_strcmp((i3 | 0) == 0 ? 46453 : i3, (i2 | 0) == 0 ? 46453 : i2) | 0) < 0 | 0;
}
function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i1) {
i1 = i1 | 0;
- if (!(HEAP8[i1 >> 0] | 0)) ___assert_fail(23140, 22233, 319, 23147); else return HEAP32[i1 + 4 >> 2] | 0;
+ if (!(HEAP8[i1 >> 0] | 0)) ___assert_fail(23728, 22821, 319, 23735); else return HEAP32[i1 + 4 >> 2] | 0;
return 0;
}
-function __ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_17RemoveUnusedNamesEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEv(i1) {
- i1 = i1 | 0;
- i1 = __Znwj(8) | 0;
- HEAP32[i1 >> 2] = 3204;
- return i1 | 0;
-}
-
function _abort_message(i1, i2) {
i1 = i1 | 0;
i2 = i2 | 0;
@@ -78146,15 +78147,22 @@ function _abort_message(i1, i2) {
i3 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
HEAP32[i3 >> 2] = i2;
- i2 = HEAP32[894] | 0;
+ i2 = HEAP32[1007] | 0;
_vfprintf(i2, i1, i3) | 0;
_fputc(10, i2) | 0;
_abort();
}
+function __ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_17RemoveUnusedNamesEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEv(i1) {
+ i1 = i1 | 0;
+ i1 = __Znwj(8) | 0;
+ HEAP32[i1 >> 2] = 3644;
+ return i1 | 0;
+}
+
function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement5getOpEv(i1) {
i1 = i1 | 0;
- if (!(HEAP8[i1 >> 0] | 0)) return HEAP32[i1 + 4 >> 2] | 0; else ___assert_fail(23155, 22233, 323, 23163);
+ if (!(HEAP8[i1 >> 0] | 0)) return HEAP32[i1 + 4 >> 2] | 0; else ___assert_fail(23743, 22821, 323, 23751);
return 0;
}
@@ -78184,7 +78192,7 @@ function __ZNKSt3__18ios_base6getlocEv(i1) {
function __ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_15RemoveUnusedBrsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEv(i1) {
i1 = i1 | 0;
i1 = __Znwj(8) | 0;
- HEAP32[i1 >> 2] = 3076;
+ HEAP32[i1 >> 2] = 3516;
return i1 | 0;
}
@@ -78192,16 +78200,23 @@ function __ZN10__cxxabiv112_GLOBAL__N_110construct_Ev() {
var i1 = 0;
i1 = STACKTOP;
STACKTOP = STACKTOP + 16 | 0;
- if (!(_pthread_key_create(40884, 183) | 0)) {
+ if (!(_pthread_key_create(42356, 204) | 0)) {
STACKTOP = i1;
return;
- } else _abort_message(33441, i1);
+ } else _abort_message(34905, i1);
}
function __ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocalsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEv(i1) {
i1 = i1 | 0;
i1 = __Znwj(8) | 0;
- HEAP32[i1 >> 2] = 3332;
+ HEAP32[i1 >> 2] = 3900;
+ return i1 | 0;
+}
+
+function __ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14PostEmscriptenEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEv(i1) {
+ i1 = i1 | 0;
+ i1 = __Znwj(8) | 0;
+ HEAP32[i1 >> 2] = 3772;
return i1 | 0;
}
@@ -78218,7 +78233,7 @@ function __ZNKSt3__17codecvtIcc11__mbstate_tE9do_lengthERS1_PKcS5_j(i5, i1, i3,
function __ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEv(i1) {
i1 = i1 | 0;
i1 = __Znwj(8) | 0;
- HEAP32[i1 >> 2] = 2948;
+ HEAP32[i1 >> 2] = 3388;
return i1 | 0;
}
@@ -78232,14 +78247,14 @@ function __ZN4wasm8PopCountIjEEiT_(i1) {
function __ZNSt3__16locale5__imp7installINS_7codecvtIDsc11__mbstate_tEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40772) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(42244) | 0);
return;
}
function __ZNSt3__16locale5__imp7installINS_7codecvtIDic11__mbstate_tEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40780) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(42252) | 0);
return;
}
@@ -78254,14 +78269,14 @@ function __ZN6cashew3RefeqERKNS_7IStringE(i1, i2) {
function __ZNSt3__16locale5__imp7installINS_7codecvtIwc11__mbstate_tEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40764) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(42236) | 0);
return;
}
function __ZNSt3__16locale5__imp7installINS_7codecvtIcc11__mbstate_tEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40756) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(42228) | 0);
return;
}
@@ -78273,6 +78288,16 @@ function __ZNKSt3__16locale9use_facetERNS0_2idE(i1, i2) {
return HEAP32[(HEAP32[i1 + 8 >> 2] | 0) + (i2 << 2) >> 2] | 0;
}
+function runPostSets() {}
+function _i64Subtract(i1, i2, i3, i4) {
+ i1 = i1 | 0;
+ i2 = i2 | 0;
+ i3 = i3 | 0;
+ i4 = i4 | 0;
+ i4 = i2 - i4 - (i3 >>> 0 > i1 >>> 0 | 0) >>> 0;
+ return (tempRet0 = i4, i1 - i3 >>> 0 | 0) | 0;
+}
+
function dynCall_iiiiii(i6, i1, i2, i3, i4, i5) {
i6 = i6 | 0;
i1 = i1 | 0;
@@ -78287,9 +78312,9 @@ function __ZNSt3__16locale5__imp11make_globalEv() {
var i1 = 0;
i1 = __ZNSt3__16locale7classicEv() | 0;
i1 = HEAP32[i1 >> 2] | 0;
- HEAP32[10199] = i1;
+ HEAP32[10567] = i1;
__ZNSt3__114__shared_count12__add_sharedEv(i1);
- return 40796;
+ return 42268;
}
function __ZNKSt3__15ctypeIwE10do_toupperEw(i2, i1) {
@@ -78322,47 +78347,37 @@ function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE7isSpaceEc(i1) {
function __ZNKSt3__110__function6__funcIZ16load_s_expr2wasmE3__4NS_9allocatorIS2_EEFvvEE6targetERKSt9type_info(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- return ((HEAP32[i1 + 4 >> 2] | 0) == 23540 ? i2 + 4 | 0 : 0) | 0;
+ return ((HEAP32[i1 + 4 >> 2] | 0) == 24128 ? i2 + 4 | 0 : 0) | 0;
}
function __ZNSt3__16locale5__imp7installINS_10moneypunctIwLb1EEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40700) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(42172) | 0);
return;
}
function __ZNSt3__16locale5__imp7installINS_10moneypunctIwLb0EEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40692) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(42164) | 0);
return;
}
function __ZNSt3__16locale5__imp7installINS_10moneypunctIcLb1EEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40684) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(42156) | 0);
return;
}
function __ZNSt3__16locale5__imp7installINS_10moneypunctIcLb0EEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40676) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(42148) | 0);
return;
}
-function runPostSets() {}
-function _i64Add(i1, i2, i3, i4) {
- i1 = i1 | 0;
- i2 = i2 | 0;
- i3 = i3 | 0;
- i4 = i4 | 0;
- i3 = i1 + i3 >>> 0;
- return (tempRet0 = i2 + i4 + (i3 >>> 0 < i1 >>> 0 | 0) >>> 0, i3 | 0) | 0;
-}
-
function __ZNSt3__16localeC2Ev(i1) {
i1 = i1 | 0;
var i2 = 0;
@@ -78421,6 +78436,12 @@ function __ZNKSt3__110moneypunctIcLb0EE16do_positive_signEv(i2, i1) {
return;
}
+function __ZTv0_n12_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED0Ev(i1) {
+ i1 = i1 | 0;
+ __ZNSt3__114basic_iostreamIcNS_11char_traitsIcEEED0Ev(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) | 0);
+ return;
+}
+
function __ZN4wasm10WasmWalkerINS_17RemoveUnusedNamesEvE9startWalkEPNS_8FunctionE(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
@@ -78526,7 +78547,7 @@ function __ZNSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEE
function __ZNSt3__110__function6__funcIZ16load_s_expr2wasmE3__4NS_9allocatorIS2_EEFvvEEclEv(i1) {
i1 = i1 | 0;
- __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(38088, 23500) | 0;
+ __ZNSt3__1lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(39560, 24088) | 0;
_abort();
}
@@ -78537,6 +78558,13 @@ function __ZN4wasm10WasmWalkerINS_14SimplifyLocalsEvE9startWalkEPNS_8FunctionE(i
return;
}
+function __ZN4wasm10WasmWalkerINS_14PostEmscriptenEvE9startWalkEPNS_8FunctionE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 127](i2, i1 + 36 | 0);
+ return;
+}
+
function __ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE18destroy_deallocateEv(i1) {
i1 = i1 | 0;
__ZdlPv(i1);
@@ -78600,7 +78628,7 @@ function __ZNKSt3__110moneypunctIcLb0EE11do_groupingEv(i2, i1) {
function __ZN4wasm19CountTrailingZeroesIjEEiT_(i1) {
i1 = i1 | 0;
if (!i1) i1 = 32; else {
- i1 = 19952 + ((Math_imul(i1 & 0 - i1, 125613361) | 0) >>> 27) | 0;
+ i1 = 28941 + ((Math_imul(i1 & 0 - i1, 125613361) | 0) >>> 27) | 0;
i1 = HEAPU8[i1 >> 0] | 0;
}
return i1 | 0;
@@ -78608,43 +78636,62 @@ function __ZN4wasm19CountTrailingZeroesIjEEiT_(i1) {
function __ZN4wasm17RemoveUnusedNamesD2Ev(i1) {
i1 = i1 | 0;
- HEAP32[i1 >> 2] = 3248;
- HEAP32[i1 + 4 >> 2] = 3276;
+ HEAP32[i1 >> 2] = 3688;
+ HEAP32[i1 + 4 >> 2] = 3716;
__ZNSt3__16__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEED2Ev(i1 + 12 | 0);
return;
}
function __ZN4wasm12toUInteger32Ed(d1) {
d1 = +d1;
- if (__ZN4wasm12isUInteger32Ed(d1) | 0) return ~~(d1 < 4294967295.0 ? d1 : 4294967295.0) >>> 0 | 0; else ___assert_fail(27473, 27489, 37, 27518);
+ if (__ZN4wasm12isUInteger32Ed(d1) | 0) return ~~(d1 < 4294967295.0 ? d1 : 4294967295.0) >>> 0 | 0; else ___assert_fail(28825, 28841, 37, 28870);
return 0;
}
+function __ZThn8_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i1) {
+ i1 = i1 | 0;
+ __ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i1 + -8 | 0);
+ return;
+}
+
+function __ZThn8_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev(i1) {
+ i1 = i1 | 0;
+ __ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev(i1 + -8 | 0);
+ return;
+}
+
function __ZNSt3__16locale5__imp7installINS_8numpunctIwEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(39004) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40476) | 0);
return;
}
function __ZNSt3__16locale5__imp7installINS_8numpunctIcEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(38976) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40448) | 0);
return;
}
function __ZNSt3__16locale5__imp7installINS_8messagesIwEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40748) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(42220) | 0);
return;
}
function __ZNSt3__16locale5__imp7installINS_8messagesIcEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40740) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(42212) | 0);
+ return;
+}
+
+function __ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev(i1) {
+ i1 = i1 | 0;
+ __ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i1);
+ __ZdlPv(i1);
return;
}
@@ -78657,14 +78704,14 @@ function __ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunction
function __ZNSt3__16locale5__imp7installINS_7collateIwEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(38956) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40428) | 0);
return;
}
function __ZNSt3__16locale5__imp7installINS_7collateIcEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(38948) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40420) | 0);
return;
}
@@ -78672,7 +78719,7 @@ function __ZN6cashew7IStringC2EPKcb(i3, i2, i1) {
i3 = i3 | 0;
i2 = i2 | 0;
i1 = i1 | 0;
- if (!i2) ___assert_fail(14363, 14365, 61, 14400); else {
+ if (!i2) ___assert_fail(14882, 14884, 61, 14919); else {
__ZN6cashew7IString3setEPKcb(i3, i2, i1);
return;
}
@@ -78705,28 +78752,28 @@ function dynCall_viiiii(i6, i1, i2, i3, i4, i5) {
function __ZNKSt3__18numpunctIwE12do_falsenameEv(i1, i2) {
i1 = i1 | 0;
i2 = i2 | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwj(i1, 10696, _wcslen(10696) | 0);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwj(i1, 11264, _wcslen(11264) | 0);
return;
}
function __ZNSt3__16locale5__imp7installINS_5ctypeIwEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(38996) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40468) | 0);
return;
}
function __ZNSt3__16locale5__imp7installINS_5ctypeIcEEEEvPT_(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(38964) | 0);
+ __ZNSt3__16locale5__imp7installEPNS0_5facetEl(i2, i1, __ZNSt3__16locale2id5__getEv(40436) | 0);
return;
}
function __ZNKSt3__18numpunctIwE11do_truenameEv(i1, i2) {
i1 = i1 | 0;
i2 = i2 | 0;
- __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwj(i1, 10676, _wcslen(10676) | 0);
+ __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwj(i1, 11244, _wcslen(11244) | 0);
return;
}
@@ -78864,6 +78911,12 @@ function __ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocal
return;
}
+function __ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14PostEmscriptenEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE18destroy_deallocateEv(i1) {
+ i1 = i1 | 0;
+ __ZdlPv(i1);
+ return;
+}
+
function __ZNKSt3__17codecvtIcc11__mbstate_tE10do_unshiftERS1_PcS4_RS4_(i3, i1, i4, i2, i5) {
i3 = i3 | 0;
i1 = i1 | 0;
@@ -78915,33 +78968,24 @@ function __ZNKSt3__110moneypunctIcLb0EE16do_negative_signEv(i1, i2) {
function __ZN4wasm7Literal14reinterpretf64Ev(i1) {
i1 = i1 | 0;
- if ((HEAP32[i1 >> 2] | 0) == 2) return +(+HEAPF64[i1 + 8 >> 3]); else ___assert_fail(19891, 26220, 161, 19999);
+ if ((HEAP32[i1 >> 2] | 0) == 2) return +(+HEAPF64[i1 + 8 >> 3]); else ___assert_fail(16253, 27572, 192, 20684);
return +(0.0);
}
function __ZN4wasm7Literal14reinterpretf32Ev(i1) {
i1 = i1 | 0;
- if ((HEAP32[i1 >> 2] | 0) == 1) return +(+HEAPF32[i1 + 8 >> 2]); else ___assert_fail(18264, 26220, 160, 19984);
+ if ((HEAP32[i1 >> 2] | 0) == 1) return +(+HEAPF32[i1 + 8 >> 2]); else ___assert_fail(16221, 27572, 191, 20632);
return +(0.0);
}
-function _i64Subtract(i1, i2, i3, i4) {
- i1 = i1 | 0;
- i2 = i2 | 0;
- i3 = i3 | 0;
- i4 = i4 | 0;
- i4 = i2 - i4 - (i3 >>> 0 > i1 >>> 0 | 0) >>> 0;
- return (tempRet0 = i4, i1 - i3 >>> 0 | 0) | 0;
-}
-
function __ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE11target_typeEv(i1) {
i1 = i1 | 0;
- return 320;
+ return 336;
}
function __ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE11target_typeEv(i1) {
i1 = i1 | 0;
- return 296;
+ return 312;
}
function __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i1) {
@@ -78952,7 +78996,7 @@ function __ZNSt3__112basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N
function __ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE11target_typeEv(i1) {
i1 = i1 | 0;
- return 264;
+ return 280;
}
function __ZN6cashew11isIdentInitEc(i1) {
@@ -78991,14 +79035,29 @@ function dynCall_iiiii(i5, i1, i2, i3, i4) {
function __ZNKSt3__18numpunctIcE12do_falsenameEv(i1, i2) {
i1 = i1 | 0;
i2 = i2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i1, 34360, 5);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i1, 35824, 5);
+ return;
+}
+
+function _i64Add(i1, i2, i3, i4) {
+ i1 = i1 | 0;
+ i2 = i2 | 0;
+ i3 = i3 | 0;
+ i4 = i4 | 0;
+ i3 = i1 + i3 >>> 0;
+ return (tempRet0 = i2 + i4 + (i3 >>> 0 < i1 >>> 0 | 0) >>> 0, i3 | 0) | 0;
+}
+
+function __ZTv0_n12_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED1Ev(i1) {
+ i1 = i1 | 0;
+ __ZNSt3__18ios_baseD2Ev(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) + 12 | 0);
return;
}
function __ZNSt3__15ctypeIcED2Ev(i2) {
i2 = i2 | 0;
var i1 = 0;
- HEAP32[i2 >> 2] = 10552;
+ HEAP32[i2 >> 2] = 11120;
i1 = HEAP32[i2 + 8 >> 2] | 0;
if (i1 | 0 ? HEAP8[i2 + 12 >> 0] | 0 : 0) __ZdaPv(i1);
return;
@@ -79007,20 +79066,20 @@ function __ZNSt3__15ctypeIcED2Ev(i2) {
function __ZNKSt3__18numpunctIcE11do_truenameEv(i1, i2) {
i1 = i1 | 0;
i2 = i2 | 0;
- __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i1, 34366, 4);
+ __ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i1, 35830, 4);
return;
}
function __ZNKSt3__110__function6__funcIZ16load_s_expr2wasmE3__4NS_9allocatorIS2_EEFvvEE7__cloneEPNS0_6__baseIS5_EE(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
- HEAP32[i1 >> 2] = 2904;
+ HEAP32[i1 >> 2] = 3344;
return;
}
function __ZN4wasm7Literal14reinterpreti32Ev(i1) {
i1 = i1 | 0;
- if ((HEAP32[i1 >> 2] | 0) == 3) return HEAP32[i1 + 8 >> 2] | 0; else ___assert_fail(18293, 26220, 158, 20102);
+ if ((HEAP32[i1 >> 2] | 0) == 3) return HEAP32[i1 + 8 >> 2] | 0; else ___assert_fail(20507, 27572, 189, 20529);
return 0;
}
@@ -79078,18 +79137,18 @@ function __ZNSt3__110__time_putD2Ev(i1) {
function __ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_17RemoveUnusedNamesEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE11target_typeEv(i1) {
i1 = i1 | 0;
- return 824;
+ return 840;
}
function __ZN4wasm7Literal6getf64Ev(i1) {
i1 = i1 | 0;
- if ((HEAP32[i1 >> 2] | 0) == 4) return +(+HEAPF64[i1 + 8 >> 3]); else ___assert_fail(18322, 26220, 156, 18344);
+ if ((HEAP32[i1 >> 2] | 0) == 4) return +(+HEAPF64[i1 + 8 >> 3]); else ___assert_fail(20647, 27572, 185, 21149);
return +(0.0);
}
function __ZN4wasm7Literal6getf32Ev(i1) {
i1 = i1 | 0;
- if ((HEAP32[i1 >> 2] | 0) == 3) return +(+HEAPF32[i1 + 8 >> 2]); else ___assert_fail(18293, 26220, 155, 18315);
+ if ((HEAP32[i1 >> 2] | 0) == 3) return +(+HEAPF32[i1 + 8 >> 2]); else ___assert_fail(20507, 27572, 184, 21142);
return +(0.0);
}
@@ -79111,12 +79170,17 @@ function __ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_17RemoveUnusedN
function __ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_15RemoveUnusedBrsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE11target_typeEv(i1) {
i1 = i1 | 0;
- return 672;
+ return 688;
+}
+
+function __ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocalsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE11target_typeEv(i1) {
+ i1 = i1 | 0;
+ return 1144;
}
function __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(i1) {
i1 = i1 | 0;
- return __ZN6cashew5Value9setStringERKNS_7IStringE(__ZN6cashew5Arena5allocEv(37288) | 0, i1) | 0;
+ return __ZN6cashew5Value9setStringERKNS_7IStringE(__ZN6cashew5Arena5allocEv(38760) | 0, i1) | 0;
}
function b11(i1, i2, i3, i4, i5, i6, i7, i8) {
@@ -79137,9 +79201,9 @@ function __ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunction
return;
}
-function __ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocalsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE11target_typeEv(i1) {
+function __ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14PostEmscriptenEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE11target_typeEv(i1) {
i1 = i1 | 0;
- return 976;
+ return 992;
}
function __ZNSt3__16localeC2ERKS0_(i2, i1) {
@@ -79160,22 +79224,22 @@ function __ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_15RemoveUnusedB
function __ZNKSt3__110__function6__funcIZ16load_s_expr2wasmE3__4NS_9allocatorIS2_EEFvvEE7__cloneEv(i1) {
i1 = i1 | 0;
i1 = __Znwj(8) | 0;
- HEAP32[i1 >> 2] = 2904;
+ HEAP32[i1 >> 2] = 3344;
return i1 | 0;
}
function __ZN6cashew5Value8getArrayEv(i1) {
i1 = i1 | 0;
- if ((HEAP32[i1 >> 2] | 0) == 2) return HEAP32[i1 + 8 >> 2] | 0; else ___assert_fail(27224, 27234, 219, 22212);
+ if ((HEAP32[i1 >> 2] | 0) == 2) return HEAP32[i1 + 8 >> 2] | 0; else ___assert_fail(28576, 28586, 219, 22800);
return 0;
}
function __ZN4wasm16AllocatingModuleC2Ev(i1) {
i1 = i1 | 0;
__ZN4wasm6ModuleC2Ev(i1);
- HEAP32[i1 + 144 >> 2] = 0;
HEAP32[i1 + 148 >> 2] = 0;
HEAP32[i1 + 152 >> 2] = 0;
+ HEAP32[i1 + 156 >> 2] = 0;
return;
}
@@ -79185,9 +79249,15 @@ function __ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocal
return;
}
+function __ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14PostEmscriptenEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEED0Ev(i1) {
+ i1 = i1 | 0;
+ __ZdlPv(i1);
+ return;
+}
+
function __ZN6cashew5Value10getCStringEv(i1) {
i1 = i1 | 0;
- if (!(HEAP32[i1 >> 2] | 0)) return HEAP32[i1 + 8 >> 2] | 0; else ___assert_fail(14408, 27234, 207, 14717);
+ if (!(HEAP32[i1 >> 2] | 0)) return HEAP32[i1 + 8 >> 2] | 0; else ___assert_fail(14927, 28586, 207, 15236);
return 0;
}
@@ -79202,28 +79272,28 @@ function dynCall_viiii(i5, i1, i2, i3, i4) {
function __ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE11target_typeEv(i1) {
i1 = i1 | 0;
- return 520;
+ return 536;
}
function __ZN4wasm7Literal6geti32Ev(i1) {
i1 = i1 | 0;
- if ((HEAP32[i1 >> 2] | 0) == 1) return HEAP32[i1 + 8 >> 2] | 0; else ___assert_fail(18264, 26220, 153, 18286);
+ if ((HEAP32[i1 >> 2] | 0) == 1) return HEAP32[i1 + 8 >> 2] | 0; else ___assert_fail(16221, 27572, 182, 21135);
return 0;
}
function __ZN4wasm10Expression4castINS_5BreakEEEPT_v(i1) {
i1 = i1 | 0;
- if ((HEAP32[i1 >> 2] | 0) == 4) return i1 | 0; else ___assert_fail(24996, 26220, 335, 25011);
+ if ((HEAP32[i1 >> 2] | 0) == 4) return i1 | 0; else ___assert_fail(25584, 27572, 367, 25599);
return 0;
}
-function _uselocale(i2) {
- i2 = i2 | 0;
- var i1 = 0, i3 = 0;
- i3 = (_pthread_self() | 0) + 180 | 0;
- i1 = HEAP32[i3 >> 2] | 0;
- if (i2 | 0) HEAP32[i3 >> 2] = i2;
- return i1 | 0;
+function _uselocale(i3) {
+ i3 = i3 | 0;
+ var i1 = 0, i2 = 0;
+ i1 = (_pthread_self() | 0) + 180 | 0;
+ i2 = HEAP32[i1 >> 2] | 0;
+ if (i3 | 0) HEAP32[i1 >> 2] = i3;
+ return i2 | 0;
}
function ___syscall_ret(i1) {
@@ -79245,7 +79315,7 @@ function __ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEE
function __ZN6cashew12ValueBuilder8makeNullEv() {
var i1 = 0;
- i1 = __ZN6cashew5Arena5allocEv(37288) | 0;
+ i1 = __ZN6cashew5Arena5allocEv(38760) | 0;
__ZN6cashew5Value4freeEv(i1);
HEAP32[i1 >> 2] = 3;
return i1 | 0;
@@ -79253,7 +79323,7 @@ function __ZN6cashew12ValueBuilder8makeNullEv() {
function ___errno_location() {
var i1 = 0;
- if (!(HEAP32[9341] | 0)) i1 = 37408; else {
+ if (!(HEAP32[9709] | 0)) i1 = 38880; else {
i1 = (_pthread_self() | 0) + 64 | 0;
i1 = HEAP32[i1 >> 2] | 0;
}
@@ -79262,14 +79332,14 @@ function ___errno_location() {
function __ZNSt3__18numpunctIwED2Ev(i1) {
i1 = i1 | 0;
- HEAP32[i1 >> 2] = 10644;
+ HEAP32[i1 >> 2] = 11212;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1 + 16 | 0);
return;
}
function __ZNSt3__18numpunctIcED2Ev(i1) {
i1 = i1 | 0;
- HEAP32[i1 >> 2] = 10604;
+ HEAP32[i1 >> 2] = 11172;
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1 + 12 | 0);
return;
}
@@ -79294,7 +79364,7 @@ function __ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_15RemoveUnusedB
function __ZN4wasm7Element5c_strEv(i1) {
i1 = i1 | 0;
- if (!(HEAP8[i1 >> 0] | 0)) return HEAP32[i1 + 16 >> 2] | 0; else ___assert_fail(16146, 16023, 88, 17297);
+ if (!(HEAP8[i1 >> 0] | 0)) return HEAP32[i1 + 16 >> 2] | 0; else ___assert_fail(16729, 16606, 88, 17891);
return 0;
}
@@ -79309,6 +79379,11 @@ function __ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocal
return;
}
+function __ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14PostEmscriptenEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7destroyEv(i1) {
+ i1 = i1 | 0;
+ return;
+}
+
function __ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEEEvE4walkERPNS_10ExpressionE(i2, i1) {
i2 = i2 | 0;
i1 = i1 | 0;
@@ -79317,7 +79392,7 @@ function __ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_17RemoveU
function __ZN4wasm7Element3strEv(i1) {
i1 = i1 | 0;
- if (!(HEAP8[i1 >> 0] | 0)) return HEAP32[i1 + 16 >> 2] | 0; else ___assert_fail(16146, 16023, 83, 16155);
+ if (!(HEAP8[i1 >> 0] | 0)) return HEAP32[i1 + 16 >> 2] | 0; else ___assert_fail(16729, 16606, 83, 16738);
return 0;
}
@@ -79345,6 +79420,12 @@ function __ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_14Simplif
_abort();
}
+function __ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEEEvE9startWalkEPNS_8FunctionE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ _abort();
+}
+
function __ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7destroyEv(i1) {
i1 = i1 | 0;
return;
@@ -79352,7 +79433,7 @@ function __ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEE
function __ZN6cashew5Value9getNumberEv(i1) {
i1 = i1 | 0;
- if ((HEAP32[i1 >> 2] | 0) == 1) return i1 + 8 | 0; else ___assert_fail(14435, 27234, 215, 14446);
+ if ((HEAP32[i1 >> 2] | 0) == 1) return i1 + 8 | 0; else ___assert_fail(14954, 28586, 215, 14965);
return 0;
}
@@ -79375,6 +79456,12 @@ function __ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_14Simplif
_abort();
}
+function __ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEEEvE4walkERPNS_10ExpressionE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ _abort();
+}
+
function __ZNSt3__18time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev(i1) {
i1 = i1 | 0;
__ZNSt3__110__time_putD2Ev(i1 + 8 | 0);
@@ -79391,7 +79478,7 @@ function __ZNSt3__18time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED
function __ZNSt3__115basic_streambufIwNS_11char_traitsIwEEED0Ev(i1) {
i1 = i1 | 0;
- HEAP32[i1 >> 2] = 7972;
+ HEAP32[i1 >> 2] = 8540;
__ZNSt3__16localeD2Ev(i1 + 4 | 0);
__ZdlPv(i1);
return;
@@ -79399,7 +79486,7 @@ function __ZNSt3__115basic_streambufIwNS_11char_traitsIwEEED0Ev(i1) {
function __ZNSt3__115basic_streambufIcNS_11char_traitsIcEEED0Ev(i1) {
i1 = i1 | 0;
- HEAP32[i1 >> 2] = 7908;
+ HEAP32[i1 >> 2] = 8476;
__ZNSt3__16localeD2Ev(i1 + 4 | 0);
__ZdlPv(i1);
return;
@@ -79418,9 +79505,15 @@ function __ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_14Simplif
_abort();
}
+function __ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEEEvE9startWalkEPNS_6ModuleE(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ _abort();
+}
+
function __ZN6cashew5Value10getIStringEv(i1) {
i1 = i1 | 0;
- if (!(HEAP32[i1 >> 2] | 0)) return i1 + 8 | 0; else ___assert_fail(14408, 27234, 211, 14419);
+ if (!(HEAP32[i1 >> 2] | 0)) return i1 + 8 | 0; else ___assert_fail(14927, 28586, 211, 14938);
return 0;
}
@@ -79430,6 +79523,12 @@ function __ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_11MergeBl
_abort();
}
+function __ZThn8_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED0Ev(i1) {
+ i1 = i1 | 0;
+ __ZNSt3__114basic_iostreamIcNS_11char_traitsIcEEED0Ev(i1 + -8 | 0);
+ return;
+}
+
function __ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i1) {
i1 = i1 | 0;
if (HEAP8[i1 >> 0] & 1) __ZdlPv(HEAP32[i1 + 8 >> 2] | 0);
@@ -79480,6 +79579,15 @@ function b0(i1, i2, i3, i4, i5, i6, i7) {
return 0;
}
+function __ZNSt3__16locale2id6__initEv(i1) {
+ i1 = i1 | 0;
+ var i2 = 0;
+ i2 = HEAP32[10111] | 0;
+ HEAP32[10111] = i2 + 1;
+ HEAP32[i1 + 4 >> 2] = i2 + 1;
+ return;
+}
+
function __ZN4wasm7Element4sizeEv(i1) {
i1 = i1 | 0;
i1 = __ZN4wasm7Element4listEv(i1) | 0;
@@ -79491,15 +79599,6 @@ function __ZN4wasm11WasmVisitorIZZNS_15Asm2WasmBuilder8optimizeEvEN19BlockBreakO
return;
}
-function __ZNSt3__16locale2id6__initEv(i1) {
- i1 = i1 | 0;
- var i2 = 0;
- i2 = HEAP32[9743] | 0;
- HEAP32[9743] = i2 + 1;
- HEAP32[i1 + 4 >> 2] = i2 + 1;
- return;
-}
-
function __ZN4wasm11WasmVisitorIZNS_10Expression5printERNSt3__113basic_ostreamIcNS2_11char_traitsIcEEEEjE17ExpressionPrintervED2Ev(i1) {
i1 = i1 | 0;
return;
@@ -79520,7 +79619,7 @@ function __ZZZN4wasm15Asm2WasmBuilder8optimizeEvEN19BlockBreakOptimizer10visitBl
function __ZN4wasm7Element4listEv(i1) {
i1 = i1 | 0;
- if (!(HEAP8[i1 >> 0] | 0)) ___assert_fail(16080, 16023, 68, 16088); else return i1 + 4 | 0;
+ if (!(HEAP8[i1 >> 0] | 0)) ___assert_fail(16663, 16606, 68, 16671); else return i1 + 4 | 0;
return 0;
}
@@ -79538,7 +79637,7 @@ function __ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traits
function __ZN6cashew12ValueBuilder12makeRawArrayEi(i1) {
i1 = i1 | 0;
- return __ZN6cashew5Value8setArrayEj(__ZN6cashew5Arena5allocEv(37288) | 0, i1) | 0;
+ return __ZN6cashew5Value8setArrayEj(__ZN6cashew5Arena5allocEv(38760) | 0, i1) | 0;
}
function _wcslen(i2) {
@@ -79570,14 +79669,14 @@ function __ZNSt3__18ios_base33__set_badbit_and_consider_rethrowEv(i1) {
function __ZNSt3__115basic_streambufIwNS_11char_traitsIwEEED2Ev(i1) {
i1 = i1 | 0;
- HEAP32[i1 >> 2] = 7972;
+ HEAP32[i1 >> 2] = 8540;
__ZNSt3__16localeD2Ev(i1 + 4 | 0);
return;
}
function __ZNSt3__115basic_streambufIcNS_11char_traitsIcEEED2Ev(i1) {
i1 = i1 | 0;
- HEAP32[i1 >> 2] = 7908;
+ HEAP32[i1 >> 2] = 8476;
__ZNSt3__16localeD2Ev(i1 + 4 | 0);
return;
}
@@ -79586,7 +79685,7 @@ function __ZSt17__throw_bad_allocv() {
var i1 = 0;
i1 = ___cxa_allocate_exception(4) | 0;
__ZNSt9bad_allocC2Ev(i1);
- ___cxa_throw(i1 | 0, 2392, 160);
+ ___cxa_throw(i1 | 0, 2592, 181);
}
function __ZNSt3__110__function6__funcIZ16load_s_expr2wasmE3__4NS_9allocatorIS2_EEFvvEE18destroy_deallocateEv(i1) {
@@ -79600,7 +79699,7 @@ function dynCall_viii(i4, i1, i2, i3) {
i1 = i1 | 0;
i2 = i2 | 0;
i3 = i3 | 0;
- FUNCTION_TABLE_viii[i4 & 7](i1 | 0, i2 | 0, i3 | 0);
+ FUNCTION_TABLE_viii[i4 & 15](i1 | 0, i2 | 0, i3 | 0);
}
function __ZZ11instantiateEN19JSExternalInterface4trapEPKc(i1, i2) {
@@ -79634,7 +79733,7 @@ function __ZN6cashew3RefntEv(i1) {
function ___cxa_is_pointer_type(i1) {
i1 = i1 | 0;
- if (!i1) i1 = 0; else i1 = (___dynamic_cast(i1, 2368, 2424, 0) | 0) != 0;
+ if (!i1) i1 = 0; else i1 = (___dynamic_cast(i1, 2568, 2624, 0) | 0) != 0;
return i1 & 1 | 0;
}
@@ -79645,6 +79744,13 @@ function __ZNSt3__18ios_base5clearEj(i2, i1) {
return;
}
+function __ZNSt3__114basic_iostreamIcNS_11char_traitsIcEEED0Ev(i1) {
+ i1 = i1 | 0;
+ __ZNSt3__18ios_baseD2Ev(i1 + 12 | 0);
+ __ZdlPv(i1);
+ return;
+}
+
function __ZNSt3__114__shared_count12__add_sharedEv(i1) {
i1 = i1 | 0;
i1 = i1 + 4 | 0;
@@ -79792,16 +79898,14 @@ function b3(i1, i2, i3, i4, i5, d6) {
return 0;
}
-function _strtoll(i3, i2, i1) {
- i3 = i3 | 0;
- i2 = i2 | 0;
+function __ZThn8_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED1Ev(i1) {
i1 = i1 | 0;
- i3 = _strtox_686(i3, i2, i1, 0, -2147483648) | 0;
- return i3 | 0;
+ __ZNSt3__18ios_baseD2Ev(i1 + -8 + 12 | 0);
+ return;
}
function __GLOBAL__sub_I_RemoveUnusedNames_cpp() {
- __ZN4wasm12RegisterPassINS_17RemoveUnusedNamesEEC2EPKcS4_(42904, 25076, 25096);
+ __ZN4wasm12RegisterPassINS_17RemoveUnusedNamesEEC2EPKcS4_(44376, 25664, 25684);
return;
}
@@ -79822,17 +79926,25 @@ function __ZNSt3__17codecvtIwc11__mbstate_tED0Ev(i1) {
function __ZNKSt3__121__basic_string_commonILb1EE20__throw_out_of_rangeEv(i1) {
i1 = i1 | 0;
- ___assert_fail(30562, 30459, 1175, 33342);
+ ___assert_fail(31978, 31875, 1175, 34806);
}
function __ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv(i1) {
i1 = i1 | 0;
- ___assert_fail(30430, 30459, 1164, 33298);
+ ___assert_fail(31846, 31875, 1164, 34762);
+}
+
+function _strtoll(i3, i2, i1) {
+ i3 = i3 | 0;
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ i3 = _strtox(i3, i2, i1, 0, -2147483648) | 0;
+ return i3 | 0;
}
function __ZNKSt3__110__function6__funcIZ16load_s_expr2wasmE3__4NS_9allocatorIS2_EEFvvEE11target_typeEv(i1) {
i1 = i1 | 0;
- return 352;
+ return 368;
}
function __ZN6Colors15outputColorCodeERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEPKc(i2, i1) {
@@ -79842,18 +79954,18 @@ function __ZN6Colors15outputColorCodeERNSt3__113basic_ostreamIcNS0_11char_traits
}
function __GLOBAL__sub_I_RemoveUnusedBrs_cpp() {
- __ZN4wasm12RegisterPassINS_15RemoveUnusedBrsEEC2EPKcS4_(42903, 24342, 24360);
+ __ZN4wasm12RegisterPassINS_15RemoveUnusedBrsEEC2EPKcS4_(44375, 24930, 24948);
return;
}
function __ZNKSt3__120__vector_base_commonILb1EE20__throw_out_of_rangeEv(i1) {
i1 = i1 | 0;
- ___assert_fail(33319, 33195, 314, 33342);
+ ___assert_fail(34783, 34659, 314, 34806);
}
function __ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv(i1) {
i1 = i1 | 0;
- ___assert_fail(33172, 33195, 303, 33298);
+ ___assert_fail(34636, 34659, 303, 34762);
}
function b13(i1, i2, i3, i4, i5, i6) {
@@ -79873,7 +79985,12 @@ function __ZNSt3__110__function6__funcIZ16load_s_expr2wasmE3__4NS_9allocatorIS2_
}
function __GLOBAL__sub_I_SimplifyLocals_cpp() {
- __ZN4wasm12RegisterPassINS_14SimplifyLocalsEEC2EPKcS4_(42905, 25811, 25827);
+ __ZN4wasm12RegisterPassINS_14SimplifyLocalsEEC2EPKcS4_(44378, 27163, 27179);
+ return;
+}
+
+function __GLOBAL__sub_I_PostEmscripten_cpp() {
+ __ZN4wasm12RegisterPassINS_14PostEmscriptenEEC2EPKcS4_(44377, 26399, 26415);
return;
}
@@ -79884,14 +80001,6 @@ function dynCall_iii(i3, i1, i2) {
return FUNCTION_TABLE_iii[i3 & 31](i1 | 0, i2 | 0) | 0;
}
-function _strtoull(i3, i2, i1) {
- i3 = i3 | 0;
- i2 = i2 | 0;
- i1 = i1 | 0;
- i3 = _strtox_686(i3, i2, i1, -1, -1) | 0;
- return i3 | 0;
-}
-
function __ZNSt3__16localeD2Ev(i1) {
i1 = i1 | 0;
__ZNSt3__114__shared_count16__release_sharedEv(HEAP32[i1 >> 2] | 0) | 0;
@@ -79899,9 +80008,9 @@ function __ZNSt3__16localeD2Ev(i1) {
}
function __ZNSt3__16locale5__imp12make_classicEv() {
- __ZNSt3__16locale5__impC2Ej(36432, 1);
- HEAP32[10197] = 36432;
- return 40788;
+ __ZNSt3__16locale5__impC2Ej(37896, 1);
+ HEAP32[10565] = 37896;
+ return 42260;
}
function __ZN4wasm12isUInteger32Ed(d1) {
@@ -79909,6 +80018,20 @@ function __ZN4wasm12isUInteger32Ed(d1) {
return d1 <= 4294967295.0 & (d1 >= 0.0 & (__ZN4wasm9isIntegerEd(d1) | 0)) | 0;
}
+function __ZNSt3__114basic_iostreamIcNS_11char_traitsIcEEED1Ev(i1) {
+ i1 = i1 | 0;
+ __ZNSt3__18ios_baseD2Ev(i1 + 12 | 0);
+ return;
+}
+
+function _strtoull(i3, i2, i1) {
+ i3 = i3 | 0;
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ i3 = _strtox(i3, i2, i1, -1, -1) | 0;
+ return i3 | 0;
+}
+
function __ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEED1Ev(i1) {
i1 = i1 | 0;
__ZNSt3__18ios_baseD2Ev(i1 + 4 | 0);
@@ -79949,7 +80072,7 @@ function __ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_17RemoveUnus
}
function __GLOBAL__sub_I_MergeBlocks_cpp() {
- __ZN4wasm12RegisterPassINS_11MergeBlocksEEC2EPKcS4_(42902, 23640, 23653);
+ __ZN4wasm12RegisterPassINS_11MergeBlocksEEC2EPKcS4_(44374, 24228, 24241);
return;
}
@@ -79998,7 +80121,7 @@ function _mbrlen(i2, i1, i3) {
i2 = i2 | 0;
i1 = i1 | 0;
i3 = i3 | 0;
- return _mbrtowc(0, i2, i1, i3 | 0 ? i3 : 37416) | 0;
+ return _mbrtowc(0, i2, i1, i3 | 0 ? i3 : 38888) | 0;
}
function __ZNSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev(i1) {
@@ -80077,9 +80200,14 @@ function __ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_14SimplifyLo
return;
}
+function __ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEEEvED2Ev(i1) {
+ i1 = i1 | 0;
+ return;
+}
+
function __GLOBAL__I_000101() {
__ZNSt3__18ios_base4InitC2Ev(0);
- ___cxa_atexit(170, 44979, ___dso_handle | 0) | 0;
+ ___cxa_atexit(191, 46452, ___dso_handle | 0) | 0;
return;
}
@@ -80198,6 +80326,19 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEED0Ev(i1)
return;
}
+function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEED0Ev(i1) {
+ i1 = i1 | 0;
+ __ZdlPv(i1);
+ return;
+}
+
+function _do_read_421(i2, i1, i3) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ i3 = i3 | 0;
+ return ___string_read(i2, i1, i3) | 0;
+}
+
function __ZZN4wasm15Asm2WasmBuilder8optimizeEvEN19BlockBreakOptimizerD0Ev(i1) {
i1 = i1 | 0;
__ZdlPv(i1);
@@ -80212,8 +80353,8 @@ function __ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEED0Ev(i1) {
function __ZSt15get_new_handlerv() {
var i1 = 0;
- i1 = HEAP32[10222] | 0;
- HEAP32[10222] = i1 + 0;
+ i1 = HEAP32[10590] | 0;
+ HEAP32[10590] = i1 + 0;
return i1 | 0;
}
@@ -80252,13 +80393,6 @@ function _mbsinit(i1) {
return i1 & 1 | 0;
}
-function _do_read(i2, i1, i3) {
- i2 = i2 | 0;
- i1 = i1 | 0;
- i3 = i3 | 0;
- return ___string_read(i2, i1, i3) | 0;
-}
-
function __ZNSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev(i1) {
i1 = i1 | 0;
return;
@@ -80338,6 +80472,13 @@ function __ZNSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED2
return;
}
+function _strtold_l(i3, i2, i1) {
+ i3 = i3 | 0;
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ return +(+_strtox_17(i3, i2, 2));
+}
+
function b12(i1, i2, i3, i4) {
i1 = i1 | 0;
i2 = i2 | 0;
@@ -80355,6 +80496,12 @@ function _nearbyint(d1) {
return +d1;
}
+function __ZNSt3__114basic_iostreamIcNS_11char_traitsIcEEED2Ev(i1, i2) {
+ i1 = i1 | 0;
+ i2 = i2 | 0;
+ return;
+}
+
function __ZNSt3__110__function6__baseIFPN4wasm10ExpressionEN6cashew3RefEjEED2Ev(i1) {
i1 = i1 | 0;
return;
@@ -80376,13 +80523,6 @@ function __ZNSt3__110__function6__baseIFPN4wasm10ExpressionEN6cashew3RefEEED2Ev(
return;
}
-function _strtold_l(i3, i2, i1) {
- i3 = i3 | 0;
- i2 = i2 | 0;
- i1 = i1 | 0;
- return +(+_strtox(i3, i2, 2));
-}
-
function _catgets(i1, i4, i2, i3) {
i1 = i1 | 0;
i4 = i4 | 0;
@@ -80453,7 +80593,18 @@ function __ZN4wasm10WalkerPassINS_10WasmWalkerINS_14SimplifyLocalsEvEEED2Ev(i1)
return;
}
-function _cleanup_357(i1) {
+function __ZN4wasm10WalkerPassINS_10WasmWalkerINS_14PostEmscriptenEvEEED2Ev(i1) {
+ i1 = i1 | 0;
+ return;
+}
+
+function _cleanup_435(i1) {
+ i1 = i1 | 0;
+ if (!(HEAP32[i1 + 68 >> 2] | 0)) ___unlockfile(i1);
+ return;
+}
+
+function _cleanup_418(i1) {
i1 = i1 | 0;
if (!(HEAP32[i1 + 68 >> 2] | 0)) ___unlockfile(i1);
return;
@@ -80491,12 +80642,6 @@ function establishStackSpace(i1, i2) {
STACK_MAX = i2;
}
-function _cleanup(i1) {
- i1 = i1 | 0;
- if (!(HEAP32[i1 + 68 >> 2] | 0)) ___unlockfile(i1);
- return;
-}
-
function __ZNKSt3__110moneypunctIwLb1EE16do_thousands_sepEv(i1) {
i1 = i1 | 0;
return 2147483647;
@@ -80584,6 +80729,12 @@ function __ZThn4_N4wasm14SimplifyLocalsD0Ev(i1) {
return;
}
+function __ZThn4_N4wasm14PostEmscriptenD0Ev(i1) {
+ i1 = i1 | 0;
+ __ZdlPv(i1 + -4 | 0);
+ return;
+}
+
function __ZN10__cxxabiv121__vmi_class_type_infoD0Ev(i1) {
i1 = i1 | 0;
__ZdlPv(i1);
@@ -80721,6 +80872,18 @@ function b1(i1, i2, i3) {
return 0;
}
+function _strtof(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ return +(+_strtox_17(i2, i1, 0));
+}
+
+function _strtod(i2, i1) {
+ i2 = i2 | 0;
+ i1 = i1 | 0;
+ return +(+_strtox_17(i2, i1, 1));
+}
+
function __ZNSt3__110__function6__baseIFPN4wasm4PassEvEED2Ev(i1) {
i1 = i1 | 0;
return;
@@ -80746,18 +80909,6 @@ function __ZNKSt3__110moneypunctIcLb0EE14do_frac_digitsEv(i1) {
return 0;
}
-function _strtof(i2, i1) {
- i2 = i2 | 0;
- i1 = i1 | 0;
- return +(+_strtox(i2, i1, 0));
-}
-
-function _strtod(i2, i1) {
- i2 = i2 | 0;
- i1 = i1 | 0;
- return +(+_strtox(i2, i1, 1));
-}
-
function _isxdigit_l(i1, i2) {
i1 = i1 | 0;
i2 = i2 | 0;
@@ -80796,7 +80947,7 @@ function __ZNSt3__110moneypunctIcLb0EED0Ev(i1) {
function __ZNSt9bad_allocC2Ev(i1) {
i1 = i1 | 0;
- HEAP32[i1 >> 2] = 11048;
+ HEAP32[i1 >> 2] = 11616;
return;
}
@@ -80839,6 +80990,12 @@ function __ZN4wasm14SimplifyLocalsD0Ev(i1) {
return;
}
+function __ZN4wasm14PostEmscriptenD0Ev(i1) {
+ i1 = i1 | 0;
+ __ZdlPv(i1);
+ return;
+}
+
function _frexpl(d2, i1) {
d2 = +d2;
i1 = i1 | 0;
@@ -80937,6 +81094,11 @@ function __ZThn4_N4wasm14SimplifyLocalsD1Ev(i1) {
return;
}
+function __ZThn4_N4wasm14PostEmscriptenD1Ev(i1) {
+ i1 = i1 | 0;
+ return;
+}
+
function __ZNSt9bad_allocD0Ev(i1) {
i1 = i1 | 0;
__ZdlPv(i1);
@@ -80981,12 +81143,12 @@ function __ZNSt3__114__shared_countD2Ev(i1) {
function __ZNKSt9exception4whatEv(i1) {
i1 = i1 | 0;
- return 33883;
+ return 35347;
}
function __ZNKSt9bad_alloc4whatEv(i1) {
i1 = i1 | 0;
- return 33868;
+ return 35332;
}
function dynCall_v(i1) {
@@ -81119,11 +81281,11 @@ function _nan(i1) {
}
function ___ctype_toupper_loc() {
- return 5704;
+ return 4732;
}
function ___ctype_tolower_loc() {
- return 4160;
+ return 6272;
}
function getTempRet0() {
@@ -81140,7 +81302,7 @@ function b4(i1) {
}
function ___ctype_b_loc() {
- return 5700;
+ return 4728;
}
function b10() {
@@ -81149,45 +81311,45 @@ function b10() {
// EMSCRIPTEN_END_FUNCS
var FUNCTION_TABLE_iiiiiiii = [b0,__ZNKSt3__18time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcPK2tmcc,__ZNKSt3__18time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwPK2tmcc,__ZNKSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_bRNS_8ios_baseERjRe,__ZNKSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_bRNS_8ios_baseERjRNS_12basic_stringIcS3_NS_9allocatorIcEEEE,__ZNKSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_bRNS_8ios_baseERjRe,__ZNKSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_bRNS_8ios_baseERjRNS_12basic_stringIwS3_NS_9allocatorIwEEEE,b0];
-var FUNCTION_TABLE_iiii = [b1,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE6setbufEPci,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE6xsgetnEPci,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE6xsputnEPKci,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEEclEOS5_Oj,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEEclEOS5_Oj,___stdio_read,___stdio_seek,___stdio_write,___stdout_write,_sn_write,__ZNSt3__111__stdoutbufIcE6xsputnEPKci,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE6setbufEPwi,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE6xsgetnEPwi,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE6xsputnEPKwi,__ZNSt3__111__stdoutbufIwE6xsputnEPKwi,__ZNKSt3__17collateIcE7do_hashEPKcS3_,__ZNKSt3__17collateIwE7do_hashEPKwS3_,__ZNKSt3__18messagesIcE7do_openERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNS_6localeE,__ZNKSt3__18messagesIwE7do_openERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNS_6localeE,__ZNKSt3__15ctypeIcE10do_toupperEPcPKc,__ZNKSt3__15ctypeIcE10do_tolowerEPcPKc,__ZNKSt3__15ctypeIcE9do_narrowEcc,__ZNKSt3__15ctypeIwE5do_isEtw,__ZNKSt3__15ctypeIwE10do_toupperEPwPKw,__ZNKSt3__15ctypeIwE10do_tolowerEPwPKw,__ZNKSt3__15ctypeIwE9do_narrowEwc,__ZNK10__cxxabiv117__class_type_info9can_catchEPKNS_16__shim_type_infoERPv,_do_read
+var FUNCTION_TABLE_iiii = [b1,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE6setbufEPci,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE6xsgetnEPci,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE6xsputnEPKci,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEEclEOS5_Oj,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEEclEOS5_Oj,___stdio_write,___stdio_seek,___stdout_write,___stdio_read,_sn_write,__ZNSt3__111__stdoutbufIcE6xsputnEPKci,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE6setbufEPwi,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE6xsgetnEPwi,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE6xsputnEPKwi,__ZNSt3__111__stdoutbufIwE6xsputnEPKwi,__ZNKSt3__17collateIcE7do_hashEPKcS3_,__ZNKSt3__17collateIwE7do_hashEPKwS3_,__ZNKSt3__18messagesIcE7do_openERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNS_6localeE,__ZNKSt3__18messagesIwE7do_openERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNS_6localeE,__ZNKSt3__15ctypeIcE10do_toupperEPcPKc,__ZNKSt3__15ctypeIcE10do_tolowerEPcPKc,__ZNKSt3__15ctypeIcE9do_narrowEcc,__ZNKSt3__15ctypeIwE5do_isEtw,__ZNKSt3__15ctypeIwE10do_toupperEPwPKw,__ZNKSt3__15ctypeIwE10do_tolowerEPwPKw,__ZNKSt3__15ctypeIwE9do_narrowEwc,__ZNK10__cxxabiv117__class_type_info9can_catchEPKNS_16__shim_type_infoERPv,_do_read_421
,b1,b1,b1];
var FUNCTION_TABLE_viiiii = [b2,__ZNK10__cxxabiv117__class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib,__ZNK10__cxxabiv120__si_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib,__ZNK10__cxxabiv121__vmi_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib];
var FUNCTION_TABLE_iiiiiid = [b3,__ZNKSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_bRNS_8ios_baseEce,__ZNKSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_bRNS_8ios_baseEwe,b3];
-var FUNCTION_TABLE_vi = [b4,__ZN4wasm11WasmVisitorIZNS_15Asm2WasmBuilder8optimizeEvE19BlockBreakOptimizervED2Ev,__ZZN4wasm15Asm2WasmBuilder8optimizeEvEN19BlockBreakOptimizerD0Ev,__ZN4wasm11WasmVisitorIZZNS_15Asm2WasmBuilder8optimizeEvEN19BlockBreakOptimizer10visitBlockEPNS_5BlockEE11BreakSeekervED2Ev,__ZZZN4wasm15Asm2WasmBuilder8optimizeEvEN19BlockBreakOptimizer10visitBlockEPNS_5BlockEEN11BreakSeekerD0Ev,__ZNSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev,__ZNSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev,__ZTv0_n12_NSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev,__ZTv0_n12_NSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev,__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEED1Ev,__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEED0Ev,__ZTv0_n12_NSt3__113basic_istreamIcNS_11char_traitsIcEEED1Ev,__ZTv0_n12_NSt3__113basic_istreamIcNS_11char_traitsIcEEED0Ev,__ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev,__ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev,__ZNSt9exceptionD2Ev,__ZNSt3__117bad_function_callD0Ev,__ZN4wasm11WasmVisitorIZNS_10Expression5printERNSt3__113basic_ostreamIcNS2_11char_traitsIcEEEEjE17ExpressionPrintervED2Ev,__ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinterD0Ev,__ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEED2Ev,__ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunnerD0Ev,__ZNSt3__110__function6__baseIFPN4wasm10ExpressionEN6cashew3RefEEED2Ev,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EED0Ev,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE7destroyEv,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE18destroy_deallocateEv,__ZNSt3__110__function6__baseIFPN4wasm10ExpressionEN6cashew3RefEjEED2Ev,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEED0Ev,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7destroyEv,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE18destroy_deallocateEv
-,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEED0Ev,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7destroyEv,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE18destroy_deallocateEv,__ZNSt3__110__function6__baseIFvvEED2Ev,__ZNSt3__110__function6__funcIZ16load_s_expr2wasmE3__4NS_9allocatorIS2_EEFvvEED0Ev,__ZNSt3__110__function6__funcIZ16load_s_expr2wasmE3__4NS_9allocatorIS2_EEFvvEE7destroyEv,__ZNSt3__110__function6__funcIZ16load_s_expr2wasmE3__4NS_9allocatorIS2_EEFvvEE18destroy_deallocateEv,__ZNSt3__110__function6__funcIZ16load_s_expr2wasmE3__4NS_9allocatorIS2_EEFvvEEclEv,__ZNSt3__110__function6__baseIFPN4wasm4PassEvEED2Ev,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEED0Ev,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7destroyEv,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE18destroy_deallocateEv,__ZN4wasm10WalkerPassINS_10WasmWalkerINS_11MergeBlocksEvEEED2Ev,__ZN4wasm11MergeBlocksD0Ev,__ZThn4_N4wasm11MergeBlocksD1Ev,__ZThn4_N4wasm11MergeBlocksD0Ev,__ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEEEvED2Ev,__ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEED0Ev,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_15RemoveUnusedBrsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEED0Ev,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_15RemoveUnusedBrsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7destroyEv,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_15RemoveUnusedBrsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE18destroy_deallocateEv,__ZN4wasm10WalkerPassINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEED2Ev,__ZN4wasm15RemoveUnusedBrsD0Ev,__ZThn4_N4wasm15RemoveUnusedBrsD1Ev,__ZThn4_N4wasm15RemoveUnusedBrsD0Ev,__ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEEEvED2Ev,__ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEED0Ev,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_17RemoveUnusedNamesEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEED0Ev,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_17RemoveUnusedNamesEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7destroyEv,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_17RemoveUnusedNamesEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE18destroy_deallocateEv
-,__ZN4wasm17RemoveUnusedNamesD2Ev,__ZN4wasm17RemoveUnusedNamesD0Ev,__ZThn4_N4wasm17RemoveUnusedNamesD1Ev,__ZThn4_N4wasm17RemoveUnusedNamesD0Ev,__ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEEEvED2Ev,__ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEED0Ev,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocalsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEED0Ev,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocalsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7destroyEv,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocalsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE18destroy_deallocateEv,__ZN4wasm10WalkerPassINS_10WasmWalkerINS_14SimplifyLocalsEvEEED2Ev,__ZN4wasm14SimplifyLocalsD0Ev,__ZThn4_N4wasm14SimplifyLocalsD1Ev,__ZThn4_N4wasm14SimplifyLocalsD0Ev,__ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEEEvED2Ev,__ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEED0Ev,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEED2Ev,__ZNSt3__110__stdinbufIcED0Ev,__ZNSt3__111__stdoutbufIcED0Ev,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEED2Ev,__ZNSt3__110__stdinbufIwED0Ev,__ZNSt3__111__stdoutbufIwED0Ev,__ZNSt3__18ios_baseD2Ev,__ZNSt3__18ios_baseD0Ev,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEED0Ev,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEED0Ev,__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEED1Ev,__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEED0Ev,__ZTv0_n12_NSt3__113basic_istreamIwNS_11char_traitsIwEEED1Ev,__ZTv0_n12_NSt3__113basic_istreamIwNS_11char_traitsIwEEED0Ev,__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEED1Ev
-,__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEED0Ev,__ZTv0_n12_NSt3__113basic_ostreamIcNS_11char_traitsIcEEED1Ev,__ZTv0_n12_NSt3__113basic_ostreamIcNS_11char_traitsIcEEED0Ev,__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEED1Ev,__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEED0Ev,__ZTv0_n12_NSt3__113basic_ostreamIwNS_11char_traitsIwEEED1Ev,__ZTv0_n12_NSt3__113basic_ostreamIwNS_11char_traitsIwEEED0Ev,__ZNSt3__17collateIcED2Ev,__ZNSt3__17collateIcED0Ev,__ZNSt3__16locale5facet16__on_zero_sharedEv,__ZNSt3__17collateIwED2Ev,__ZNSt3__17collateIwED0Ev,__ZNSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev,__ZNSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev,__ZNSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev,__ZNSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev,__ZNSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev,__ZNSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev,__ZNSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev,__ZNSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev,__ZNSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev,__ZNSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev,__ZNSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev,__ZNSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev,__ZNSt3__18time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev,__ZNSt3__18time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev,__ZNSt3__18time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev,__ZNSt3__18time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev,__ZNSt3__110moneypunctIcLb0EED2Ev,__ZNSt3__110moneypunctIcLb0EED0Ev
-,__ZNSt3__110moneypunctIcLb1EED2Ev,__ZNSt3__110moneypunctIcLb1EED0Ev,__ZNSt3__110moneypunctIwLb0EED2Ev,__ZNSt3__110moneypunctIwLb0EED0Ev,__ZNSt3__110moneypunctIwLb1EED2Ev,__ZNSt3__110moneypunctIwLb1EED0Ev,__ZNSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev,__ZNSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev,__ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev,__ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev,__ZNSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev,__ZNSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev,__ZNSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev,__ZNSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev,__ZNSt3__18messagesIcED2Ev,__ZNSt3__18messagesIcED0Ev,__ZNSt3__18messagesIwED2Ev,__ZNSt3__18messagesIwED0Ev,__ZNSt3__16locale5facetD2Ev,__ZNSt3__116__narrow_to_utf8ILj32EED0Ev,__ZNSt3__117__widen_from_utf8ILj32EED0Ev,__ZNSt3__17codecvtIwc11__mbstate_tED2Ev,__ZNSt3__17codecvtIwc11__mbstate_tED0Ev,__ZNSt3__16locale5__impD2Ev,__ZNSt3__16locale5__impD0Ev,__ZNSt3__15ctypeIcED2Ev,__ZNSt3__15ctypeIcED0Ev,__ZNSt3__18numpunctIcED2Ev,__ZNSt3__18numpunctIcED0Ev,__ZNSt3__18numpunctIwED2Ev
-,__ZNSt3__18numpunctIwED0Ev,__ZNSt3__16locale5facetD0Ev,__ZNSt3__15ctypeIwED0Ev,__ZNSt3__17codecvtIcc11__mbstate_tED0Ev,__ZNSt3__17codecvtIDsc11__mbstate_tED0Ev,__ZNSt3__17codecvtIDic11__mbstate_tED0Ev,__ZN10__cxxabiv116__shim_type_infoD2Ev,__ZN10__cxxabiv117__class_type_infoD0Ev,__ZNK10__cxxabiv116__shim_type_info5noop1Ev,__ZNK10__cxxabiv116__shim_type_info5noop2Ev,__ZN10__cxxabiv120__si_class_type_infoD0Ev,__ZNSt9bad_allocD2Ev,__ZNSt9bad_allocD0Ev,__ZN10__cxxabiv121__vmi_class_type_infoD0Ev,__ZNSt3__113__vector_baseIN6cashew3RefENS_9allocatorIS2_EEED2Ev,__ZNSt3__113unordered_setIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev,__ZNSt3__113__vector_baseIN6cashew13OperatorClassENS_9allocatorIS2_EEED2Ev,__ZNSt3__113__vector_baseINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEED2Ev,__ZN6cashew5ArenaD2Ev,_cleanup_357,_cleanup,__ZNSt3__18ios_base4InitD2Ev,__ZNSt3__16locale2id6__initEv,__ZNSt3__117__call_once_proxyINS_5tupleIJNS_12_GLOBAL__N_111__fake_bindEEEEEEvPv,___cxx_global_array_dtor,___cxx_global_array_dtor_61,___cxx_global_array_dtor_109,__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev,___cxx_global_array_dtor_46,___cxx_global_array_dtor_85
-,___cxx_global_array_dtor_112,__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev,__ZNSt3__112__do_nothingEPv,_free,__ZN10__cxxabiv112_GLOBAL__N_19destruct_EPv,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4
+var FUNCTION_TABLE_vi = [b4,__ZN4wasm11WasmVisitorIZNS_15Asm2WasmBuilder8optimizeEvE19BlockBreakOptimizervED2Ev,__ZZN4wasm15Asm2WasmBuilder8optimizeEvEN19BlockBreakOptimizerD0Ev,__ZN4wasm11WasmVisitorIZZNS_15Asm2WasmBuilder8optimizeEvEN19BlockBreakOptimizer10visitBlockEPNS_5BlockEE11BreakSeekervED2Ev,__ZZZN4wasm15Asm2WasmBuilder8optimizeEvEN19BlockBreakOptimizer10visitBlockEPNS_5BlockEEN11BreakSeekerD0Ev,__ZNSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev,__ZNSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev,__ZTv0_n12_NSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev,__ZTv0_n12_NSt3__119basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev,__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEED1Ev,__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEED0Ev,__ZTv0_n12_NSt3__113basic_istreamIcNS_11char_traitsIcEEED1Ev,__ZTv0_n12_NSt3__113basic_istreamIcNS_11char_traitsIcEEED0Ev,__ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev,__ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev,__ZNSt9exceptionD2Ev,__ZNSt3__117bad_function_callD0Ev,__ZN4wasm11WasmVisitorIZNS_10Expression5printERNSt3__113basic_ostreamIcNS2_11char_traitsIcEEEEjE17ExpressionPrintervED2Ev,__ZZN4wasm10Expression5printERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEjEN17ExpressionPrinterD0Ev,__ZN4wasm11WasmVisitorIZNS_14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS4_9allocatorIS6_EEEEE16ExpressionRunnerNS_4FlowEED2Ev,__ZZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__16vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN16ExpressionRunnerD0Ev,__ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev,__ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev,__ZThn8_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev,__ZThn8_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev,__ZTv0_n12_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev,__ZTv0_n12_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev,__ZNSt3__114basic_iostreamIcNS_11char_traitsIcEEED1Ev,__ZNSt3__114basic_iostreamIcNS_11char_traitsIcEEED0Ev
+,__ZThn8_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED1Ev,__ZThn8_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED0Ev,__ZTv0_n12_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED1Ev,__ZTv0_n12_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED0Ev,__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEED1Ev,__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEED0Ev,__ZTv0_n12_NSt3__113basic_ostreamIcNS_11char_traitsIcEEED1Ev,__ZTv0_n12_NSt3__113basic_ostreamIcNS_11char_traitsIcEEED0Ev,__ZNSt3__110__function6__baseIFPN4wasm10ExpressionEN6cashew3RefEEED2Ev,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EED0Ev,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE7destroyEv,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE18destroy_deallocateEv,__ZNSt3__110__function6__baseIFPN4wasm10ExpressionEN6cashew3RefEjEED2Ev,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEED0Ev,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7destroyEv,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE18destroy_deallocateEv,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEED0Ev,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7destroyEv,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE18destroy_deallocateEv,__ZNSt3__110__function6__baseIFvvEED2Ev,__ZNSt3__110__function6__funcIZ16load_s_expr2wasmE3__4NS_9allocatorIS2_EEFvvEED0Ev,__ZNSt3__110__function6__funcIZ16load_s_expr2wasmE3__4NS_9allocatorIS2_EEFvvEE7destroyEv,__ZNSt3__110__function6__funcIZ16load_s_expr2wasmE3__4NS_9allocatorIS2_EEFvvEE18destroy_deallocateEv,__ZNSt3__110__function6__funcIZ16load_s_expr2wasmE3__4NS_9allocatorIS2_EEFvvEEclEv,__ZNSt3__110__function6__baseIFPN4wasm4PassEvEED2Ev,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEED0Ev,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7destroyEv,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE18destroy_deallocateEv,__ZN4wasm10WalkerPassINS_10WasmWalkerINS_11MergeBlocksEvEEED2Ev,__ZN4wasm11MergeBlocksD0Ev
+,__ZThn4_N4wasm11MergeBlocksD1Ev,__ZThn4_N4wasm11MergeBlocksD0Ev,__ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEEEvED2Ev,__ZN4wasm11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEED0Ev,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_15RemoveUnusedBrsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEED0Ev,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_15RemoveUnusedBrsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7destroyEv,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_15RemoveUnusedBrsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE18destroy_deallocateEv,__ZN4wasm10WalkerPassINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEED2Ev,__ZN4wasm15RemoveUnusedBrsD0Ev,__ZThn4_N4wasm15RemoveUnusedBrsD1Ev,__ZThn4_N4wasm15RemoveUnusedBrsD0Ev,__ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEEEvED2Ev,__ZN4wasm11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEED0Ev,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_17RemoveUnusedNamesEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEED0Ev,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_17RemoveUnusedNamesEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7destroyEv,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_17RemoveUnusedNamesEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE18destroy_deallocateEv,__ZN4wasm17RemoveUnusedNamesD2Ev,__ZN4wasm17RemoveUnusedNamesD0Ev,__ZThn4_N4wasm17RemoveUnusedNamesD1Ev,__ZThn4_N4wasm17RemoveUnusedNamesD0Ev,__ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEEEvED2Ev,__ZN4wasm11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEED0Ev,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14PostEmscriptenEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEED0Ev,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14PostEmscriptenEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7destroyEv,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14PostEmscriptenEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE18destroy_deallocateEv,__ZN4wasm10WalkerPassINS_10WasmWalkerINS_14PostEmscriptenEvEEED2Ev,__ZN4wasm14PostEmscriptenD0Ev,__ZThn4_N4wasm14PostEmscriptenD1Ev,__ZThn4_N4wasm14PostEmscriptenD0Ev,__ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEEEvED2Ev
+,__ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEED0Ev,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocalsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEED0Ev,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocalsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7destroyEv,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocalsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE18destroy_deallocateEv,__ZN4wasm10WalkerPassINS_10WasmWalkerINS_14SimplifyLocalsEvEEED2Ev,__ZN4wasm14SimplifyLocalsD0Ev,__ZThn4_N4wasm14SimplifyLocalsD1Ev,__ZThn4_N4wasm14SimplifyLocalsD0Ev,__ZN4wasm11WasmVisitorINS_11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEEEvED2Ev,__ZN4wasm11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEED0Ev,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEED2Ev,__ZNSt3__110__stdinbufIcED0Ev,__ZNSt3__111__stdoutbufIcED0Ev,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEED2Ev,__ZNSt3__110__stdinbufIwED0Ev,__ZNSt3__111__stdoutbufIwED0Ev,__ZNSt3__18ios_baseD2Ev,__ZNSt3__18ios_baseD0Ev,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEED0Ev,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEED0Ev,__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEED1Ev,__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEED0Ev,__ZTv0_n12_NSt3__113basic_istreamIwNS_11char_traitsIwEEED1Ev,__ZTv0_n12_NSt3__113basic_istreamIwNS_11char_traitsIwEEED0Ev,__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEED1Ev,__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEED0Ev,__ZTv0_n12_NSt3__113basic_ostreamIwNS_11char_traitsIwEEED1Ev,__ZTv0_n12_NSt3__113basic_ostreamIwNS_11char_traitsIwEEED0Ev,__ZNSt3__17collateIcED2Ev,__ZNSt3__17collateIcED0Ev
+,__ZNSt3__16locale5facet16__on_zero_sharedEv,__ZNSt3__17collateIwED2Ev,__ZNSt3__17collateIwED0Ev,__ZNSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev,__ZNSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev,__ZNSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev,__ZNSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev,__ZNSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev,__ZNSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev,__ZNSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev,__ZNSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev,__ZNSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev,__ZNSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev,__ZNSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev,__ZNSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev,__ZNSt3__18time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev,__ZNSt3__18time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev,__ZNSt3__18time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev,__ZNSt3__18time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev,__ZNSt3__110moneypunctIcLb0EED2Ev,__ZNSt3__110moneypunctIcLb0EED0Ev,__ZNSt3__110moneypunctIcLb1EED2Ev,__ZNSt3__110moneypunctIcLb1EED0Ev,__ZNSt3__110moneypunctIwLb0EED2Ev,__ZNSt3__110moneypunctIwLb0EED0Ev,__ZNSt3__110moneypunctIwLb1EED2Ev,__ZNSt3__110moneypunctIwLb1EED0Ev,__ZNSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev,__ZNSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev,__ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev
+,__ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev,__ZNSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev,__ZNSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev,__ZNSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev,__ZNSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev,__ZNSt3__18messagesIcED2Ev,__ZNSt3__18messagesIcED0Ev,__ZNSt3__18messagesIwED2Ev,__ZNSt3__18messagesIwED0Ev,__ZNSt3__16locale5facetD2Ev,__ZNSt3__116__narrow_to_utf8ILj32EED0Ev,__ZNSt3__117__widen_from_utf8ILj32EED0Ev,__ZNSt3__17codecvtIwc11__mbstate_tED2Ev,__ZNSt3__17codecvtIwc11__mbstate_tED0Ev,__ZNSt3__16locale5__impD2Ev,__ZNSt3__16locale5__impD0Ev,__ZNSt3__15ctypeIcED2Ev,__ZNSt3__15ctypeIcED0Ev,__ZNSt3__18numpunctIcED2Ev,__ZNSt3__18numpunctIcED0Ev,__ZNSt3__18numpunctIwED2Ev,__ZNSt3__18numpunctIwED0Ev,__ZNSt3__16locale5facetD0Ev,__ZNSt3__15ctypeIwED0Ev,__ZNSt3__17codecvtIcc11__mbstate_tED0Ev,__ZNSt3__17codecvtIDsc11__mbstate_tED0Ev,__ZNSt3__17codecvtIDic11__mbstate_tED0Ev,__ZN10__cxxabiv116__shim_type_infoD2Ev,__ZN10__cxxabiv117__class_type_infoD0Ev,__ZNK10__cxxabiv116__shim_type_info5noop1Ev
+,__ZNK10__cxxabiv116__shim_type_info5noop2Ev,__ZN10__cxxabiv120__si_class_type_infoD0Ev,__ZNSt9bad_allocD2Ev,__ZNSt9bad_allocD0Ev,__ZN10__cxxabiv121__vmi_class_type_infoD0Ev,__ZNSt3__113__vector_baseIN6cashew3RefENS_9allocatorIS2_EEED2Ev,__ZNSt3__113unordered_setIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev,__ZNSt3__113__vector_baseIN6cashew13OperatorClassENS_9allocatorIS2_EEED2Ev,__ZNSt3__113__vector_baseINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEED2Ev,__ZN6cashew5ArenaD2Ev,_cleanup_418,_cleanup_435,__ZNSt3__18ios_base4InitD2Ev,__ZNSt3__16locale2id6__initEv,__ZNSt3__117__call_once_proxyINS_5tupleIJNS_12_GLOBAL__N_111__fake_bindEEEEEEvPv,___cxx_global_array_dtor,___cxx_global_array_dtor_61,___cxx_global_array_dtor_109,__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev,___cxx_global_array_dtor_46,___cxx_global_array_dtor_85,___cxx_global_array_dtor_112,__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev,__ZNSt3__112__do_nothingEPv,_free,__ZN10__cxxabiv112_GLOBAL__N_19destruct_EPv,b4,b4,b4,b4
,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4
,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4];
var FUNCTION_TABLE_vii = [b5,__ZN4wasm10WasmWalkerIZNS_15Asm2WasmBuilder8optimizeEvE19BlockBreakOptimizervE4walkERPNS_10ExpressionE,__ZN4wasm10WasmWalkerIZNS_15Asm2WasmBuilder8optimizeEvE19BlockBreakOptimizervE9startWalkEPNS_8FunctionE,__ZN4wasm10WasmWalkerIZNS_15Asm2WasmBuilder8optimizeEvE19BlockBreakOptimizervE9startWalkEPNS_6ModuleE,__ZN4wasm10WasmWalkerIZZNS_15Asm2WasmBuilder8optimizeEvEN19BlockBreakOptimizer10visitBlockEPNS_5BlockEE11BreakSeekervE4walkERPNS_10ExpressionE,__ZN4wasm10WasmWalkerIZZNS_15Asm2WasmBuilder8optimizeEvEN19BlockBreakOptimizer10visitBlockEPNS_5BlockEE11BreakSeekervE9startWalkEPNS_8FunctionE,__ZN4wasm10WasmWalkerIZZNS_15Asm2WasmBuilder8optimizeEvEN19BlockBreakOptimizer10visitBlockEPNS_5BlockEE11BreakSeekervE9startWalkEPNS_6ModuleE,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE5imbueERKNS_6localeE,__ZZ11instantiateEN19JSExternalInterface4initERN4wasm6ModuleE,__ZZ11instantiateEN19JSExternalInterface4trapEPKc,__ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE7__cloneEPNS0_6__baseISB_EE,__ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7__cloneEPNS0_6__baseISB_EE,__ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7__cloneEPNS0_6__baseISB_EE,__ZNKSt3__110__function6__funcIZ16load_s_expr2wasmE3__4NS_9allocatorIS2_EEFvvEE7__cloneEPNS0_6__baseIS5_EE,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEPNS0_6__baseISD_EE,__ZN4wasm10WasmWalkerINS_11MergeBlocksEvE4walkERPNS_10ExpressionE,__ZN4wasm10WasmWalkerINS_11MergeBlocksEvE9startWalkEPNS_8FunctionE,__ZN4wasm10WasmWalkerINS_11MergeBlocksEvE9startWalkEPNS_6ModuleE,__ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEEEvE4walkERPNS_10ExpressionE,__ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEEEvE9startWalkEPNS_8FunctionE,__ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_11MergeBlocksEvEEEEvE9startWalkEPNS_6ModuleE,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_15RemoveUnusedBrsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEPNS0_6__baseISD_EE,__ZN4wasm10WasmWalkerINS_15RemoveUnusedBrsEvE4walkERPNS_10ExpressionE,__ZN4wasm10WasmWalkerINS_15RemoveUnusedBrsEvE9startWalkEPNS_8FunctionE,__ZN4wasm10WasmWalkerINS_15RemoveUnusedBrsEvE9startWalkEPNS_6ModuleE,__ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEEEvE4walkERPNS_10ExpressionE,__ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEEEvE9startWalkEPNS_8FunctionE,__ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEEEvE9startWalkEPNS_6ModuleE,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_17RemoveUnusedNamesEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEPNS0_6__baseISD_EE
-,__ZN4wasm10WasmWalkerINS_17RemoveUnusedNamesEvE4walkERPNS_10ExpressionE,__ZN4wasm10WasmWalkerINS_17RemoveUnusedNamesEvE9startWalkEPNS_8FunctionE,__ZN4wasm10WasmWalkerINS_17RemoveUnusedNamesEvE9startWalkEPNS_6ModuleE,__ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEEEvE4walkERPNS_10ExpressionE,__ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEEEvE9startWalkEPNS_8FunctionE,__ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEEEvE9startWalkEPNS_6ModuleE,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocalsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEPNS0_6__baseISD_EE,__ZN4wasm10WasmWalkerINS_14SimplifyLocalsEvE4walkERPNS_10ExpressionE,__ZN4wasm10WasmWalkerINS_14SimplifyLocalsEvE9startWalkEPNS_8FunctionE,__ZN4wasm10WasmWalkerINS_14SimplifyLocalsEvE9startWalkEPNS_6ModuleE,__ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEEEvE4walkERPNS_10ExpressionE,__ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEEEvE9startWalkEPNS_8FunctionE,__ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEEEvE9startWalkEPNS_6ModuleE,__ZNSt3__110__stdinbufIcE5imbueERKNS_6localeE,__ZNSt3__111__stdoutbufIcE5imbueERKNS_6localeE,__ZNSt3__110__stdinbufIwE5imbueERKNS_6localeE,__ZNSt3__111__stdoutbufIwE5imbueERKNS_6localeE,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE5imbueERKNS_6localeE,__ZNKSt3__110moneypunctIcLb0EE11do_groupingEv,__ZNKSt3__110moneypunctIcLb0EE14do_curr_symbolEv,__ZNKSt3__110moneypunctIcLb0EE16do_positive_signEv,__ZNKSt3__110moneypunctIcLb0EE16do_negative_signEv,__ZNKSt3__110moneypunctIcLb0EE13do_pos_formatEv,__ZNKSt3__110moneypunctIcLb0EE13do_neg_formatEv,__ZNKSt3__110moneypunctIcLb1EE11do_groupingEv,__ZNKSt3__110moneypunctIcLb1EE14do_curr_symbolEv,__ZNKSt3__110moneypunctIcLb1EE16do_positive_signEv,__ZNKSt3__110moneypunctIcLb1EE16do_negative_signEv,__ZNKSt3__110moneypunctIcLb1EE13do_pos_formatEv,__ZNKSt3__110moneypunctIcLb1EE13do_neg_formatEv
-,__ZNKSt3__110moneypunctIwLb0EE11do_groupingEv,__ZNKSt3__110moneypunctIwLb0EE14do_curr_symbolEv,__ZNKSt3__110moneypunctIwLb0EE16do_positive_signEv,__ZNKSt3__110moneypunctIwLb0EE16do_negative_signEv,__ZNKSt3__110moneypunctIwLb0EE13do_pos_formatEv,__ZNKSt3__110moneypunctIwLb0EE13do_neg_formatEv,__ZNKSt3__110moneypunctIwLb1EE11do_groupingEv,__ZNKSt3__110moneypunctIwLb1EE14do_curr_symbolEv,__ZNKSt3__110moneypunctIwLb1EE16do_positive_signEv,__ZNKSt3__110moneypunctIwLb1EE16do_negative_signEv,__ZNKSt3__110moneypunctIwLb1EE13do_pos_formatEv,__ZNKSt3__110moneypunctIwLb1EE13do_neg_formatEv,__ZNKSt3__18messagesIcE8do_closeEi,__ZNKSt3__18messagesIwE8do_closeEi,__ZNKSt3__18numpunctIcE11do_groupingEv,__ZNKSt3__18numpunctIcE11do_truenameEv,__ZNKSt3__18numpunctIcE12do_falsenameEv,__ZNKSt3__18numpunctIwE11do_groupingEv,__ZNKSt3__18numpunctIwE11do_truenameEv,__ZNKSt3__18numpunctIwE12do_falsenameEv,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5
+,__ZN4wasm10WasmWalkerINS_17RemoveUnusedNamesEvE4walkERPNS_10ExpressionE,__ZN4wasm10WasmWalkerINS_17RemoveUnusedNamesEvE9startWalkEPNS_8FunctionE,__ZN4wasm10WasmWalkerINS_17RemoveUnusedNamesEvE9startWalkEPNS_6ModuleE,__ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEEEvE4walkERPNS_10ExpressionE,__ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEEEvE9startWalkEPNS_8FunctionE,__ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEEEvE9startWalkEPNS_6ModuleE,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14PostEmscriptenEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEPNS0_6__baseISD_EE,__ZN4wasm10WasmWalkerINS_14PostEmscriptenEvE4walkERPNS_10ExpressionE,__ZN4wasm10WasmWalkerINS_14PostEmscriptenEvE9startWalkEPNS_8FunctionE,__ZN4wasm10WasmWalkerINS_14PostEmscriptenEvE9startWalkEPNS_6ModuleE,__ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEEEvE4walkERPNS_10ExpressionE,__ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEEEvE9startWalkEPNS_8FunctionE,__ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_14PostEmscriptenEvEEEEvE9startWalkEPNS_6ModuleE,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocalsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEPNS0_6__baseISD_EE,__ZN4wasm10WasmWalkerINS_14SimplifyLocalsEvE4walkERPNS_10ExpressionE,__ZN4wasm10WasmWalkerINS_14SimplifyLocalsEvE9startWalkEPNS_8FunctionE,__ZN4wasm10WasmWalkerINS_14SimplifyLocalsEvE9startWalkEPNS_6ModuleE,__ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEEEvE4walkERPNS_10ExpressionE,__ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEEEvE9startWalkEPNS_8FunctionE,__ZN4wasm14WasmWalkerBaseINS_11ChildWalkerINS_10WasmWalkerINS_14SimplifyLocalsEvEEEEvE9startWalkEPNS_6ModuleE,__ZNSt3__110__stdinbufIcE5imbueERKNS_6localeE,__ZNSt3__111__stdoutbufIcE5imbueERKNS_6localeE,__ZNSt3__110__stdinbufIwE5imbueERKNS_6localeE,__ZNSt3__111__stdoutbufIwE5imbueERKNS_6localeE,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE5imbueERKNS_6localeE,__ZNKSt3__110moneypunctIcLb0EE11do_groupingEv,__ZNKSt3__110moneypunctIcLb0EE14do_curr_symbolEv,__ZNKSt3__110moneypunctIcLb0EE16do_positive_signEv,__ZNKSt3__110moneypunctIcLb0EE16do_negative_signEv,__ZNKSt3__110moneypunctIcLb0EE13do_pos_formatEv
+,__ZNKSt3__110moneypunctIcLb0EE13do_neg_formatEv,__ZNKSt3__110moneypunctIcLb1EE11do_groupingEv,__ZNKSt3__110moneypunctIcLb1EE14do_curr_symbolEv,__ZNKSt3__110moneypunctIcLb1EE16do_positive_signEv,__ZNKSt3__110moneypunctIcLb1EE16do_negative_signEv,__ZNKSt3__110moneypunctIcLb1EE13do_pos_formatEv,__ZNKSt3__110moneypunctIcLb1EE13do_neg_formatEv,__ZNKSt3__110moneypunctIwLb0EE11do_groupingEv,__ZNKSt3__110moneypunctIwLb0EE14do_curr_symbolEv,__ZNKSt3__110moneypunctIwLb0EE16do_positive_signEv,__ZNKSt3__110moneypunctIwLb0EE16do_negative_signEv,__ZNKSt3__110moneypunctIwLb0EE13do_pos_formatEv,__ZNKSt3__110moneypunctIwLb0EE13do_neg_formatEv,__ZNKSt3__110moneypunctIwLb1EE11do_groupingEv,__ZNKSt3__110moneypunctIwLb1EE14do_curr_symbolEv,__ZNKSt3__110moneypunctIwLb1EE16do_positive_signEv,__ZNKSt3__110moneypunctIwLb1EE16do_negative_signEv,__ZNKSt3__110moneypunctIwLb1EE13do_pos_formatEv,__ZNKSt3__110moneypunctIwLb1EE13do_neg_formatEv,__ZNKSt3__18messagesIcE8do_closeEi,__ZNKSt3__18messagesIwE8do_closeEi,__ZNKSt3__18numpunctIcE11do_groupingEv,__ZNKSt3__18numpunctIcE11do_truenameEv,__ZNKSt3__18numpunctIcE12do_falsenameEv,__ZNKSt3__18numpunctIwE11do_groupingEv,__ZNKSt3__18numpunctIwE11do_truenameEv,__ZNKSt3__18numpunctIwE12do_falsenameEv,b5,b5,b5
,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5,b5
,b5,b5,b5,b5,b5,b5,b5,b5,b5];
var FUNCTION_TABLE_iiiiiii = [b6,__ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRb,__ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRl,__ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRx,__ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRt,__ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjS8_,__ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRm,__ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRy,__ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRf,__ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRd,__ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRe,__ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRPv,__ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRb,__ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRl,__ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRx,__ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRt,__ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjS8_,__ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRm,__ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRy,__ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRf,__ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRd,__ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRe,__ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRPv,__ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcx,__ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcy,__ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwx,__ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwy,__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11do_get_timeES4_S4_RNS_8ios_baseERjP2tm,__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11do_get_dateES4_S4_RNS_8ios_baseERjP2tm
,__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE14do_get_weekdayES4_S4_RNS_8ios_baseERjP2tm,__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE16do_get_monthnameES4_S4_RNS_8ios_baseERjP2tm,__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11do_get_yearES4_S4_RNS_8ios_baseERjP2tm,__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11do_get_timeES4_S4_RNS_8ios_baseERjP2tm,__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11do_get_dateES4_S4_RNS_8ios_baseERjP2tm,__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE14do_get_weekdayES4_S4_RNS_8ios_baseERjP2tm,__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE16do_get_monthnameES4_S4_RNS_8ios_baseERjP2tm,__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11do_get_yearES4_S4_RNS_8ios_baseERjP2tm,__ZNKSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_bRNS_8ios_baseEcRKNS_12basic_stringIcS3_NS_9allocatorIcEEEE,__ZNKSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_bRNS_8ios_baseEwRKNS_12basic_stringIwS3_NS_9allocatorIwEEEE,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6
,b6,b6,b6,b6,b6];
var FUNCTION_TABLE_iiiiid = [b7,__ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcd,__ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEce,__ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwd,__ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwe,b7,b7,b7];
-var FUNCTION_TABLE_ii = [b8,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE4syncEv,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE9showmanycEv,__ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE9underflowEv,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE5uflowEv,__ZNKSt9exception4whatEv,__ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE7__cloneEv,__ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE11target_typeEv,__ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7__cloneEv,__ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE11target_typeEv,__ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7__cloneEv,__ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE11target_typeEv,__ZNKSt3__110__function6__funcIZ16load_s_expr2wasmE3__4NS_9allocatorIS2_EEFvvEE7__cloneEv,__ZNKSt3__110__function6__funcIZ16load_s_expr2wasmE3__4NS_9allocatorIS2_EEFvvEE11target_typeEv,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEv,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEEclEv,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE11target_typeEv,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_15RemoveUnusedBrsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEv,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_15RemoveUnusedBrsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEEclEv,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_15RemoveUnusedBrsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE11target_typeEv,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_17RemoveUnusedNamesEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEv,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_17RemoveUnusedNamesEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEEclEv,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_17RemoveUnusedNamesEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE11target_typeEv,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocalsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEv,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocalsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEEclEv,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocalsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE11target_typeEv,___stdio_close,__ZNSt3__110__stdinbufIcE9underflowEv,__ZNSt3__110__stdinbufIcE5uflowEv
-,__ZNSt3__111__stdoutbufIcE4syncEv,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE9underflowEv,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE4syncEv,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE9showmanycEv,__ZNSt3__110__stdinbufIwE9underflowEv,__ZNSt3__110__stdinbufIwE5uflowEv,__ZNSt3__111__stdoutbufIwE4syncEv,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE9underflowEv,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE5uflowEv,__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13do_date_orderEv,__ZNKSt3__120__time_get_c_storageIcE7__weeksEv,__ZNKSt3__120__time_get_c_storageIcE8__monthsEv,__ZNKSt3__120__time_get_c_storageIcE7__am_pmEv,__ZNKSt3__120__time_get_c_storageIcE3__cEv,__ZNKSt3__120__time_get_c_storageIcE3__rEv,__ZNKSt3__120__time_get_c_storageIcE3__xEv,__ZNKSt3__120__time_get_c_storageIcE3__XEv,__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13do_date_orderEv,__ZNKSt3__120__time_get_c_storageIwE7__weeksEv,__ZNKSt3__120__time_get_c_storageIwE8__monthsEv,__ZNKSt3__120__time_get_c_storageIwE7__am_pmEv,__ZNKSt3__120__time_get_c_storageIwE3__cEv,__ZNKSt3__120__time_get_c_storageIwE3__rEv,__ZNKSt3__120__time_get_c_storageIwE3__xEv,__ZNKSt3__120__time_get_c_storageIwE3__XEv,__ZNKSt3__110moneypunctIcLb0EE16do_decimal_pointEv,__ZNKSt3__110moneypunctIcLb0EE16do_thousands_sepEv,__ZNKSt3__110moneypunctIcLb0EE14do_frac_digitsEv,__ZNKSt3__110moneypunctIcLb1EE16do_decimal_pointEv,__ZNKSt3__110moneypunctIcLb1EE16do_thousands_sepEv
-,__ZNKSt3__110moneypunctIcLb1EE14do_frac_digitsEv,__ZNKSt3__110moneypunctIwLb0EE16do_decimal_pointEv,__ZNKSt3__110moneypunctIwLb0EE16do_thousands_sepEv,__ZNKSt3__110moneypunctIwLb0EE14do_frac_digitsEv,__ZNKSt3__110moneypunctIwLb1EE16do_decimal_pointEv,__ZNKSt3__110moneypunctIwLb1EE16do_thousands_sepEv,__ZNKSt3__110moneypunctIwLb1EE14do_frac_digitsEv,__ZNKSt3__17codecvtIDic11__mbstate_tE11do_encodingEv,__ZNKSt3__17codecvtIDic11__mbstate_tE16do_always_noconvEv,__ZNKSt3__17codecvtIDic11__mbstate_tE13do_max_lengthEv,__ZNKSt3__17codecvtIwc11__mbstate_tE11do_encodingEv,__ZNKSt3__17codecvtIwc11__mbstate_tE16do_always_noconvEv,__ZNKSt3__17codecvtIwc11__mbstate_tE13do_max_lengthEv,__ZNKSt3__18numpunctIcE16do_decimal_pointEv,__ZNKSt3__18numpunctIcE16do_thousands_sepEv,__ZNKSt3__18numpunctIwE16do_decimal_pointEv,__ZNKSt3__18numpunctIwE16do_thousands_sepEv,__ZNKSt3__17codecvtIcc11__mbstate_tE11do_encodingEv,__ZNKSt3__17codecvtIcc11__mbstate_tE16do_always_noconvEv,__ZNKSt3__17codecvtIcc11__mbstate_tE13do_max_lengthEv,__ZNKSt3__17codecvtIDsc11__mbstate_tE11do_encodingEv,__ZNKSt3__17codecvtIDsc11__mbstate_tE16do_always_noconvEv,__ZNKSt3__17codecvtIDsc11__mbstate_tE13do_max_lengthEv,__ZNKSt9bad_alloc4whatEv,b8,b8,b8,b8,b8,b8
+var FUNCTION_TABLE_ii = [b8,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE4syncEv,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE9showmanycEv,__ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE9underflowEv,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE5uflowEv,__ZNKSt9exception4whatEv,__ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE7__cloneEv,__ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE11target_typeEv,__ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7__cloneEv,__ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE11target_typeEv,__ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7__cloneEv,__ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE11target_typeEv,__ZNKSt3__110__function6__funcIZ16load_s_expr2wasmE3__4NS_9allocatorIS2_EEFvvEE7__cloneEv,__ZNKSt3__110__function6__funcIZ16load_s_expr2wasmE3__4NS_9allocatorIS2_EEFvvEE11target_typeEv,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEv,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEEclEv,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE11target_typeEv,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_15RemoveUnusedBrsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEv,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_15RemoveUnusedBrsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEEclEv,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_15RemoveUnusedBrsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE11target_typeEv,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_17RemoveUnusedNamesEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEv,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_17RemoveUnusedNamesEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEEclEv,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_17RemoveUnusedNamesEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE11target_typeEv,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14PostEmscriptenEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEv,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14PostEmscriptenEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEEclEv,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14PostEmscriptenEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE11target_typeEv,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocalsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE7__cloneEv,__ZNSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocalsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEEclEv,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocalsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE11target_typeEv
+,___stdio_close,__ZNSt3__110__stdinbufIcE9underflowEv,__ZNSt3__110__stdinbufIcE5uflowEv,__ZNSt3__111__stdoutbufIcE4syncEv,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE9underflowEv,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE4syncEv,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE9showmanycEv,__ZNSt3__110__stdinbufIwE9underflowEv,__ZNSt3__110__stdinbufIwE5uflowEv,__ZNSt3__111__stdoutbufIwE4syncEv,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE9underflowEv,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE5uflowEv,__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13do_date_orderEv,__ZNKSt3__120__time_get_c_storageIcE7__weeksEv,__ZNKSt3__120__time_get_c_storageIcE8__monthsEv,__ZNKSt3__120__time_get_c_storageIcE7__am_pmEv,__ZNKSt3__120__time_get_c_storageIcE3__cEv,__ZNKSt3__120__time_get_c_storageIcE3__rEv,__ZNKSt3__120__time_get_c_storageIcE3__xEv,__ZNKSt3__120__time_get_c_storageIcE3__XEv,__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13do_date_orderEv,__ZNKSt3__120__time_get_c_storageIwE7__weeksEv,__ZNKSt3__120__time_get_c_storageIwE8__monthsEv,__ZNKSt3__120__time_get_c_storageIwE7__am_pmEv,__ZNKSt3__120__time_get_c_storageIwE3__cEv,__ZNKSt3__120__time_get_c_storageIwE3__rEv,__ZNKSt3__120__time_get_c_storageIwE3__xEv,__ZNKSt3__120__time_get_c_storageIwE3__XEv,__ZNKSt3__110moneypunctIcLb0EE16do_decimal_pointEv,__ZNKSt3__110moneypunctIcLb0EE16do_thousands_sepEv
+,__ZNKSt3__110moneypunctIcLb0EE14do_frac_digitsEv,__ZNKSt3__110moneypunctIcLb1EE16do_decimal_pointEv,__ZNKSt3__110moneypunctIcLb1EE16do_thousands_sepEv,__ZNKSt3__110moneypunctIcLb1EE14do_frac_digitsEv,__ZNKSt3__110moneypunctIwLb0EE16do_decimal_pointEv,__ZNKSt3__110moneypunctIwLb0EE16do_thousands_sepEv,__ZNKSt3__110moneypunctIwLb0EE14do_frac_digitsEv,__ZNKSt3__110moneypunctIwLb1EE16do_decimal_pointEv,__ZNKSt3__110moneypunctIwLb1EE16do_thousands_sepEv,__ZNKSt3__110moneypunctIwLb1EE14do_frac_digitsEv,__ZNKSt3__17codecvtIDic11__mbstate_tE11do_encodingEv,__ZNKSt3__17codecvtIDic11__mbstate_tE16do_always_noconvEv,__ZNKSt3__17codecvtIDic11__mbstate_tE13do_max_lengthEv,__ZNKSt3__17codecvtIwc11__mbstate_tE11do_encodingEv,__ZNKSt3__17codecvtIwc11__mbstate_tE16do_always_noconvEv,__ZNKSt3__17codecvtIwc11__mbstate_tE13do_max_lengthEv,__ZNKSt3__18numpunctIcE16do_decimal_pointEv,__ZNKSt3__18numpunctIcE16do_thousands_sepEv,__ZNKSt3__18numpunctIwE16do_decimal_pointEv,__ZNKSt3__18numpunctIwE16do_thousands_sepEv,__ZNKSt3__17codecvtIcc11__mbstate_tE11do_encodingEv,__ZNKSt3__17codecvtIcc11__mbstate_tE16do_always_noconvEv,__ZNKSt3__17codecvtIcc11__mbstate_tE13do_max_lengthEv,__ZNKSt3__17codecvtIDsc11__mbstate_tE11do_encodingEv,__ZNKSt3__17codecvtIDsc11__mbstate_tE16do_always_noconvEv,__ZNKSt3__17codecvtIDsc11__mbstate_tE13do_max_lengthEv,__ZNKSt9bad_alloc4whatEv,b8,b8,b8
,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8
,b8,b8,b8,b8,b8,b8,b8,b8,b8];
-var FUNCTION_TABLE_viii = [b9,__ZZ11instantiateEN19JSExternalInterface10growMemoryEjj,__ZN4wasm4Pass7prepareEPNS_10PassRunnerEPNS_6ModuleE,__ZN4wasm10WalkerPassINS_10WasmWalkerINS_11MergeBlocksEvEEE3runEPNS_10PassRunnerEPNS_6ModuleE,__ZN4wasm4Pass8finalizeEPNS_10PassRunnerEPNS_6ModuleE,__ZN4wasm10WalkerPassINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE3runEPNS_10PassRunnerEPNS_6ModuleE,__ZN4wasm10WalkerPassINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE3runEPNS_10PassRunnerEPNS_6ModuleE,__ZN4wasm10WalkerPassINS_10WasmWalkerINS_14SimplifyLocalsEvEEE3runEPNS_10PassRunnerEPNS_6ModuleE];
+var FUNCTION_TABLE_viii = [b9,__ZZ11instantiateEN19JSExternalInterface10growMemoryEjj,__ZN4wasm4Pass7prepareEPNS_10PassRunnerEPNS_6ModuleE,__ZN4wasm10WalkerPassINS_10WasmWalkerINS_11MergeBlocksEvEEE3runEPNS_10PassRunnerEPNS_6ModuleE,__ZN4wasm4Pass8finalizeEPNS_10PassRunnerEPNS_6ModuleE,__ZN4wasm10WalkerPassINS_10WasmWalkerINS_15RemoveUnusedBrsEvEEE3runEPNS_10PassRunnerEPNS_6ModuleE,__ZN4wasm10WalkerPassINS_10WasmWalkerINS_17RemoveUnusedNamesEvEEE3runEPNS_10PassRunnerEPNS_6ModuleE,__ZN4wasm10WalkerPassINS_10WasmWalkerINS_14PostEmscriptenEvEEE3runEPNS_10PassRunnerEPNS_6ModuleE,__ZN4wasm10WalkerPassINS_10WasmWalkerINS_14SimplifyLocalsEvEEE3runEPNS_10PassRunnerEPNS_6ModuleE,b9,b9,b9,b9,b9,b9,b9];
var FUNCTION_TABLE_v = [b10,__ZL25default_terminate_handlerv,__ZN10__cxxabiv112_GLOBAL__N_110construct_Ev,b10];
var FUNCTION_TABLE_iiiiiiiii = [b11,__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjP2tmcc,__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjP2tmcc,__ZNKSt3__17codecvtIDic11__mbstate_tE6do_outERS1_PKDiS5_RS5_PcS7_RS7_,__ZNKSt3__17codecvtIDic11__mbstate_tE5do_inERS1_PKcS5_RS5_PDiS7_RS7_,__ZNKSt3__17codecvtIwc11__mbstate_tE6do_outERS1_PKwS5_RS5_PcS7_RS7_,__ZNKSt3__17codecvtIwc11__mbstate_tE5do_inERS1_PKcS5_RS5_PwS7_RS7_,__ZNKSt3__17codecvtIcc11__mbstate_tE6do_outERS1_PKcS5_RS5_PcS7_RS7_,__ZNKSt3__17codecvtIcc11__mbstate_tE5do_inERS1_PKcS5_RS5_PcS7_RS7_,__ZNKSt3__17codecvtIDsc11__mbstate_tE6do_outERS1_PKDsS5_RS5_PcS7_RS7_,__ZNKSt3__17codecvtIDsc11__mbstate_tE5do_inERS1_PKcS5_RS5_PDsS7_RS7_,b11,b11,b11,b11,b11];
var FUNCTION_TABLE_iiiii = [b12,__ZNKSt3__15ctypeIcE8do_widenEPKcS3_Pc,__ZNKSt3__15ctypeIwE5do_isEPKwS3_Pt,__ZNKSt3__15ctypeIwE10do_scan_isEtPKwS3_,__ZNKSt3__15ctypeIwE11do_scan_notEtPKwS3_,__ZNKSt3__15ctypeIwE8do_widenEPKcS3_Pw,b12,b12];
var FUNCTION_TABLE_viiiiii = [b13,__ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE7seekoffExNS_8ios_base7seekdirEj,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE7seekoffExNS_8ios_base7seekdirEj,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE7seekoffExNS_8ios_base7seekdirEj,__ZNKSt3__18messagesIcE6do_getEiiiRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE,__ZNKSt3__18messagesIwE6do_getEiiiRKNS_12basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEE,__ZNK10__cxxabiv117__class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib,__ZNK10__cxxabiv120__si_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib,__ZNK10__cxxabiv121__vmi_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib,b13,b13,b13,b13,b13,b13,b13];
-var FUNCTION_TABLE_iii = [b14,__ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE9pbackfailEi,__ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE8overflowEi,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EEclEOS5_,__ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE6targetERKSt9type_info,__ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE6targetERKSt9type_info,__ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE6targetERKSt9type_info,__ZNKSt3__110__function6__funcIZ16load_s_expr2wasmE3__4NS_9allocatorIS2_EEFvvEE6targetERKSt9type_info,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE6targetERKSt9type_info,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_15RemoveUnusedBrsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE6targetERKSt9type_info,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_17RemoveUnusedNamesEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE6targetERKSt9type_info,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocalsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE6targetERKSt9type_info,__ZNSt3__110__stdinbufIcE9pbackfailEi,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE8overflowEi,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE9pbackfailEi,__ZNSt3__111__stdoutbufIcE8overflowEi,__ZNSt3__110__stdinbufIwE9pbackfailEj,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE8overflowEj,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE9pbackfailEj,__ZNSt3__111__stdoutbufIwE8overflowEj,__ZNKSt3__15ctypeIcE10do_toupperEc,__ZNKSt3__15ctypeIcE10do_tolowerEc,__ZNKSt3__15ctypeIcE8do_widenEc,__ZNKSt3__15ctypeIwE10do_toupperEw,__ZNKSt3__15ctypeIwE10do_tolowerEw,__ZNKSt3__15ctypeIwE8do_widenEc,b14,b14,b14
+var FUNCTION_TABLE_iii = [b14,__ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE9pbackfailEi,__ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE8overflowEi,__ZNSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EEclEOS5_,__ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE6targetERKSt9type_info,__ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE6targetERKSt9type_info,__ZNKSt3__110__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE6targetERKSt9type_info,__ZNKSt3__110__function6__funcIZ16load_s_expr2wasmE3__4NS_9allocatorIS2_EEFvvEE6targetERKSt9type_info,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_11MergeBlocksEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE6targetERKSt9type_info,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_15RemoveUnusedBrsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE6targetERKSt9type_info,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_17RemoveUnusedNamesEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE6targetERKSt9type_info,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14PostEmscriptenEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE6targetERKSt9type_info,__ZNKSt3__110__function6__funcIZN4wasm12RegisterPassINS2_14SimplifyLocalsEEC1EPKcS7_EUlvE_NS_9allocatorIS8_EEFPNS2_4PassEvEE6targetERKSt9type_info,__ZNSt3__110__stdinbufIcE9pbackfailEi,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE8overflowEi,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE9pbackfailEi,__ZNSt3__111__stdoutbufIcE8overflowEi,__ZNSt3__110__stdinbufIwE9pbackfailEj,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE8overflowEj,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE9pbackfailEj,__ZNSt3__111__stdoutbufIwE8overflowEj,__ZNKSt3__15ctypeIcE10do_toupperEc,__ZNKSt3__15ctypeIcE10do_tolowerEc,__ZNKSt3__15ctypeIcE8do_widenEc,__ZNKSt3__15ctypeIwE10do_toupperEw,__ZNKSt3__15ctypeIwE10do_tolowerEw,__ZNKSt3__15ctypeIwE8do_widenEc,b14,b14
,b14,b14,b14];
var FUNCTION_TABLE_iiiiii = [b15,__ZNKSt3__17collateIcE10do_compareEPKcS3_S3_S3_,__ZNKSt3__17collateIwE10do_compareEPKwS3_S3_S3_,__ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcb,__ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcl,__ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcm,__ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcPKv,__ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwb,__ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwl,__ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwm,__ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwPKv,__ZNKSt3__17codecvtIDic11__mbstate_tE10do_unshiftERS1_PcS4_RS4_,__ZNKSt3__17codecvtIDic11__mbstate_tE9do_lengthERS1_PKcS5_j,__ZNKSt3__17codecvtIwc11__mbstate_tE10do_unshiftERS1_PcS4_RS4_,__ZNKSt3__17codecvtIwc11__mbstate_tE9do_lengthERS1_PKcS5_j,__ZNKSt3__15ctypeIcE9do_narrowEPKcS3_cPc,__ZNKSt3__15ctypeIwE9do_narrowEPKwS3_cPc,__ZNKSt3__17codecvtIcc11__mbstate_tE10do_unshiftERS1_PcS4_RS4_,__ZNKSt3__17codecvtIcc11__mbstate_tE9do_lengthERS1_PKcS5_j,__ZNKSt3__17codecvtIDsc11__mbstate_tE10do_unshiftERS1_PcS4_RS4_,__ZNKSt3__17codecvtIDsc11__mbstate_tE9do_lengthERS1_PKcS5_j,b15,b15,b15,b15,b15,b15,b15,b15
,b15,b15,b15];
var FUNCTION_TABLE_viiii = [b16,__ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE7seekposENS_4fposI11__mbstate_tEEj,__ZZ11instantiateEN19JSExternalInterface10callImportEPN4wasm6ImportERNSt3__16vectorINS0_7LiteralENS3_9allocatorIS5_EEEE,__ZZ11instantiateEN19JSExternalInterface4loadEPN4wasm4LoadEj,__ZZ11instantiateEN19JSExternalInterface5storeEPN4wasm5StoreEjNS0_7LiteralE,__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE7seekposENS_4fposI11__mbstate_tEEj,__ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE7seekposENS_4fposI11__mbstate_tEEj,__ZNKSt3__17collateIcE12do_transformEPKcS3_,__ZNKSt3__17collateIwE12do_transformEPKwS3_,__ZNK10__cxxabiv117__class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi,__ZNK10__cxxabiv120__si_class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi,__ZNK10__cxxabiv121__vmi_class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi,b16,b16,b16,b16];
- return { ___cxa_demangle: ___cxa_demangle, ___cxa_can_catch: ___cxa_can_catch, _fflush: _fflush, _load_asm2wasm: _load_asm2wasm, ___cxa_is_pointer_type: ___cxa_is_pointer_type, _load_s_expr2wasm: _load_s_expr2wasm, _memmove: _memmove, _bitshift64Ashr: _bitshift64Ashr, _instantiate: _instantiate, _memset: _memset, _malloc: _malloc, _i64Add: _i64Add, _memcpy: _memcpy, _bitshift64Lshr: _bitshift64Lshr, _free: _free, _bitshift64Shl: _bitshift64Shl, _i64Subtract: _i64Subtract, ___errno_location: ___errno_location, _call_from_js: _call_from_js, __GLOBAL__I_000101: __GLOBAL__I_000101, __GLOBAL__sub_I_wasm_js_cpp: __GLOBAL__sub_I_wasm_js_cpp, __GLOBAL__sub_I_MergeBlocks_cpp: __GLOBAL__sub_I_MergeBlocks_cpp, __GLOBAL__sub_I_RemoveUnusedBrs_cpp: __GLOBAL__sub_I_RemoveUnusedBrs_cpp, __GLOBAL__sub_I_RemoveUnusedNames_cpp: __GLOBAL__sub_I_RemoveUnusedNames_cpp, __GLOBAL__sub_I_SimplifyLocals_cpp: __GLOBAL__sub_I_SimplifyLocals_cpp, __GLOBAL__sub_I_parser_cpp: __GLOBAL__sub_I_parser_cpp, __GLOBAL__sub_I_simple_ast_cpp: __GLOBAL__sub_I_simple_ast_cpp, __GLOBAL__sub_I_optimizer_shared_cpp: __GLOBAL__sub_I_optimizer_shared_cpp, __GLOBAL__sub_I_iostream_cpp: __GLOBAL__sub_I_iostream_cpp, runPostSets: runPostSets, _emscripten_replace_memory: _emscripten_replace_memory, stackAlloc: stackAlloc, stackSave: stackSave, stackRestore: stackRestore, establishStackSpace: establishStackSpace, setThrew: setThrew, setTempRet0: setTempRet0, getTempRet0: getTempRet0, dynCall_iiiiiiii: dynCall_iiiiiiii, dynCall_iiii: dynCall_iiii, dynCall_viiiii: dynCall_viiiii, dynCall_iiiiiid: dynCall_iiiiiid, dynCall_vi: dynCall_vi, dynCall_vii: dynCall_vii, dynCall_iiiiiii: dynCall_iiiiiii, dynCall_iiiiid: dynCall_iiiiid, dynCall_ii: dynCall_ii, dynCall_viii: dynCall_viii, dynCall_v: dynCall_v, dynCall_iiiiiiiii: dynCall_iiiiiiiii, dynCall_iiiii: dynCall_iiiii, dynCall_viiiiii: dynCall_viiiiii, dynCall_iii: dynCall_iii, dynCall_iiiiii: dynCall_iiiiii, dynCall_viiii: dynCall_viiii };
+ return { ___cxa_demangle: ___cxa_demangle, ___cxa_can_catch: ___cxa_can_catch, _fflush: _fflush, _load_asm2wasm: _load_asm2wasm, ___cxa_is_pointer_type: ___cxa_is_pointer_type, _load_s_expr2wasm: _load_s_expr2wasm, _memmove: _memmove, _bitshift64Ashr: _bitshift64Ashr, _instantiate: _instantiate, _memset: _memset, _malloc: _malloc, _i64Add: _i64Add, _memcpy: _memcpy, _bitshift64Lshr: _bitshift64Lshr, _free: _free, _bitshift64Shl: _bitshift64Shl, _i64Subtract: _i64Subtract, ___errno_location: ___errno_location, _call_from_js: _call_from_js, __GLOBAL__I_000101: __GLOBAL__I_000101, __GLOBAL__sub_I_wasm_js_cpp: __GLOBAL__sub_I_wasm_js_cpp, __GLOBAL__sub_I_MergeBlocks_cpp: __GLOBAL__sub_I_MergeBlocks_cpp, __GLOBAL__sub_I_RemoveUnusedBrs_cpp: __GLOBAL__sub_I_RemoveUnusedBrs_cpp, __GLOBAL__sub_I_RemoveUnusedNames_cpp: __GLOBAL__sub_I_RemoveUnusedNames_cpp, __GLOBAL__sub_I_PostEmscripten_cpp: __GLOBAL__sub_I_PostEmscripten_cpp, __GLOBAL__sub_I_SimplifyLocals_cpp: __GLOBAL__sub_I_SimplifyLocals_cpp, __GLOBAL__sub_I_parser_cpp: __GLOBAL__sub_I_parser_cpp, __GLOBAL__sub_I_simple_ast_cpp: __GLOBAL__sub_I_simple_ast_cpp, __GLOBAL__sub_I_optimizer_shared_cpp: __GLOBAL__sub_I_optimizer_shared_cpp, __GLOBAL__sub_I_iostream_cpp: __GLOBAL__sub_I_iostream_cpp, runPostSets: runPostSets, _emscripten_replace_memory: _emscripten_replace_memory, stackAlloc: stackAlloc, stackSave: stackSave, stackRestore: stackRestore, establishStackSpace: establishStackSpace, setThrew: setThrew, setTempRet0: setTempRet0, getTempRet0: getTempRet0, dynCall_iiiiiiii: dynCall_iiiiiiii, dynCall_iiii: dynCall_iiii, dynCall_viiiii: dynCall_viiiii, dynCall_iiiiiid: dynCall_iiiiiid, dynCall_vi: dynCall_vi, dynCall_vii: dynCall_vii, dynCall_iiiiiii: dynCall_iiiiiii, dynCall_iiiiid: dynCall_iiiiid, dynCall_ii: dynCall_ii, dynCall_viii: dynCall_viii, dynCall_v: dynCall_v, dynCall_iiiiiiiii: dynCall_iiiiiiiii, dynCall_iiiii: dynCall_iiiii, dynCall_viiiiii: dynCall_viiiiii, dynCall_iii: dynCall_iii, dynCall_iiiiii: dynCall_iiiiii, dynCall_viiii: dynCall_viiii };
})
// EMSCRIPTEN_END_ASM
(Module.asmGlobalArg, Module.asmLibraryArg, buffer);
@@ -81207,6 +81369,7 @@ var _memset = Module["_memset"] = asm["_memset"];
var ___cxa_demangle = Module["___cxa_demangle"] = asm["___cxa_demangle"];
var _i64Add = Module["_i64Add"] = asm["_i64Add"];
var _memcpy = Module["_memcpy"] = asm["_memcpy"];
+var __GLOBAL__sub_I_PostEmscripten_cpp = Module["__GLOBAL__sub_I_PostEmscripten_cpp"] = asm["__GLOBAL__sub_I_PostEmscripten_cpp"];
var _i64Subtract = Module["_i64Subtract"] = asm["_i64Subtract"];
var __GLOBAL__sub_I_MergeBlocks_cpp = Module["__GLOBAL__sub_I_MergeBlocks_cpp"] = asm["__GLOBAL__sub_I_MergeBlocks_cpp"];
var _load_s_expr2wasm = Module["_load_s_expr2wasm"] = asm["_load_s_expr2wasm"];
@@ -81339,13 +81502,7 @@ function exit(status, implicit) {
if (Module["onExit"]) Module["onExit"](status);
}
if (ENVIRONMENT_IS_NODE) {
- process["stdout"]["once"]("drain", (function() {
- process["exit"](status);
- }));
- console.log(" ");
- setTimeout((function() {
- process["exit"](status);
- }), 500);
+ process["exit"](status);
} else if (ENVIRONMENT_IS_SHELL && typeof quit === "function") {
quit(status);
}
diff --git a/build.sh b/build.sh
index bcf8bc399..c4e4ad1a4 100755
--- a/build.sh
+++ b/build.sh
@@ -11,6 +11,6 @@ make -j
#echo "building s2wasm"
#g++ -O2 -std=c++11 src/s2wasm-main.cpp src/support/command-line.cpp src/support/file.cpp src/support/colors.cpp -Isrc/ -o bin/s2wasm
echo "building interpreter/js"
-em++ -std=c++11 src/wasm-js.cpp src/pass.cpp src/passes/MergeBlocks.cpp src/passes/RemoveUnusedBrs.cpp src/passes/RemoveUnusedNames.cpp src/passes/SimplifyLocals.cpp src/emscripten-optimizer/parser.cpp src/emscripten-optimizer/simple_ast.cpp src/emscripten-optimizer/optimizer-shared.cpp src/support/colors.cpp src/support/safe_integer.cpp -Isrc/ -o bin/wasm.js -s MODULARIZE=1 -s 'EXPORT_NAME="WasmJS"' --memory-init-file 0 -Oz -s ALLOW_MEMORY_GROWTH=1 -profiling -s DEMANGLE_SUPPORT=1 #-DWASM_JS_DEBUG -DWASM_INTERPRETER_DEBUG=2
+em++ -std=c++11 src/wasm-js.cpp src/pass.cpp src/passes/MergeBlocks.cpp src/passes/RemoveUnusedBrs.cpp src/passes/RemoveUnusedNames.cpp src/passes/PostEmscripten.cpp src/passes/SimplifyLocals.cpp src/emscripten-optimizer/parser.cpp src/emscripten-optimizer/simple_ast.cpp src/emscripten-optimizer/optimizer-shared.cpp src/support/colors.cpp src/support/safe_integer.cpp src/support/bits.cpp -Isrc/ -o bin/wasm.js -s MODULARIZE=1 -s 'EXPORT_NAME="WasmJS"' --memory-init-file 0 -Oz -s ALLOW_MEMORY_GROWTH=1 -profiling -s DEMANGLE_SUPPORT=1 #-DWASM_JS_DEBUG -DWASM_INTERPRETER_DEBUG=2
cat src/js/wasm.js-post.js >> bin/wasm.js
diff --git a/src/wasm-js.cpp b/src/wasm-js.cpp
index 067e3fdea..82a74d2ab 100644
--- a/src/wasm-js.cpp
+++ b/src/wasm-js.cpp
@@ -311,8 +311,8 @@ extern "C" void EMSCRIPTEN_KEEPALIVE call_from_js(const char *target) {
if (wasmJSDebug) std::cout << "call_from_js returning " << ret << '\n';
if (ret.type == none) EM_ASM({ Module['tempReturn'] = undefined });
- else if (ret.type == i32) EM_ASM_({ Module['tempReturn'] = $0 }, ret.i32);
- else if (ret.type == f32) EM_ASM_({ Module['tempReturn'] = $0 }, ret.f32);
- else if (ret.type == f64) EM_ASM_({ Module['tempReturn'] = $0 }, ret.f64);
+ else if (ret.type == i32) EM_ASM_({ Module['tempReturn'] = $0 }, ret.geti32());
+ else if (ret.type == f32) EM_ASM_({ Module['tempReturn'] = $0 }, ret.getf32());
+ else if (ret.type == f64) EM_ASM_({ Module['tempReturn'] = $0 }, ret.getf64());
else abort();
}