@rive-app/webgl-advanced 2.21.7 → 2.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,8 +5,8 @@ var Rive = (() => {
5
5
  return (
6
6
  function(moduleArg = {}) {
7
7
 
8
- var m = moduleArg, aa, ba;
9
- m.ready = new Promise((a, b) => {
8
+ var l = moduleArg, aa, ba;
9
+ l.ready = new Promise((a, b) => {
10
10
  aa = a;
11
11
  ba = b;
12
12
  });
@@ -15,9 +15,9 @@ function ca() {
15
15
  const k = d;
16
16
  c = b = 0;
17
17
  d = new Map();
18
- k.forEach(q => {
18
+ k.forEach(p => {
19
19
  try {
20
- q(g);
20
+ p(g);
21
21
  } catch (n) {
22
22
  console.error(n);
23
23
  }
@@ -42,10 +42,10 @@ function ca() {
42
42
  f.innerHTML = "RIVE FPS " + k.toFixed(1);
43
43
  }, document.body.appendChild(f));
44
44
  e = new function() {
45
- let k = 0, q = 0;
45
+ let k = 0, p = 0;
46
46
  this.Mb = function() {
47
47
  var n = performance.now();
48
- q ? (++k, n -= q, 1000 < n && (g(1000 * k / n), k = q = 0)) : (q = n, k = 0);
48
+ p ? (++k, n -= p, 1000 < n && (g(1000 * k / n), k = p = 0)) : (p = n, k = 0);
49
49
  };
50
50
  }();
51
51
  };
@@ -67,71 +67,75 @@ function da() {
67
67
  return b << 8;
68
68
  };
69
69
  }
70
- const ea = m.onRuntimeInitialized;
71
- m.onRuntimeInitialized = function() {
70
+ const ea = l.onRuntimeInitialized;
71
+ l.onRuntimeInitialized = function() {
72
72
  ea && ea();
73
- let a = m.decodeAudio;
74
- m.decodeAudio = function(d, e) {
75
- d = a(d);
76
- e(d);
73
+ let a = l.decodeAudio;
74
+ l.decodeAudio = function(e, f) {
75
+ e = a(e);
76
+ f(e);
77
77
  };
78
- let b = m.decodeFont;
79
- m.decodeFont = function(d, e) {
80
- d = b(d);
81
- e(d);
78
+ let b = l.decodeFont;
79
+ l.decodeFont = function(e, f) {
80
+ e = b(e);
81
+ f(e);
82
82
  };
83
- const c = m.FileAssetLoader;
84
- m.ptrToAsset = d => {
85
- let e = m.ptrToFileAsset(d);
86
- return e.isImage ? m.ptrToImageAsset(d) : e.isFont ? m.ptrToFontAsset(d) : e.isAudio ? m.ptrToAudioAsset(d) : e;
83
+ const c = l.FileAssetLoader;
84
+ l.ptrToAsset = e => {
85
+ let f = l.ptrToFileAsset(e);
86
+ return f.isImage ? l.ptrToImageAsset(e) : f.isFont ? l.ptrToFontAsset(e) : f.isAudio ? l.ptrToAudioAsset(e) : f;
87
87
  };
88
- m.CustomFileAssetLoader = c.extend("CustomFileAssetLoader", {__construct:function({loadContents:d}) {
88
+ l.CustomFileAssetLoader = c.extend("CustomFileAssetLoader", {__construct:function({loadContents:e}) {
89
89
  this.__parent.__construct.call(this);
90
- this.Bb = d;
91
- }, loadContents:function(d, e) {
92
- d = m.ptrToAsset(d);
93
- return this.Bb(d, e);
90
+ this.Bb = e;
91
+ }, loadContents:function(e, f) {
92
+ e = l.ptrToAsset(e);
93
+ return this.Bb(e, f);
94
94
  },});
95
- m.CDNFileAssetLoader = c.extend("CDNFileAssetLoader", {__construct:function() {
95
+ l.CDNFileAssetLoader = c.extend("CDNFileAssetLoader", {__construct:function() {
96
96
  this.__parent.__construct.call(this);
97
- }, loadContents:function(d) {
98
- let e = m.ptrToAsset(d);
99
- d = e.cdnUuid;
100
- if ("" === d) {
97
+ }, loadContents:function(e) {
98
+ let f = l.ptrToAsset(e);
99
+ e = f.cdnUuid;
100
+ if ("" === e) {
101
101
  return !1;
102
102
  }
103
- (function(f, g) {
104
- var k = new XMLHttpRequest();
105
- k.responseType = "arraybuffer";
106
- k.onreadystatechange = function() {
107
- 4 == k.readyState && 200 == k.status && g(k);
103
+ (function(g, k) {
104
+ var p = new XMLHttpRequest();
105
+ p.responseType = "arraybuffer";
106
+ p.onreadystatechange = function() {
107
+ 4 == p.readyState && 200 == p.status && k(p);
108
108
  };
109
- k.open("GET", f, !0);
110
- k.send(null);
111
- })(e.cdnBaseUrl + "/" + d, f => {
112
- e.decode(new Uint8Array(f.response));
109
+ p.open("GET", g, !0);
110
+ p.send(null);
111
+ })(f.cdnBaseUrl + "/" + e, g => {
112
+ f.decode(new Uint8Array(g.response));
113
113
  });
114
114
  return !0;
115
115
  },});
116
- m.FallbackFileAssetLoader = c.extend("FallbackFileAssetLoader", {__construct:function() {
116
+ l.FallbackFileAssetLoader = c.extend("FallbackFileAssetLoader", {__construct:function() {
117
117
  this.__parent.__construct.call(this);
118
118
  this.fb = [];
119
- }, addLoader:function(d) {
120
- this.fb.push(d);
121
- }, loadContents:function(d, e) {
122
- for (let f of this.fb) {
123
- if (f.loadContents(d, e)) {
119
+ }, addLoader:function(e) {
120
+ this.fb.push(e);
121
+ }, loadContents:function(e, f) {
122
+ for (let g of this.fb) {
123
+ if (g.loadContents(e, f)) {
124
124
  return !0;
125
125
  }
126
126
  }
127
127
  return !1;
128
128
  },});
129
+ let d = l.computeAlignment;
130
+ l.computeAlignment = function(e, f, g, k, p = 1.0) {
131
+ return d.call(this, e, f, g, k, p);
132
+ };
129
133
  };
130
- const fa = m.onRuntimeInitialized;
131
- m.onRuntimeInitialized = function() {
132
- function a(l) {
133
- this.F = l;
134
- this.yb = l.getContext("2d");
134
+ const fa = l.onRuntimeInitialized;
135
+ l.onRuntimeInitialized = function() {
136
+ function a(r) {
137
+ this.F = r;
138
+ this.yb = r.getContext("2d");
135
139
  this.Db = e;
136
140
  this.R = [];
137
141
  this.ja = 0;
@@ -147,11 +151,11 @@ m.onRuntimeInitialized = function() {
147
151
  this.restore = function() {
148
152
  0 < this.ja && (this.R.push(e.restore.bind(e)), --this.ja);
149
153
  };
150
- this.transform = function(r) {
151
- this.R.push(e.transform.bind(e, r));
154
+ this.transform = function(u) {
155
+ this.R.push(e.transform.bind(e, u));
152
156
  };
153
- this.align = function(r, x, z, G) {
154
- this.R.push(e.align.bind(e, r, x, z, G));
157
+ this.align = function(u, z, B, C, O = 1.0) {
158
+ this.R.push(e.align.bind(e, u, z, B, C, O));
155
159
  };
156
160
  this.flush = function() {
157
161
  console.assert(0 == this.ja);
@@ -159,78 +163,78 @@ m.onRuntimeInitialized = function() {
159
163
  d && c();
160
164
  };
161
165
  }
162
- function b(l) {
163
- var r = {alpha:1, depth:0, stencil:8, antialias:0, premultipliedAlpha:1, preserveDrawingBuffer:0, preferLowPowerToHighPerformance:0, failIfMajorPerformanceCaveat:0, enableExtensionsByDefault:1, explicitSwapControl:0, renderViaOffscreenBackBuffer:0,}, x = l.getContext("webgl2", r);
164
- x || (x = l.getContext("webgl", r));
165
- var z = x, G = ia(ja), C = {handle:G, attributes:r, version:r.Dc, Ta:z};
166
- z.canvas && (z.canvas.pc = C);
167
- ja[G] = C;
168
- ("undefined" == typeof r.Jb || r.Jb) && ka(C);
169
- la(G);
170
- r = g(l.width, l.height);
171
- r.Ab = G;
172
- r.F = l;
173
- r.Va = l.width;
174
- r.Ua = l.height;
175
- r.zb = x;
176
- return r;
166
+ function b(r) {
167
+ var u = {alpha:1, depth:0, stencil:8, antialias:0, premultipliedAlpha:1, preserveDrawingBuffer:0, preferLowPowerToHighPerformance:0, failIfMajorPerformanceCaveat:0, enableExtensionsByDefault:1, explicitSwapControl:0, renderViaOffscreenBackBuffer:0,}, z = r.getContext("webgl2", u);
168
+ z || (z = r.getContext("webgl", u));
169
+ var B = z, C = ha(ja), O = {handle:C, attributes:u, version:u.Dc, Ta:B};
170
+ B.canvas && (B.canvas.pc = O);
171
+ ja[C] = O;
172
+ ("undefined" == typeof u.Jb || u.Jb) && ka(O);
173
+ la(C);
174
+ u = g(r.width, r.height);
175
+ u.Ab = C;
176
+ u.F = r;
177
+ u.Va = r.width;
178
+ u.Ua = r.height;
179
+ u.zb = z;
180
+ return u;
177
181
  }
178
182
  function c() {
179
183
  if (e) {
180
- var l = e.Cb, r = 0, x = 0, z = 0, G = Array(f.size), C = 0;
181
- for (var J of f) {
182
- J.da = Math.min(J.F.width, l), J.ca = Math.min(J.F.height, l), J.Ja = J.ca * J.da, r = Math.max(r, J.da), x = Math.max(x, J.ca), z += J.Ja, G[C++] = J;
184
+ var r = e.Cb, u = 0, z = 0, B = 0, C = Array(f.size), O = 0;
185
+ for (var M of f) {
186
+ M.da = Math.min(M.F.width, r), M.ca = Math.min(M.F.height, r), M.Ja = M.ca * M.da, u = Math.max(u, M.da), z = Math.max(z, M.ca), B += M.Ja, C[O++] = M;
183
187
  }
184
188
  f.clear();
185
- if (!(0 >= z)) {
186
- r = 1 << (0 >= r ? 0 : 32 - Math.clz32(r - 1));
187
- for (x = 1 << (0 >= x ? 0 : 32 - Math.clz32(x - 1)); x * r < z;) {
188
- r <= x ? r *= 2 : x *= 2;
189
+ if (!(0 >= B)) {
190
+ u = 1 << (0 >= u ? 0 : 32 - Math.clz32(u - 1));
191
+ for (z = 1 << (0 >= z ? 0 : 32 - Math.clz32(z - 1)); z * u < B;) {
192
+ u <= z ? u *= 2 : z *= 2;
189
193
  }
190
- r = Math.min(r, l);
191
- r = Math.min(x, l);
192
- G.sort((ha, Fb) => Fb.Ja - ha.Ja);
193
- z = new m.DynamicRectanizer(l);
194
- for (J = 0; J < G.length;) {
195
- z.reset(r, x);
196
- for (C = J; C < G.length; ++C) {
197
- var N = G[C], K = z.addRect(N.da, N.ca);
198
- if (0 > K) {
199
- console.assert(C > J);
194
+ u = Math.min(u, r);
195
+ u = Math.min(z, r);
196
+ C.sort((ia, Gb) => Gb.Ja - ia.Ja);
197
+ B = new l.DynamicRectanizer(r);
198
+ for (M = 0; M < C.length;) {
199
+ B.reset(u, z);
200
+ for (O = M; O < C.length; ++O) {
201
+ var P = C[O], J = B.addRect(P.da, P.ca);
202
+ if (0 > J) {
203
+ console.assert(O > M);
200
204
  break;
201
205
  }
202
- N.pa = K & 65535;
203
- N.qa = K >> 16;
206
+ P.pa = J & 65535;
207
+ P.qa = J >> 16;
204
208
  }
205
- N = q.push(z.drawWidth());
206
- K = n.push(z.drawHeight());
207
- console.assert(N >= z.drawWidth());
208
- console.assert(K >= z.drawHeight());
209
- console.assert(N <= l);
210
- console.assert(K <= l);
211
- e.F.width != N && (e.F.width = N);
212
- e.F.height != K && (e.F.height = K);
209
+ P = p.push(B.drawWidth());
210
+ J = n.push(B.drawHeight());
211
+ console.assert(P >= B.drawWidth());
212
+ console.assert(J >= B.drawHeight());
213
+ console.assert(P <= r);
214
+ console.assert(J <= r);
215
+ e.F.width != P && (e.F.width = P);
216
+ e.F.height != J && (e.F.height = J);
213
217
  e.clear();
214
- for (N = J; N < C; ++N) {
215
- K = G[N];
216
- e.saveClipRect(K.pa, K.qa, K.pa + K.da, K.qa + K.ca);
217
- let ha = new m.Mat2D();
218
- ha.xx = K.da / K.F.width;
219
- ha.yy = K.ca / K.F.height;
220
- ha.xy = ha.yx = 0;
221
- ha.tx = K.pa;
222
- ha.ty = K.qa;
223
- e.transform(ha);
224
- for (const Fb of K.R) {
225
- Fb();
218
+ for (P = M; P < O; ++P) {
219
+ J = C[P];
220
+ e.saveClipRect(J.pa, J.qa, J.pa + J.da, J.qa + J.ca);
221
+ let ia = new l.Mat2D();
222
+ ia.xx = J.da / J.F.width;
223
+ ia.yy = J.ca / J.F.height;
224
+ ia.xy = ia.yx = 0;
225
+ ia.tx = J.pa;
226
+ ia.ty = J.qa;
227
+ e.transform(ia);
228
+ for (const Gb of J.R) {
229
+ Gb();
226
230
  }
227
231
  e.restoreClipRect();
228
- K.R = [];
232
+ J.R = [];
229
233
  }
230
- for (e.flush(); J < C; ++J) {
231
- N = G[J], K = N.yb, K.globalCompositeOperation = "copy", K.drawImage(e.F, N.pa, N.qa, N.da, N.ca, 0, 0, N.F.width, N.F.height);
234
+ for (e.flush(); M < O; ++M) {
235
+ P = C[M], J = P.yb, J.globalCompositeOperation = "copy", J.drawImage(e.F, P.pa, P.qa, P.da, P.ca, 0, 0, P.F.width, P.F.height);
232
236
  }
233
- J = C;
237
+ M = O;
234
238
  }
235
239
  }
236
240
  }
@@ -238,42 +242,46 @@ m.onRuntimeInitialized = function() {
238
242
  fa && fa();
239
243
  const d = navigator.userAgent.match(/firefox|fxios/i);
240
244
  let e = null;
241
- const f = new Set(), g = m.makeRenderer;
242
- m.makeRenderer = function(l, r) {
243
- return r ? (e || (e = b(document.createElement("canvas")), r = e.zb, e.Cb = Math.min(r.getParameter(r.MAX_RENDERBUFFER_SIZE), r.getParameter(r.MAX_TEXTURE_SIZE))), new a(l)) : b(l);
245
+ const f = new Set(), g = l.makeRenderer;
246
+ l.makeRenderer = function(r, u) {
247
+ return u ? (e || (e = b(document.createElement("canvas")), u = e.zb, e.Cb = Math.min(u.getParameter(u.MAX_RENDERBUFFER_SIZE), u.getParameter(u.MAX_TEXTURE_SIZE))), new a(r)) : b(r);
244
248
  };
245
- const k = m.Artboard.prototype.draw;
246
- m.Artboard.prototype.draw = function(l) {
247
- l.R ? l.R.push(k.bind(this, l.Db)) : k.call(this, l);
249
+ const k = l.Artboard.prototype.draw;
250
+ l.Artboard.prototype.draw = function(r) {
251
+ r.R ? r.R.push(k.bind(this, r.Db)) : k.call(this, r);
248
252
  };
249
- const q = new da(), n = new da(), t = new ca();
250
- m.requestAnimationFrame = t.requestAnimationFrame.bind(t);
251
- m.cancelAnimationFrame = t.cancelAnimationFrame.bind(t);
252
- m.enableFPSCounter = t.Kb.bind(t);
253
+ const p = new da(), n = new da(), t = new ca();
254
+ l.requestAnimationFrame = t.requestAnimationFrame.bind(t);
255
+ l.cancelAnimationFrame = t.cancelAnimationFrame.bind(t);
256
+ l.enableFPSCounter = t.Kb.bind(t);
253
257
  t.kb = c;
254
- m.resolveAnimationFrame = c;
255
- let v = m.load;
256
- m.load = function(l, r, x = !0) {
257
- const z = new m.FallbackFileAssetLoader();
258
- void 0 !== r && z.addLoader(r);
259
- x && (r = new m.CDNFileAssetLoader(), z.addLoader(r));
260
- return Promise.resolve(v(l, z));
258
+ l.resolveAnimationFrame = c;
259
+ let w = l.load;
260
+ l.load = function(r, u, z = !0) {
261
+ const B = new l.FallbackFileAssetLoader();
262
+ void 0 !== u && B.addLoader(u);
263
+ z && (u = new l.CDNFileAssetLoader(), B.addLoader(u));
264
+ return Promise.resolve(w(r, B));
261
265
  };
262
- const y = m.WebGLRenderer.prototype.clear;
263
- m.WebGLRenderer.prototype.clear = function() {
266
+ const y = l.WebGLRenderer.prototype.clear;
267
+ l.WebGLRenderer.prototype.clear = function() {
264
268
  la(this.Ab);
265
- const l = this.F;
266
- if (this.Va != l.width || this.Ua != l.height) {
267
- this.resize(l.width, l.height), this.Va = l.width, this.Ua = l.height;
269
+ const r = this.F;
270
+ if (this.Va != r.width || this.Ua != r.height) {
271
+ this.resize(r.width, r.height), this.Va = r.width, this.Ua = r.height;
268
272
  }
269
273
  y.call(this);
270
274
  };
271
- m.decodeImage = function(l, r) {
272
- l = m.decodeImageSkia(l);
273
- r(l);
275
+ l.decodeImage = function(r, u) {
276
+ r = l.decodeImageSkia(r);
277
+ u(r);
278
+ };
279
+ let q = l.Renderer.prototype.align;
280
+ l.Renderer.prototype.align = function(r, u, z, B, C = 1.0) {
281
+ q.call(this, r, u, z, B, C);
274
282
  };
275
283
  };
276
- var ma = Object.assign({}, m), na = "./this.program", oa = "object" == typeof window, pa = "function" == typeof importScripts, qa = "", ra, sa;
284
+ var ma = Object.assign({}, l), na = "./this.program", oa = "object" == typeof window, pa = "function" == typeof importScripts, qa = "", ra, sa;
277
285
  if (oa || pa) {
278
286
  pa ? qa = self.location.href : "undefined" != typeof document && document.currentScript && (qa = document.currentScript.src), _scriptDir && (qa = _scriptDir), 0 !== qa.indexOf("blob:") ? qa = qa.substr(0, qa.replace(/[?#].*/, "").lastIndexOf("/") + 1) : qa = "", pa && (sa = a => {
279
287
  var b = new XMLHttpRequest();
@@ -292,35 +300,35 @@ if (oa || pa) {
292
300
  d.send(null);
293
301
  };
294
302
  }
295
- var ta = m.print || console.log.bind(console), ua = m.printErr || console.error.bind(console);
296
- Object.assign(m, ma);
303
+ var ta = l.print || console.log.bind(console), ua = l.printErr || console.error.bind(console);
304
+ Object.assign(l, ma);
297
305
  ma = null;
298
- m.thisProgram && (na = m.thisProgram);
306
+ l.thisProgram && (na = l.thisProgram);
299
307
  var va;
300
- m.wasmBinary && (va = m.wasmBinary);
301
- var noExitRuntime = m.noExitRuntime || !0;
308
+ l.wasmBinary && (va = l.wasmBinary);
309
+ var noExitRuntime = l.noExitRuntime || !0;
302
310
  "object" != typeof WebAssembly && wa("no native wasm support detected");
303
- var xa, p, ya = !1, u, w, A, za, B, D, E, Aa;
311
+ var xa, m, ya = !1, v, x, A, za, D, E, F, Aa;
304
312
  function Ba() {
305
313
  var a = xa.buffer;
306
- m.HEAP8 = u = new Int8Array(a);
307
- m.HEAP16 = A = new Int16Array(a);
308
- m.HEAP32 = B = new Int32Array(a);
309
- m.HEAPU8 = w = new Uint8Array(a);
310
- m.HEAPU16 = za = new Uint16Array(a);
311
- m.HEAPU32 = D = new Uint32Array(a);
312
- m.HEAPF32 = E = new Float32Array(a);
313
- m.HEAPF64 = Aa = new Float64Array(a);
314
+ l.HEAP8 = v = new Int8Array(a);
315
+ l.HEAP16 = A = new Int16Array(a);
316
+ l.HEAP32 = D = new Int32Array(a);
317
+ l.HEAPU8 = x = new Uint8Array(a);
318
+ l.HEAPU16 = za = new Uint16Array(a);
319
+ l.HEAPU32 = E = new Uint32Array(a);
320
+ l.HEAPF32 = F = new Float32Array(a);
321
+ l.HEAPF64 = Aa = new Float64Array(a);
314
322
  }
315
323
  var Ca, Da = [], Ea = [], Fa = [];
316
324
  function Ga() {
317
- var a = m.preRun.shift();
325
+ var a = l.preRun.shift();
318
326
  Da.unshift(a);
319
327
  }
320
328
  var Ha = 0, Ia = null, Ja = null;
321
329
  function wa(a) {
322
- if (m.onAbort) {
323
- m.onAbort(a);
330
+ if (l.onAbort) {
331
+ l.onAbort(a);
324
332
  }
325
333
  a = "Aborted(" + a + ")";
326
334
  ua(a);
@@ -336,7 +344,7 @@ var La;
336
344
  La = "webgl_advanced.wasm";
337
345
  if (!Ka(La)) {
338
346
  var Ma = La;
339
- La = m.locateFile ? m.locateFile(Ma, qa) : qa + Ma;
347
+ La = l.locateFile ? l.locateFile(Ma, qa) : qa + Ma;
340
348
  }
341
349
  function Na(a) {
342
350
  if (a == La && va) {
@@ -379,7 +387,7 @@ function Qa(a, b) {
379
387
  return Pa(c, a, b);
380
388
  }));
381
389
  }
382
- var Ra, Sa, Wa = {693244:(a, b, c, d, e) => {
390
+ var Ra, Sa, Wa = {693516:(a, b, c, d, e) => {
383
391
  if ("undefined" === typeof window || void 0 === (window.AudioContext || window.webkitAudioContext)) {
384
392
  return 0;
385
393
  }
@@ -428,12 +436,12 @@ var Ra, Sa, Wa = {693244:(a, b, c, d, e) => {
428
436
  var k = f.C[g];
429
437
  null != k && null != k.I && k.state === f.ha.sb && k.I.resume().then(() => {
430
438
  Ta(k.lb);
431
- }, q => {
432
- console.error("Failed to resume audiocontext", q);
439
+ }, p => {
440
+ console.error("Failed to resume audiocontext", p);
433
441
  });
434
442
  }
435
- f.wb.map(function(q) {
436
- document.removeEventListener(q, f.unlock, !0);
443
+ f.wb.map(function(p) {
444
+ document.removeEventListener(p, f.unlock, !0);
437
445
  });
438
446
  };
439
447
  f.wb.map(function(g) {
@@ -442,9 +450,9 @@ var Ra, Sa, Wa = {693244:(a, b, c, d, e) => {
442
450
  }
443
451
  window.h.Ea += 1;
444
452
  return 1;
445
- }, 695422:() => {
453
+ }, 695694:() => {
446
454
  "undefined" !== typeof window.h && (--window.h.Ea, 0 === window.h.Ea && delete window.h);
447
- }, 695586:() => void 0 !== navigator.mediaDevices && void 0 !== navigator.mediaDevices.getUserMedia, 695690:() => {
455
+ }, 695858:() => void 0 !== navigator.mediaDevices && void 0 !== navigator.mediaDevices.getUserMedia, 695962:() => {
448
456
  try {
449
457
  var a = new (window.AudioContext || window.webkitAudioContext)(), b = a.sampleRate;
450
458
  a.close();
@@ -452,7 +460,7 @@ var Ra, Sa, Wa = {693244:(a, b, c, d, e) => {
452
460
  } catch (c) {
453
461
  return 0;
454
462
  }
455
- }, 695861:(a, b, c, d, e, f) => {
463
+ }, 696133:(a, b, c, d, e, f) => {
456
464
  if ("undefined" === typeof window.h) {
457
465
  return -1;
458
466
  }
@@ -464,41 +472,41 @@ var Ra, Sa, Wa = {693244:(a, b, c, d, e) => {
464
472
  c = 0;
465
473
  a != window.h.H.Ca && (c = b);
466
474
  g.X = g.I.createScriptProcessor(d, c, b);
467
- g.X.onaudioprocess = function(q) {
475
+ g.X.onaudioprocess = function(p) {
468
476
  if (null == g.ua || 0 == g.ua.length) {
469
- g.ua = new Float32Array(E.buffer, e, d * b);
477
+ g.ua = new Float32Array(F.buffer, e, d * b);
470
478
  }
471
479
  if (a == window.h.H.capture || a == window.h.H.La) {
472
480
  for (var n = 0; n < b; n += 1) {
473
- for (var t = q.inputBuffer.getChannelData(n), v = g.ua, y = 0; y < d; y += 1) {
474
- v[y * b + n] = t[y];
481
+ for (var t = p.inputBuffer.getChannelData(n), w = g.ua, y = 0; y < d; y += 1) {
482
+ w[y * b + n] = t[y];
475
483
  }
476
484
  }
477
485
  Ua(f, d, e);
478
486
  }
479
487
  if (a == window.h.H.Ca || a == window.h.H.La) {
480
- for (Va(f, d, e), n = 0; n < q.outputBuffer.numberOfChannels; ++n) {
481
- for (t = q.outputBuffer.getChannelData(n), v = g.ua, y = 0; y < d; y += 1) {
482
- t[y] = v[y * b + n];
488
+ for (Va(f, d, e), n = 0; n < p.outputBuffer.numberOfChannels; ++n) {
489
+ for (t = p.outputBuffer.getChannelData(n), w = g.ua, y = 0; y < d; y += 1) {
490
+ t[y] = w[y * b + n];
483
491
  }
484
492
  }
485
493
  } else {
486
- for (n = 0; n < q.outputBuffer.numberOfChannels; ++n) {
487
- q.outputBuffer.getChannelData(n).fill(0.0);
494
+ for (n = 0; n < p.outputBuffer.numberOfChannels; ++n) {
495
+ p.outputBuffer.getChannelData(n).fill(0.0);
488
496
  }
489
497
  }
490
498
  };
491
- a != window.h.H.capture && a != window.h.H.La || navigator.mediaDevices.getUserMedia({audio:!0, video:!1}).then(function(q) {
492
- g.Fa = g.I.createMediaStreamSource(q);
499
+ a != window.h.H.capture && a != window.h.H.La || navigator.mediaDevices.getUserMedia({audio:!0, video:!1}).then(function(p) {
500
+ g.Fa = g.I.createMediaStreamSource(p);
493
501
  g.Fa.connect(g.X);
494
502
  g.X.connect(g.I.destination);
495
- }).catch(function(q) {
496
- console.log("Failed to get user media: " + q);
503
+ }).catch(function(p) {
504
+ console.log("Failed to get user media: " + p);
497
505
  });
498
506
  a == window.h.H.Ca && g.X.connect(g.I.destination);
499
507
  g.lb = f;
500
508
  return window.h.nc(g);
501
- }, 698738:a => window.h.ta(a).I.sampleRate, 698811:a => {
509
+ }, 699010:a => window.h.ta(a).I.sampleRate, 699083:a => {
502
510
  a = window.h.ta(a);
503
511
  void 0 !== a.X && (a.X.onaudioprocess = function() {
504
512
  }, a.X.disconnect(), a.X = void 0);
@@ -506,19 +514,19 @@ var Ra, Sa, Wa = {693244:(a, b, c, d, e) => {
506
514
  a.I.close();
507
515
  a.I = void 0;
508
516
  a.lb = void 0;
509
- }, 699211:a => {
517
+ }, 699483:a => {
510
518
  window.h.xb(a);
511
- }, 699261:a => {
519
+ }, 699533:a => {
512
520
  a = window.h.ta(a);
513
521
  a.I.resume();
514
522
  a.state = window.h.ha.sb;
515
- }, 699400:a => {
523
+ }, 699672:a => {
516
524
  a = window.h.ta(a);
517
525
  a.I.suspend();
518
526
  a.state = window.h.ha.stopped;
519
527
  }}, Xa = a => {
520
528
  for (; 0 < a.length;) {
521
- a.shift()(m);
529
+ a.shift()(l);
522
530
  }
523
531
  }, Ya = (a, b) => {
524
532
  for (var c = 0, d = a.length - 1; 0 <= d; d--) {
@@ -574,7 +582,7 @@ function db() {
574
582
  a = Ya(a.split("/").filter(d => !!d), !b).join("/");
575
583
  return (b ? "/" : "") + a || ".";
576
584
  }
577
- var eb = "undefined" != typeof TextDecoder ? new TextDecoder("utf8") : void 0, F = (a, b, c) => {
585
+ var eb = "undefined" != typeof TextDecoder ? new TextDecoder("utf8") : void 0, fb = (a, b, c) => {
578
586
  var d = b + c;
579
587
  for (c = b; a[c] && !(c >= d);) {
580
588
  ++c;
@@ -598,13 +606,13 @@ var eb = "undefined" != typeof TextDecoder ? new TextDecoder("utf8") : void 0, F
598
606
  }
599
607
  }
600
608
  return d;
601
- }, fb = [], gb = a => {
609
+ }, gb = [], hb = a => {
602
610
  for (var b = 0, c = 0; c < a.length; ++c) {
603
611
  var d = a.charCodeAt(c);
604
612
  127 >= d ? b++ : 2047 >= d ? b += 2 : 55296 <= d && 57343 >= d ? (b += 4, ++c) : b += 3;
605
613
  }
606
614
  return b;
607
- }, hb = (a, b, c, d) => {
615
+ }, ib = (a, b, c, d) => {
608
616
  if (!(0 < d)) {
609
617
  return 0;
610
618
  }
@@ -648,21 +656,21 @@ var eb = "undefined" != typeof TextDecoder ? new TextDecoder("utf8") : void 0, F
648
656
  b[c] = 0;
649
657
  return c - e;
650
658
  };
651
- function ib(a, b) {
652
- var c = Array(gb(a) + 1);
653
- a = hb(a, c, 0, c.length);
659
+ function jb(a, b) {
660
+ var c = Array(hb(a) + 1);
661
+ a = ib(a, c, 0, c.length);
654
662
  b && (c.length = a);
655
663
  return c;
656
664
  }
657
- var jb = [];
658
- function kb(a, b) {
659
- jb[a] = {input:[], D:[], T:b};
660
- lb(a, mb);
665
+ var kb = [];
666
+ function lb(a, b) {
667
+ kb[a] = {input:[], D:[], T:b};
668
+ mb(a, nb);
661
669
  }
662
- var mb = {open:function(a) {
663
- var b = jb[a.node.Da];
670
+ var nb = {open:function(a) {
671
+ var b = kb[a.node.Da];
664
672
  if (!b) {
665
- throw new H(43);
673
+ throw new G(43);
666
674
  }
667
675
  a.s = b;
668
676
  a.seekable = !1;
@@ -672,16 +680,16 @@ var mb = {open:function(a) {
672
680
  a.s.T.sa(a.s);
673
681
  }, read:function(a, b, c, d) {
674
682
  if (!a.s || !a.s.T.eb) {
675
- throw new H(60);
683
+ throw new G(60);
676
684
  }
677
685
  for (var e = 0, f = 0; f < d; f++) {
678
686
  try {
679
687
  var g = a.s.T.eb(a.s);
680
688
  } catch (k) {
681
- throw new H(29);
689
+ throw new G(29);
682
690
  }
683
691
  if (void 0 === g && 0 === e) {
684
- throw new H(6);
692
+ throw new G(6);
685
693
  }
686
694
  if (null === g || void 0 === g) {
687
695
  break;
@@ -693,59 +701,59 @@ var mb = {open:function(a) {
693
701
  return e;
694
702
  }, write:function(a, b, c, d) {
695
703
  if (!a.s || !a.s.T.Oa) {
696
- throw new H(60);
704
+ throw new G(60);
697
705
  }
698
706
  try {
699
707
  for (var e = 0; e < d; e++) {
700
708
  a.s.T.Oa(a.s, b[c + e]);
701
709
  }
702
710
  } catch (f) {
703
- throw new H(29);
711
+ throw new G(29);
704
712
  }
705
713
  d && (a.node.timestamp = Date.now());
706
714
  return e;
707
- },}, nb = {eb:function() {
715
+ },}, ob = {eb:function() {
708
716
  a: {
709
- if (!fb.length) {
717
+ if (!gb.length) {
710
718
  var a = null;
711
719
  "undefined" != typeof window && "function" == typeof window.prompt ? (a = window.prompt("Input: "), null !== a && (a += "\n")) : "function" == typeof readline && (a = readline(), null !== a && (a += "\n"));
712
720
  if (!a) {
713
721
  a = null;
714
722
  break a;
715
723
  }
716
- fb = ib(a, !0);
724
+ gb = jb(a, !0);
717
725
  }
718
- a = fb.shift();
726
+ a = gb.shift();
719
727
  }
720
728
  return a;
721
729
  }, Oa:function(a, b) {
722
- null === b || 10 === b ? (ta(F(a.D, 0)), a.D = []) : 0 != b && a.D.push(b);
730
+ null === b || 10 === b ? (ta(fb(a.D, 0)), a.D = []) : 0 != b && a.D.push(b);
723
731
  }, sa:function(a) {
724
- a.D && 0 < a.D.length && (ta(F(a.D, 0)), a.D = []);
732
+ a.D && 0 < a.D.length && (ta(fb(a.D, 0)), a.D = []);
725
733
  }, Wb:function() {
726
734
  return {uc:25856, wc:5, tc:191, vc:35387, sc:[3, 28, 127, 21, 4, 0, 1, 0, 17, 19, 26, 0, 18, 15, 23, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,]};
727
735
  }, Xb:function() {
728
736
  return 0;
729
737
  }, Yb:function() {
730
738
  return [24, 80];
731
- },}, ob = {Oa:function(a, b) {
732
- null === b || 10 === b ? (ua(F(a.D, 0)), a.D = []) : 0 != b && a.D.push(b);
739
+ },}, pb = {Oa:function(a, b) {
740
+ null === b || 10 === b ? (ua(fb(a.D, 0)), a.D = []) : 0 != b && a.D.push(b);
733
741
  }, sa:function(a) {
734
- a.D && 0 < a.D.length && (ua(F(a.D, 0)), a.D = []);
742
+ a.D && 0 < a.D.length && (ua(fb(a.D, 0)), a.D = []);
735
743
  },};
736
- function pb(a, b) {
744
+ function qb(a, b) {
737
745
  var c = a.j ? a.j.length : 0;
738
746
  c >= b || (b = Math.max(b, c * (1048576 > c ? 2.0 : 1.125) >>> 0), 0 != c && (b = Math.max(b, 256)), c = a.j, a.j = new Uint8Array(b), 0 < a.v && a.j.set(c.subarray(0, a.v), 0));
739
747
  }
740
- var I = {N:null, S() {
741
- return I.createNode(null, "/", 16895, 0);
748
+ var H = {N:null, S() {
749
+ return H.createNode(null, "/", 16895, 0);
742
750
  }, createNode(a, b, c, d) {
743
751
  if (24576 === (c & 61440) || 4096 === (c & 61440)) {
744
- throw new H(63);
752
+ throw new G(63);
745
753
  }
746
- I.N || (I.N = {dir:{node:{W:I.l.W, O:I.l.O, ka:I.l.ka, Aa:I.l.Aa, qb:I.l.qb, vb:I.l.vb, rb:I.l.rb, ob:I.l.ob, Ga:I.l.Ga}, stream:{$:I.m.$}}, file:{node:{W:I.l.W, O:I.l.O}, stream:{$:I.m.$, read:I.m.read, write:I.m.write, ra:I.m.ra, hb:I.m.hb, jb:I.m.jb}}, link:{node:{W:I.l.W, O:I.l.O, la:I.l.la}, stream:{}}, Wa:{node:{W:I.l.W, O:I.l.O}, stream:qb}});
747
- c = rb(a, b, c, d);
748
- 16384 === (c.mode & 61440) ? (c.l = I.N.dir.node, c.m = I.N.dir.stream, c.j = {}) : 32768 === (c.mode & 61440) ? (c.l = I.N.file.node, c.m = I.N.file.stream, c.v = 0, c.j = null) : 40960 === (c.mode & 61440) ? (c.l = I.N.link.node, c.m = I.N.link.stream) : 8192 === (c.mode & 61440) && (c.l = I.N.Wa.node, c.m = I.N.Wa.stream);
754
+ H.N || (H.N = {dir:{node:{W:H.l.W, O:H.l.O, ka:H.l.ka, Aa:H.l.Aa, qb:H.l.qb, vb:H.l.vb, rb:H.l.rb, ob:H.l.ob, Ga:H.l.Ga}, stream:{$:H.m.$}}, file:{node:{W:H.l.W, O:H.l.O}, stream:{$:H.m.$, read:H.m.read, write:H.m.write, ra:H.m.ra, hb:H.m.hb, jb:H.m.jb}}, link:{node:{W:H.l.W, O:H.l.O, la:H.l.la}, stream:{}}, Wa:{node:{W:H.l.W, O:H.l.O}, stream:rb}});
755
+ c = sb(a, b, c, d);
756
+ 16384 === (c.mode & 61440) ? (c.l = H.N.dir.node, c.m = H.N.dir.stream, c.j = {}) : 32768 === (c.mode & 61440) ? (c.l = H.N.file.node, c.m = H.N.file.stream, c.v = 0, c.j = null) : 40960 === (c.mode & 61440) ? (c.l = H.N.link.node, c.m = H.N.link.stream) : 8192 === (c.mode & 61440) && (c.l = H.N.Wa.node, c.m = H.N.Wa.stream);
749
757
  c.timestamp = Date.now();
750
758
  a && (a.j[b] = c, a.timestamp = c.timestamp);
751
759
  return c;
@@ -781,18 +789,18 @@ var I = {N:null, S() {
781
789
  }
782
790
  }
783
791
  }, ka() {
784
- throw sb[44];
792
+ throw tb[44];
785
793
  }, Aa(a, b, c, d) {
786
- return I.createNode(a, b, c, d);
794
+ return H.createNode(a, b, c, d);
787
795
  }, qb(a, b, c) {
788
796
  if (16384 === (a.mode & 61440)) {
789
797
  try {
790
- var d = tb(b, c);
798
+ var d = ub(b, c);
791
799
  } catch (f) {
792
800
  }
793
801
  if (d) {
794
802
  for (var e in d.j) {
795
- throw new H(55);
803
+ throw new G(55);
796
804
  }
797
805
  }
798
806
  }
@@ -806,9 +814,9 @@ var I = {N:null, S() {
806
814
  delete a.j[b];
807
815
  a.timestamp = Date.now();
808
816
  }, rb(a, b) {
809
- var c = tb(a, b), d;
817
+ var c = ub(a, b), d;
810
818
  for (d in c.j) {
811
- throw new H(55);
819
+ throw new G(55);
812
820
  }
813
821
  delete a.j[b];
814
822
  a.timestamp = Date.now();
@@ -819,12 +827,12 @@ var I = {N:null, S() {
819
827
  }
820
828
  return b;
821
829
  }, Ga(a, b, c) {
822
- a = I.createNode(a, b, 41471, 0);
830
+ a = H.createNode(a, b, 41471, 0);
823
831
  a.link = c;
824
832
  return a;
825
833
  }, la(a) {
826
834
  if (40960 !== (a.mode & 61440)) {
827
- throw new H(28);
835
+ throw new G(28);
828
836
  }
829
837
  return a.link;
830
838
  },}, m:{read(a, b, c, d, e) {
@@ -842,7 +850,7 @@ var I = {N:null, S() {
842
850
  }
843
851
  return a;
844
852
  }, write(a, b, c, d, e, f) {
845
- b.buffer === u.buffer && (f = !1);
853
+ b.buffer === v.buffer && (f = !1);
846
854
  if (!d) {
847
855
  return 0;
848
856
  }
@@ -859,7 +867,7 @@ var I = {N:null, S() {
859
867
  return a.j.set(b.subarray(c, c + d), e), d;
860
868
  }
861
869
  }
862
- pb(a, e + d);
870
+ qb(a, e + d);
863
871
  if (a.j.subarray && b.subarray) {
864
872
  a.j.set(b.subarray(c, c + d), e);
865
873
  } else {
@@ -872,70 +880,70 @@ var I = {N:null, S() {
872
880
  }, $(a, b, c) {
873
881
  1 === c ? b += a.position : 2 === c && 32768 === (a.node.mode & 61440) && (b += a.node.v);
874
882
  if (0 > b) {
875
- throw new H(28);
883
+ throw new G(28);
876
884
  }
877
885
  return b;
878
886
  }, ra(a, b, c) {
879
- pb(a.node, b + c);
887
+ qb(a.node, b + c);
880
888
  a.node.v = Math.max(a.node.v, b + c);
881
889
  }, hb(a, b, c, d, e) {
882
890
  if (32768 !== (a.node.mode & 61440)) {
883
- throw new H(43);
891
+ throw new G(43);
884
892
  }
885
893
  a = a.node.j;
886
- if (e & 2 || a.buffer !== u.buffer) {
894
+ if (e & 2 || a.buffer !== v.buffer) {
887
895
  if (0 < c || c + b < a.length) {
888
896
  a.subarray ? a = a.subarray(c, c + b) : a = Array.prototype.slice.call(a, c, c + b);
889
897
  }
890
898
  c = !0;
891
899
  b = 65536 * Math.ceil(b / 65536);
892
- (e = ub(65536, b)) ? (w.fill(0, e, e + b), b = e) : b = 0;
900
+ (e = vb(65536, b)) ? (x.fill(0, e, e + b), b = e) : b = 0;
893
901
  if (!b) {
894
- throw new H(48);
902
+ throw new G(48);
895
903
  }
896
- u.set(a, b);
904
+ v.set(a, b);
897
905
  } else {
898
906
  c = !1, b = a.byteOffset;
899
907
  }
900
908
  return {o:b, L:c};
901
909
  }, jb(a, b, c, d) {
902
- I.m.write(a, b, 0, d, c, !1);
910
+ H.m.write(a, b, 0, d, c, !1);
903
911
  return 0;
904
912
  },},};
905
- function vb(a, b) {
913
+ function wb(a, b) {
906
914
  var c = 0;
907
915
  a && (c |= 365);
908
916
  b && (c |= 146);
909
917
  return c;
910
918
  }
911
- var wb = null, xb = {}, yb = [], zb = 1, Ab = null, Bb = !0, H = null, sb = {}, Db = (a, b = {}) => {
919
+ var xb = null, yb = {}, zb = [], Ab = 1, Bb = null, Cb = !0, G = null, tb = {}, Eb = (a, b = {}) => {
912
920
  a = db(a);
913
921
  if (!a) {
914
922
  return {path:"", node:null};
915
923
  }
916
924
  b = Object.assign({bb:!0, Qa:0}, b);
917
925
  if (8 < b.Qa) {
918
- throw new H(32);
926
+ throw new G(32);
919
927
  }
920
928
  a = a.split("/").filter(g => !!g);
921
- for (var c = wb, d = "/", e = 0; e < a.length; e++) {
929
+ for (var c = xb, d = "/", e = 0; e < a.length; e++) {
922
930
  var f = e === a.length - 1;
923
931
  if (f && b.parent) {
924
932
  break;
925
933
  }
926
- c = tb(c, a[e]);
934
+ c = ub(c, a[e]);
927
935
  d = Za(d + "/" + a[e]);
928
936
  c.Ba && (!f || f && b.bb) && (c = c.Ba.root);
929
937
  if (!f || b.ab) {
930
938
  for (f = 0; 40960 === (c.mode & 61440);) {
931
- if (c = Cb(d), d = db($a(d), c), c = Db(d, {Qa:b.Qa + 1}).node, 40 < f++) {
932
- throw new H(32);
939
+ if (c = Db(d), d = db($a(d), c), c = Eb(d, {Qa:b.Qa + 1}).node, 40 < f++) {
940
+ throw new G(32);
933
941
  }
934
942
  }
935
943
  }
936
944
  }
937
945
  return {path:d, node:c};
938
- }, Eb = a => {
946
+ }, Fb = a => {
939
947
  for (var b;;) {
940
948
  if (a === a.parent) {
941
949
  return a = a.S.ib, b ? "/" !== a[a.length - 1] ? `${a}/${b}` : a + b : a;
@@ -943,34 +951,34 @@ var wb = null, xb = {}, yb = [], zb = 1, Ab = null, Bb = !0, H = null, sb = {},
943
951
  b = b ? `${a.name}/${b}` : a.name;
944
952
  a = a.parent;
945
953
  }
946
- }, Gb = (a, b) => {
954
+ }, Hb = (a, b) => {
947
955
  for (var c = 0, d = 0; d < b.length; d++) {
948
956
  c = (c << 5) - c + b.charCodeAt(d) | 0;
949
957
  }
950
- return (a + c >>> 0) % Ab.length;
951
- }, tb = (a, b) => {
958
+ return (a + c >>> 0) % Bb.length;
959
+ }, ub = (a, b) => {
952
960
  var c;
953
- if (c = (c = Hb(a, "x")) ? c : a.l.ka ? 0 : 2) {
954
- throw new H(c, a);
961
+ if (c = (c = Ib(a, "x")) ? c : a.l.ka ? 0 : 2) {
962
+ throw new G(c, a);
955
963
  }
956
- for (c = Ab[Gb(a.id, b)]; c; c = c.ac) {
964
+ for (c = Bb[Hb(a.id, b)]; c; c = c.ac) {
957
965
  var d = c.name;
958
966
  if (c.parent.id === a.id && d === b) {
959
967
  return c;
960
968
  }
961
969
  }
962
970
  return a.l.ka(a, b);
963
- }, rb = (a, b, c, d) => {
964
- a = new Ib(a, b, c, d);
965
- b = Gb(a.parent.id, a.name);
966
- a.ac = Ab[b];
967
- return Ab[b] = a;
968
- }, Jb = a => {
971
+ }, sb = (a, b, c, d) => {
972
+ a = new Jb(a, b, c, d);
973
+ b = Hb(a.parent.id, a.name);
974
+ a.ac = Bb[b];
975
+ return Bb[b] = a;
976
+ }, Kb = a => {
969
977
  var b = ["r", "w", "rw"][a & 3];
970
978
  a & 512 && (b += "w");
971
979
  return b;
972
- }, Hb = (a, b) => {
973
- if (Bb) {
980
+ }, Ib = (a, b) => {
981
+ if (Cb) {
974
982
  return 0;
975
983
  }
976
984
  if (!b.includes("r") || a.mode & 292) {
@@ -981,29 +989,29 @@ var wb = null, xb = {}, yb = [], zb = 1, Ab = null, Bb = !0, H = null, sb = {},
981
989
  return 2;
982
990
  }
983
991
  return 0;
984
- }, Kb = (a, b) => {
992
+ }, Lb = (a, b) => {
985
993
  try {
986
- return tb(a, b), 20;
994
+ return ub(a, b), 20;
987
995
  } catch (c) {
988
996
  }
989
- return Hb(a, "wx");
990
- }, Lb = () => {
997
+ return Ib(a, "wx");
998
+ }, Mb = () => {
991
999
  for (var a = 0; 4096 >= a; a++) {
992
- if (!yb[a]) {
1000
+ if (!zb[a]) {
993
1001
  return a;
994
1002
  }
995
1003
  }
996
- throw new H(33);
997
- }, Mb = a => {
998
- a = yb[a];
1004
+ throw new G(33);
1005
+ }, Nb = a => {
1006
+ a = zb[a];
999
1007
  if (!a) {
1000
- throw new H(8);
1008
+ throw new G(8);
1001
1009
  }
1002
1010
  return a;
1003
- }, Ob = (a, b = -1) => {
1004
- Nb || (Nb = function() {
1011
+ }, Pb = (a, b = -1) => {
1012
+ Ob || (Ob = function() {
1005
1013
  this.h = {};
1006
- }, Nb.prototype = {}, Object.defineProperties(Nb.prototype, {object:{get() {
1014
+ }, Ob.prototype = {}, Object.defineProperties(Ob.prototype, {object:{get() {
1007
1015
  return this.node;
1008
1016
  }, set(c) {
1009
1017
  this.node = c;
@@ -1016,84 +1024,84 @@ var wb = null, xb = {}, yb = [], zb = 1, Ab = null, Bb = !0, H = null, sb = {},
1016
1024
  }, set(c) {
1017
1025
  this.h.position = c;
1018
1026
  },},}));
1019
- a = Object.assign(new Nb(), a);
1020
- -1 == b && (b = Lb());
1027
+ a = Object.assign(new Ob(), a);
1028
+ -1 == b && (b = Mb());
1021
1029
  a.V = b;
1022
- return yb[b] = a;
1023
- }, qb = {open:a => {
1024
- a.m = xb[a.node.Da].m;
1030
+ return zb[b] = a;
1031
+ }, rb = {open:a => {
1032
+ a.m = yb[a.node.Da].m;
1025
1033
  a.m.open && a.m.open(a);
1026
1034
  }, $:() => {
1027
- throw new H(70);
1028
- },}, lb = (a, b) => {
1029
- xb[a] = {m:b};
1030
- }, Pb = (a, b) => {
1035
+ throw new G(70);
1036
+ },}, mb = (a, b) => {
1037
+ yb[a] = {m:b};
1038
+ }, Qb = (a, b) => {
1031
1039
  var c = "/" === b, d = !b;
1032
- if (c && wb) {
1033
- throw new H(10);
1040
+ if (c && xb) {
1041
+ throw new G(10);
1034
1042
  }
1035
1043
  if (!c && !d) {
1036
- var e = Db(b, {bb:!1});
1044
+ var e = Eb(b, {bb:!1});
1037
1045
  b = e.path;
1038
1046
  e = e.node;
1039
1047
  if (e.Ba) {
1040
- throw new H(10);
1048
+ throw new G(10);
1041
1049
  }
1042
1050
  if (16384 !== (e.mode & 61440)) {
1043
- throw new H(54);
1051
+ throw new G(54);
1044
1052
  }
1045
1053
  }
1046
1054
  b = {type:a, Ic:{}, ib:b, $b:[]};
1047
1055
  a = a.S(b);
1048
1056
  a.S = b;
1049
1057
  b.root = a;
1050
- c ? wb = a : e && (e.Ba = b, e.S && e.S.$b.push(b));
1051
- }, Qb = (a, b, c) => {
1052
- var d = Db(a, {parent:!0}).node;
1058
+ c ? xb = a : e && (e.Ba = b, e.S && e.S.$b.push(b));
1059
+ }, Rb = (a, b, c) => {
1060
+ var d = Eb(a, {parent:!0}).node;
1053
1061
  a = ab(a);
1054
1062
  if (!a || "." === a || ".." === a) {
1055
- throw new H(28);
1063
+ throw new G(28);
1056
1064
  }
1057
- var e = Kb(d, a);
1065
+ var e = Lb(d, a);
1058
1066
  if (e) {
1059
- throw new H(e);
1067
+ throw new G(e);
1060
1068
  }
1061
1069
  if (!d.l.Aa) {
1062
- throw new H(63);
1070
+ throw new G(63);
1063
1071
  }
1064
1072
  return d.l.Aa(d, a, b, c);
1065
- }, Rb = (a, b, c) => {
1073
+ }, Sb = (a, b, c) => {
1066
1074
  "undefined" == typeof c && (c = b, b = 438);
1067
- Qb(a, b | 8192, c);
1068
- }, Sb = (a, b) => {
1075
+ Rb(a, b | 8192, c);
1076
+ }, Tb = (a, b) => {
1069
1077
  if (!db(a)) {
1070
- throw new H(44);
1078
+ throw new G(44);
1071
1079
  }
1072
- var c = Db(b, {parent:!0}).node;
1080
+ var c = Eb(b, {parent:!0}).node;
1073
1081
  if (!c) {
1074
- throw new H(44);
1082
+ throw new G(44);
1075
1083
  }
1076
1084
  b = ab(b);
1077
- var d = Kb(c, b);
1085
+ var d = Lb(c, b);
1078
1086
  if (d) {
1079
- throw new H(d);
1087
+ throw new G(d);
1080
1088
  }
1081
1089
  if (!c.l.Ga) {
1082
- throw new H(63);
1090
+ throw new G(63);
1083
1091
  }
1084
1092
  c.l.Ga(c, b, a);
1085
- }, Cb = a => {
1086
- a = Db(a).node;
1093
+ }, Db = a => {
1094
+ a = Eb(a).node;
1087
1095
  if (!a) {
1088
- throw new H(44);
1096
+ throw new G(44);
1089
1097
  }
1090
1098
  if (!a.l.la) {
1091
- throw new H(28);
1099
+ throw new G(28);
1092
1100
  }
1093
- return db(Eb(a.parent), a.l.la(a));
1094
- }, Ub = (a, b, c) => {
1101
+ return db(Fb(a.parent), a.l.la(a));
1102
+ }, Vb = (a, b, c) => {
1095
1103
  if ("" === a) {
1096
- throw new H(44);
1104
+ throw new G(44);
1097
1105
  }
1098
1106
  if ("string" == typeof b) {
1099
1107
  var d = {r:0, "r+":2, w:577, "w+":578, a:1089, "a+":1090,}[b];
@@ -1108,7 +1116,7 @@ var wb = null, xb = {}, yb = [], zb = 1, Ab = null, Bb = !0, H = null, sb = {},
1108
1116
  } else {
1109
1117
  a = Za(a);
1110
1118
  try {
1111
- e = Db(a, {ab:!(b & 131072)}).node;
1119
+ e = Eb(a, {ab:!(b & 131072)}).node;
1112
1120
  } catch (f) {
1113
1121
  }
1114
1122
  }
@@ -1116,58 +1124,58 @@ var wb = null, xb = {}, yb = [], zb = 1, Ab = null, Bb = !0, H = null, sb = {},
1116
1124
  if (b & 64) {
1117
1125
  if (e) {
1118
1126
  if (b & 128) {
1119
- throw new H(20);
1127
+ throw new G(20);
1120
1128
  }
1121
1129
  } else {
1122
- e = Qb(a, c, 0), d = !0;
1130
+ e = Rb(a, c, 0), d = !0;
1123
1131
  }
1124
1132
  }
1125
1133
  if (!e) {
1126
- throw new H(44);
1134
+ throw new G(44);
1127
1135
  }
1128
1136
  8192 === (e.mode & 61440) && (b &= -513);
1129
1137
  if (b & 65536 && 16384 !== (e.mode & 61440)) {
1130
- throw new H(54);
1138
+ throw new G(54);
1131
1139
  }
1132
- if (!d && (c = e ? 40960 === (e.mode & 61440) ? 32 : 16384 === (e.mode & 61440) && ("r" !== Jb(b) || b & 512) ? 31 : Hb(e, Jb(b)) : 44)) {
1133
- throw new H(c);
1140
+ if (!d && (c = e ? 40960 === (e.mode & 61440) ? 32 : 16384 === (e.mode & 61440) && ("r" !== Kb(b) || b & 512) ? 31 : Ib(e, Kb(b)) : 44)) {
1141
+ throw new G(c);
1134
1142
  }
1135
1143
  if (b & 512 && !d) {
1136
1144
  c = e;
1137
- c = "string" == typeof c ? Db(c, {ab:!0}).node : c;
1145
+ c = "string" == typeof c ? Eb(c, {ab:!0}).node : c;
1138
1146
  if (!c.l.O) {
1139
- throw new H(63);
1147
+ throw new G(63);
1140
1148
  }
1141
1149
  if (16384 === (c.mode & 61440)) {
1142
- throw new H(31);
1150
+ throw new G(31);
1143
1151
  }
1144
1152
  if (32768 !== (c.mode & 61440)) {
1145
- throw new H(28);
1153
+ throw new G(28);
1146
1154
  }
1147
- if (d = Hb(c, "w")) {
1148
- throw new H(d);
1155
+ if (d = Ib(c, "w")) {
1156
+ throw new G(d);
1149
1157
  }
1150
1158
  c.l.O(c, {size:0, timestamp:Date.now()});
1151
1159
  }
1152
1160
  b &= -131713;
1153
- e = Ob({node:e, path:Eb(e), flags:b, seekable:!0, position:0, m:e.m, oc:[], error:!1});
1161
+ e = Pb({node:e, path:Fb(e), flags:b, seekable:!0, position:0, m:e.m, oc:[], error:!1});
1154
1162
  e.m.open && e.m.open(e);
1155
- !m.logReadFiles || b & 1 || (Tb || (Tb = {}), a in Tb || (Tb[a] = 1));
1163
+ !l.logReadFiles || b & 1 || (Ub || (Ub = {}), a in Ub || (Ub[a] = 1));
1156
1164
  return e;
1157
- }, Vb = (a, b, c) => {
1165
+ }, Wb = (a, b, c) => {
1158
1166
  if (null === a.V) {
1159
- throw new H(8);
1167
+ throw new G(8);
1160
1168
  }
1161
1169
  if (!a.seekable || !a.m.$) {
1162
- throw new H(70);
1170
+ throw new G(70);
1163
1171
  }
1164
1172
  if (0 != c && 1 != c && 2 != c) {
1165
- throw new H(28);
1173
+ throw new G(28);
1166
1174
  }
1167
1175
  a.position = a.m.$(a, b, c);
1168
1176
  a.oc = [];
1169
- }, Wb = () => {
1170
- H || (H = function(a, b) {
1177
+ }, Xb = () => {
1178
+ G || (G = function(a, b) {
1171
1179
  this.name = "ErrnoError";
1172
1180
  this.node = b;
1173
1181
  this.dc = function(c) {
@@ -1175,55 +1183,55 @@ var wb = null, xb = {}, yb = [], zb = 1, Ab = null, Bb = !0, H = null, sb = {},
1175
1183
  };
1176
1184
  this.dc(a);
1177
1185
  this.message = "FS error";
1178
- }, H.prototype = Error(), H.prototype.constructor = H, [44].forEach(a => {
1179
- sb[a] = new H(a);
1180
- sb[a].stack = "<generic error, no stack>";
1186
+ }, G.prototype = Error(), G.prototype.constructor = G, [44].forEach(a => {
1187
+ tb[a] = new G(a);
1188
+ tb[a].stack = "<generic error, no stack>";
1181
1189
  }));
1182
- }, Xb, Zb = (a, b, c) => {
1190
+ }, Yb, $b = (a, b, c) => {
1183
1191
  a = Za("/dev/" + a);
1184
- var d = vb(!!b, !!c);
1185
- Yb || (Yb = 64);
1186
- var e = Yb++ << 8 | 0;
1187
- lb(e, {open:f => {
1192
+ var d = wb(!!b, !!c);
1193
+ Zb || (Zb = 64);
1194
+ var e = Zb++ << 8 | 0;
1195
+ mb(e, {open:f => {
1188
1196
  f.seekable = !1;
1189
1197
  }, close:() => {
1190
1198
  c && c.buffer && c.buffer.length && c(10);
1191
- }, read:(f, g, k, q) => {
1192
- for (var n = 0, t = 0; t < q; t++) {
1199
+ }, read:(f, g, k, p) => {
1200
+ for (var n = 0, t = 0; t < p; t++) {
1193
1201
  try {
1194
- var v = b();
1202
+ var w = b();
1195
1203
  } catch (y) {
1196
- throw new H(29);
1204
+ throw new G(29);
1197
1205
  }
1198
- if (void 0 === v && 0 === n) {
1199
- throw new H(6);
1206
+ if (void 0 === w && 0 === n) {
1207
+ throw new G(6);
1200
1208
  }
1201
- if (null === v || void 0 === v) {
1209
+ if (null === w || void 0 === w) {
1202
1210
  break;
1203
1211
  }
1204
1212
  n++;
1205
- g[k + t] = v;
1213
+ g[k + t] = w;
1206
1214
  }
1207
1215
  n && (f.node.timestamp = Date.now());
1208
1216
  return n;
1209
- }, write:(f, g, k, q) => {
1210
- for (var n = 0; n < q; n++) {
1217
+ }, write:(f, g, k, p) => {
1218
+ for (var n = 0; n < p; n++) {
1211
1219
  try {
1212
1220
  c(g[k + n]);
1213
1221
  } catch (t) {
1214
- throw new H(29);
1222
+ throw new G(29);
1215
1223
  }
1216
1224
  }
1217
- q && (f.node.timestamp = Date.now());
1225
+ p && (f.node.timestamp = Date.now());
1218
1226
  return n;
1219
1227
  }});
1220
- Rb(a, d, e);
1221
- }, Yb, $b = {}, Nb, Tb, ac = void 0;
1222
- function bc() {
1223
- ac += 4;
1224
- return B[ac - 4 >> 2];
1228
+ Sb(a, d, e);
1229
+ }, Zb, ac = {}, Ob, Ub, bc = void 0;
1230
+ function cc() {
1231
+ bc += 4;
1232
+ return D[bc - 4 >> 2];
1225
1233
  }
1226
- function cc(a) {
1234
+ function dc(a) {
1227
1235
  if (void 0 === a) {
1228
1236
  return "_unknown";
1229
1237
  }
@@ -1231,24 +1239,24 @@ function cc(a) {
1231
1239
  var b = a.charCodeAt(0);
1232
1240
  return 48 <= b && 57 >= b ? `_${a}` : a;
1233
1241
  }
1234
- function dc(a, b) {
1235
- a = cc(a);
1242
+ function ec(a, b) {
1243
+ a = dc(a);
1236
1244
  return {[a]:function() {
1237
1245
  return b.apply(this, arguments);
1238
1246
  }}[a];
1239
1247
  }
1240
- function ec() {
1248
+ function fc() {
1241
1249
  this.L = [void 0];
1242
1250
  this.cb = [];
1243
1251
  }
1244
- var L = new ec(), fc = void 0;
1245
- function M(a) {
1246
- throw new fc(a);
1252
+ var I = new fc(), gc = void 0;
1253
+ function K(a) {
1254
+ throw new gc(a);
1247
1255
  }
1248
- var gc = a => {
1249
- a || M("Cannot use deleted val. handle = " + a);
1250
- return L.get(a).value;
1251
- }, hc = a => {
1256
+ var hc = a => {
1257
+ a || K("Cannot use deleted val. handle = " + a);
1258
+ return I.get(a).value;
1259
+ }, ic = a => {
1252
1260
  switch(a) {
1253
1261
  case void 0:
1254
1262
  return 1;
@@ -1259,11 +1267,11 @@ var gc = a => {
1259
1267
  case !1:
1260
1268
  return 4;
1261
1269
  default:
1262
- return L.ra({pb:1, value:a});
1270
+ return I.ra({pb:1, value:a});
1263
1271
  }
1264
1272
  };
1265
- function ic(a) {
1266
- var b = Error, c = dc(a, function(d) {
1273
+ function jc(a) {
1274
+ var b = Error, c = ec(a, function(d) {
1267
1275
  this.name = a;
1268
1276
  this.message = d;
1269
1277
  d = Error(d).stack;
@@ -1276,122 +1284,122 @@ function ic(a) {
1276
1284
  };
1277
1285
  return c;
1278
1286
  }
1279
- var jc = void 0, kc = void 0;
1280
- function O(a) {
1281
- for (var b = ""; w[a];) {
1282
- b += kc[w[a++]];
1287
+ var kc = void 0, lc = void 0;
1288
+ function L(a) {
1289
+ for (var b = ""; x[a];) {
1290
+ b += lc[x[a++]];
1283
1291
  }
1284
1292
  return b;
1285
1293
  }
1286
- var lc = [];
1287
- function mc() {
1288
- for (; lc.length;) {
1289
- var a = lc.pop();
1294
+ var mc = [];
1295
+ function nc() {
1296
+ for (; mc.length;) {
1297
+ var a = mc.pop();
1290
1298
  a.g.ga = !1;
1291
1299
  a["delete"]();
1292
1300
  }
1293
1301
  }
1294
- var nc = void 0, oc = {};
1295
- function pc(a, b) {
1296
- for (void 0 === b && M("ptr should not be undefined"); a.A;) {
1302
+ var oc = void 0, pc = {};
1303
+ function qc(a, b) {
1304
+ for (void 0 === b && K("ptr should not be undefined"); a.A;) {
1297
1305
  b = a.na(b), a = a.A;
1298
1306
  }
1299
1307
  return b;
1300
1308
  }
1301
- var qc = {};
1302
- function rc(a) {
1303
- a = sc(a);
1304
- var b = O(a);
1305
- tc(a);
1309
+ var rc = {};
1310
+ function sc(a) {
1311
+ a = tc(a);
1312
+ var b = L(a);
1313
+ uc(a);
1306
1314
  return b;
1307
1315
  }
1308
- function uc(a, b) {
1309
- var c = qc[a];
1310
- void 0 === c && M(b + " has unknown type " + rc(a));
1316
+ function vc(a, b) {
1317
+ var c = rc[a];
1318
+ void 0 === c && K(b + " has unknown type " + sc(a));
1311
1319
  return c;
1312
1320
  }
1313
- function vc() {
1321
+ function wc() {
1314
1322
  }
1315
- var wc = !1;
1316
- function xc(a) {
1323
+ var xc = !1;
1324
+ function yc(a) {
1317
1325
  --a.count.value;
1318
1326
  0 === a.count.value && (a.G ? a.K.U(a.G) : a.u.i.U(a.o));
1319
1327
  }
1320
- function yc(a, b, c) {
1328
+ function zc(a, b, c) {
1321
1329
  if (b === c) {
1322
1330
  return a;
1323
1331
  }
1324
1332
  if (void 0 === c.A) {
1325
1333
  return null;
1326
1334
  }
1327
- a = yc(a, b, c.A);
1335
+ a = zc(a, b, c.A);
1328
1336
  return null === a ? null : c.Ib(a);
1329
1337
  }
1330
- var zc = {};
1331
- function Ac(a, b) {
1332
- b = pc(a, b);
1333
- return oc[b];
1338
+ var Ac = {};
1339
+ function Bc(a, b) {
1340
+ b = qc(a, b);
1341
+ return pc[b];
1334
1342
  }
1335
- var Bc = void 0;
1336
- function Cc(a) {
1337
- throw new Bc(a);
1343
+ var Cc = void 0;
1344
+ function Dc(a) {
1345
+ throw new Cc(a);
1338
1346
  }
1339
- function Dc(a, b) {
1340
- b.u && b.o || Cc("makeClassHandle requires ptr and ptrType");
1341
- !!b.K !== !!b.G && Cc("Both smartPtrType and smartPtr must be specified");
1347
+ function Ec(a, b) {
1348
+ b.u && b.o || Dc("makeClassHandle requires ptr and ptrType");
1349
+ !!b.K !== !!b.G && Dc("Both smartPtrType and smartPtr must be specified");
1342
1350
  b.count = {value:1};
1343
- return Ec(Object.create(a, {g:{value:b,},}));
1351
+ return Fc(Object.create(a, {g:{value:b,},}));
1344
1352
  }
1345
- function Ec(a) {
1353
+ function Fc(a) {
1346
1354
  if ("undefined" === typeof FinalizationRegistry) {
1347
- return Ec = b => b, a;
1355
+ return Fc = b => b, a;
1348
1356
  }
1349
- wc = new FinalizationRegistry(b => {
1350
- xc(b.g);
1357
+ xc = new FinalizationRegistry(b => {
1358
+ yc(b.g);
1351
1359
  });
1352
- Ec = b => {
1360
+ Fc = b => {
1353
1361
  var c = b.g;
1354
- c.G && wc.register(b, {g:c}, b);
1362
+ c.G && xc.register(b, {g:c}, b);
1355
1363
  return b;
1356
1364
  };
1357
- vc = b => {
1358
- wc.unregister(b);
1365
+ wc = b => {
1366
+ xc.unregister(b);
1359
1367
  };
1360
- return Ec(a);
1368
+ return Fc(a);
1361
1369
  }
1362
- var Fc = {};
1363
- function Gc(a) {
1370
+ var Gc = {};
1371
+ function Hc(a) {
1364
1372
  for (; a.length;) {
1365
1373
  var b = a.pop();
1366
1374
  a.pop()(b);
1367
1375
  }
1368
1376
  }
1369
- function Hc(a) {
1370
- return this.fromWireType(B[a >> 2]);
1377
+ function Ic(a) {
1378
+ return this.fromWireType(D[a >> 2]);
1371
1379
  }
1372
- var Ic = {}, Jc = {};
1373
- function P(a, b, c) {
1380
+ var Jc = {}, Kc = {};
1381
+ function N(a, b, c) {
1374
1382
  function d(k) {
1375
1383
  k = c(k);
1376
- k.length !== a.length && Cc("Mismatched type converter count");
1377
- for (var q = 0; q < a.length; ++q) {
1378
- Kc(a[q], k[q]);
1384
+ k.length !== a.length && Dc("Mismatched type converter count");
1385
+ for (var p = 0; p < a.length; ++p) {
1386
+ Lc(a[p], k[p]);
1379
1387
  }
1380
1388
  }
1381
1389
  a.forEach(function(k) {
1382
- Jc[k] = b;
1390
+ Kc[k] = b;
1383
1391
  });
1384
1392
  var e = Array(b.length), f = [], g = 0;
1385
- b.forEach((k, q) => {
1386
- qc.hasOwnProperty(k) ? e[q] = qc[k] : (f.push(k), Ic.hasOwnProperty(k) || (Ic[k] = []), Ic[k].push(() => {
1387
- e[q] = qc[k];
1393
+ b.forEach((k, p) => {
1394
+ rc.hasOwnProperty(k) ? e[p] = rc[k] : (f.push(k), Jc.hasOwnProperty(k) || (Jc[k] = []), Jc[k].push(() => {
1395
+ e[p] = rc[k];
1388
1396
  ++g;
1389
1397
  g === f.length && d(e);
1390
1398
  }));
1391
1399
  });
1392
1400
  0 === f.length && d(e);
1393
1401
  }
1394
- function Lc(a) {
1402
+ function Mc(a) {
1395
1403
  switch(a) {
1396
1404
  case 1:
1397
1405
  return 0;
@@ -1405,45 +1413,45 @@ function Lc(a) {
1405
1413
  throw new TypeError(`Unknown type size: ${a}`);
1406
1414
  }
1407
1415
  }
1408
- function Mc(a, b, c = {}) {
1416
+ function Nc(a, b, c = {}) {
1409
1417
  var d = b.name;
1410
- a || M(`type "${d}" must have a positive integer typeid pointer`);
1411
- if (qc.hasOwnProperty(a)) {
1418
+ a || K(`type "${d}" must have a positive integer typeid pointer`);
1419
+ if (rc.hasOwnProperty(a)) {
1412
1420
  if (c.Tb) {
1413
1421
  return;
1414
1422
  }
1415
- M(`Cannot register type '${d}' twice`);
1423
+ K(`Cannot register type '${d}' twice`);
1416
1424
  }
1417
- qc[a] = b;
1418
- delete Jc[a];
1419
- Ic.hasOwnProperty(a) && (b = Ic[a], delete Ic[a], b.forEach(e => e()));
1425
+ rc[a] = b;
1426
+ delete Kc[a];
1427
+ Jc.hasOwnProperty(a) && (b = Jc[a], delete Jc[a], b.forEach(e => e()));
1420
1428
  }
1421
- function Kc(a, b, c = {}) {
1429
+ function Lc(a, b, c = {}) {
1422
1430
  if (!("argPackAdvance" in b)) {
1423
1431
  throw new TypeError("registerType registeredInstance requires argPackAdvance");
1424
1432
  }
1425
- Mc(a, b, c);
1433
+ Nc(a, b, c);
1426
1434
  }
1427
- function Nc(a) {
1428
- M(a.g.u.i.name + " instance already deleted");
1435
+ function Oc(a) {
1436
+ K(a.g.u.i.name + " instance already deleted");
1429
1437
  }
1430
- function Oc() {
1438
+ function Pc() {
1431
1439
  }
1432
- function Pc(a, b, c) {
1440
+ function Qc(a, b, c) {
1433
1441
  if (void 0 === a[b].B) {
1434
1442
  var d = a[b];
1435
1443
  a[b] = function() {
1436
- a[b].B.hasOwnProperty(arguments.length) || M(`Function '${c}' called with an invalid number of arguments (${arguments.length}) - expects one of (${a[b].B})!`);
1444
+ a[b].B.hasOwnProperty(arguments.length) || K(`Function '${c}' called with an invalid number of arguments (${arguments.length}) - expects one of (${a[b].B})!`);
1437
1445
  return a[b].B[arguments.length].apply(this, arguments);
1438
1446
  };
1439
1447
  a[b].B = [];
1440
1448
  a[b].B[d.ea] = d;
1441
1449
  }
1442
1450
  }
1443
- function Qc(a, b, c) {
1444
- m.hasOwnProperty(a) ? ((void 0 === c || void 0 !== m[a].B && void 0 !== m[a].B[c]) && M(`Cannot register public name '${a}' twice`), Pc(m, a, a), m.hasOwnProperty(c) && M(`Cannot register multiple overloads of a function with the same number of arguments (${c})!`), m[a].B[c] = b) : (m[a] = b, void 0 !== c && (m[a].Hc = c));
1451
+ function Rc(a, b, c) {
1452
+ l.hasOwnProperty(a) ? ((void 0 === c || void 0 !== l[a].B && void 0 !== l[a].B[c]) && K(`Cannot register public name '${a}' twice`), Qc(l, a, a), l.hasOwnProperty(c) && K(`Cannot register multiple overloads of a function with the same number of arguments (${c})!`), l[a].B[c] = b) : (l[a] = b, void 0 !== c && (l[a].Hc = c));
1445
1453
  }
1446
- function Rc(a, b, c, d, e, f, g, k) {
1454
+ function Sc(a, b, c, d, e, f, g, k) {
1447
1455
  this.name = a;
1448
1456
  this.constructor = b;
1449
1457
  this.M = c;
@@ -1454,23 +1462,23 @@ function Rc(a, b, c, d, e, f, g, k) {
1454
1462
  this.Ib = k;
1455
1463
  this.mb = [];
1456
1464
  }
1457
- function Sc(a, b, c) {
1465
+ function Tc(a, b, c) {
1458
1466
  for (; b !== c;) {
1459
- b.na || M(`Expected null or instance of ${c.name}, got an instance of ${b.name}`), a = b.na(a), b = b.A;
1467
+ b.na || K(`Expected null or instance of ${c.name}, got an instance of ${b.name}`), a = b.na(a), b = b.A;
1460
1468
  }
1461
1469
  return a;
1462
1470
  }
1463
- function Tc(a, b) {
1471
+ function Uc(a, b) {
1464
1472
  if (null === b) {
1465
- return this.Na && M(`null is not a valid ${this.name}`), 0;
1473
+ return this.Na && K(`null is not a valid ${this.name}`), 0;
1466
1474
  }
1467
- b.g || M(`Cannot pass "${Uc(b)}" as a ${this.name}`);
1468
- b.g.o || M(`Cannot pass deleted object as a pointer of type ${this.name}`);
1469
- return Sc(b.g.o, b.g.u.i, this.i);
1475
+ b.g || K(`Cannot pass "${Vc(b)}" as a ${this.name}`);
1476
+ b.g.o || K(`Cannot pass deleted object as a pointer of type ${this.name}`);
1477
+ return Tc(b.g.o, b.g.u.i, this.i);
1470
1478
  }
1471
- function Vc(a, b) {
1479
+ function Wc(a, b) {
1472
1480
  if (null === b) {
1473
- this.Na && M(`null is not a valid ${this.name}`);
1481
+ this.Na && K(`null is not a valid ${this.name}`);
1474
1482
  if (this.wa) {
1475
1483
  var c = this.Pa();
1476
1484
  null !== a && a.push(this.U, c);
@@ -1478,14 +1486,14 @@ function Vc(a, b) {
1478
1486
  }
1479
1487
  return 0;
1480
1488
  }
1481
- b.g || M(`Cannot pass "${Uc(b)}" as a ${this.name}`);
1482
- b.g.o || M(`Cannot pass deleted object as a pointer of type ${this.name}`);
1483
- !this.va && b.g.u.va && M(`Cannot convert argument of type ${b.g.K ? b.g.K.name : b.g.u.name} to parameter type ${this.name}`);
1484
- c = Sc(b.g.o, b.g.u.i, this.i);
1489
+ b.g || K(`Cannot pass "${Vc(b)}" as a ${this.name}`);
1490
+ b.g.o || K(`Cannot pass deleted object as a pointer of type ${this.name}`);
1491
+ !this.va && b.g.u.va && K(`Cannot convert argument of type ${b.g.K ? b.g.K.name : b.g.u.name} to parameter type ${this.name}`);
1492
+ c = Tc(b.g.o, b.g.u.i, this.i);
1485
1493
  if (this.wa) {
1486
- switch(void 0 === b.g.G && M("Passing raw pointer to smart pointer is illegal"), this.ic) {
1494
+ switch(void 0 === b.g.G && K("Passing raw pointer to smart pointer is illegal"), this.ic) {
1487
1495
  case 0:
1488
- b.g.K === this ? c = b.g.G : M(`Cannot convert argument of type ${b.g.K ? b.g.K.name : b.g.u.name} to parameter type ${this.name}`);
1496
+ b.g.K === this ? c = b.g.G : K(`Cannot convert argument of type ${b.g.K ? b.g.K.name : b.g.u.name} to parameter type ${this.name}`);
1489
1497
  break;
1490
1498
  case 1:
1491
1499
  c = b.g.G;
@@ -1495,51 +1503,51 @@ function Vc(a, b) {
1495
1503
  c = b.g.G;
1496
1504
  } else {
1497
1505
  var d = b.clone();
1498
- c = this.cc(c, hc(function() {
1506
+ c = this.cc(c, ic(function() {
1499
1507
  d["delete"]();
1500
1508
  }));
1501
1509
  null !== a && a.push(this.U, c);
1502
1510
  }
1503
1511
  break;
1504
1512
  default:
1505
- M("Unsupporting sharing policy");
1513
+ K("Unsupporting sharing policy");
1506
1514
  }
1507
1515
  }
1508
1516
  return c;
1509
1517
  }
1510
- function Wc(a, b) {
1518
+ function Xc(a, b) {
1511
1519
  if (null === b) {
1512
- return this.Na && M(`null is not a valid ${this.name}`), 0;
1520
+ return this.Na && K(`null is not a valid ${this.name}`), 0;
1513
1521
  }
1514
- b.g || M(`Cannot pass "${Uc(b)}" as a ${this.name}`);
1515
- b.g.o || M(`Cannot pass deleted object as a pointer of type ${this.name}`);
1516
- b.g.u.va && M(`Cannot convert argument of type ${b.g.u.name} to parameter type ${this.name}`);
1517
- return Sc(b.g.o, b.g.u.i, this.i);
1522
+ b.g || K(`Cannot pass "${Vc(b)}" as a ${this.name}`);
1523
+ b.g.o || K(`Cannot pass deleted object as a pointer of type ${this.name}`);
1524
+ b.g.u.va && K(`Cannot convert argument of type ${b.g.u.name} to parameter type ${this.name}`);
1525
+ return Tc(b.g.o, b.g.u.i, this.i);
1518
1526
  }
1519
- function Xc(a, b, c, d) {
1527
+ function Yc(a, b, c, d) {
1520
1528
  this.name = a;
1521
1529
  this.i = b;
1522
1530
  this.Na = c;
1523
1531
  this.va = d;
1524
1532
  this.wa = !1;
1525
1533
  this.U = this.cc = this.Pa = this.nb = this.ic = this.bc = void 0;
1526
- void 0 !== b.A ? this.toWireType = Vc : (this.toWireType = d ? Tc : Wc, this.J = null);
1534
+ void 0 !== b.A ? this.toWireType = Wc : (this.toWireType = d ? Uc : Xc, this.J = null);
1527
1535
  }
1528
- function Yc(a, b, c) {
1529
- m.hasOwnProperty(a) || Cc("Replacing nonexistant public symbol");
1530
- void 0 !== m[a].B && void 0 !== c ? m[a].B[c] = b : (m[a] = b, m[a].ea = c);
1536
+ function Zc(a, b, c) {
1537
+ l.hasOwnProperty(a) || Dc("Replacing nonexistant public symbol");
1538
+ void 0 !== l[a].B && void 0 !== c ? l[a].B[c] = b : (l[a] = b, l[a].ea = c);
1531
1539
  }
1532
- var Zc = [], Q = a => {
1533
- var b = Zc[a];
1534
- b || (a >= Zc.length && (Zc.length = a + 1), Zc[a] = b = Ca.get(a));
1540
+ var $c = [], Q = a => {
1541
+ var b = $c[a];
1542
+ b || (a >= $c.length && ($c.length = a + 1), $c[a] = b = Ca.get(a));
1535
1543
  return b;
1536
- }, $c = (a, b) => {
1544
+ }, ad = (a, b) => {
1537
1545
  var c = [];
1538
1546
  return function() {
1539
1547
  c.length = 0;
1540
1548
  Object.assign(c, arguments);
1541
1549
  if (a.includes("j")) {
1542
- var d = m["dynCall_" + a];
1550
+ var d = l["dynCall_" + a];
1543
1551
  d = c && c.length ? d.apply(null, [b].concat(c)) : d.call(null, b);
1544
1552
  } else {
1545
1553
  d = Q(b).apply(null, c);
@@ -1548,23 +1556,23 @@ var Zc = [], Q = a => {
1548
1556
  };
1549
1557
  };
1550
1558
  function R(a, b) {
1551
- a = O(a);
1552
- var c = a.includes("j") ? $c(a, b) : Q(b);
1553
- "function" != typeof c && M(`unknown function pointer with signature ${a}: ${b}`);
1559
+ a = L(a);
1560
+ var c = a.includes("j") ? ad(a, b) : Q(b);
1561
+ "function" != typeof c && K(`unknown function pointer with signature ${a}: ${b}`);
1554
1562
  return c;
1555
1563
  }
1556
- var ad = void 0;
1557
- function bd(a, b) {
1564
+ var bd = void 0;
1565
+ function cd(a, b) {
1558
1566
  function c(f) {
1559
- e[f] || qc[f] || (Jc[f] ? Jc[f].forEach(c) : (d.push(f), e[f] = !0));
1567
+ e[f] || rc[f] || (Kc[f] ? Kc[f].forEach(c) : (d.push(f), e[f] = !0));
1560
1568
  }
1561
1569
  var d = [], e = {};
1562
1570
  b.forEach(c);
1563
- throw new ad(`${a}: ` + d.map(rc).join([", "]));
1571
+ throw new bd(`${a}: ` + d.map(sc).join([", "]));
1564
1572
  }
1565
- function cd(a, b, c, d, e) {
1573
+ function dd(a, b, c, d, e) {
1566
1574
  var f = b.length;
1567
- 2 > f && M("argTypes array size mismatch! Must at least get return value and 'this' types!");
1575
+ 2 > f && K("argTypes array size mismatch! Must at least get return value and 'this' types!");
1568
1576
  var g = null !== b[1] && null !== c, k = !1;
1569
1577
  for (c = 1; c < b.length; ++c) {
1570
1578
  if (null !== b[c] && void 0 === b[c].J) {
@@ -1572,52 +1580,52 @@ function cd(a, b, c, d, e) {
1572
1580
  break;
1573
1581
  }
1574
1582
  }
1575
- var q = "void" !== b[0].name, n = f - 2, t = Array(n), v = [], y = [];
1583
+ var p = "void" !== b[0].name, n = f - 2, t = Array(n), w = [], y = [];
1576
1584
  return function() {
1577
- arguments.length !== n && M(`function ${a} called with ${arguments.length} arguments, expected ${n} args!`);
1585
+ arguments.length !== n && K(`function ${a} called with ${arguments.length} arguments, expected ${n} args!`);
1578
1586
  y.length = 0;
1579
- v.length = g ? 2 : 1;
1580
- v[0] = e;
1587
+ w.length = g ? 2 : 1;
1588
+ w[0] = e;
1581
1589
  if (g) {
1582
- var l = b[1].toWireType(y, this);
1583
- v[1] = l;
1590
+ var q = b[1].toWireType(y, this);
1591
+ w[1] = q;
1584
1592
  }
1585
1593
  for (var r = 0; r < n; ++r) {
1586
- t[r] = b[r + 2].toWireType(y, arguments[r]), v.push(t[r]);
1594
+ t[r] = b[r + 2].toWireType(y, arguments[r]), w.push(t[r]);
1587
1595
  }
1588
- r = d.apply(null, v);
1596
+ r = d.apply(null, w);
1589
1597
  if (k) {
1590
- Gc(y);
1598
+ Hc(y);
1591
1599
  } else {
1592
- for (var x = g ? 1 : 2; x < b.length; x++) {
1593
- var z = 1 === x ? l : t[x - 2];
1594
- null !== b[x].J && b[x].J(z);
1600
+ for (var u = g ? 1 : 2; u < b.length; u++) {
1601
+ var z = 1 === u ? q : t[u - 2];
1602
+ null !== b[u].J && b[u].J(z);
1595
1603
  }
1596
1604
  }
1597
- l = q ? b[0].fromWireType(r) : void 0;
1598
- return l;
1605
+ q = p ? b[0].fromWireType(r) : void 0;
1606
+ return q;
1599
1607
  };
1600
1608
  }
1601
- function dd(a, b) {
1609
+ function ed(a, b) {
1602
1610
  for (var c = [], d = 0; d < a; d++) {
1603
- c.push(D[b + 4 * d >> 2]);
1611
+ c.push(E[b + 4 * d >> 2]);
1604
1612
  }
1605
1613
  return c;
1606
1614
  }
1607
- function ed(a, b, c) {
1608
- a instanceof Object || M(`${c} with invalid "this": ${a}`);
1609
- a instanceof b.i.constructor || M(`${c} incompatible with "this" of type ${a.constructor.name}`);
1610
- a.g.o || M(`cannot call emscripten binding method ${c} on deleted object`);
1611
- return Sc(a.g.o, a.g.u.i, b.i);
1615
+ function fd(a, b, c) {
1616
+ a instanceof Object || K(`${c} with invalid "this": ${a}`);
1617
+ a instanceof b.i.constructor || K(`${c} incompatible with "this" of type ${a.constructor.name}`);
1618
+ a.g.o || K(`cannot call emscripten binding method ${c} on deleted object`);
1619
+ return Tc(a.g.o, a.g.u.i, b.i);
1612
1620
  }
1613
- function fd(a) {
1614
- a >= L.h && 0 === --L.get(a).pb && L.Sb(a);
1621
+ function gd(a) {
1622
+ a >= I.h && 0 === --I.get(a).pb && I.Sb(a);
1615
1623
  }
1616
- function gd(a, b, c) {
1624
+ function hd(a, b, c) {
1617
1625
  switch(b) {
1618
1626
  case 0:
1619
1627
  return function(d) {
1620
- return this.fromWireType((c ? u : w)[d]);
1628
+ return this.fromWireType((c ? v : x)[d]);
1621
1629
  };
1622
1630
  case 1:
1623
1631
  return function(d) {
@@ -1625,24 +1633,24 @@ function gd(a, b, c) {
1625
1633
  };
1626
1634
  case 2:
1627
1635
  return function(d) {
1628
- return this.fromWireType((c ? B : D)[d >> 2]);
1636
+ return this.fromWireType((c ? D : E)[d >> 2]);
1629
1637
  };
1630
1638
  default:
1631
1639
  throw new TypeError("Unknown integer type: " + a);
1632
1640
  }
1633
1641
  }
1634
- function Uc(a) {
1642
+ function Vc(a) {
1635
1643
  if (null === a) {
1636
1644
  return "null";
1637
1645
  }
1638
1646
  var b = typeof a;
1639
1647
  return "object" === b || "array" === b || "function" === b ? a.toString() : "" + a;
1640
1648
  }
1641
- function hd(a, b) {
1649
+ function jd(a, b) {
1642
1650
  switch(b) {
1643
1651
  case 2:
1644
1652
  return function(c) {
1645
- return this.fromWireType(E[c >> 2]);
1653
+ return this.fromWireType(F[c >> 2]);
1646
1654
  };
1647
1655
  case 3:
1648
1656
  return function(c) {
@@ -1652,13 +1660,13 @@ function hd(a, b) {
1652
1660
  throw new TypeError("Unknown float type: " + a);
1653
1661
  }
1654
1662
  }
1655
- function jd(a, b, c) {
1663
+ function kd(a, b, c) {
1656
1664
  switch(b) {
1657
1665
  case 0:
1658
1666
  return c ? function(d) {
1659
- return u[d];
1667
+ return v[d];
1660
1668
  } : function(d) {
1661
- return w[d];
1669
+ return x[d];
1662
1670
  };
1663
1671
  case 1:
1664
1672
  return c ? function(d) {
@@ -1668,22 +1676,22 @@ function jd(a, b, c) {
1668
1676
  };
1669
1677
  case 2:
1670
1678
  return c ? function(d) {
1671
- return B[d >> 2];
1672
- } : function(d) {
1673
1679
  return D[d >> 2];
1680
+ } : function(d) {
1681
+ return E[d >> 2];
1674
1682
  };
1675
1683
  default:
1676
1684
  throw new TypeError("Unknown integer type: " + a);
1677
1685
  }
1678
1686
  }
1679
- var kd = "undefined" != typeof TextDecoder ? new TextDecoder("utf-16le") : void 0, ld = (a, b) => {
1687
+ var ld = "undefined" != typeof TextDecoder ? new TextDecoder("utf-16le") : void 0, md = (a, b) => {
1680
1688
  var c = a >> 1;
1681
1689
  for (var d = c + b / 2; !(c >= d) && za[c];) {
1682
1690
  ++c;
1683
1691
  }
1684
1692
  c <<= 1;
1685
- if (32 < c - a && kd) {
1686
- return kd.decode(w.subarray(a, c));
1693
+ if (32 < c - a && ld) {
1694
+ return ld.decode(x.subarray(a, c));
1687
1695
  }
1688
1696
  c = "";
1689
1697
  for (d = 0; !(d >= b / 2); ++d) {
@@ -1694,7 +1702,7 @@ var kd = "undefined" != typeof TextDecoder ? new TextDecoder("utf-16le") : void
1694
1702
  c += String.fromCharCode(e);
1695
1703
  }
1696
1704
  return c;
1697
- }, md = (a, b, c) => {
1705
+ }, nd = (a, b, c) => {
1698
1706
  void 0 === c && (c = 2147483647);
1699
1707
  if (2 > c) {
1700
1708
  return 0;
@@ -1707,9 +1715,9 @@ var kd = "undefined" != typeof TextDecoder ? new TextDecoder("utf-16le") : void
1707
1715
  }
1708
1716
  A[b >> 1] = 0;
1709
1717
  return b - d;
1710
- }, nd = a => 2 * a.length, od = (a, b) => {
1718
+ }, od = a => 2 * a.length, pd = (a, b) => {
1711
1719
  for (var c = 0, d = ""; !(c >= b / 4);) {
1712
- var e = B[a + 4 * c >> 2];
1720
+ var e = D[a + 4 * c >> 2];
1713
1721
  if (0 == e) {
1714
1722
  break;
1715
1723
  }
@@ -1717,7 +1725,7 @@ var kd = "undefined" != typeof TextDecoder ? new TextDecoder("utf-16le") : void
1717
1725
  65536 <= e ? (e -= 65536, d += String.fromCharCode(55296 | e >> 10, 56320 | e & 1023)) : d += String.fromCharCode(e);
1718
1726
  }
1719
1727
  return d;
1720
- }, pd = (a, b, c) => {
1728
+ }, qd = (a, b, c) => {
1721
1729
  void 0 === c && (c = 2147483647);
1722
1730
  if (4 > c) {
1723
1731
  return 0;
@@ -1730,40 +1738,40 @@ var kd = "undefined" != typeof TextDecoder ? new TextDecoder("utf-16le") : void
1730
1738
  var g = a.charCodeAt(++e);
1731
1739
  f = 65536 + ((f & 1023) << 10) | g & 1023;
1732
1740
  }
1733
- B[b >> 2] = f;
1741
+ D[b >> 2] = f;
1734
1742
  b += 4;
1735
1743
  if (b + 4 > c) {
1736
1744
  break;
1737
1745
  }
1738
1746
  }
1739
- B[b >> 2] = 0;
1747
+ D[b >> 2] = 0;
1740
1748
  return b - d;
1741
- }, qd = a => {
1749
+ }, rd = a => {
1742
1750
  for (var b = 0, c = 0; c < a.length; ++c) {
1743
1751
  var d = a.charCodeAt(c);
1744
1752
  55296 <= d && 57343 >= d && ++c;
1745
1753
  b += 4;
1746
1754
  }
1747
1755
  return b;
1748
- }, rd = {};
1749
- function sd(a) {
1750
- var b = rd[a];
1751
- return void 0 === b ? O(a) : b;
1752
- }
1753
- var td = [];
1754
- function ud(a) {
1755
- var b = td.length;
1756
- td.push(a);
1756
+ }, sd = {};
1757
+ function td(a) {
1758
+ var b = sd[a];
1759
+ return void 0 === b ? L(a) : b;
1760
+ }
1761
+ var ud = [];
1762
+ function vd(a) {
1763
+ var b = ud.length;
1764
+ ud.push(a);
1757
1765
  return b;
1758
1766
  }
1759
- function vd(a, b) {
1767
+ function wd(a, b) {
1760
1768
  for (var c = Array(a), d = 0; d < a; ++d) {
1761
- c[d] = uc(D[b + 4 * d >> 2], "parameter " + d);
1769
+ c[d] = vc(E[b + 4 * d >> 2], "parameter " + d);
1762
1770
  }
1763
1771
  return c;
1764
1772
  }
1765
- var wd = [], xd = [];
1766
- function yd(a) {
1773
+ var xd = [], yd = [];
1774
+ function zd(a) {
1767
1775
  var b = a.getExtension("ANGLE_instanced_arrays");
1768
1776
  b && (a.vertexAttribDivisor = function(c, d) {
1769
1777
  b.vertexAttribDivisorANGLE(c, d);
@@ -1773,7 +1781,7 @@ function yd(a) {
1773
1781
  b.drawElementsInstancedANGLE(c, d, e, f, g);
1774
1782
  });
1775
1783
  }
1776
- function zd(a) {
1784
+ function Ad(a) {
1777
1785
  var b = a.getExtension("OES_vertex_array_object");
1778
1786
  b && (a.createVertexArray = function() {
1779
1787
  return b.createVertexArrayOES();
@@ -1785,25 +1793,25 @@ function zd(a) {
1785
1793
  return b.isVertexArrayOES(c);
1786
1794
  });
1787
1795
  }
1788
- function Ad(a) {
1796
+ function Bd(a) {
1789
1797
  var b = a.getExtension("WEBGL_draw_buffers");
1790
1798
  b && (a.drawBuffers = function(c, d) {
1791
1799
  b.drawBuffersWEBGL(c, d);
1792
1800
  });
1793
1801
  }
1794
- var Bd = 1, Cd = [], Dd = [], Ed = [], Fd = [], Gd = [], Hd = [], Id = [], ja = [], Jd = [], Kd = [], Ld = {}, Md = {}, Nd = 4;
1802
+ var Cd = 1, Dd = [], Ed = [], Fd = [], Gd = [], Hd = [], Id = [], Jd = [], ja = [], Kd = [], Ld = [], Md = {}, Nd = {}, Od = 4;
1795
1803
  function S(a) {
1796
- Od || (Od = a);
1804
+ Pd || (Pd = a);
1797
1805
  }
1798
- function ia(a) {
1799
- for (var b = Bd++, c = a.length; c < b; c++) {
1806
+ function ha(a) {
1807
+ for (var b = Cd++, c = a.length; c < b; c++) {
1800
1808
  a[c] = null;
1801
1809
  }
1802
1810
  return b;
1803
1811
  }
1804
1812
  function la(a) {
1805
1813
  T = ja[a];
1806
- m.yc = U = T && T.Ta;
1814
+ l.yc = U = T && T.Ta;
1807
1815
  return !(a && !U);
1808
1816
  }
1809
1817
  function ka(a) {
@@ -1811,9 +1819,9 @@ function ka(a) {
1811
1819
  if (!a.Ub) {
1812
1820
  a.Ub = !0;
1813
1821
  var b = a.Ta;
1814
- yd(b);
1815
1822
  zd(b);
1816
1823
  Ad(b);
1824
+ Bd(b);
1817
1825
  b.Ya = b.getExtension("WEBGL_draw_instanced_base_vertex_base_instance");
1818
1826
  b.gb = b.getExtension("WEBGL_multi_draw_instanced_base_vertex_base_instance");
1819
1827
  2 <= a.version && (b.Za = b.getExtension("EXT_disjoint_timer_query_webgl2"));
@@ -1826,35 +1834,35 @@ function ka(a) {
1826
1834
  });
1827
1835
  }
1828
1836
  }
1829
- var Od, T;
1830
- function Pd(a, b) {
1831
- U.bindFramebuffer(a, Ed[b]);
1837
+ var Pd, T;
1838
+ function Qd(a, b) {
1839
+ U.bindFramebuffer(a, Fd[b]);
1832
1840
  }
1833
- function Qd(a) {
1834
- U.bindVertexArray(Id[a]);
1841
+ function Rd(a) {
1842
+ U.bindVertexArray(Jd[a]);
1835
1843
  }
1836
- function Rd(a, b) {
1844
+ function Sd(a, b) {
1837
1845
  for (var c = 0; c < a; c++) {
1838
- var d = B[b + 4 * c >> 2];
1839
- U.deleteVertexArray(Id[d]);
1840
- Id[d] = null;
1846
+ var d = D[b + 4 * c >> 2];
1847
+ U.deleteVertexArray(Jd[d]);
1848
+ Jd[d] = null;
1841
1849
  }
1842
1850
  }
1843
- var Sd = [];
1844
- function Td(a, b, c, d) {
1851
+ var Td = [];
1852
+ function Ud(a, b, c, d) {
1845
1853
  U.drawElements(a, b, c, d);
1846
1854
  }
1847
- function Ud(a, b, c, d) {
1855
+ function Vd(a, b, c, d) {
1848
1856
  for (var e = 0; e < a; e++) {
1849
- var f = U[c](), g = f && ia(d);
1857
+ var f = U[c](), g = f && ha(d);
1850
1858
  f ? (f.name = g, d[g] = f) : S(1282);
1851
- B[b + 4 * e >> 2] = g;
1859
+ D[b + 4 * e >> 2] = g;
1852
1860
  }
1853
1861
  }
1854
- function Vd(a, b) {
1855
- Ud(a, b, "createVertexArray", Id);
1856
- }
1857
1862
  function Wd(a, b) {
1863
+ Vd(a, b, "createVertexArray", Jd);
1864
+ }
1865
+ function Xd(a, b) {
1858
1866
  if (b) {
1859
1867
  var c = void 0;
1860
1868
  switch(a) {
@@ -1928,7 +1936,7 @@ function Wd(a, b) {
1928
1936
  } else {
1929
1937
  if (d instanceof Float32Array || d instanceof Uint32Array || d instanceof Int32Array || d instanceof Array) {
1930
1938
  for (a = 0; a < d.length; ++a) {
1931
- B[b + 4 * a >> 2] = d[a];
1939
+ D[b + 4 * a >> 2] = d[a];
1932
1940
  }
1933
1941
  return;
1934
1942
  }
@@ -1947,29 +1955,29 @@ function Wd(a, b) {
1947
1955
  return;
1948
1956
  }
1949
1957
  }
1950
- B[b >> 2] = c;
1958
+ D[b >> 2] = c;
1951
1959
  } else {
1952
1960
  S(1281);
1953
1961
  }
1954
1962
  }
1955
- function Xd(a, b) {
1956
- Wd(a, b);
1963
+ function Yd(a, b) {
1964
+ Xd(a, b);
1957
1965
  }
1958
- var Zd = a => {
1959
- var b = gb(a) + 1, c = Yd(b);
1960
- c && hb(a, w, c, b);
1966
+ var $d = a => {
1967
+ var b = hb(a) + 1, c = Zd(b);
1968
+ c && ib(a, x, c, b);
1961
1969
  return c;
1962
1970
  };
1963
- function $d(a) {
1971
+ function ae(a) {
1964
1972
  return "]" == a.slice(-1) && a.lastIndexOf("[");
1965
1973
  }
1966
- function ae(a) {
1974
+ function be(a) {
1967
1975
  a -= 5120;
1968
- return 0 == a ? u : 1 == a ? w : 2 == a ? A : 4 == a ? B : 6 == a ? E : 5 == a || 28922 == a || 28520 == a || 30779 == a || 30782 == a ? D : za;
1976
+ return 0 == a ? v : 1 == a ? x : 2 == a ? A : 4 == a ? D : 6 == a ? F : 5 == a || 28922 == a || 28520 == a || 30779 == a || 30782 == a ? E : za;
1969
1977
  }
1970
- function be(a, b, c, d, e) {
1971
- a = ae(a);
1972
- var f = 31 - Math.clz32(a.BYTES_PER_ELEMENT), g = Nd;
1978
+ function ce(a, b, c, d, e) {
1979
+ a = be(a);
1980
+ var f = 31 - Math.clz32(a.BYTES_PER_ELEMENT), g = Od;
1973
1981
  return a.subarray(e >> f, e + d * (c * ({5:3, 6:4, 8:2, 29502:3, 29504:4, 26917:2, 26918:2, 29846:3, 29847:4}[b - 6402] || 1) * (1 << f) + g - 1 & -g) >> f);
1974
1982
  }
1975
1983
  function V(a) {
@@ -1981,129 +1989,129 @@ function V(a) {
1981
1989
  }
1982
1990
  S(1282);
1983
1991
  }
1984
- var ce = [], de = [], ee = {}, ge = () => {
1985
- if (!fe) {
1992
+ var de = [], ee = [], fe = {}, he = () => {
1993
+ if (!ge) {
1986
1994
  var a = {USER:"web_user", LOGNAME:"web_user", PATH:"/", PWD:"/", HOME:"/home/web_user", LANG:("object" == typeof navigator && navigator.languages && navigator.languages[0] || "C").replace("-", "_") + ".UTF-8", _:na || "./this.program"}, b;
1987
- for (b in ee) {
1988
- void 0 === ee[b] ? delete a[b] : a[b] = ee[b];
1995
+ for (b in fe) {
1996
+ void 0 === fe[b] ? delete a[b] : a[b] = fe[b];
1989
1997
  }
1990
1998
  var c = [];
1991
1999
  for (b in a) {
1992
2000
  c.push(`${b}=${a[b]}`);
1993
2001
  }
1994
- fe = c;
2002
+ ge = c;
1995
2003
  }
1996
- return fe;
1997
- }, fe, he = a => 0 === a % 4 && (0 !== a % 100 || 0 === a % 400), ie = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31], je = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31], ke = (a, b, c, d) => {
1998
- function e(l, r, x) {
1999
- for (l = "number" == typeof l ? l.toString() : l || ""; l.length < r;) {
2000
- l = x[0] + l;
2004
+ return ge;
2005
+ }, ge, ie = a => 0 === a % 4 && (0 !== a % 100 || 0 === a % 400), je = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31], ke = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31], le = (a, b, c, d) => {
2006
+ function e(q, r, u) {
2007
+ for (q = "number" == typeof q ? q.toString() : q || ""; q.length < r;) {
2008
+ q = u[0] + q;
2001
2009
  }
2002
- return l;
2010
+ return q;
2003
2011
  }
2004
- function f(l, r) {
2005
- return e(l, r, "0");
2012
+ function f(q, r) {
2013
+ return e(q, r, "0");
2006
2014
  }
2007
- function g(l, r) {
2008
- function x(G) {
2009
- return 0 > G ? -1 : 0 < G ? 1 : 0;
2015
+ function g(q, r) {
2016
+ function u(B) {
2017
+ return 0 > B ? -1 : 0 < B ? 1 : 0;
2010
2018
  }
2011
2019
  var z;
2012
- 0 === (z = x(l.getFullYear() - r.getFullYear())) && 0 === (z = x(l.getMonth() - r.getMonth())) && (z = x(l.getDate() - r.getDate()));
2020
+ 0 === (z = u(q.getFullYear() - r.getFullYear())) && 0 === (z = u(q.getMonth() - r.getMonth())) && (z = u(q.getDate() - r.getDate()));
2013
2021
  return z;
2014
2022
  }
2015
- function k(l) {
2016
- switch(l.getDay()) {
2023
+ function k(q) {
2024
+ switch(q.getDay()) {
2017
2025
  case 0:
2018
- return new Date(l.getFullYear() - 1, 11, 29);
2026
+ return new Date(q.getFullYear() - 1, 11, 29);
2019
2027
  case 1:
2020
- return l;
2028
+ return q;
2021
2029
  case 2:
2022
- return new Date(l.getFullYear(), 0, 3);
2030
+ return new Date(q.getFullYear(), 0, 3);
2023
2031
  case 3:
2024
- return new Date(l.getFullYear(), 0, 2);
2032
+ return new Date(q.getFullYear(), 0, 2);
2025
2033
  case 4:
2026
- return new Date(l.getFullYear(), 0, 1);
2034
+ return new Date(q.getFullYear(), 0, 1);
2027
2035
  case 5:
2028
- return new Date(l.getFullYear() - 1, 11, 31);
2036
+ return new Date(q.getFullYear() - 1, 11, 31);
2029
2037
  case 6:
2030
- return new Date(l.getFullYear() - 1, 11, 30);
2038
+ return new Date(q.getFullYear() - 1, 11, 30);
2031
2039
  }
2032
2040
  }
2033
- function q(l) {
2034
- var r = l.aa;
2035
- for (l = new Date((new Date(l.ba + 1900, 0, 1)).getTime()); 0 < r;) {
2036
- var x = l.getMonth(), z = (he(l.getFullYear()) ? ie : je)[x];
2037
- if (r > z - l.getDate()) {
2038
- r -= z - l.getDate() + 1, l.setDate(1), 11 > x ? l.setMonth(x + 1) : (l.setMonth(0), l.setFullYear(l.getFullYear() + 1));
2041
+ function p(q) {
2042
+ var r = q.aa;
2043
+ for (q = new Date((new Date(q.ba + 1900, 0, 1)).getTime()); 0 < r;) {
2044
+ var u = q.getMonth(), z = (ie(q.getFullYear()) ? je : ke)[u];
2045
+ if (r > z - q.getDate()) {
2046
+ r -= z - q.getDate() + 1, q.setDate(1), 11 > u ? q.setMonth(u + 1) : (q.setMonth(0), q.setFullYear(q.getFullYear() + 1));
2039
2047
  } else {
2040
- l.setDate(l.getDate() + r);
2048
+ q.setDate(q.getDate() + r);
2041
2049
  break;
2042
2050
  }
2043
2051
  }
2044
- x = new Date(l.getFullYear() + 1, 0, 4);
2045
- r = k(new Date(l.getFullYear(), 0, 4));
2046
- x = k(x);
2047
- return 0 >= g(r, l) ? 0 >= g(x, l) ? l.getFullYear() + 1 : l.getFullYear() : l.getFullYear() - 1;
2052
+ u = new Date(q.getFullYear() + 1, 0, 4);
2053
+ r = k(new Date(q.getFullYear(), 0, 4));
2054
+ u = k(u);
2055
+ return 0 >= g(r, q) ? 0 >= g(u, q) ? q.getFullYear() + 1 : q.getFullYear() : q.getFullYear() - 1;
2048
2056
  }
2049
- var n = B[d + 40 >> 2];
2050
- d = {lc:B[d >> 2], kc:B[d + 4 >> 2], Ha:B[d + 8 >> 2], Ra:B[d + 12 >> 2], Ia:B[d + 16 >> 2], ba:B[d + 20 >> 2], P:B[d + 24 >> 2], aa:B[d + 28 >> 2], Jc:B[d + 32 >> 2], jc:B[d + 36 >> 2], mc:n ? n ? F(w, n) : "" : ""};
2051
- c = c ? F(w, c) : "";
2057
+ var n = D[d + 40 >> 2];
2058
+ d = {lc:D[d >> 2], kc:D[d + 4 >> 2], Ha:D[d + 8 >> 2], Ra:D[d + 12 >> 2], Ia:D[d + 16 >> 2], ba:D[d + 20 >> 2], P:D[d + 24 >> 2], aa:D[d + 28 >> 2], Jc:D[d + 32 >> 2], jc:D[d + 36 >> 2], mc:n ? n ? fb(x, n) : "" : ""};
2059
+ c = c ? fb(x, c) : "";
2052
2060
  n = {"%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", "%Ec":"%c", "%EC":"%C", "%Ex":"%m/%d/%y", "%EX":"%H:%M:%S", "%Ey":"%y", "%EY":"%Y", "%Od":"%d", "%Oe":"%e", "%OH":"%H", "%OI":"%I", "%Om":"%m", "%OM":"%M", "%OS":"%S", "%Ou":"%u", "%OU":"%U", "%OV":"%V", "%Ow":"%w", "%OW":"%W", "%Oy":"%y",};
2053
2061
  for (var t in n) {
2054
2062
  c = c.replace(new RegExp(t, "g"), n[t]);
2055
2063
  }
2056
- var v = "Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "), y = "January February March April May June July August September October November December".split(" ");
2057
- n = {"%a":l => v[l.P].substring(0, 3), "%A":l => v[l.P], "%b":l => y[l.Ia].substring(0, 3), "%B":l => y[l.Ia], "%C":l => f((l.ba + 1900) / 100 | 0, 2), "%d":l => f(l.Ra, 2), "%e":l => e(l.Ra, 2, " "), "%g":l => q(l).toString().substring(2), "%G":l => q(l), "%H":l => f(l.Ha, 2), "%I":l => {
2058
- l = l.Ha;
2059
- 0 == l ? l = 12 : 12 < l && (l -= 12);
2060
- return f(l, 2);
2061
- }, "%j":l => {
2062
- for (var r = 0, x = 0; x <= l.Ia - 1; r += (he(l.ba + 1900) ? ie : je)[x++]) {
2063
- }
2064
- return f(l.Ra + r, 3);
2065
- }, "%m":l => f(l.Ia + 1, 2), "%M":l => f(l.kc, 2), "%n":() => "\n", "%p":l => 0 <= l.Ha && 12 > l.Ha ? "AM" : "PM", "%S":l => f(l.lc, 2), "%t":() => "\t", "%u":l => l.P || 7, "%U":l => f(Math.floor((l.aa + 7 - l.P) / 7), 2), "%V":l => {
2066
- var r = Math.floor((l.aa + 7 - (l.P + 6) % 7) / 7);
2067
- 2 >= (l.P + 371 - l.aa - 2) % 7 && r++;
2064
+ var w = "Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "), y = "January February March April May June July August September October November December".split(" ");
2065
+ n = {"%a":q => w[q.P].substring(0, 3), "%A":q => w[q.P], "%b":q => y[q.Ia].substring(0, 3), "%B":q => y[q.Ia], "%C":q => f((q.ba + 1900) / 100 | 0, 2), "%d":q => f(q.Ra, 2), "%e":q => e(q.Ra, 2, " "), "%g":q => p(q).toString().substring(2), "%G":q => p(q), "%H":q => f(q.Ha, 2), "%I":q => {
2066
+ q = q.Ha;
2067
+ 0 == q ? q = 12 : 12 < q && (q -= 12);
2068
+ return f(q, 2);
2069
+ }, "%j":q => {
2070
+ for (var r = 0, u = 0; u <= q.Ia - 1; r += (ie(q.ba + 1900) ? je : ke)[u++]) {
2071
+ }
2072
+ return f(q.Ra + r, 3);
2073
+ }, "%m":q => f(q.Ia + 1, 2), "%M":q => f(q.kc, 2), "%n":() => "\n", "%p":q => 0 <= q.Ha && 12 > q.Ha ? "AM" : "PM", "%S":q => f(q.lc, 2), "%t":() => "\t", "%u":q => q.P || 7, "%U":q => f(Math.floor((q.aa + 7 - q.P) / 7), 2), "%V":q => {
2074
+ var r = Math.floor((q.aa + 7 - (q.P + 6) % 7) / 7);
2075
+ 2 >= (q.P + 371 - q.aa - 2) % 7 && r++;
2068
2076
  if (r) {
2069
- 53 == r && (x = (l.P + 371 - l.aa) % 7, 4 == x || 3 == x && he(l.ba) || (r = 1));
2077
+ 53 == r && (u = (q.P + 371 - q.aa) % 7, 4 == u || 3 == u && ie(q.ba) || (r = 1));
2070
2078
  } else {
2071
2079
  r = 52;
2072
- var x = (l.P + 7 - l.aa - 1) % 7;
2073
- (4 == x || 5 == x && he(l.ba % 400 - 1)) && r++;
2080
+ var u = (q.P + 7 - q.aa - 1) % 7;
2081
+ (4 == u || 5 == u && ie(q.ba % 400 - 1)) && r++;
2074
2082
  }
2075
2083
  return f(r, 2);
2076
- }, "%w":l => l.P, "%W":l => f(Math.floor((l.aa + 7 - (l.P + 6) % 7) / 7), 2), "%y":l => (l.ba + 1900).toString().substring(2), "%Y":l => l.ba + 1900, "%z":l => {
2077
- l = l.jc;
2078
- var r = 0 <= l;
2079
- l = Math.abs(l) / 60;
2080
- return (r ? "+" : "-") + String("0000" + (l / 60 * 100 + l % 60)).slice(-4);
2081
- }, "%Z":l => l.mc, "%%":() => "%"};
2084
+ }, "%w":q => q.P, "%W":q => f(Math.floor((q.aa + 7 - (q.P + 6) % 7) / 7), 2), "%y":q => (q.ba + 1900).toString().substring(2), "%Y":q => q.ba + 1900, "%z":q => {
2085
+ q = q.jc;
2086
+ var r = 0 <= q;
2087
+ q = Math.abs(q) / 60;
2088
+ return (r ? "+" : "-") + String("0000" + (q / 60 * 100 + q % 60)).slice(-4);
2089
+ }, "%Z":q => q.mc, "%%":() => "%"};
2082
2090
  c = c.replace(/%%/g, "\x00\x00");
2083
2091
  for (t in n) {
2084
2092
  c.includes(t) && (c = c.replace(new RegExp(t, "g"), n[t](d)));
2085
2093
  }
2086
2094
  c = c.replace(/\0\0/g, "%");
2087
- t = ib(c, !1);
2095
+ t = jb(c, !1);
2088
2096
  if (t.length > b) {
2089
2097
  return 0;
2090
2098
  }
2091
- u.set(t, a);
2099
+ v.set(t, a);
2092
2100
  return t.length - 1;
2093
2101
  };
2094
- function Ib(a, b, c, d) {
2102
+ function Jb(a, b, c, d) {
2095
2103
  a || (a = this);
2096
2104
  this.parent = a;
2097
2105
  this.S = a.S;
2098
2106
  this.Ba = null;
2099
- this.id = zb++;
2107
+ this.id = Ab++;
2100
2108
  this.name = b;
2101
2109
  this.mode = c;
2102
2110
  this.l = {};
2103
2111
  this.m = {};
2104
2112
  this.Da = d;
2105
2113
  }
2106
- Object.defineProperties(Ib.prototype, {read:{get:function() {
2114
+ Object.defineProperties(Jb.prototype, {read:{get:function() {
2107
2115
  return 365 === (this.mode & 365);
2108
2116
  }, set:function(a) {
2109
2117
  a ? this.mode |= 365 : this.mode &= -366;
@@ -2112,44 +2120,44 @@ Object.defineProperties(Ib.prototype, {read:{get:function() {
2112
2120
  }, set:function(a) {
2113
2121
  a ? this.mode |= 146 : this.mode &= -147;
2114
2122
  }}});
2115
- Wb();
2116
- Ab = Array(4096);
2117
- Pb(I, "/");
2118
- Qb("/tmp", 16895, 0);
2119
- Qb("/home", 16895, 0);
2120
- Qb("/home/web_user", 16895, 0);
2123
+ Xb();
2124
+ Bb = Array(4096);
2125
+ Qb(H, "/");
2126
+ Rb("/tmp", 16895, 0);
2127
+ Rb("/home", 16895, 0);
2128
+ Rb("/home/web_user", 16895, 0);
2121
2129
  (() => {
2122
- Qb("/dev", 16895, 0);
2123
- lb(259, {read:() => 0, write:(d, e, f, g) => g,});
2124
- Rb("/dev/null", 259);
2125
- kb(1280, nb);
2126
- kb(1536, ob);
2127
- Rb("/dev/tty", 1280);
2128
- Rb("/dev/tty1", 1536);
2130
+ Rb("/dev", 16895, 0);
2131
+ mb(259, {read:() => 0, write:(d, e, f, g) => g,});
2132
+ Sb("/dev/null", 259);
2133
+ lb(1280, ob);
2134
+ lb(1536, pb);
2135
+ Sb("/dev/tty", 1280);
2136
+ Sb("/dev/tty1", 1536);
2129
2137
  var a = new Uint8Array(1024), b = 0, c = () => {
2130
2138
  0 === b && (b = cb(a).byteLength);
2131
2139
  return a[--b];
2132
2140
  };
2133
- Zb("random", c);
2134
- Zb("urandom", c);
2135
- Qb("/dev/shm", 16895, 0);
2136
- Qb("/dev/shm/tmp", 16895, 0);
2141
+ $b("random", c);
2142
+ $b("urandom", c);
2143
+ Rb("/dev/shm", 16895, 0);
2144
+ Rb("/dev/shm/tmp", 16895, 0);
2137
2145
  })();
2138
2146
  (() => {
2139
- Qb("/proc", 16895, 0);
2140
- var a = Qb("/proc/self", 16895, 0);
2141
- Qb("/proc/self/fd", 16895, 0);
2142
- Pb({S:() => {
2143
- var b = rb(a, "fd", 16895, 73);
2147
+ Rb("/proc", 16895, 0);
2148
+ var a = Rb("/proc/self", 16895, 0);
2149
+ Rb("/proc/self/fd", 16895, 0);
2150
+ Qb({S:() => {
2151
+ var b = sb(a, "fd", 16895, 73);
2144
2152
  b.l = {ka:(c, d) => {
2145
- var e = Mb(+d);
2153
+ var e = Nb(+d);
2146
2154
  c = {parent:null, S:{ib:"fake"}, l:{la:() => e.path},};
2147
2155
  return c.parent = c;
2148
2156
  }};
2149
2157
  return b;
2150
2158
  }}, "/proc/self/fd");
2151
2159
  })();
2152
- Object.assign(ec.prototype, {get(a) {
2160
+ Object.assign(fc.prototype, {get(a) {
2153
2161
  return this.L[a];
2154
2162
  }, has(a) {
2155
2163
  return void 0 !== this.L[a];
@@ -2161,48 +2169,48 @@ Object.assign(ec.prototype, {get(a) {
2161
2169
  this.L[a] = void 0;
2162
2170
  this.cb.push(a);
2163
2171
  }});
2164
- fc = m.BindingError = class extends Error {
2172
+ gc = l.BindingError = class extends Error {
2165
2173
  constructor(a) {
2166
2174
  super(a);
2167
2175
  this.name = "BindingError";
2168
2176
  }
2169
2177
  };
2170
- L.L.push({value:void 0}, {value:null}, {value:!0}, {value:!1},);
2171
- L.h = L.L.length;
2172
- m.count_emval_handles = function() {
2173
- for (var a = 0, b = L.h; b < L.L.length; ++b) {
2174
- void 0 !== L.L[b] && ++a;
2178
+ I.L.push({value:void 0}, {value:null}, {value:!0}, {value:!1},);
2179
+ I.h = I.L.length;
2180
+ l.count_emval_handles = function() {
2181
+ for (var a = 0, b = I.h; b < I.L.length; ++b) {
2182
+ void 0 !== I.L[b] && ++a;
2175
2183
  }
2176
2184
  return a;
2177
2185
  };
2178
- jc = m.PureVirtualError = ic("PureVirtualError");
2179
- for (var le = Array(256), me = 0; 256 > me; ++me) {
2180
- le[me] = String.fromCharCode(me);
2186
+ kc = l.PureVirtualError = jc("PureVirtualError");
2187
+ for (var me = Array(256), ne = 0; 256 > ne; ++ne) {
2188
+ me[ne] = String.fromCharCode(ne);
2181
2189
  }
2182
- kc = le;
2183
- m.getInheritedInstanceCount = function() {
2184
- return Object.keys(oc).length;
2190
+ lc = me;
2191
+ l.getInheritedInstanceCount = function() {
2192
+ return Object.keys(pc).length;
2185
2193
  };
2186
- m.getLiveInheritedInstances = function() {
2194
+ l.getLiveInheritedInstances = function() {
2187
2195
  var a = [], b;
2188
- for (b in oc) {
2189
- oc.hasOwnProperty(b) && a.push(oc[b]);
2196
+ for (b in pc) {
2197
+ pc.hasOwnProperty(b) && a.push(pc[b]);
2190
2198
  }
2191
2199
  return a;
2192
2200
  };
2193
- m.flushPendingDeletes = mc;
2194
- m.setDelayFunction = function(a) {
2195
- nc = a;
2196
- lc.length && nc && nc(mc);
2201
+ l.flushPendingDeletes = nc;
2202
+ l.setDelayFunction = function(a) {
2203
+ oc = a;
2204
+ mc.length && oc && oc(nc);
2197
2205
  };
2198
- Bc = m.InternalError = class extends Error {
2206
+ Cc = l.InternalError = class extends Error {
2199
2207
  constructor(a) {
2200
2208
  super(a);
2201
2209
  this.name = "InternalError";
2202
2210
  }
2203
2211
  };
2204
- Oc.prototype.isAliasOf = function(a) {
2205
- if (!(this instanceof Oc && a instanceof Oc)) {
2212
+ Pc.prototype.isAliasOf = function(a) {
2213
+ if (!(this instanceof Pc && a instanceof Pc)) {
2206
2214
  return !1;
2207
2215
  }
2208
2216
  var b = this.g.u.i, c = this.g.o, d = a.g.u.i;
@@ -2214,58 +2222,58 @@ Oc.prototype.isAliasOf = function(a) {
2214
2222
  }
2215
2223
  return b === d && c === a;
2216
2224
  };
2217
- Oc.prototype.clone = function() {
2218
- this.g.o || Nc(this);
2225
+ Pc.prototype.clone = function() {
2226
+ this.g.o || Oc(this);
2219
2227
  if (this.g.ia) {
2220
2228
  return this.g.count.value += 1, this;
2221
2229
  }
2222
- var a = Ec, b = Object, c = b.create, d = Object.getPrototypeOf(this), e = this.g;
2230
+ var a = Fc, b = Object, c = b.create, d = Object.getPrototypeOf(this), e = this.g;
2223
2231
  a = a(c.call(b, d, {g:{value:{count:e.count, ga:e.ga, ia:e.ia, o:e.o, u:e.u, G:e.G, K:e.K,},}}));
2224
2232
  a.g.count.value += 1;
2225
2233
  a.g.ga = !1;
2226
2234
  return a;
2227
2235
  };
2228
- Oc.prototype["delete"] = function() {
2229
- this.g.o || Nc(this);
2230
- this.g.ga && !this.g.ia && M("Object already scheduled for deletion");
2231
- vc(this);
2232
- xc(this.g);
2236
+ Pc.prototype["delete"] = function() {
2237
+ this.g.o || Oc(this);
2238
+ this.g.ga && !this.g.ia && K("Object already scheduled for deletion");
2239
+ wc(this);
2240
+ yc(this.g);
2233
2241
  this.g.ia || (this.g.G = void 0, this.g.o = void 0);
2234
2242
  };
2235
- Oc.prototype.isDeleted = function() {
2243
+ Pc.prototype.isDeleted = function() {
2236
2244
  return !this.g.o;
2237
2245
  };
2238
- Oc.prototype.deleteLater = function() {
2239
- this.g.o || Nc(this);
2240
- this.g.ga && !this.g.ia && M("Object already scheduled for deletion");
2241
- lc.push(this);
2242
- 1 === lc.length && nc && nc(mc);
2246
+ Pc.prototype.deleteLater = function() {
2247
+ this.g.o || Oc(this);
2248
+ this.g.ga && !this.g.ia && K("Object already scheduled for deletion");
2249
+ mc.push(this);
2250
+ 1 === mc.length && oc && oc(nc);
2243
2251
  this.g.ga = !0;
2244
2252
  return this;
2245
2253
  };
2246
- Xc.prototype.Ob = function(a) {
2254
+ Yc.prototype.Ob = function(a) {
2247
2255
  this.nb && (a = this.nb(a));
2248
2256
  return a;
2249
2257
  };
2250
- Xc.prototype.Xa = function(a) {
2258
+ Yc.prototype.Xa = function(a) {
2251
2259
  this.U && this.U(a);
2252
2260
  };
2253
- Xc.prototype.argPackAdvance = 8;
2254
- Xc.prototype.readValueFromPointer = Hc;
2255
- Xc.prototype.deleteObject = function(a) {
2261
+ Yc.prototype.argPackAdvance = 8;
2262
+ Yc.prototype.readValueFromPointer = Ic;
2263
+ Yc.prototype.deleteObject = function(a) {
2256
2264
  if (null !== a) {
2257
2265
  a["delete"]();
2258
2266
  }
2259
2267
  };
2260
- Xc.prototype.fromWireType = function(a) {
2268
+ Yc.prototype.fromWireType = function(a) {
2261
2269
  function b() {
2262
- return this.wa ? Dc(this.i.M, {u:this.bc, o:c, K:this, G:a,}) : Dc(this.i.M, {u:this, o:a,});
2270
+ return this.wa ? Ec(this.i.M, {u:this.bc, o:c, K:this, G:a,}) : Ec(this.i.M, {u:this, o:a,});
2263
2271
  }
2264
2272
  var c = this.Ob(a);
2265
2273
  if (!c) {
2266
2274
  return this.Xa(a), null;
2267
2275
  }
2268
- var d = Ac(this.i, c);
2276
+ var d = Bc(this.i, c);
2269
2277
  if (void 0 !== d) {
2270
2278
  if (0 === d.g.count.value) {
2271
2279
  return d.g.o = c, d.g.G = a, d.clone();
@@ -2275,43 +2283,43 @@ Xc.prototype.fromWireType = function(a) {
2275
2283
  return d;
2276
2284
  }
2277
2285
  d = this.i.Nb(c);
2278
- d = zc[d];
2286
+ d = Ac[d];
2279
2287
  if (!d) {
2280
2288
  return b.call(this);
2281
2289
  }
2282
2290
  d = this.va ? d.Fb : d.pointerType;
2283
- var e = yc(c, this.i, d.i);
2284
- return null === e ? b.call(this) : this.wa ? Dc(d.i.M, {u:d, o:e, K:this, G:a,}) : Dc(d.i.M, {u:d, o:e,});
2291
+ var e = zc(c, this.i, d.i);
2292
+ return null === e ? b.call(this) : this.wa ? Ec(d.i.M, {u:d, o:e, K:this, G:a,}) : Ec(d.i.M, {u:d, o:e,});
2285
2293
  };
2286
- ad = m.UnboundTypeError = ic("UnboundTypeError");
2294
+ bd = l.UnboundTypeError = jc("UnboundTypeError");
2287
2295
  for (var U, W = 0; 32 > W; ++W) {
2288
- Sd.push(Array(W));
2296
+ Td.push(Array(W));
2289
2297
  }
2290
- var ne = new Float32Array(288);
2298
+ var oe = new Float32Array(288);
2291
2299
  for (W = 0; 288 > W; ++W) {
2292
- ce[W] = ne.subarray(0, W + 1);
2300
+ de[W] = oe.subarray(0, W + 1);
2293
2301
  }
2294
- var oe = new Int32Array(288);
2302
+ var pe = new Int32Array(288);
2295
2303
  for (W = 0; 288 > W; ++W) {
2296
- de[W] = oe.subarray(0, W + 1);
2304
+ ee[W] = pe.subarray(0, W + 1);
2297
2305
  }
2298
- var Fe = {__syscall_fcntl64:function(a, b, c) {
2299
- ac = c;
2306
+ var Ge = {__syscall_fcntl64:function(a, b, c) {
2307
+ bc = c;
2300
2308
  try {
2301
- var d = Mb(a);
2309
+ var d = Nb(a);
2302
2310
  switch(b) {
2303
2311
  case 0:
2304
- var e = bc();
2305
- return 0 > e ? -28 : Ob(d, e).V;
2312
+ var e = cc();
2313
+ return 0 > e ? -28 : Pb(d, e).V;
2306
2314
  case 1:
2307
2315
  case 2:
2308
2316
  return 0;
2309
2317
  case 3:
2310
2318
  return d.flags;
2311
2319
  case 4:
2312
- return e = bc(), d.flags |= e, 0;
2320
+ return e = cc(), d.flags |= e, 0;
2313
2321
  case 5:
2314
- return e = bc(), A[e + 0 >> 1] = 2, 0;
2322
+ return e = cc(), A[e + 0 >> 1] = 2, 0;
2315
2323
  case 6:
2316
2324
  case 7:
2317
2325
  return 0;
@@ -2319,20 +2327,20 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
2319
2327
  case 8:
2320
2328
  return -28;
2321
2329
  case 9:
2322
- return B[pe() >> 2] = 28, -1;
2330
+ return D[qe() >> 2] = 28, -1;
2323
2331
  default:
2324
2332
  return -28;
2325
2333
  }
2326
2334
  } catch (f) {
2327
- if ("undefined" == typeof $b || "ErrnoError" !== f.name) {
2335
+ if ("undefined" == typeof ac || "ErrnoError" !== f.name) {
2328
2336
  throw f;
2329
2337
  }
2330
2338
  return -f.Z;
2331
2339
  }
2332
2340
  }, __syscall_ioctl:function(a, b, c) {
2333
- ac = c;
2341
+ bc = c;
2334
2342
  try {
2335
- var d = Mb(a);
2343
+ var d = Nb(a);
2336
2344
  switch(b) {
2337
2345
  case 21509:
2338
2346
  return d.s ? 0 : -59;
@@ -2342,13 +2350,13 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
2342
2350
  }
2343
2351
  if (d.s.T.Wb) {
2344
2352
  b = [3, 28, 127, 21, 4, 0, 1, 0, 17, 19, 26, 0, 18, 15, 23, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,];
2345
- var e = bc();
2346
- B[e >> 2] = 25856;
2347
- B[e + 4 >> 2] = 5;
2348
- B[e + 8 >> 2] = 191;
2349
- B[e + 12 >> 2] = 35387;
2353
+ var e = cc();
2354
+ D[e >> 2] = 25856;
2355
+ D[e + 4 >> 2] = 5;
2356
+ D[e + 8 >> 2] = 191;
2357
+ D[e + 12 >> 2] = 35387;
2350
2358
  for (var f = 0; 32 > f; f++) {
2351
- u[e + f + 17 >> 0] = b[f] || 0;
2359
+ v[e + f + 17 >> 0] = b[f] || 0;
2352
2360
  }
2353
2361
  }
2354
2362
  return 0;
@@ -2363,8 +2371,8 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
2363
2371
  return -59;
2364
2372
  }
2365
2373
  if (d.s.T.Xb) {
2366
- for (e = bc(), b = [], f = 0; 32 > f; f++) {
2367
- b.push(u[e + f + 17 >> 0]);
2374
+ for (e = cc(), b = [], f = 0; 32 > f; f++) {
2375
+ b.push(v[e + f + 17 >> 0]);
2368
2376
  }
2369
2377
  }
2370
2378
  return 0;
@@ -2372,21 +2380,21 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
2372
2380
  if (!d.s) {
2373
2381
  return -59;
2374
2382
  }
2375
- e = bc();
2376
- return B[e >> 2] = 0;
2383
+ e = cc();
2384
+ return D[e >> 2] = 0;
2377
2385
  case 21520:
2378
2386
  return d.s ? -28 : -59;
2379
2387
  case 21531:
2380
- e = bc();
2388
+ e = cc();
2381
2389
  if (!d.m.Vb) {
2382
- throw new H(59);
2390
+ throw new G(59);
2383
2391
  }
2384
2392
  return d.m.Vb(d, b, e);
2385
2393
  case 21523:
2386
2394
  if (!d.s) {
2387
2395
  return -59;
2388
2396
  }
2389
- d.s.T.Yb && (f = [24, 80], e = bc(), A[e >> 1] = f[0], A[e + 2 >> 1] = f[1]);
2397
+ d.s.T.Yb && (f = [24, 80], e = cc(), A[e >> 1] = f[0], A[e + 2 >> 1] = f[1]);
2390
2398
  return 0;
2391
2399
  case 21524:
2392
2400
  return d.s ? 0 : -59;
@@ -2396,188 +2404,188 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
2396
2404
  return -28;
2397
2405
  }
2398
2406
  } catch (g) {
2399
- if ("undefined" == typeof $b || "ErrnoError" !== g.name) {
2407
+ if ("undefined" == typeof ac || "ErrnoError" !== g.name) {
2400
2408
  throw g;
2401
2409
  }
2402
2410
  return -g.Z;
2403
2411
  }
2404
2412
  }, __syscall_openat:function(a, b, c, d) {
2405
- ac = d;
2413
+ bc = d;
2406
2414
  try {
2407
- b = b ? F(w, b) : "";
2415
+ b = b ? fb(x, b) : "";
2408
2416
  var e = b;
2409
2417
  if ("/" === e.charAt(0)) {
2410
2418
  b = e;
2411
2419
  } else {
2412
- var f = -100 === a ? "/" : Mb(a).path;
2420
+ var f = -100 === a ? "/" : Nb(a).path;
2413
2421
  if (0 == e.length) {
2414
- throw new H(44);
2422
+ throw new G(44);
2415
2423
  }
2416
2424
  b = Za(f + "/" + e);
2417
2425
  }
2418
- var g = d ? bc() : 0;
2419
- return Ub(b, c, g).V;
2426
+ var g = d ? cc() : 0;
2427
+ return Vb(b, c, g).V;
2420
2428
  } catch (k) {
2421
- if ("undefined" == typeof $b || "ErrnoError" !== k.name) {
2429
+ if ("undefined" == typeof ac || "ErrnoError" !== k.name) {
2422
2430
  throw k;
2423
2431
  }
2424
2432
  return -k.Z;
2425
2433
  }
2426
2434
  }, _embind_create_inheriting_constructor:function(a, b, c) {
2427
- a = O(a);
2428
- b = uc(b, "wrapper");
2429
- c = gc(c);
2435
+ a = L(a);
2436
+ b = vc(b, "wrapper");
2437
+ c = hc(c);
2430
2438
  var d = [].slice, e = b.i, f = e.M, g = e.A.M, k = e.A.constructor;
2431
- a = dc(a, function() {
2439
+ a = ec(a, function() {
2432
2440
  e.A.mb.forEach(function(n) {
2433
2441
  if (this[n] === g[n]) {
2434
- throw new jc(`Pure virtual function ${n} must be implemented in JavaScript`);
2442
+ throw new kc(`Pure virtual function ${n} must be implemented in JavaScript`);
2435
2443
  }
2436
2444
  }.bind(this));
2437
2445
  Object.defineProperty(this, "__parent", {value:f});
2438
2446
  this.__construct.apply(this, d.call(arguments));
2439
2447
  });
2440
2448
  f.__construct = function() {
2441
- this === f && M("Pass correct 'this' to __construct");
2449
+ this === f && K("Pass correct 'this' to __construct");
2442
2450
  var n = k.implement.apply(void 0, [this].concat(d.call(arguments)));
2443
- vc(n);
2451
+ wc(n);
2444
2452
  var t = n.g;
2445
2453
  n.notifyOnDestruction();
2446
2454
  t.ia = !0;
2447
2455
  Object.defineProperties(this, {g:{value:t}});
2448
- Ec(this);
2456
+ Fc(this);
2449
2457
  n = t.o;
2450
- n = pc(e, n);
2451
- oc.hasOwnProperty(n) ? M(`Tried to register registered instance: ${n}`) : oc[n] = this;
2458
+ n = qc(e, n);
2459
+ pc.hasOwnProperty(n) ? K(`Tried to register registered instance: ${n}`) : pc[n] = this;
2452
2460
  };
2453
2461
  f.__destruct = function() {
2454
- this === f && M("Pass correct 'this' to __destruct");
2455
- vc(this);
2462
+ this === f && K("Pass correct 'this' to __destruct");
2463
+ wc(this);
2456
2464
  var n = this.g.o;
2457
- n = pc(e, n);
2458
- oc.hasOwnProperty(n) ? delete oc[n] : M(`Tried to unregister unregistered instance: ${n}`);
2465
+ n = qc(e, n);
2466
+ pc.hasOwnProperty(n) ? delete pc[n] : K(`Tried to unregister unregistered instance: ${n}`);
2459
2467
  };
2460
2468
  a.prototype = Object.create(f);
2461
- for (var q in c) {
2462
- a.prototype[q] = c[q];
2469
+ for (var p in c) {
2470
+ a.prototype[p] = c[p];
2463
2471
  }
2464
- return hc(a);
2472
+ return ic(a);
2465
2473
  }, _embind_finalize_value_object:function(a) {
2466
- var b = Fc[a];
2467
- delete Fc[a];
2474
+ var b = Gc[a];
2475
+ delete Gc[a];
2468
2476
  var c = b.Pa, d = b.U, e = b.$a, f = e.map(g => g.Rb).concat(e.map(g => g.fc));
2469
- P([a], f, g => {
2477
+ N([a], f, g => {
2470
2478
  var k = {};
2471
- e.forEach((q, n) => {
2472
- var t = g[n], v = q.Pb, y = q.Qb, l = g[n + e.length], r = q.ec, x = q.hc;
2473
- k[q.Lb] = {read:z => t.fromWireType(v(y, z)), write:(z, G) => {
2479
+ e.forEach((p, n) => {
2480
+ var t = g[n], w = p.Pb, y = p.Qb, q = g[n + e.length], r = p.ec, u = p.hc;
2481
+ k[p.Lb] = {read:z => t.fromWireType(w(y, z)), write:(z, B) => {
2474
2482
  var C = [];
2475
- r(x, z, l.toWireType(C, G));
2476
- Gc(C);
2483
+ r(u, z, q.toWireType(C, B));
2484
+ Hc(C);
2477
2485
  }};
2478
2486
  });
2479
- return [{name:b.name, fromWireType:function(q) {
2487
+ return [{name:b.name, fromWireType:function(p) {
2480
2488
  var n = {}, t;
2481
2489
  for (t in k) {
2482
- n[t] = k[t].read(q);
2490
+ n[t] = k[t].read(p);
2483
2491
  }
2484
- d(q);
2492
+ d(p);
2485
2493
  return n;
2486
- }, toWireType:function(q, n) {
2494
+ }, toWireType:function(p, n) {
2487
2495
  for (var t in k) {
2488
2496
  if (!(t in n)) {
2489
2497
  throw new TypeError(`Missing field: "${t}"`);
2490
2498
  }
2491
2499
  }
2492
- var v = c();
2500
+ var w = c();
2493
2501
  for (t in k) {
2494
- k[t].write(v, n[t]);
2502
+ k[t].write(w, n[t]);
2495
2503
  }
2496
- null !== q && q.push(d, v);
2497
- return v;
2498
- }, argPackAdvance:8, readValueFromPointer:Hc, J:d,}];
2504
+ null !== p && p.push(d, w);
2505
+ return w;
2506
+ }, argPackAdvance:8, readValueFromPointer:Ic, J:d,}];
2499
2507
  });
2500
2508
  }, _embind_register_bigint:function() {
2501
2509
  }, _embind_register_bool:function(a, b, c, d, e) {
2502
- var f = Lc(c);
2503
- b = O(b);
2504
- Kc(a, {name:b, fromWireType:function(g) {
2510
+ var f = Mc(c);
2511
+ b = L(b);
2512
+ Lc(a, {name:b, fromWireType:function(g) {
2505
2513
  return !!g;
2506
2514
  }, toWireType:function(g, k) {
2507
2515
  return k ? d : e;
2508
2516
  }, argPackAdvance:8, readValueFromPointer:function(g) {
2509
2517
  if (1 === c) {
2510
- var k = u;
2518
+ var k = v;
2511
2519
  } else if (2 === c) {
2512
2520
  k = A;
2513
2521
  } else if (4 === c) {
2514
- k = B;
2522
+ k = D;
2515
2523
  } else {
2516
2524
  throw new TypeError("Unknown boolean type size: " + b);
2517
2525
  }
2518
2526
  return this.fromWireType(k[g >> f]);
2519
2527
  }, J:null,});
2520
- }, _embind_register_class:function(a, b, c, d, e, f, g, k, q, n, t, v, y) {
2521
- t = O(t);
2528
+ }, _embind_register_class:function(a, b, c, d, e, f, g, k, p, n, t, w, y) {
2529
+ t = L(t);
2522
2530
  f = R(e, f);
2523
2531
  k && (k = R(g, k));
2524
- n && (n = R(q, n));
2525
- y = R(v, y);
2526
- var l = cc(t);
2527
- Qc(l, function() {
2528
- bd(`Cannot construct ${t} due to unbound types`, [d]);
2532
+ n && (n = R(p, n));
2533
+ y = R(w, y);
2534
+ var q = dc(t);
2535
+ Rc(q, function() {
2536
+ cd(`Cannot construct ${t} due to unbound types`, [d]);
2529
2537
  });
2530
- P([a, b, c], d ? [d] : [], function(r) {
2538
+ N([a, b, c], d ? [d] : [], function(r) {
2531
2539
  r = r[0];
2532
2540
  if (d) {
2533
- var x = r.i;
2534
- var z = x.M;
2541
+ var u = r.i;
2542
+ var z = u.M;
2535
2543
  } else {
2536
- z = Oc.prototype;
2544
+ z = Pc.prototype;
2537
2545
  }
2538
- r = dc(l, function() {
2539
- if (Object.getPrototypeOf(this) !== G) {
2540
- throw new fc("Use 'new' to construct " + t);
2546
+ r = ec(q, function() {
2547
+ if (Object.getPrototypeOf(this) !== B) {
2548
+ throw new gc("Use 'new' to construct " + t);
2541
2549
  }
2542
2550
  if (void 0 === C.Y) {
2543
- throw new fc(t + " has no accessible constructor");
2551
+ throw new gc(t + " has no accessible constructor");
2544
2552
  }
2545
- var N = C.Y[arguments.length];
2546
- if (void 0 === N) {
2547
- throw new fc(`Tried to invoke ctor of ${t} with invalid number of parameters (${arguments.length}) - expected (${Object.keys(C.Y).toString()}) parameters instead!`);
2553
+ var M = C.Y[arguments.length];
2554
+ if (void 0 === M) {
2555
+ throw new gc(`Tried to invoke ctor of ${t} with invalid number of parameters (${arguments.length}) - expected (${Object.keys(C.Y).toString()}) parameters instead!`);
2548
2556
  }
2549
- return N.apply(this, arguments);
2557
+ return M.apply(this, arguments);
2550
2558
  });
2551
- var G = Object.create(z, {constructor:{value:r},});
2552
- r.prototype = G;
2553
- var C = new Rc(t, r, G, y, x, f, k, n);
2559
+ var B = Object.create(z, {constructor:{value:r},});
2560
+ r.prototype = B;
2561
+ var C = new Sc(t, r, B, y, u, f, k, n);
2554
2562
  C.A && (void 0 === C.A.oa && (C.A.oa = []), C.A.oa.push(C));
2555
- x = new Xc(t, C, !0, !1);
2556
- z = new Xc(t + "*", C, !1, !1);
2557
- var J = new Xc(t + " const*", C, !1, !0);
2558
- zc[a] = {pointerType:z, Fb:J};
2559
- Yc(l, r);
2560
- return [x, z, J];
2563
+ u = new Yc(t, C, !0, !1);
2564
+ z = new Yc(t + "*", C, !1, !1);
2565
+ var O = new Yc(t + " const*", C, !1, !0);
2566
+ Ac[a] = {pointerType:z, Fb:O};
2567
+ Zc(q, r);
2568
+ return [u, z, O];
2561
2569
  });
2562
2570
  }, _embind_register_class_class_function:function(a, b, c, d, e, f, g) {
2563
- var k = dd(c, d);
2564
- b = O(b);
2571
+ var k = ed(c, d);
2572
+ b = L(b);
2565
2573
  f = R(e, f);
2566
- P([], [a], function(q) {
2574
+ N([], [a], function(p) {
2567
2575
  function n() {
2568
- bd(`Cannot call ${t} due to unbound types`, k);
2576
+ cd(`Cannot call ${t} due to unbound types`, k);
2569
2577
  }
2570
- q = q[0];
2571
- var t = `${q.name}.${b}`;
2578
+ p = p[0];
2579
+ var t = `${p.name}.${b}`;
2572
2580
  b.startsWith("@@") && (b = Symbol[b.substring(2)]);
2573
- var v = q.i.constructor;
2574
- void 0 === v[b] ? (n.ea = c - 1, v[b] = n) : (Pc(v, b, t), v[b].B[c - 1] = n);
2575
- P([], k, function(y) {
2576
- y = cd(t, [y[0], null].concat(y.slice(1)), null, f, g);
2577
- void 0 === v[b].B ? (y.ea = c - 1, v[b] = y) : v[b].B[c - 1] = y;
2578
- if (q.i.oa) {
2579
- for (const l of q.i.oa) {
2580
- l.constructor.hasOwnProperty(b) || (l.constructor[b] = y);
2581
+ var w = p.i.constructor;
2582
+ void 0 === w[b] ? (n.ea = c - 1, w[b] = n) : (Qc(w, b, t), w[b].B[c - 1] = n);
2583
+ N([], k, function(y) {
2584
+ y = dd(t, [y[0], null].concat(y.slice(1)), null, f, g);
2585
+ void 0 === w[b].B ? (y.ea = c - 1, w[b] = y) : w[b].B[c - 1] = y;
2586
+ if (p.i.oa) {
2587
+ for (const q of p.i.oa) {
2588
+ q.constructor.hasOwnProperty(b) || (q.constructor[b] = y);
2581
2589
  }
2582
2590
  }
2583
2591
  return [];
@@ -2585,377 +2593,377 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
2585
2593
  return [];
2586
2594
  });
2587
2595
  }, _embind_register_class_class_property:function(a, b, c, d, e, f, g, k) {
2588
- b = O(b);
2596
+ b = L(b);
2589
2597
  f = R(e, f);
2590
- P([], [a], function(q) {
2591
- q = q[0];
2592
- var n = `${q.name}.${b}`, t = {get() {
2593
- bd(`Cannot access ${n} due to unbound types`, [c]);
2598
+ N([], [a], function(p) {
2599
+ p = p[0];
2600
+ var n = `${p.name}.${b}`, t = {get() {
2601
+ cd(`Cannot access ${n} due to unbound types`, [c]);
2594
2602
  }, enumerable:!0, configurable:!0};
2595
2603
  t.set = k ? () => {
2596
- bd(`Cannot access ${n} due to unbound types`, [c]);
2604
+ cd(`Cannot access ${n} due to unbound types`, [c]);
2597
2605
  } : () => {
2598
- M(`${n} is a read-only property`);
2606
+ K(`${n} is a read-only property`);
2599
2607
  };
2600
- Object.defineProperty(q.i.constructor, b, t);
2601
- P([], [c], function(v) {
2602
- v = v[0];
2608
+ Object.defineProperty(p.i.constructor, b, t);
2609
+ N([], [c], function(w) {
2610
+ w = w[0];
2603
2611
  var y = {get() {
2604
- return v.fromWireType(f(d));
2612
+ return w.fromWireType(f(d));
2605
2613
  }, enumerable:!0};
2606
- k && (k = R(g, k), y.set = l => {
2614
+ k && (k = R(g, k), y.set = q => {
2607
2615
  var r = [];
2608
- k(d, v.toWireType(r, l));
2609
- Gc(r);
2616
+ k(d, w.toWireType(r, q));
2617
+ Hc(r);
2610
2618
  });
2611
- Object.defineProperty(q.i.constructor, b, y);
2619
+ Object.defineProperty(p.i.constructor, b, y);
2612
2620
  return [];
2613
2621
  });
2614
2622
  return [];
2615
2623
  });
2616
2624
  }, _embind_register_class_constructor:function(a, b, c, d, e, f) {
2617
- var g = dd(b, c);
2625
+ var g = ed(b, c);
2618
2626
  e = R(d, e);
2619
- P([], [a], function(k) {
2627
+ N([], [a], function(k) {
2620
2628
  k = k[0];
2621
- var q = `constructor ${k.name}`;
2629
+ var p = `constructor ${k.name}`;
2622
2630
  void 0 === k.i.Y && (k.i.Y = []);
2623
2631
  if (void 0 !== k.i.Y[b - 1]) {
2624
- throw new fc(`Cannot register multiple constructors with identical number of parameters (${b - 1}) for class '${k.name}'! Overload resolution is currently only performed using the parameter count, not actual type info!`);
2632
+ throw new gc(`Cannot register multiple constructors with identical number of parameters (${b - 1}) for class '${k.name}'! Overload resolution is currently only performed using the parameter count, not actual type info!`);
2625
2633
  }
2626
2634
  k.i.Y[b - 1] = () => {
2627
- bd(`Cannot construct ${k.name} due to unbound types`, g);
2635
+ cd(`Cannot construct ${k.name} due to unbound types`, g);
2628
2636
  };
2629
- P([], g, function(n) {
2637
+ N([], g, function(n) {
2630
2638
  n.splice(1, 0, null);
2631
- k.i.Y[b - 1] = cd(q, n, null, e, f);
2639
+ k.i.Y[b - 1] = dd(p, n, null, e, f);
2632
2640
  return [];
2633
2641
  });
2634
2642
  return [];
2635
2643
  });
2636
2644
  }, _embind_register_class_function:function(a, b, c, d, e, f, g, k) {
2637
- var q = dd(c, d);
2638
- b = O(b);
2645
+ var p = ed(c, d);
2646
+ b = L(b);
2639
2647
  f = R(e, f);
2640
- P([], [a], function(n) {
2648
+ N([], [a], function(n) {
2641
2649
  function t() {
2642
- bd(`Cannot call ${v} due to unbound types`, q);
2650
+ cd(`Cannot call ${w} due to unbound types`, p);
2643
2651
  }
2644
2652
  n = n[0];
2645
- var v = `${n.name}.${b}`;
2653
+ var w = `${n.name}.${b}`;
2646
2654
  b.startsWith("@@") && (b = Symbol[b.substring(2)]);
2647
2655
  k && n.i.mb.push(b);
2648
- var y = n.i.M, l = y[b];
2649
- void 0 === l || void 0 === l.B && l.className !== n.name && l.ea === c - 2 ? (t.ea = c - 2, t.className = n.name, y[b] = t) : (Pc(y, b, v), y[b].B[c - 2] = t);
2650
- P([], q, function(r) {
2651
- r = cd(v, r, n, f, g);
2656
+ var y = n.i.M, q = y[b];
2657
+ void 0 === q || void 0 === q.B && q.className !== n.name && q.ea === c - 2 ? (t.ea = c - 2, t.className = n.name, y[b] = t) : (Qc(y, b, w), y[b].B[c - 2] = t);
2658
+ N([], p, function(r) {
2659
+ r = dd(w, r, n, f, g);
2652
2660
  void 0 === y[b].B ? (r.ea = c - 2, y[b] = r) : y[b].B[c - 2] = r;
2653
2661
  return [];
2654
2662
  });
2655
2663
  return [];
2656
2664
  });
2657
- }, _embind_register_class_property:function(a, b, c, d, e, f, g, k, q, n) {
2658
- b = O(b);
2665
+ }, _embind_register_class_property:function(a, b, c, d, e, f, g, k, p, n) {
2666
+ b = L(b);
2659
2667
  e = R(d, e);
2660
- P([], [a], function(t) {
2668
+ N([], [a], function(t) {
2661
2669
  t = t[0];
2662
- var v = `${t.name}.${b}`, y = {get() {
2663
- bd(`Cannot access ${v} due to unbound types`, [c, g]);
2670
+ var w = `${t.name}.${b}`, y = {get() {
2671
+ cd(`Cannot access ${w} due to unbound types`, [c, g]);
2664
2672
  }, enumerable:!0, configurable:!0};
2665
- y.set = q ? () => {
2666
- bd(`Cannot access ${v} due to unbound types`, [c, g]);
2673
+ y.set = p ? () => {
2674
+ cd(`Cannot access ${w} due to unbound types`, [c, g]);
2667
2675
  } : () => {
2668
- M(v + " is a read-only property");
2676
+ K(w + " is a read-only property");
2669
2677
  };
2670
2678
  Object.defineProperty(t.i.M, b, y);
2671
- P([], q ? [c, g] : [c], function(l) {
2672
- var r = l[0], x = {get() {
2673
- var G = ed(this, t, v + " getter");
2674
- return r.fromWireType(e(f, G));
2679
+ N([], p ? [c, g] : [c], function(q) {
2680
+ var r = q[0], u = {get() {
2681
+ var B = fd(this, t, w + " getter");
2682
+ return r.fromWireType(e(f, B));
2675
2683
  }, enumerable:!0};
2676
- if (q) {
2677
- q = R(k, q);
2678
- var z = l[1];
2679
- x.set = function(G) {
2680
- var C = ed(this, t, v + " setter"), J = [];
2681
- q(n, C, z.toWireType(J, G));
2682
- Gc(J);
2684
+ if (p) {
2685
+ p = R(k, p);
2686
+ var z = q[1];
2687
+ u.set = function(B) {
2688
+ var C = fd(this, t, w + " setter"), O = [];
2689
+ p(n, C, z.toWireType(O, B));
2690
+ Hc(O);
2683
2691
  };
2684
2692
  }
2685
- Object.defineProperty(t.i.M, b, x);
2693
+ Object.defineProperty(t.i.M, b, u);
2686
2694
  return [];
2687
2695
  });
2688
2696
  return [];
2689
2697
  });
2690
2698
  }, _embind_register_emval:function(a, b) {
2691
- b = O(b);
2692
- Kc(a, {name:b, fromWireType:function(c) {
2693
- var d = gc(c);
2694
- fd(c);
2699
+ b = L(b);
2700
+ Lc(a, {name:b, fromWireType:function(c) {
2701
+ var d = hc(c);
2702
+ gd(c);
2695
2703
  return d;
2696
2704
  }, toWireType:function(c, d) {
2697
- return hc(d);
2698
- }, argPackAdvance:8, readValueFromPointer:Hc, J:null,});
2705
+ return ic(d);
2706
+ }, argPackAdvance:8, readValueFromPointer:Ic, J:null,});
2699
2707
  }, _embind_register_enum:function(a, b, c, d) {
2700
2708
  function e() {
2701
2709
  }
2702
- c = Lc(c);
2703
- b = O(b);
2710
+ c = Mc(c);
2711
+ b = L(b);
2704
2712
  e.values = {};
2705
- Kc(a, {name:b, constructor:e, fromWireType:function(f) {
2713
+ Lc(a, {name:b, constructor:e, fromWireType:function(f) {
2706
2714
  return this.constructor.values[f];
2707
2715
  }, toWireType:function(f, g) {
2708
2716
  return g.value;
2709
- }, argPackAdvance:8, readValueFromPointer:gd(b, c, d), J:null,});
2710
- Qc(b, e);
2717
+ }, argPackAdvance:8, readValueFromPointer:hd(b, c, d), J:null,});
2718
+ Rc(b, e);
2711
2719
  }, _embind_register_enum_value:function(a, b, c) {
2712
- var d = uc(a, "enum");
2713
- b = O(b);
2720
+ var d = vc(a, "enum");
2721
+ b = L(b);
2714
2722
  a = d.constructor;
2715
- d = Object.create(d.constructor.prototype, {value:{value:c}, constructor:{value:dc(`${d.name}_${b}`, function() {
2723
+ d = Object.create(d.constructor.prototype, {value:{value:c}, constructor:{value:ec(`${d.name}_${b}`, function() {
2716
2724
  })},});
2717
2725
  a.values[c] = d;
2718
2726
  a[b] = d;
2719
2727
  }, _embind_register_float:function(a, b, c) {
2720
- c = Lc(c);
2721
- b = O(b);
2722
- Kc(a, {name:b, fromWireType:function(d) {
2728
+ c = Mc(c);
2729
+ b = L(b);
2730
+ Lc(a, {name:b, fromWireType:function(d) {
2723
2731
  return d;
2724
2732
  }, toWireType:function(d, e) {
2725
2733
  return e;
2726
- }, argPackAdvance:8, readValueFromPointer:hd(b, c), J:null,});
2734
+ }, argPackAdvance:8, readValueFromPointer:jd(b, c), J:null,});
2727
2735
  }, _embind_register_function:function(a, b, c, d, e, f) {
2728
- var g = dd(b, c);
2729
- a = O(a);
2736
+ var g = ed(b, c);
2737
+ a = L(a);
2730
2738
  e = R(d, e);
2731
- Qc(a, function() {
2732
- bd(`Cannot call ${a} due to unbound types`, g);
2739
+ Rc(a, function() {
2740
+ cd(`Cannot call ${a} due to unbound types`, g);
2733
2741
  }, b - 1);
2734
- P([], g, function(k) {
2735
- Yc(a, cd(a, [k[0], null].concat(k.slice(1)), null, e, f), b - 1);
2742
+ N([], g, function(k) {
2743
+ Zc(a, dd(a, [k[0], null].concat(k.slice(1)), null, e, f), b - 1);
2736
2744
  return [];
2737
2745
  });
2738
2746
  }, _embind_register_integer:function(a, b, c, d, e) {
2739
- b = O(b);
2747
+ b = L(b);
2740
2748
  -1 === e && (e = 4294967295);
2741
- e = Lc(c);
2749
+ e = Mc(c);
2742
2750
  var f = k => k;
2743
2751
  if (0 === d) {
2744
2752
  var g = 32 - 8 * c;
2745
2753
  f = k => k << g >>> g;
2746
2754
  }
2747
- c = b.includes("unsigned") ? function(k, q) {
2748
- return q >>> 0;
2749
- } : function(k, q) {
2750
- return q;
2755
+ c = b.includes("unsigned") ? function(k, p) {
2756
+ return p >>> 0;
2757
+ } : function(k, p) {
2758
+ return p;
2751
2759
  };
2752
- Kc(a, {name:b, fromWireType:f, toWireType:c, argPackAdvance:8, readValueFromPointer:jd(b, e, 0 !== d), J:null,});
2760
+ Lc(a, {name:b, fromWireType:f, toWireType:c, argPackAdvance:8, readValueFromPointer:kd(b, e, 0 !== d), J:null,});
2753
2761
  }, _embind_register_memory_view:function(a, b, c) {
2754
2762
  function d(f) {
2755
2763
  f >>= 2;
2756
- var g = D;
2764
+ var g = E;
2757
2765
  return new e(g.buffer, g[f + 1], g[f]);
2758
2766
  }
2759
2767
  var e = [Int8Array, Uint8Array, Int16Array, Uint16Array, Int32Array, Uint32Array, Float32Array, Float64Array,][b];
2760
- c = O(c);
2761
- Kc(a, {name:c, fromWireType:d, argPackAdvance:8, readValueFromPointer:d,}, {Tb:!0,});
2768
+ c = L(c);
2769
+ Lc(a, {name:c, fromWireType:d, argPackAdvance:8, readValueFromPointer:d,}, {Tb:!0,});
2762
2770
  }, _embind_register_std_string:function(a, b) {
2763
- b = O(b);
2771
+ b = L(b);
2764
2772
  var c = "std::string" === b;
2765
- Kc(a, {name:b, fromWireType:function(d) {
2766
- var e = D[d >> 2], f = d + 4;
2773
+ Lc(a, {name:b, fromWireType:function(d) {
2774
+ var e = E[d >> 2], f = d + 4;
2767
2775
  if (c) {
2768
2776
  for (var g = f, k = 0; k <= e; ++k) {
2769
- var q = f + k;
2770
- if (k == e || 0 == w[q]) {
2771
- g = g ? F(w, g, q - g) : "";
2777
+ var p = f + k;
2778
+ if (k == e || 0 == x[p]) {
2779
+ g = g ? fb(x, g, p - g) : "";
2772
2780
  if (void 0 === n) {
2773
2781
  var n = g;
2774
2782
  } else {
2775
2783
  n += String.fromCharCode(0), n += g;
2776
2784
  }
2777
- g = q + 1;
2785
+ g = p + 1;
2778
2786
  }
2779
2787
  }
2780
2788
  } else {
2781
2789
  n = Array(e);
2782
2790
  for (k = 0; k < e; ++k) {
2783
- n[k] = String.fromCharCode(w[f + k]);
2791
+ n[k] = String.fromCharCode(x[f + k]);
2784
2792
  }
2785
2793
  n = n.join("");
2786
2794
  }
2787
- tc(d);
2795
+ uc(d);
2788
2796
  return n;
2789
2797
  }, toWireType:function(d, e) {
2790
2798
  e instanceof ArrayBuffer && (e = new Uint8Array(e));
2791
2799
  var f = "string" == typeof e;
2792
- f || e instanceof Uint8Array || e instanceof Uint8ClampedArray || e instanceof Int8Array || M("Cannot pass non-string to std::string");
2793
- var g = c && f ? gb(e) : e.length;
2794
- var k = Yd(4 + g + 1), q = k + 4;
2795
- D[k >> 2] = g;
2800
+ f || e instanceof Uint8Array || e instanceof Uint8ClampedArray || e instanceof Int8Array || K("Cannot pass non-string to std::string");
2801
+ var g = c && f ? hb(e) : e.length;
2802
+ var k = Zd(4 + g + 1), p = k + 4;
2803
+ E[k >> 2] = g;
2796
2804
  if (c && f) {
2797
- hb(e, w, q, g + 1);
2805
+ ib(e, x, p, g + 1);
2798
2806
  } else {
2799
2807
  if (f) {
2800
2808
  for (f = 0; f < g; ++f) {
2801
2809
  var n = e.charCodeAt(f);
2802
- 255 < n && (tc(q), M("String has UTF-16 code units that do not fit in 8 bits"));
2803
- w[q + f] = n;
2810
+ 255 < n && (uc(p), K("String has UTF-16 code units that do not fit in 8 bits"));
2811
+ x[p + f] = n;
2804
2812
  }
2805
2813
  } else {
2806
2814
  for (f = 0; f < g; ++f) {
2807
- w[q + f] = e[f];
2815
+ x[p + f] = e[f];
2808
2816
  }
2809
2817
  }
2810
2818
  }
2811
- null !== d && d.push(tc, k);
2819
+ null !== d && d.push(uc, k);
2812
2820
  return k;
2813
- }, argPackAdvance:8, readValueFromPointer:Hc, J:function(d) {
2814
- tc(d);
2821
+ }, argPackAdvance:8, readValueFromPointer:Ic, J:function(d) {
2822
+ uc(d);
2815
2823
  },});
2816
2824
  }, _embind_register_std_wstring:function(a, b, c) {
2817
- c = O(c);
2825
+ c = L(c);
2818
2826
  if (2 === b) {
2819
- var d = ld;
2820
- var e = md;
2821
- var f = nd;
2827
+ var d = md;
2828
+ var e = nd;
2829
+ var f = od;
2822
2830
  var g = () => za;
2823
2831
  var k = 1;
2824
2832
  } else {
2825
- 4 === b && (d = od, e = pd, f = qd, g = () => D, k = 2);
2833
+ 4 === b && (d = pd, e = qd, f = rd, g = () => E, k = 2);
2826
2834
  }
2827
- Kc(a, {name:c, fromWireType:function(q) {
2828
- for (var n = D[q >> 2], t = g(), v, y = q + 4, l = 0; l <= n; ++l) {
2829
- var r = q + 4 + l * b;
2830
- if (l == n || 0 == t[r >> k]) {
2831
- y = d(y, r - y), void 0 === v ? v = y : (v += String.fromCharCode(0), v += y), y = r + b;
2835
+ Lc(a, {name:c, fromWireType:function(p) {
2836
+ for (var n = E[p >> 2], t = g(), w, y = p + 4, q = 0; q <= n; ++q) {
2837
+ var r = p + 4 + q * b;
2838
+ if (q == n || 0 == t[r >> k]) {
2839
+ y = d(y, r - y), void 0 === w ? w = y : (w += String.fromCharCode(0), w += y), y = r + b;
2832
2840
  }
2833
2841
  }
2834
- tc(q);
2835
- return v;
2836
- }, toWireType:function(q, n) {
2837
- "string" != typeof n && M(`Cannot pass non-string to C++ string type ${c}`);
2838
- var t = f(n), v = Yd(4 + t + b);
2839
- D[v >> 2] = t >> k;
2840
- e(n, v + 4, t + b);
2841
- null !== q && q.push(tc, v);
2842
- return v;
2843
- }, argPackAdvance:8, readValueFromPointer:Hc, J:function(q) {
2844
- tc(q);
2842
+ uc(p);
2843
+ return w;
2844
+ }, toWireType:function(p, n) {
2845
+ "string" != typeof n && K(`Cannot pass non-string to C++ string type ${c}`);
2846
+ var t = f(n), w = Zd(4 + t + b);
2847
+ E[w >> 2] = t >> k;
2848
+ e(n, w + 4, t + b);
2849
+ null !== p && p.push(uc, w);
2850
+ return w;
2851
+ }, argPackAdvance:8, readValueFromPointer:Ic, J:function(p) {
2852
+ uc(p);
2845
2853
  },});
2846
2854
  }, _embind_register_value_object:function(a, b, c, d, e, f) {
2847
- Fc[a] = {name:O(b), Pa:R(c, d), U:R(e, f), $a:[],};
2848
- }, _embind_register_value_object_field:function(a, b, c, d, e, f, g, k, q, n) {
2849
- Fc[a].$a.push({Lb:O(b), Rb:c, Pb:R(d, e), Qb:f, fc:g, ec:R(k, q), hc:n,});
2855
+ Gc[a] = {name:L(b), Pa:R(c, d), U:R(e, f), $a:[],};
2856
+ }, _embind_register_value_object_field:function(a, b, c, d, e, f, g, k, p, n) {
2857
+ Gc[a].$a.push({Lb:L(b), Rb:c, Pb:R(d, e), Qb:f, fc:g, ec:R(k, p), hc:n,});
2850
2858
  }, _embind_register_void:function(a, b) {
2851
- b = O(b);
2852
- Kc(a, {Zb:!0, name:b, argPackAdvance:0, fromWireType:function() {
2859
+ b = L(b);
2860
+ Lc(a, {Zb:!0, name:b, argPackAdvance:0, fromWireType:function() {
2853
2861
  }, toWireType:function() {
2854
2862
  },});
2855
2863
  }, _emscripten_get_now_is_monotonic:() => !0, _emscripten_throw_longjmp:() => {
2856
2864
  throw Infinity;
2857
2865
  }, _emval_as:function(a, b, c) {
2858
- a = gc(a);
2859
- b = uc(b, "emval::as");
2860
- var d = [], e = hc(d);
2861
- D[c >> 2] = e;
2866
+ a = hc(a);
2867
+ b = vc(b, "emval::as");
2868
+ var d = [], e = ic(d);
2869
+ E[c >> 2] = e;
2862
2870
  return b.toWireType(d, a);
2863
2871
  }, _emval_call_method:function(a, b, c, d, e) {
2864
- a = td[a];
2865
- b = gc(b);
2866
- c = sd(c);
2872
+ a = ud[a];
2873
+ b = hc(b);
2874
+ c = td(c);
2867
2875
  var f = [];
2868
- D[d >> 2] = hc(f);
2876
+ E[d >> 2] = ic(f);
2869
2877
  return a(b, c, f, e);
2870
2878
  }, _emval_call_void_method:function(a, b, c, d) {
2871
- a = td[a];
2872
- b = gc(b);
2873
- c = sd(c);
2879
+ a = ud[a];
2880
+ b = hc(b);
2881
+ c = td(c);
2874
2882
  a(b, c, null, d);
2875
- }, _emval_decref:fd, _emval_get_method_caller:function(a, b) {
2876
- var c = vd(a, b), d = c[0];
2883
+ }, _emval_decref:gd, _emval_get_method_caller:function(a, b) {
2884
+ var c = wd(a, b), d = c[0];
2877
2885
  b = d.name + "_$" + c.slice(1).map(function(g) {
2878
2886
  return g.name;
2879
2887
  }).join("_") + "$";
2880
- var e = wd[b];
2888
+ var e = xd[b];
2881
2889
  if (void 0 !== e) {
2882
2890
  return e;
2883
2891
  }
2884
2892
  var f = Array(a - 1);
2885
- e = ud((g, k, q, n) => {
2886
- for (var t = 0, v = 0; v < a - 1; ++v) {
2887
- f[v] = c[v + 1].readValueFromPointer(n + t), t += c[v + 1].argPackAdvance;
2893
+ e = vd((g, k, p, n) => {
2894
+ for (var t = 0, w = 0; w < a - 1; ++w) {
2895
+ f[w] = c[w + 1].readValueFromPointer(n + t), t += c[w + 1].argPackAdvance;
2888
2896
  }
2889
2897
  g = g[k].apply(g, f);
2890
- for (v = 0; v < a - 1; ++v) {
2891
- c[v + 1].Hb && c[v + 1].Hb(f[v]);
2898
+ for (w = 0; w < a - 1; ++w) {
2899
+ c[w + 1].Hb && c[w + 1].Hb(f[w]);
2892
2900
  }
2893
2901
  if (!d.Zb) {
2894
- return d.toWireType(q, g);
2902
+ return d.toWireType(p, g);
2895
2903
  }
2896
2904
  });
2897
- return wd[b] = e;
2905
+ return xd[b] = e;
2898
2906
  }, _emval_get_property:function(a, b) {
2899
- a = gc(a);
2900
- b = gc(b);
2901
- return hc(a[b]);
2907
+ a = hc(a);
2908
+ b = hc(b);
2909
+ return ic(a[b]);
2902
2910
  }, _emval_incref:function(a) {
2903
- 4 < a && (L.get(a).pb += 1);
2911
+ 4 < a && (I.get(a).pb += 1);
2904
2912
  }, _emval_new_cstring:function(a) {
2905
- return hc(sd(a));
2913
+ return ic(td(a));
2906
2914
  }, _emval_new_object:function() {
2907
- return hc({});
2915
+ return ic({});
2908
2916
  }, _emval_run_destructors:function(a) {
2909
- var b = gc(a);
2910
- Gc(b);
2911
- fd(a);
2917
+ var b = hc(a);
2918
+ Hc(b);
2919
+ gd(a);
2912
2920
  }, _emval_set_property:function(a, b, c) {
2913
- a = gc(a);
2914
- b = gc(b);
2915
- c = gc(c);
2921
+ a = hc(a);
2922
+ b = hc(b);
2923
+ c = hc(c);
2916
2924
  a[b] = c;
2917
2925
  }, _emval_take_value:function(a, b) {
2918
- a = uc(a, "_emval_take_value");
2926
+ a = vc(a, "_emval_take_value");
2919
2927
  a = a.readValueFromPointer(b);
2920
- return hc(a);
2928
+ return ic(a);
2921
2929
  }, abort:() => {
2922
2930
  wa("");
2923
2931
  }, emscripten_asm_const_int:(a, b, c) => {
2924
- xd.length = 0;
2932
+ yd.length = 0;
2925
2933
  var d;
2926
- for (c >>= 2; d = w[b++];) {
2927
- c += 105 != d & c, xd.push(105 == d ? B[c] : Aa[c++ >> 1]), ++c;
2934
+ for (c >>= 2; d = x[b++];) {
2935
+ c += 105 != d & c, yd.push(105 == d ? D[c] : Aa[c++ >> 1]), ++c;
2928
2936
  }
2929
- return Wa[a].apply(null, xd);
2937
+ return Wa[a].apply(null, yd);
2930
2938
  }, emscripten_date_now:function() {
2931
2939
  return Date.now();
2932
2940
  }, emscripten_get_now:() => performance.now(), emscripten_glActiveTexture:function(a) {
2933
2941
  U.activeTexture(a);
2934
2942
  }, emscripten_glAttachShader:function(a, b) {
2935
- U.attachShader(Dd[a], Hd[b]);
2943
+ U.attachShader(Ed[a], Id[b]);
2936
2944
  }, emscripten_glBindAttribLocation:function(a, b, c) {
2937
- U.bindAttribLocation(Dd[a], b, c ? F(w, c) : "");
2945
+ U.bindAttribLocation(Ed[a], b, c ? fb(x, c) : "");
2938
2946
  }, emscripten_glBindBuffer:function(a, b) {
2939
2947
  35051 == a ? U.Ka = b : 35052 == a && (U.fa = b);
2940
- U.bindBuffer(a, Cd[b]);
2941
- }, emscripten_glBindFramebuffer:Pd, emscripten_glBindRenderbuffer:function(a, b) {
2942
- U.bindRenderbuffer(a, Fd[b]);
2948
+ U.bindBuffer(a, Dd[b]);
2949
+ }, emscripten_glBindFramebuffer:Qd, emscripten_glBindRenderbuffer:function(a, b) {
2950
+ U.bindRenderbuffer(a, Gd[b]);
2943
2951
  }, emscripten_glBindSampler:function(a, b) {
2944
- U.bindSampler(a, Jd[b]);
2952
+ U.bindSampler(a, Kd[b]);
2945
2953
  }, emscripten_glBindTexture:function(a, b) {
2946
- U.bindTexture(a, Gd[b]);
2947
- }, emscripten_glBindVertexArray:Qd, emscripten_glBindVertexArrayOES:Qd, emscripten_glBlendColor:function(a, b, c, d) {
2954
+ U.bindTexture(a, Hd[b]);
2955
+ }, emscripten_glBindVertexArray:Rd, emscripten_glBindVertexArrayOES:Rd, emscripten_glBlendColor:function(a, b, c, d) {
2948
2956
  U.blendColor(a, b, c, d);
2949
2957
  }, emscripten_glBlendEquation:function(a) {
2950
2958
  U.blendEquation(a);
2951
2959
  }, emscripten_glBlendFunc:function(a, b) {
2952
2960
  U.blendFunc(a, b);
2953
- }, emscripten_glBlitFramebuffer:function(a, b, c, d, e, f, g, k, q, n) {
2954
- U.blitFramebuffer(a, b, c, d, e, f, g, k, q, n);
2961
+ }, emscripten_glBlitFramebuffer:function(a, b, c, d, e, f, g, k, p, n) {
2962
+ U.blitFramebuffer(a, b, c, d, e, f, g, k, p, n);
2955
2963
  }, emscripten_glBufferData:function(a, b, c, d) {
2956
- 2 <= T.version ? c && b ? U.bufferData(a, w, d, c, b) : U.bufferData(a, b, d) : U.bufferData(a, c ? w.subarray(c, c + b) : b, d);
2964
+ 2 <= T.version ? c && b ? U.bufferData(a, x, d, c, b) : U.bufferData(a, b, d) : U.bufferData(a, c ? x.subarray(c, c + b) : b, d);
2957
2965
  }, emscripten_glBufferSubData:function(a, b, c, d) {
2958
- 2 <= T.version ? c && U.bufferSubData(a, b, w, d, c) : U.bufferSubData(a, b, w.subarray(d, d + c));
2966
+ 2 <= T.version ? c && U.bufferSubData(a, b, x, d, c) : U.bufferSubData(a, b, x.subarray(d, d + c));
2959
2967
  }, emscripten_glCheckFramebufferStatus:function(a) {
2960
2968
  return U.checkFramebufferStatus(a);
2961
2969
  }, emscripten_glClear:function(a) {
@@ -2965,71 +2973,71 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
2965
2973
  }, emscripten_glClearStencil:function(a) {
2966
2974
  U.clearStencil(a);
2967
2975
  }, emscripten_glClientWaitSync:function(a, b, c, d) {
2968
- return U.clientWaitSync(Kd[a], b, (c >>> 0) + 4294967296 * d);
2976
+ return U.clientWaitSync(Ld[a], b, (c >>> 0) + 4294967296 * d);
2969
2977
  }, emscripten_glColorMask:function(a, b, c, d) {
2970
2978
  U.colorMask(!!a, !!b, !!c, !!d);
2971
2979
  }, emscripten_glCompileShader:function(a) {
2972
- U.compileShader(Hd[a]);
2980
+ U.compileShader(Id[a]);
2973
2981
  }, emscripten_glCompressedTexImage2D:function(a, b, c, d, e, f, g, k) {
2974
- 2 <= T.version ? U.fa || !g ? U.compressedTexImage2D(a, b, c, d, e, f, g, k) : U.compressedTexImage2D(a, b, c, d, e, f, w, k, g) : U.compressedTexImage2D(a, b, c, d, e, f, k ? w.subarray(k, k + g) : null);
2975
- }, emscripten_glCompressedTexSubImage2D:function(a, b, c, d, e, f, g, k, q) {
2976
- 2 <= T.version ? U.fa || !k ? U.compressedTexSubImage2D(a, b, c, d, e, f, g, k, q) : U.compressedTexSubImage2D(a, b, c, d, e, f, g, w, q, k) : U.compressedTexSubImage2D(a, b, c, d, e, f, g, q ? w.subarray(q, q + k) : null);
2982
+ 2 <= T.version ? U.fa || !g ? U.compressedTexImage2D(a, b, c, d, e, f, g, k) : U.compressedTexImage2D(a, b, c, d, e, f, x, k, g) : U.compressedTexImage2D(a, b, c, d, e, f, k ? x.subarray(k, k + g) : null);
2983
+ }, emscripten_glCompressedTexSubImage2D:function(a, b, c, d, e, f, g, k, p) {
2984
+ 2 <= T.version ? U.fa || !k ? U.compressedTexSubImage2D(a, b, c, d, e, f, g, k, p) : U.compressedTexSubImage2D(a, b, c, d, e, f, g, x, p, k) : U.compressedTexSubImage2D(a, b, c, d, e, f, g, p ? x.subarray(p, p + k) : null);
2977
2985
  }, emscripten_glCopyTexSubImage2D:function(a, b, c, d, e, f, g, k) {
2978
2986
  U.copyTexSubImage2D(a, b, c, d, e, f, g, k);
2979
2987
  }, emscripten_glCreateProgram:function() {
2980
- var a = ia(Dd), b = U.createProgram();
2988
+ var a = ha(Ed), b = U.createProgram();
2981
2989
  b.name = a;
2982
2990
  b.za = b.xa = b.ya = 0;
2983
2991
  b.Sa = 1;
2984
- Dd[a] = b;
2992
+ Ed[a] = b;
2985
2993
  return a;
2986
2994
  }, emscripten_glCreateShader:function(a) {
2987
- var b = ia(Hd);
2988
- Hd[b] = U.createShader(a);
2995
+ var b = ha(Id);
2996
+ Id[b] = U.createShader(a);
2989
2997
  return b;
2990
2998
  }, emscripten_glCullFace:function(a) {
2991
2999
  U.cullFace(a);
2992
3000
  }, emscripten_glDeleteBuffers:function(a, b) {
2993
3001
  for (var c = 0; c < a; c++) {
2994
- var d = B[b + 4 * c >> 2], e = Cd[d];
2995
- e && (U.deleteBuffer(e), e.name = 0, Cd[d] = null, d == U.Ka && (U.Ka = 0), d == U.fa && (U.fa = 0));
3002
+ var d = D[b + 4 * c >> 2], e = Dd[d];
3003
+ e && (U.deleteBuffer(e), e.name = 0, Dd[d] = null, d == U.Ka && (U.Ka = 0), d == U.fa && (U.fa = 0));
2996
3004
  }
2997
3005
  }, emscripten_glDeleteFramebuffers:function(a, b) {
2998
3006
  for (var c = 0; c < a; ++c) {
2999
- var d = B[b + 4 * c >> 2], e = Ed[d];
3000
- e && (U.deleteFramebuffer(e), e.name = 0, Ed[d] = null);
3007
+ var d = D[b + 4 * c >> 2], e = Fd[d];
3008
+ e && (U.deleteFramebuffer(e), e.name = 0, Fd[d] = null);
3001
3009
  }
3002
3010
  }, emscripten_glDeleteProgram:function(a) {
3003
3011
  if (a) {
3004
- var b = Dd[a];
3005
- b ? (U.deleteProgram(b), b.name = 0, Dd[a] = null) : S(1281);
3012
+ var b = Ed[a];
3013
+ b ? (U.deleteProgram(b), b.name = 0, Ed[a] = null) : S(1281);
3006
3014
  }
3007
3015
  }, emscripten_glDeleteRenderbuffers:function(a, b) {
3008
3016
  for (var c = 0; c < a; c++) {
3009
- var d = B[b + 4 * c >> 2], e = Fd[d];
3010
- e && (U.deleteRenderbuffer(e), e.name = 0, Fd[d] = null);
3017
+ var d = D[b + 4 * c >> 2], e = Gd[d];
3018
+ e && (U.deleteRenderbuffer(e), e.name = 0, Gd[d] = null);
3011
3019
  }
3012
3020
  }, emscripten_glDeleteSamplers:function(a, b) {
3013
3021
  for (var c = 0; c < a; c++) {
3014
- var d = B[b + 4 * c >> 2], e = Jd[d];
3015
- e && (U.deleteSampler(e), e.name = 0, Jd[d] = null);
3022
+ var d = D[b + 4 * c >> 2], e = Kd[d];
3023
+ e && (U.deleteSampler(e), e.name = 0, Kd[d] = null);
3016
3024
  }
3017
3025
  }, emscripten_glDeleteShader:function(a) {
3018
3026
  if (a) {
3019
- var b = Hd[a];
3020
- b ? (U.deleteShader(b), Hd[a] = null) : S(1281);
3027
+ var b = Id[a];
3028
+ b ? (U.deleteShader(b), Id[a] = null) : S(1281);
3021
3029
  }
3022
3030
  }, emscripten_glDeleteSync:function(a) {
3023
3031
  if (a) {
3024
- var b = Kd[a];
3025
- b ? (U.deleteSync(b), b.name = 0, Kd[a] = null) : S(1281);
3032
+ var b = Ld[a];
3033
+ b ? (U.deleteSync(b), b.name = 0, Ld[a] = null) : S(1281);
3026
3034
  }
3027
3035
  }, emscripten_glDeleteTextures:function(a, b) {
3028
3036
  for (var c = 0; c < a; c++) {
3029
- var d = B[b + 4 * c >> 2], e = Gd[d];
3030
- e && (U.deleteTexture(e), e.name = 0, Gd[d] = null);
3037
+ var d = D[b + 4 * c >> 2], e = Hd[d];
3038
+ e && (U.deleteTexture(e), e.name = 0, Hd[d] = null);
3031
3039
  }
3032
- }, emscripten_glDeleteVertexArrays:Rd, emscripten_glDeleteVertexArraysOES:Rd, emscripten_glDepthMask:function(a) {
3040
+ }, emscripten_glDeleteVertexArrays:Sd, emscripten_glDeleteVertexArraysOES:Sd, emscripten_glDepthMask:function(a) {
3033
3041
  U.depthMask(!!a);
3034
3042
  }, emscripten_glDisable:function(a) {
3035
3043
  U.disable(a);
@@ -3042,112 +3050,112 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3042
3050
  }, emscripten_glDrawArraysInstancedBaseInstanceWEBGL:function(a, b, c, d, e) {
3043
3051
  U.Ya.drawArraysInstancedBaseInstanceWEBGL(a, b, c, d, e);
3044
3052
  }, emscripten_glDrawBuffers:function(a, b) {
3045
- for (var c = Sd[a], d = 0; d < a; d++) {
3046
- c[d] = B[b + 4 * d >> 2];
3053
+ for (var c = Td[a], d = 0; d < a; d++) {
3054
+ c[d] = D[b + 4 * d >> 2];
3047
3055
  }
3048
3056
  U.drawBuffers(c);
3049
- }, emscripten_glDrawElements:Td, emscripten_glDrawElementsInstanced:function(a, b, c, d, e) {
3057
+ }, emscripten_glDrawElements:Ud, emscripten_glDrawElementsInstanced:function(a, b, c, d, e) {
3050
3058
  U.drawElementsInstanced(a, b, c, d, e);
3051
3059
  }, emscripten_glDrawElementsInstancedBaseVertexBaseInstanceWEBGL:function(a, b, c, d, e, f, g) {
3052
3060
  U.Ya.drawElementsInstancedBaseVertexBaseInstanceWEBGL(a, b, c, d, e, f, g);
3053
3061
  }, emscripten_glDrawRangeElements:function(a, b, c, d, e, f) {
3054
- Td(a, d, e, f);
3062
+ Ud(a, d, e, f);
3055
3063
  }, emscripten_glEnable:function(a) {
3056
3064
  U.enable(a);
3057
3065
  }, emscripten_glEnableVertexAttribArray:function(a) {
3058
3066
  U.enableVertexAttribArray(a);
3059
3067
  }, emscripten_glFenceSync:function(a, b) {
3060
- return (a = U.fenceSync(a, b)) ? (b = ia(Kd), a.name = b, Kd[b] = a, b) : 0;
3068
+ return (a = U.fenceSync(a, b)) ? (b = ha(Ld), a.name = b, Ld[b] = a, b) : 0;
3061
3069
  }, emscripten_glFinish:function() {
3062
3070
  U.finish();
3063
3071
  }, emscripten_glFlush:function() {
3064
3072
  U.flush();
3065
3073
  }, emscripten_glFramebufferRenderbuffer:function(a, b, c, d) {
3066
- U.framebufferRenderbuffer(a, b, c, Fd[d]);
3074
+ U.framebufferRenderbuffer(a, b, c, Gd[d]);
3067
3075
  }, emscripten_glFramebufferTexture2D:function(a, b, c, d, e) {
3068
- U.framebufferTexture2D(a, b, c, Gd[d], e);
3076
+ U.framebufferTexture2D(a, b, c, Hd[d], e);
3069
3077
  }, emscripten_glFrontFace:function(a) {
3070
3078
  U.frontFace(a);
3071
3079
  }, emscripten_glGenBuffers:function(a, b) {
3072
- Ud(a, b, "createBuffer", Cd);
3080
+ Vd(a, b, "createBuffer", Dd);
3073
3081
  }, emscripten_glGenFramebuffers:function(a, b) {
3074
- Ud(a, b, "createFramebuffer", Ed);
3082
+ Vd(a, b, "createFramebuffer", Fd);
3075
3083
  }, emscripten_glGenRenderbuffers:function(a, b) {
3076
- Ud(a, b, "createRenderbuffer", Fd);
3084
+ Vd(a, b, "createRenderbuffer", Gd);
3077
3085
  }, emscripten_glGenSamplers:function(a, b) {
3078
- Ud(a, b, "createSampler", Jd);
3086
+ Vd(a, b, "createSampler", Kd);
3079
3087
  }, emscripten_glGenTextures:function(a, b) {
3080
- Ud(a, b, "createTexture", Gd);
3081
- }, emscripten_glGenVertexArrays:Vd, emscripten_glGenVertexArraysOES:Vd, emscripten_glGenerateMipmap:function(a) {
3088
+ Vd(a, b, "createTexture", Hd);
3089
+ }, emscripten_glGenVertexArrays:Wd, emscripten_glGenVertexArraysOES:Wd, emscripten_glGenerateMipmap:function(a) {
3082
3090
  U.generateMipmap(a);
3083
3091
  }, emscripten_glGetBufferParameteriv:function(a, b, c) {
3084
- c ? B[c >> 2] = U.getBufferParameter(a, b) : S(1281);
3092
+ c ? D[c >> 2] = U.getBufferParameter(a, b) : S(1281);
3085
3093
  }, emscripten_glGetError:function() {
3086
- var a = U.getError() || Od;
3087
- Od = 0;
3094
+ var a = U.getError() || Pd;
3095
+ Pd = 0;
3088
3096
  return a;
3089
3097
  }, emscripten_glGetFramebufferAttachmentParameteriv:function(a, b, c, d) {
3090
3098
  a = U.getFramebufferAttachmentParameter(a, b, c);
3091
3099
  if (a instanceof WebGLRenderbuffer || a instanceof WebGLTexture) {
3092
3100
  a = a.name | 0;
3093
3101
  }
3094
- B[d >> 2] = a;
3095
- }, emscripten_glGetIntegerv:Xd, emscripten_glGetProgramInfoLog:function(a, b, c, d) {
3096
- a = U.getProgramInfoLog(Dd[a]);
3102
+ D[d >> 2] = a;
3103
+ }, emscripten_glGetIntegerv:Yd, emscripten_glGetProgramInfoLog:function(a, b, c, d) {
3104
+ a = U.getProgramInfoLog(Ed[a]);
3097
3105
  null === a && (a = "(unknown error)");
3098
- b = 0 < b && d ? hb(a, w, d, b) : 0;
3099
- c && (B[c >> 2] = b);
3106
+ b = 0 < b && d ? ib(a, x, d, b) : 0;
3107
+ c && (D[c >> 2] = b);
3100
3108
  }, emscripten_glGetProgramiv:function(a, b, c) {
3101
3109
  if (c) {
3102
- if (a >= Bd) {
3110
+ if (a >= Cd) {
3103
3111
  S(1281);
3104
3112
  } else {
3105
- if (a = Dd[a], 35716 == b) {
3106
- a = U.getProgramInfoLog(a), null === a && (a = "(unknown error)"), B[c >> 2] = a.length + 1;
3113
+ if (a = Ed[a], 35716 == b) {
3114
+ a = U.getProgramInfoLog(a), null === a && (a = "(unknown error)"), D[c >> 2] = a.length + 1;
3107
3115
  } else if (35719 == b) {
3108
3116
  if (!a.za) {
3109
3117
  for (b = 0; b < U.getProgramParameter(a, 35718); ++b) {
3110
3118
  a.za = Math.max(a.za, U.getActiveUniform(a, b).name.length + 1);
3111
3119
  }
3112
3120
  }
3113
- B[c >> 2] = a.za;
3121
+ D[c >> 2] = a.za;
3114
3122
  } else if (35722 == b) {
3115
3123
  if (!a.xa) {
3116
3124
  for (b = 0; b < U.getProgramParameter(a, 35721); ++b) {
3117
3125
  a.xa = Math.max(a.xa, U.getActiveAttrib(a, b).name.length + 1);
3118
3126
  }
3119
3127
  }
3120
- B[c >> 2] = a.xa;
3128
+ D[c >> 2] = a.xa;
3121
3129
  } else if (35381 == b) {
3122
3130
  if (!a.ya) {
3123
3131
  for (b = 0; b < U.getProgramParameter(a, 35382); ++b) {
3124
3132
  a.ya = Math.max(a.ya, U.getActiveUniformBlockName(a, b).length + 1);
3125
3133
  }
3126
3134
  }
3127
- B[c >> 2] = a.ya;
3135
+ D[c >> 2] = a.ya;
3128
3136
  } else {
3129
- B[c >> 2] = U.getProgramParameter(a, b);
3137
+ D[c >> 2] = U.getProgramParameter(a, b);
3130
3138
  }
3131
3139
  }
3132
3140
  } else {
3133
3141
  S(1281);
3134
3142
  }
3135
3143
  }, emscripten_glGetRenderbufferParameteriv:function(a, b, c) {
3136
- c ? B[c >> 2] = U.getRenderbufferParameter(a, b) : S(1281);
3144
+ c ? D[c >> 2] = U.getRenderbufferParameter(a, b) : S(1281);
3137
3145
  }, emscripten_glGetShaderInfoLog:function(a, b, c, d) {
3138
- a = U.getShaderInfoLog(Hd[a]);
3146
+ a = U.getShaderInfoLog(Id[a]);
3139
3147
  null === a && (a = "(unknown error)");
3140
- b = 0 < b && d ? hb(a, w, d, b) : 0;
3141
- c && (B[c >> 2] = b);
3148
+ b = 0 < b && d ? ib(a, x, d, b) : 0;
3149
+ c && (D[c >> 2] = b);
3142
3150
  }, emscripten_glGetShaderPrecisionFormat:function(a, b, c, d) {
3143
3151
  a = U.getShaderPrecisionFormat(a, b);
3144
- B[c >> 2] = a.rangeMin;
3145
- B[c + 4 >> 2] = a.rangeMax;
3146
- B[d >> 2] = a.precision;
3152
+ D[c >> 2] = a.rangeMin;
3153
+ D[c + 4 >> 2] = a.rangeMax;
3154
+ D[d >> 2] = a.precision;
3147
3155
  }, emscripten_glGetShaderiv:function(a, b, c) {
3148
- c ? 35716 == b ? (a = U.getShaderInfoLog(Hd[a]), null === a && (a = "(unknown error)"), B[c >> 2] = a ? a.length + 1 : 0) : 35720 == b ? (a = U.getShaderSource(Hd[a]), B[c >> 2] = a ? a.length + 1 : 0) : B[c >> 2] = U.getShaderParameter(Hd[a], b) : S(1281);
3156
+ c ? 35716 == b ? (a = U.getShaderInfoLog(Id[a]), null === a && (a = "(unknown error)"), D[c >> 2] = a ? a.length + 1 : 0) : 35720 == b ? (a = U.getShaderSource(Id[a]), D[c >> 2] = a ? a.length + 1 : 0) : D[c >> 2] = U.getShaderParameter(Id[a], b) : S(1281);
3149
3157
  }, emscripten_glGetString:function(a) {
3150
- var b = Ld[a];
3158
+ var b = Md[a];
3151
3159
  if (!b) {
3152
3160
  switch(a) {
3153
3161
  case 7939:
@@ -3155,37 +3163,37 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3155
3163
  b = b.concat(b.map(function(d) {
3156
3164
  return "GL_" + d;
3157
3165
  }));
3158
- b = Zd(b.join(" "));
3166
+ b = $d(b.join(" "));
3159
3167
  break;
3160
3168
  case 7936:
3161
3169
  case 7937:
3162
3170
  case 37445:
3163
3171
  case 37446:
3164
3172
  (b = U.getParameter(a)) || S(1280);
3165
- b = b && Zd(b);
3173
+ b = b && $d(b);
3166
3174
  break;
3167
3175
  case 7938:
3168
3176
  b = U.getParameter(7938);
3169
3177
  b = 2 <= T.version ? "OpenGL ES 3.0 (" + b + ")" : "OpenGL ES 2.0 (" + b + ")";
3170
- b = Zd(b);
3178
+ b = $d(b);
3171
3179
  break;
3172
3180
  case 35724:
3173
3181
  b = U.getParameter(35724);
3174
3182
  var c = b.match(/^WebGL GLSL ES ([0-9]\.[0-9][0-9]?)(?:$| .*)/);
3175
3183
  null !== c && (3 == c[1].length && (c[1] += "0"), b = "OpenGL ES GLSL ES " + c[1] + " (" + b + ")");
3176
- b = Zd(b);
3184
+ b = $d(b);
3177
3185
  break;
3178
3186
  default:
3179
3187
  S(1280);
3180
3188
  }
3181
- Ld[a] = b;
3189
+ Md[a] = b;
3182
3190
  }
3183
3191
  return b;
3184
3192
  }, emscripten_glGetStringi:function(a, b) {
3185
3193
  if (2 > T.version) {
3186
3194
  return S(1282), 0;
3187
3195
  }
3188
- var c = Md[a];
3196
+ var c = Nd[a];
3189
3197
  if (c) {
3190
3198
  return 0 > b || b >= c.length ? (S(1281), 0) : c[b];
3191
3199
  }
@@ -3194,34 +3202,34 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3194
3202
  return c = U.getSupportedExtensions() || [], c = c.concat(c.map(function(d) {
3195
3203
  return "GL_" + d;
3196
3204
  })), c = c.map(function(d) {
3197
- return Zd(d);
3198
- }), c = Md[a] = c, 0 > b || b >= c.length ? (S(1281), 0) : c[b];
3205
+ return $d(d);
3206
+ }), c = Nd[a] = c, 0 > b || b >= c.length ? (S(1281), 0) : c[b];
3199
3207
  default:
3200
3208
  return S(1280), 0;
3201
3209
  }
3202
3210
  }, emscripten_glGetUniformLocation:function(a, b) {
3203
- b = b ? F(w, b) : "";
3204
- if (a = Dd[a]) {
3211
+ b = b ? fb(x, b) : "";
3212
+ if (a = Ed[a]) {
3205
3213
  var c = a, d = c.ma, e = c.ub, f;
3206
3214
  if (!d) {
3207
3215
  for (c.ma = d = {}, c.tb = {}, f = 0; f < U.getProgramParameter(c, 35718); ++f) {
3208
3216
  var g = U.getActiveUniform(c, f);
3209
3217
  var k = g.name;
3210
3218
  g = g.size;
3211
- var q = $d(k);
3212
- q = 0 < q ? k.slice(0, q) : k;
3219
+ var p = ae(k);
3220
+ p = 0 < p ? k.slice(0, p) : k;
3213
3221
  var n = c.Sa;
3214
3222
  c.Sa += g;
3215
- e[q] = [g, n];
3223
+ e[p] = [g, n];
3216
3224
  for (k = 0; k < g; ++k) {
3217
- d[n] = k, c.tb[n++] = q;
3225
+ d[n] = k, c.tb[n++] = p;
3218
3226
  }
3219
3227
  }
3220
3228
  }
3221
3229
  c = a.ma;
3222
3230
  d = 0;
3223
3231
  e = b;
3224
- f = $d(b);
3232
+ f = ae(b);
3225
3233
  0 < f && (d = parseInt(b.slice(f + 1)) >>> 0, e = b.slice(0, f));
3226
3234
  if ((e = a.ub[e]) && d < e[0] && (d += e[1], c[d] = c[d] || U.getUniformLocation(a, b))) {
3227
3235
  return d;
@@ -3231,32 +3239,32 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3231
3239
  }
3232
3240
  return -1;
3233
3241
  }, emscripten_glInvalidateFramebuffer:function(a, b, c) {
3234
- for (var d = Sd[b], e = 0; e < b; e++) {
3235
- d[e] = B[c + 4 * e >> 2];
3242
+ for (var d = Td[b], e = 0; e < b; e++) {
3243
+ d[e] = D[c + 4 * e >> 2];
3236
3244
  }
3237
3245
  U.invalidateFramebuffer(a, d);
3238
3246
  }, emscripten_glInvalidateSubFramebuffer:function(a, b, c, d, e, f, g) {
3239
- for (var k = Sd[b], q = 0; q < b; q++) {
3240
- k[q] = B[c + 4 * q >> 2];
3247
+ for (var k = Td[b], p = 0; p < b; p++) {
3248
+ k[p] = D[c + 4 * p >> 2];
3241
3249
  }
3242
3250
  U.invalidateSubFramebuffer(a, k, d, e, f, g);
3243
3251
  }, emscripten_glIsSync:function(a) {
3244
- return U.isSync(Kd[a]);
3252
+ return U.isSync(Ld[a]);
3245
3253
  }, emscripten_glIsTexture:function(a) {
3246
- return (a = Gd[a]) ? U.isTexture(a) : 0;
3254
+ return (a = Hd[a]) ? U.isTexture(a) : 0;
3247
3255
  }, emscripten_glLineWidth:function(a) {
3248
3256
  U.lineWidth(a);
3249
3257
  }, emscripten_glLinkProgram:function(a) {
3250
- a = Dd[a];
3258
+ a = Ed[a];
3251
3259
  U.linkProgram(a);
3252
3260
  a.ma = 0;
3253
3261
  a.ub = {};
3254
3262
  }, emscripten_glMultiDrawArraysInstancedBaseInstanceWEBGL:function(a, b, c, d, e, f) {
3255
- U.gb.multiDrawArraysInstancedBaseInstanceWEBGL(a, B, b >> 2, B, c >> 2, B, d >> 2, D, e >> 2, f);
3263
+ U.gb.multiDrawArraysInstancedBaseInstanceWEBGL(a, D, b >> 2, D, c >> 2, D, d >> 2, E, e >> 2, f);
3256
3264
  }, emscripten_glMultiDrawElementsInstancedBaseVertexBaseInstanceWEBGL:function(a, b, c, d, e, f, g, k) {
3257
- U.gb.multiDrawElementsInstancedBaseVertexBaseInstanceWEBGL(a, B, b >> 2, c, B, d >> 2, B, e >> 2, B, f >> 2, D, g >> 2, k);
3265
+ U.gb.multiDrawElementsInstancedBaseVertexBaseInstanceWEBGL(a, D, b >> 2, c, D, d >> 2, D, e >> 2, D, f >> 2, E, g >> 2, k);
3258
3266
  }, emscripten_glPixelStorei:function(a, b) {
3259
- 3317 == a && (Nd = b);
3267
+ 3317 == a && (Od = b);
3260
3268
  U.pixelStorei(a, b);
3261
3269
  }, emscripten_glReadBuffer:function(a) {
3262
3270
  U.readBuffer(a);
@@ -3265,29 +3273,29 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3265
3273
  if (U.Ka) {
3266
3274
  U.readPixels(a, b, c, d, e, f, g);
3267
3275
  } else {
3268
- var k = ae(f);
3276
+ var k = be(f);
3269
3277
  U.readPixels(a, b, c, d, e, f, k, g >> 31 - Math.clz32(k.BYTES_PER_ELEMENT));
3270
3278
  }
3271
3279
  } else {
3272
- (g = be(f, e, c, d, g)) ? U.readPixels(a, b, c, d, e, f, g) : S(1280);
3280
+ (g = ce(f, e, c, d, g)) ? U.readPixels(a, b, c, d, e, f, g) : S(1280);
3273
3281
  }
3274
3282
  }, emscripten_glRenderbufferStorage:function(a, b, c, d) {
3275
3283
  U.renderbufferStorage(a, b, c, d);
3276
3284
  }, emscripten_glRenderbufferStorageMultisample:function(a, b, c, d, e) {
3277
3285
  U.renderbufferStorageMultisample(a, b, c, d, e);
3278
3286
  }, emscripten_glSamplerParameteri:function(a, b, c) {
3279
- U.samplerParameteri(Jd[a], b, c);
3287
+ U.samplerParameteri(Kd[a], b, c);
3280
3288
  }, emscripten_glSamplerParameteriv:function(a, b, c) {
3281
- U.samplerParameteri(Jd[a], b, B[c >> 2]);
3289
+ U.samplerParameteri(Kd[a], b, D[c >> 2]);
3282
3290
  }, emscripten_glScissor:function(a, b, c, d) {
3283
3291
  U.scissor(a, b, c, d);
3284
3292
  }, emscripten_glShaderSource:function(a, b, c, d) {
3285
3293
  for (var e = "", f = 0; f < b; ++f) {
3286
- var g = d ? B[d + 4 * f >> 2] : -1, k = B[c + 4 * f >> 2];
3287
- g = k ? F(w, k, 0 > g ? void 0 : g) : "";
3294
+ var g = d ? D[d + 4 * f >> 2] : -1, k = D[c + 4 * f >> 2];
3295
+ g = k ? fb(x, k, 0 > g ? void 0 : g) : "";
3288
3296
  e += g;
3289
3297
  }
3290
- U.shaderSource(Hd[a], e);
3298
+ U.shaderSource(Id[a], e);
3291
3299
  }, emscripten_glStencilFunc:function(a, b, c) {
3292
3300
  U.stencilFunc(a, b, c);
3293
3301
  }, emscripten_glStencilFuncSeparate:function(a, b, c, d) {
@@ -3300,54 +3308,54 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3300
3308
  U.stencilOp(a, b, c);
3301
3309
  }, emscripten_glStencilOpSeparate:function(a, b, c, d) {
3302
3310
  U.stencilOpSeparate(a, b, c, d);
3303
- }, emscripten_glTexImage2D:function(a, b, c, d, e, f, g, k, q) {
3311
+ }, emscripten_glTexImage2D:function(a, b, c, d, e, f, g, k, p) {
3304
3312
  if (2 <= T.version) {
3305
3313
  if (U.fa) {
3306
- U.texImage2D(a, b, c, d, e, f, g, k, q);
3307
- } else if (q) {
3308
- var n = ae(k);
3309
- U.texImage2D(a, b, c, d, e, f, g, k, n, q >> 31 - Math.clz32(n.BYTES_PER_ELEMENT));
3314
+ U.texImage2D(a, b, c, d, e, f, g, k, p);
3315
+ } else if (p) {
3316
+ var n = be(k);
3317
+ U.texImage2D(a, b, c, d, e, f, g, k, n, p >> 31 - Math.clz32(n.BYTES_PER_ELEMENT));
3310
3318
  } else {
3311
3319
  U.texImage2D(a, b, c, d, e, f, g, k, null);
3312
3320
  }
3313
3321
  } else {
3314
- U.texImage2D(a, b, c, d, e, f, g, k, q ? be(k, g, d, e, q) : null);
3322
+ U.texImage2D(a, b, c, d, e, f, g, k, p ? ce(k, g, d, e, p) : null);
3315
3323
  }
3316
3324
  }, emscripten_glTexParameterf:function(a, b, c) {
3317
3325
  U.texParameterf(a, b, c);
3318
3326
  }, emscripten_glTexParameterfv:function(a, b, c) {
3319
- U.texParameterf(a, b, E[c >> 2]);
3327
+ U.texParameterf(a, b, F[c >> 2]);
3320
3328
  }, emscripten_glTexParameteri:function(a, b, c) {
3321
3329
  U.texParameteri(a, b, c);
3322
3330
  }, emscripten_glTexParameteriv:function(a, b, c) {
3323
- U.texParameteri(a, b, B[c >> 2]);
3331
+ U.texParameteri(a, b, D[c >> 2]);
3324
3332
  }, emscripten_glTexStorage2D:function(a, b, c, d, e) {
3325
3333
  U.texStorage2D(a, b, c, d, e);
3326
- }, emscripten_glTexSubImage2D:function(a, b, c, d, e, f, g, k, q) {
3334
+ }, emscripten_glTexSubImage2D:function(a, b, c, d, e, f, g, k, p) {
3327
3335
  if (2 <= T.version) {
3328
3336
  if (U.fa) {
3329
- U.texSubImage2D(a, b, c, d, e, f, g, k, q);
3330
- } else if (q) {
3331
- var n = ae(k);
3332
- U.texSubImage2D(a, b, c, d, e, f, g, k, n, q >> 31 - Math.clz32(n.BYTES_PER_ELEMENT));
3337
+ U.texSubImage2D(a, b, c, d, e, f, g, k, p);
3338
+ } else if (p) {
3339
+ var n = be(k);
3340
+ U.texSubImage2D(a, b, c, d, e, f, g, k, n, p >> 31 - Math.clz32(n.BYTES_PER_ELEMENT));
3333
3341
  } else {
3334
3342
  U.texSubImage2D(a, b, c, d, e, f, g, k, null);
3335
3343
  }
3336
3344
  } else {
3337
- n = null, q && (n = be(k, g, e, f, q)), U.texSubImage2D(a, b, c, d, e, f, g, k, n);
3345
+ n = null, p && (n = ce(k, g, e, f, p)), U.texSubImage2D(a, b, c, d, e, f, g, k, n);
3338
3346
  }
3339
3347
  }, emscripten_glUniform1f:function(a, b) {
3340
3348
  U.uniform1f(V(a), b);
3341
3349
  }, emscripten_glUniform1fv:function(a, b, c) {
3342
3350
  if (2 <= T.version) {
3343
- b && U.uniform1fv(V(a), E, c >> 2, b);
3351
+ b && U.uniform1fv(V(a), F, c >> 2, b);
3344
3352
  } else {
3345
3353
  if (288 >= b) {
3346
- for (var d = ce[b - 1], e = 0; e < b; ++e) {
3347
- d[e] = E[c + 4 * e >> 2];
3354
+ for (var d = de[b - 1], e = 0; e < b; ++e) {
3355
+ d[e] = F[c + 4 * e >> 2];
3348
3356
  }
3349
3357
  } else {
3350
- d = E.subarray(c >> 2, c + 4 * b >> 2);
3358
+ d = F.subarray(c >> 2, c + 4 * b >> 2);
3351
3359
  }
3352
3360
  U.uniform1fv(V(a), d);
3353
3361
  }
@@ -3355,14 +3363,14 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3355
3363
  U.uniform1i(V(a), b);
3356
3364
  }, emscripten_glUniform1iv:function(a, b, c) {
3357
3365
  if (2 <= T.version) {
3358
- b && U.uniform1iv(V(a), B, c >> 2, b);
3366
+ b && U.uniform1iv(V(a), D, c >> 2, b);
3359
3367
  } else {
3360
3368
  if (288 >= b) {
3361
- for (var d = de[b - 1], e = 0; e < b; ++e) {
3362
- d[e] = B[c + 4 * e >> 2];
3369
+ for (var d = ee[b - 1], e = 0; e < b; ++e) {
3370
+ d[e] = D[c + 4 * e >> 2];
3363
3371
  }
3364
3372
  } else {
3365
- d = B.subarray(c >> 2, c + 4 * b >> 2);
3373
+ d = D.subarray(c >> 2, c + 4 * b >> 2);
3366
3374
  }
3367
3375
  U.uniform1iv(V(a), d);
3368
3376
  }
@@ -3370,14 +3378,14 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3370
3378
  U.uniform2f(V(a), b, c);
3371
3379
  }, emscripten_glUniform2fv:function(a, b, c) {
3372
3380
  if (2 <= T.version) {
3373
- b && U.uniform2fv(V(a), E, c >> 2, 2 * b);
3381
+ b && U.uniform2fv(V(a), F, c >> 2, 2 * b);
3374
3382
  } else {
3375
3383
  if (144 >= b) {
3376
- for (var d = ce[2 * b - 1], e = 0; e < 2 * b; e += 2) {
3377
- d[e] = E[c + 4 * e >> 2], d[e + 1] = E[c + (4 * e + 4) >> 2];
3384
+ for (var d = de[2 * b - 1], e = 0; e < 2 * b; e += 2) {
3385
+ d[e] = F[c + 4 * e >> 2], d[e + 1] = F[c + (4 * e + 4) >> 2];
3378
3386
  }
3379
3387
  } else {
3380
- d = E.subarray(c >> 2, c + 8 * b >> 2);
3388
+ d = F.subarray(c >> 2, c + 8 * b >> 2);
3381
3389
  }
3382
3390
  U.uniform2fv(V(a), d);
3383
3391
  }
@@ -3385,14 +3393,14 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3385
3393
  U.uniform2i(V(a), b, c);
3386
3394
  }, emscripten_glUniform2iv:function(a, b, c) {
3387
3395
  if (2 <= T.version) {
3388
- b && U.uniform2iv(V(a), B, c >> 2, 2 * b);
3396
+ b && U.uniform2iv(V(a), D, c >> 2, 2 * b);
3389
3397
  } else {
3390
3398
  if (144 >= b) {
3391
- for (var d = de[2 * b - 1], e = 0; e < 2 * b; e += 2) {
3392
- d[e] = B[c + 4 * e >> 2], d[e + 1] = B[c + (4 * e + 4) >> 2];
3399
+ for (var d = ee[2 * b - 1], e = 0; e < 2 * b; e += 2) {
3400
+ d[e] = D[c + 4 * e >> 2], d[e + 1] = D[c + (4 * e + 4) >> 2];
3393
3401
  }
3394
3402
  } else {
3395
- d = B.subarray(c >> 2, c + 8 * b >> 2);
3403
+ d = D.subarray(c >> 2, c + 8 * b >> 2);
3396
3404
  }
3397
3405
  U.uniform2iv(V(a), d);
3398
3406
  }
@@ -3400,14 +3408,14 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3400
3408
  U.uniform3f(V(a), b, c, d);
3401
3409
  }, emscripten_glUniform3fv:function(a, b, c) {
3402
3410
  if (2 <= T.version) {
3403
- b && U.uniform3fv(V(a), E, c >> 2, 3 * b);
3411
+ b && U.uniform3fv(V(a), F, c >> 2, 3 * b);
3404
3412
  } else {
3405
3413
  if (96 >= b) {
3406
- for (var d = ce[3 * b - 1], e = 0; e < 3 * b; e += 3) {
3407
- d[e] = E[c + 4 * e >> 2], d[e + 1] = E[c + (4 * e + 4) >> 2], d[e + 2] = E[c + (4 * e + 8) >> 2];
3414
+ for (var d = de[3 * b - 1], e = 0; e < 3 * b; e += 3) {
3415
+ d[e] = F[c + 4 * e >> 2], d[e + 1] = F[c + (4 * e + 4) >> 2], d[e + 2] = F[c + (4 * e + 8) >> 2];
3408
3416
  }
3409
3417
  } else {
3410
- d = E.subarray(c >> 2, c + 12 * b >> 2);
3418
+ d = F.subarray(c >> 2, c + 12 * b >> 2);
3411
3419
  }
3412
3420
  U.uniform3fv(V(a), d);
3413
3421
  }
@@ -3415,14 +3423,14 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3415
3423
  U.uniform3i(V(a), b, c, d);
3416
3424
  }, emscripten_glUniform3iv:function(a, b, c) {
3417
3425
  if (2 <= T.version) {
3418
- b && U.uniform3iv(V(a), B, c >> 2, 3 * b);
3426
+ b && U.uniform3iv(V(a), D, c >> 2, 3 * b);
3419
3427
  } else {
3420
3428
  if (96 >= b) {
3421
- for (var d = de[3 * b - 1], e = 0; e < 3 * b; e += 3) {
3422
- d[e] = B[c + 4 * e >> 2], d[e + 1] = B[c + (4 * e + 4) >> 2], d[e + 2] = B[c + (4 * e + 8) >> 2];
3429
+ for (var d = ee[3 * b - 1], e = 0; e < 3 * b; e += 3) {
3430
+ d[e] = D[c + 4 * e >> 2], d[e + 1] = D[c + (4 * e + 4) >> 2], d[e + 2] = D[c + (4 * e + 8) >> 2];
3423
3431
  }
3424
3432
  } else {
3425
- d = B.subarray(c >> 2, c + 12 * b >> 2);
3433
+ d = D.subarray(c >> 2, c + 12 * b >> 2);
3426
3434
  }
3427
3435
  U.uniform3iv(V(a), d);
3428
3436
  }
@@ -3430,10 +3438,10 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3430
3438
  U.uniform4f(V(a), b, c, d, e);
3431
3439
  }, emscripten_glUniform4fv:function(a, b, c) {
3432
3440
  if (2 <= T.version) {
3433
- b && U.uniform4fv(V(a), E, c >> 2, 4 * b);
3441
+ b && U.uniform4fv(V(a), F, c >> 2, 4 * b);
3434
3442
  } else {
3435
3443
  if (72 >= b) {
3436
- var d = ce[4 * b - 1], e = E;
3444
+ var d = de[4 * b - 1], e = F;
3437
3445
  c >>= 2;
3438
3446
  for (var f = 0; f < 4 * b; f += 4) {
3439
3447
  var g = c + f;
@@ -3443,7 +3451,7 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3443
3451
  d[f + 3] = e[g + 3];
3444
3452
  }
3445
3453
  } else {
3446
- d = E.subarray(c >> 2, c + 16 * b >> 2);
3454
+ d = F.subarray(c >> 2, c + 16 * b >> 2);
3447
3455
  }
3448
3456
  U.uniform4fv(V(a), d);
3449
3457
  }
@@ -3451,49 +3459,49 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3451
3459
  U.uniform4i(V(a), b, c, d, e);
3452
3460
  }, emscripten_glUniform4iv:function(a, b, c) {
3453
3461
  if (2 <= T.version) {
3454
- b && U.uniform4iv(V(a), B, c >> 2, 4 * b);
3462
+ b && U.uniform4iv(V(a), D, c >> 2, 4 * b);
3455
3463
  } else {
3456
3464
  if (72 >= b) {
3457
- for (var d = de[4 * b - 1], e = 0; e < 4 * b; e += 4) {
3458
- d[e] = B[c + 4 * e >> 2], d[e + 1] = B[c + (4 * e + 4) >> 2], d[e + 2] = B[c + (4 * e + 8) >> 2], d[e + 3] = B[c + (4 * e + 12) >> 2];
3465
+ for (var d = ee[4 * b - 1], e = 0; e < 4 * b; e += 4) {
3466
+ d[e] = D[c + 4 * e >> 2], d[e + 1] = D[c + (4 * e + 4) >> 2], d[e + 2] = D[c + (4 * e + 8) >> 2], d[e + 3] = D[c + (4 * e + 12) >> 2];
3459
3467
  }
3460
3468
  } else {
3461
- d = B.subarray(c >> 2, c + 16 * b >> 2);
3469
+ d = D.subarray(c >> 2, c + 16 * b >> 2);
3462
3470
  }
3463
3471
  U.uniform4iv(V(a), d);
3464
3472
  }
3465
3473
  }, emscripten_glUniformMatrix2fv:function(a, b, c, d) {
3466
3474
  if (2 <= T.version) {
3467
- b && U.uniformMatrix2fv(V(a), !!c, E, d >> 2, 4 * b);
3475
+ b && U.uniformMatrix2fv(V(a), !!c, F, d >> 2, 4 * b);
3468
3476
  } else {
3469
3477
  if (72 >= b) {
3470
- for (var e = ce[4 * b - 1], f = 0; f < 4 * b; f += 4) {
3471
- e[f] = E[d + 4 * f >> 2], e[f + 1] = E[d + (4 * f + 4) >> 2], e[f + 2] = E[d + (4 * f + 8) >> 2], e[f + 3] = E[d + (4 * f + 12) >> 2];
3478
+ for (var e = de[4 * b - 1], f = 0; f < 4 * b; f += 4) {
3479
+ e[f] = F[d + 4 * f >> 2], e[f + 1] = F[d + (4 * f + 4) >> 2], e[f + 2] = F[d + (4 * f + 8) >> 2], e[f + 3] = F[d + (4 * f + 12) >> 2];
3472
3480
  }
3473
3481
  } else {
3474
- e = E.subarray(d >> 2, d + 16 * b >> 2);
3482
+ e = F.subarray(d >> 2, d + 16 * b >> 2);
3475
3483
  }
3476
3484
  U.uniformMatrix2fv(V(a), !!c, e);
3477
3485
  }
3478
3486
  }, emscripten_glUniformMatrix3fv:function(a, b, c, d) {
3479
3487
  if (2 <= T.version) {
3480
- b && U.uniformMatrix3fv(V(a), !!c, E, d >> 2, 9 * b);
3488
+ b && U.uniformMatrix3fv(V(a), !!c, F, d >> 2, 9 * b);
3481
3489
  } else {
3482
3490
  if (32 >= b) {
3483
- for (var e = ce[9 * b - 1], f = 0; f < 9 * b; f += 9) {
3484
- e[f] = E[d + 4 * f >> 2], e[f + 1] = E[d + (4 * f + 4) >> 2], e[f + 2] = E[d + (4 * f + 8) >> 2], e[f + 3] = E[d + (4 * f + 12) >> 2], e[f + 4] = E[d + (4 * f + 16) >> 2], e[f + 5] = E[d + (4 * f + 20) >> 2], e[f + 6] = E[d + (4 * f + 24) >> 2], e[f + 7] = E[d + (4 * f + 28) >> 2], e[f + 8] = E[d + (4 * f + 32) >> 2];
3491
+ for (var e = de[9 * b - 1], f = 0; f < 9 * b; f += 9) {
3492
+ e[f] = F[d + 4 * f >> 2], e[f + 1] = F[d + (4 * f + 4) >> 2], e[f + 2] = F[d + (4 * f + 8) >> 2], e[f + 3] = F[d + (4 * f + 12) >> 2], e[f + 4] = F[d + (4 * f + 16) >> 2], e[f + 5] = F[d + (4 * f + 20) >> 2], e[f + 6] = F[d + (4 * f + 24) >> 2], e[f + 7] = F[d + (4 * f + 28) >> 2], e[f + 8] = F[d + (4 * f + 32) >> 2];
3485
3493
  }
3486
3494
  } else {
3487
- e = E.subarray(d >> 2, d + 36 * b >> 2);
3495
+ e = F.subarray(d >> 2, d + 36 * b >> 2);
3488
3496
  }
3489
3497
  U.uniformMatrix3fv(V(a), !!c, e);
3490
3498
  }
3491
3499
  }, emscripten_glUniformMatrix4fv:function(a, b, c, d) {
3492
3500
  if (2 <= T.version) {
3493
- b && U.uniformMatrix4fv(V(a), !!c, E, d >> 2, 16 * b);
3501
+ b && U.uniformMatrix4fv(V(a), !!c, F, d >> 2, 16 * b);
3494
3502
  } else {
3495
3503
  if (18 >= b) {
3496
- var e = ce[16 * b - 1], f = E;
3504
+ var e = de[16 * b - 1], f = F;
3497
3505
  d >>= 2;
3498
3506
  for (var g = 0; g < 16 * b; g += 16) {
3499
3507
  var k = d + g;
@@ -3515,22 +3523,22 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3515
3523
  e[g + 15] = f[k + 15];
3516
3524
  }
3517
3525
  } else {
3518
- e = E.subarray(d >> 2, d + 64 * b >> 2);
3526
+ e = F.subarray(d >> 2, d + 64 * b >> 2);
3519
3527
  }
3520
3528
  U.uniformMatrix4fv(V(a), !!c, e);
3521
3529
  }
3522
3530
  }, emscripten_glUseProgram:function(a) {
3523
- a = Dd[a];
3531
+ a = Ed[a];
3524
3532
  U.useProgram(a);
3525
3533
  U.Gb = a;
3526
3534
  }, emscripten_glVertexAttrib1f:function(a, b) {
3527
3535
  U.vertexAttrib1f(a, b);
3528
3536
  }, emscripten_glVertexAttrib2fv:function(a, b) {
3529
- U.vertexAttrib2f(a, E[b >> 2], E[b + 4 >> 2]);
3537
+ U.vertexAttrib2f(a, F[b >> 2], F[b + 4 >> 2]);
3530
3538
  }, emscripten_glVertexAttrib3fv:function(a, b) {
3531
- U.vertexAttrib3f(a, E[b >> 2], E[b + 4 >> 2], E[b + 8 >> 2]);
3539
+ U.vertexAttrib3f(a, F[b >> 2], F[b + 4 >> 2], F[b + 8 >> 2]);
3532
3540
  }, emscripten_glVertexAttrib4fv:function(a, b) {
3533
- U.vertexAttrib4f(a, E[b >> 2], E[b + 4 >> 2], E[b + 8 >> 2], E[b + 12 >> 2]);
3541
+ U.vertexAttrib4f(a, F[b >> 2], F[b + 4 >> 2], F[b + 8 >> 2], F[b + 12 >> 2]);
3534
3542
  }, emscripten_glVertexAttribDivisor:function(a, b) {
3535
3543
  U.vertexAttribDivisor(a, b);
3536
3544
  }, emscripten_glVertexAttribIPointer:function(a, b, c, d, e) {
@@ -3540,9 +3548,9 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3540
3548
  }, emscripten_glViewport:function(a, b, c, d) {
3541
3549
  U.viewport(a, b, c, d);
3542
3550
  }, emscripten_glWaitSync:function(a, b, c, d) {
3543
- U.waitSync(Kd[a], b, (c >>> 0) + 4294967296 * d);
3544
- }, emscripten_memcpy_big:(a, b, c) => w.copyWithin(a, b, b + c), emscripten_resize_heap:a => {
3545
- var b = w.length;
3551
+ U.waitSync(Ld[a], b, (c >>> 0) + 4294967296 * d);
3552
+ }, emscripten_memcpy_big:(a, b, c) => x.copyWithin(a, b, b + c), emscripten_resize_heap:a => {
3553
+ var b = x.length;
3546
3554
  a >>>= 0;
3547
3555
  if (2147483648 < a) {
3548
3556
  return !1;
@@ -3574,30 +3582,30 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3574
3582
  return la(a) ? 0 : -5;
3575
3583
  }, environ_get:(a, b) => {
3576
3584
  var c = 0;
3577
- ge().forEach(function(d, e) {
3585
+ he().forEach(function(d, e) {
3578
3586
  var f = b + c;
3579
- e = D[a + 4 * e >> 2] = f;
3587
+ e = E[a + 4 * e >> 2] = f;
3580
3588
  for (f = 0; f < d.length; ++f) {
3581
- u[e++ >> 0] = d.charCodeAt(f);
3589
+ v[e++ >> 0] = d.charCodeAt(f);
3582
3590
  }
3583
- u[e >> 0] = 0;
3591
+ v[e >> 0] = 0;
3584
3592
  c += d.length + 1;
3585
3593
  });
3586
3594
  return 0;
3587
3595
  }, environ_sizes_get:(a, b) => {
3588
- var c = ge();
3589
- D[a >> 2] = c.length;
3596
+ var c = he();
3597
+ E[a >> 2] = c.length;
3590
3598
  var d = 0;
3591
3599
  c.forEach(function(e) {
3592
3600
  d += e.length + 1;
3593
3601
  });
3594
- D[b >> 2] = d;
3602
+ E[b >> 2] = d;
3595
3603
  return 0;
3596
3604
  }, fd_close:function(a) {
3597
3605
  try {
3598
- var b = Mb(a);
3606
+ var b = Nb(a);
3599
3607
  if (null === b.V) {
3600
- throw new H(8);
3608
+ throw new G(8);
3601
3609
  }
3602
3610
  b.Ma && (b.Ma = null);
3603
3611
  try {
@@ -3605,12 +3613,12 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3605
3613
  } catch (c) {
3606
3614
  throw c;
3607
3615
  } finally {
3608
- yb[b.V] = null;
3616
+ zb[b.V] = null;
3609
3617
  }
3610
3618
  b.V = null;
3611
3619
  return 0;
3612
3620
  } catch (c) {
3613
- if ("undefined" == typeof $b || "ErrnoError" !== c.name) {
3621
+ if ("undefined" == typeof ac || "ErrnoError" !== c.name) {
3614
3622
  throw c;
3615
3623
  }
3616
3624
  return c.Z;
@@ -3618,52 +3626,52 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3618
3626
  }, fd_read:function(a, b, c, d) {
3619
3627
  try {
3620
3628
  a: {
3621
- var e = Mb(a);
3629
+ var e = Nb(a);
3622
3630
  a = b;
3623
3631
  for (var f, g = b = 0; g < c; g++) {
3624
- var k = D[a >> 2], q = D[a + 4 >> 2];
3632
+ var k = E[a >> 2], p = E[a + 4 >> 2];
3625
3633
  a += 8;
3626
- var n = e, t = k, v = q, y = f, l = u;
3627
- if (0 > v || 0 > y) {
3628
- throw new H(28);
3634
+ var n = e, t = k, w = p, y = f, q = v;
3635
+ if (0 > w || 0 > y) {
3636
+ throw new G(28);
3629
3637
  }
3630
3638
  if (null === n.V) {
3631
- throw new H(8);
3639
+ throw new G(8);
3632
3640
  }
3633
3641
  if (1 === (n.flags & 2097155)) {
3634
- throw new H(8);
3642
+ throw new G(8);
3635
3643
  }
3636
3644
  if (16384 === (n.node.mode & 61440)) {
3637
- throw new H(31);
3645
+ throw new G(31);
3638
3646
  }
3639
3647
  if (!n.m.read) {
3640
- throw new H(28);
3648
+ throw new G(28);
3641
3649
  }
3642
3650
  var r = "undefined" != typeof y;
3643
3651
  if (!r) {
3644
3652
  y = n.position;
3645
3653
  } else if (!n.seekable) {
3646
- throw new H(70);
3654
+ throw new G(70);
3647
3655
  }
3648
- var x = n.m.read(n, l, t, v, y);
3649
- r || (n.position += x);
3650
- var z = x;
3656
+ var u = n.m.read(n, q, t, w, y);
3657
+ r || (n.position += u);
3658
+ var z = u;
3651
3659
  if (0 > z) {
3652
- var G = -1;
3660
+ var B = -1;
3653
3661
  break a;
3654
3662
  }
3655
3663
  b += z;
3656
- if (z < q) {
3664
+ if (z < p) {
3657
3665
  break;
3658
3666
  }
3659
3667
  "undefined" !== typeof f && (f += z);
3660
3668
  }
3661
- G = b;
3669
+ B = b;
3662
3670
  }
3663
- D[d >> 2] = G;
3671
+ E[d >> 2] = B;
3664
3672
  return 0;
3665
3673
  } catch (C) {
3666
- if ("undefined" == typeof $b || "ErrnoError" !== C.name) {
3674
+ if ("undefined" == typeof ac || "ErrnoError" !== C.name) {
3667
3675
  throw C;
3668
3676
  }
3669
3677
  return C.Z;
@@ -3674,15 +3682,15 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3674
3682
  if (isNaN(b)) {
3675
3683
  return 61;
3676
3684
  }
3677
- var f = Mb(a);
3678
- Vb(f, b, d);
3685
+ var f = Nb(a);
3686
+ Wb(f, b, d);
3679
3687
  Sa = [f.position >>> 0, (Ra = f.position, 1.0 <= +Math.abs(Ra) ? 0.0 < Ra ? +Math.floor(Ra / 4294967296.0) >>> 0 : ~~+Math.ceil((Ra - +(~~Ra >>> 0)) / 4294967296.0) >>> 0 : 0)];
3680
- B[e >> 2] = Sa[0];
3681
- B[e + 4 >> 2] = Sa[1];
3688
+ D[e >> 2] = Sa[0];
3689
+ D[e + 4 >> 2] = Sa[1];
3682
3690
  f.Ma && 0 === b && 0 === d && (f.Ma = null);
3683
3691
  return 0;
3684
3692
  } catch (g) {
3685
- if ("undefined" == typeof $b || "ErrnoError" !== g.name) {
3693
+ if ("undefined" == typeof ac || "ErrnoError" !== g.name) {
3686
3694
  throw g;
3687
3695
  }
3688
3696
  return g.Z;
@@ -3690,64 +3698,64 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3690
3698
  }, fd_write:function(a, b, c, d) {
3691
3699
  try {
3692
3700
  a: {
3693
- var e = Mb(a);
3701
+ var e = Nb(a);
3694
3702
  a = b;
3695
3703
  for (var f, g = b = 0; g < c; g++) {
3696
- var k = D[a >> 2], q = D[a + 4 >> 2];
3704
+ var k = E[a >> 2], p = E[a + 4 >> 2];
3697
3705
  a += 8;
3698
- var n = e, t = k, v = q, y = f, l = u;
3699
- if (0 > v || 0 > y) {
3700
- throw new H(28);
3706
+ var n = e, t = k, w = p, y = f, q = v;
3707
+ if (0 > w || 0 > y) {
3708
+ throw new G(28);
3701
3709
  }
3702
3710
  if (null === n.V) {
3703
- throw new H(8);
3711
+ throw new G(8);
3704
3712
  }
3705
3713
  if (0 === (n.flags & 2097155)) {
3706
- throw new H(8);
3714
+ throw new G(8);
3707
3715
  }
3708
3716
  if (16384 === (n.node.mode & 61440)) {
3709
- throw new H(31);
3717
+ throw new G(31);
3710
3718
  }
3711
3719
  if (!n.m.write) {
3712
- throw new H(28);
3720
+ throw new G(28);
3713
3721
  }
3714
- n.seekable && n.flags & 1024 && Vb(n, 0, 2);
3722
+ n.seekable && n.flags & 1024 && Wb(n, 0, 2);
3715
3723
  var r = "undefined" != typeof y;
3716
3724
  if (!r) {
3717
3725
  y = n.position;
3718
3726
  } else if (!n.seekable) {
3719
- throw new H(70);
3727
+ throw new G(70);
3720
3728
  }
3721
- var x = n.m.write(n, l, t, v, y, void 0);
3722
- r || (n.position += x);
3723
- var z = x;
3729
+ var u = n.m.write(n, q, t, w, y, void 0);
3730
+ r || (n.position += u);
3731
+ var z = u;
3724
3732
  if (0 > z) {
3725
- var G = -1;
3733
+ var B = -1;
3726
3734
  break a;
3727
3735
  }
3728
3736
  b += z;
3729
3737
  "undefined" !== typeof f && (f += z);
3730
3738
  }
3731
- G = b;
3739
+ B = b;
3732
3740
  }
3733
- D[d >> 2] = G;
3741
+ E[d >> 2] = B;
3734
3742
  return 0;
3735
3743
  } catch (C) {
3736
- if ("undefined" == typeof $b || "ErrnoError" !== C.name) {
3744
+ if ("undefined" == typeof ac || "ErrnoError" !== C.name) {
3737
3745
  throw C;
3738
3746
  }
3739
3747
  return C.Z;
3740
3748
  }
3741
- }, glBindFramebuffer:Pd, glGetIntegerv:Xd, invoke_ii:qe, invoke_iii:re, invoke_iiii:se, invoke_iiiii:te, invoke_iiiiii:ue, invoke_iiiiiii:ve, invoke_iiiiiiiiii:we, invoke_v:xe, invoke_vi:ye, invoke_vii:ze, invoke_viii:Ae, invoke_viiii:Be, invoke_viiiiii:Ce, invoke_viiiiiii:De, invoke_viiiiiiii:Ee, strftime_l:(a, b, c, d) => ke(a, b, c, d)};
3749
+ }, glBindFramebuffer:Qd, glGetIntegerv:Yd, invoke_ii:re, invoke_iii:se, invoke_iiii:te, invoke_iiiii:ue, invoke_iiiiii:ve, invoke_iiiiiii:we, invoke_iiiiiiiiii:xe, invoke_v:ye, invoke_vi:ze, invoke_vii:Ae, invoke_viii:Be, invoke_viiii:Ce, invoke_viiiiii:De, invoke_viiiiiii:Ee, invoke_viiiiiiii:Fe, strftime_l:(a, b, c, d) => le(a, b, c, d)};
3742
3750
  (function() {
3743
3751
  function a(c) {
3744
- p = c = c.exports;
3745
- xa = p.memory;
3752
+ m = c = c.exports;
3753
+ xa = m.memory;
3746
3754
  Ba();
3747
- Ca = p.__indirect_function_table;
3748
- Ea.unshift(p.__wasm_call_ctors);
3755
+ Ca = m.__indirect_function_table;
3756
+ Ea.unshift(m.__wasm_call_ctors);
3749
3757
  Ha--;
3750
- m.monitorRunDependencies && m.monitorRunDependencies(Ha);
3758
+ l.monitorRunDependencies && l.monitorRunDependencies(Ha);
3751
3759
  if (0 == Ha && (null !== Ia && (clearInterval(Ia), Ia = null), Ja)) {
3752
3760
  var d = Ja;
3753
3761
  Ja = null;
@@ -3755,12 +3763,12 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3755
3763
  }
3756
3764
  return c;
3757
3765
  }
3758
- var b = {env:Fe, wasi_snapshot_preview1:Fe,};
3766
+ var b = {env:Ge, wasi_snapshot_preview1:Ge,};
3759
3767
  Ha++;
3760
- m.monitorRunDependencies && m.monitorRunDependencies(Ha);
3761
- if (m.instantiateWasm) {
3768
+ l.monitorRunDependencies && l.monitorRunDependencies(Ha);
3769
+ if (l.instantiateWasm) {
3762
3770
  try {
3763
- return m.instantiateWasm(b, a);
3771
+ return l.instantiateWasm(b, a);
3764
3772
  } catch (c) {
3765
3773
  ua("Module.instantiateWasm callback failed with error: " + c), ba(c);
3766
3774
  }
@@ -3770,30 +3778,30 @@ var Fe = {__syscall_fcntl64:function(a, b, c) {
3770
3778
  }).catch(ba);
3771
3779
  return {};
3772
3780
  })();
3773
- var tc = a => (tc = p.free)(a), Yd = a => (Yd = p.malloc)(a), Ta = m._ma_device__on_notification_unlocked = a => (Ta = m._ma_device__on_notification_unlocked = p.ma_device__on_notification_unlocked)(a);
3774
- m._ma_malloc_emscripten = (a, b) => (m._ma_malloc_emscripten = p.ma_malloc_emscripten)(a, b);
3775
- m._ma_free_emscripten = (a, b) => (m._ma_free_emscripten = p.ma_free_emscripten)(a, b);
3776
- var Ua = m._ma_device_process_pcm_frames_capture__webaudio = (a, b, c) => (Ua = m._ma_device_process_pcm_frames_capture__webaudio = p.ma_device_process_pcm_frames_capture__webaudio)(a, b, c), Va = m._ma_device_process_pcm_frames_playback__webaudio = (a, b, c) => (Va = m._ma_device_process_pcm_frames_playback__webaudio = p.ma_device_process_pcm_frames_playback__webaudio)(a, b, c), pe = () => (pe = p.__errno_location)(), sc = a => (sc = p.__getTypeName)(a);
3777
- m.__embind_initialize_bindings = () => (m.__embind_initialize_bindings = p._embind_initialize_bindings)();
3778
- var ub = (a, b) => (ub = p.emscripten_builtin_memalign)(a, b), X = (a, b) => (X = p.setThrew)(a, b), Y = () => (Y = p.stackSave)(), Z = a => (Z = p.stackRestore)(a);
3779
- m.dynCall_iiiij = (a, b, c, d, e, f) => (m.dynCall_iiiij = p.dynCall_iiiij)(a, b, c, d, e, f);
3780
- m.dynCall_viiij = (a, b, c, d, e, f) => (m.dynCall_viiij = p.dynCall_viiij)(a, b, c, d, e, f);
3781
- m.dynCall_iiij = (a, b, c, d, e) => (m.dynCall_iiij = p.dynCall_iiij)(a, b, c, d, e);
3782
- m.dynCall_viij = (a, b, c, d, e) => (m.dynCall_viij = p.dynCall_viij)(a, b, c, d, e);
3783
- m.dynCall_iiji = (a, b, c, d, e) => (m.dynCall_iiji = p.dynCall_iiji)(a, b, c, d, e);
3784
- m.dynCall_jiji = (a, b, c, d, e) => (m.dynCall_jiji = p.dynCall_jiji)(a, b, c, d, e);
3785
- m.dynCall_iiiji = (a, b, c, d, e, f) => (m.dynCall_iiiji = p.dynCall_iiiji)(a, b, c, d, e, f);
3786
- m.dynCall_iij = (a, b, c, d) => (m.dynCall_iij = p.dynCall_iij)(a, b, c, d);
3787
- m.dynCall_jii = (a, b, c) => (m.dynCall_jii = p.dynCall_jii)(a, b, c);
3788
- m.dynCall_viiiiij = (a, b, c, d, e, f, g, k) => (m.dynCall_viiiiij = p.dynCall_viiiiij)(a, b, c, d, e, f, g, k);
3789
- m.dynCall_viji = (a, b, c, d, e) => (m.dynCall_viji = p.dynCall_viji)(a, b, c, d, e);
3790
- m.dynCall_ji = (a, b) => (m.dynCall_ji = p.dynCall_ji)(a, b);
3791
- m.dynCall_vij = (a, b, c, d) => (m.dynCall_vij = p.dynCall_vij)(a, b, c, d);
3792
- m.dynCall_viijii = (a, b, c, d, e, f, g) => (m.dynCall_viijii = p.dynCall_viijii)(a, b, c, d, e, f, g);
3793
- m.dynCall_iiiiij = (a, b, c, d, e, f, g) => (m.dynCall_iiiiij = p.dynCall_iiiiij)(a, b, c, d, e, f, g);
3794
- m.dynCall_iiiiijj = (a, b, c, d, e, f, g, k, q) => (m.dynCall_iiiiijj = p.dynCall_iiiiijj)(a, b, c, d, e, f, g, k, q);
3795
- m.dynCall_iiiiiijj = (a, b, c, d, e, f, g, k, q, n) => (m.dynCall_iiiiiijj = p.dynCall_iiiiiijj)(a, b, c, d, e, f, g, k, q, n);
3796
- function qe(a, b) {
3781
+ var uc = a => (uc = m.free)(a), Zd = a => (Zd = m.malloc)(a), Ta = l._ma_device__on_notification_unlocked = a => (Ta = l._ma_device__on_notification_unlocked = m.ma_device__on_notification_unlocked)(a);
3782
+ l._ma_malloc_emscripten = (a, b) => (l._ma_malloc_emscripten = m.ma_malloc_emscripten)(a, b);
3783
+ l._ma_free_emscripten = (a, b) => (l._ma_free_emscripten = m.ma_free_emscripten)(a, b);
3784
+ var Ua = l._ma_device_process_pcm_frames_capture__webaudio = (a, b, c) => (Ua = l._ma_device_process_pcm_frames_capture__webaudio = m.ma_device_process_pcm_frames_capture__webaudio)(a, b, c), Va = l._ma_device_process_pcm_frames_playback__webaudio = (a, b, c) => (Va = l._ma_device_process_pcm_frames_playback__webaudio = m.ma_device_process_pcm_frames_playback__webaudio)(a, b, c), qe = () => (qe = m.__errno_location)(), tc = a => (tc = m.__getTypeName)(a);
3785
+ l.__embind_initialize_bindings = () => (l.__embind_initialize_bindings = m._embind_initialize_bindings)();
3786
+ var vb = (a, b) => (vb = m.emscripten_builtin_memalign)(a, b), X = (a, b) => (X = m.setThrew)(a, b), Y = () => (Y = m.stackSave)(), Z = a => (Z = m.stackRestore)(a);
3787
+ l.dynCall_iiiij = (a, b, c, d, e, f) => (l.dynCall_iiiij = m.dynCall_iiiij)(a, b, c, d, e, f);
3788
+ l.dynCall_viiij = (a, b, c, d, e, f) => (l.dynCall_viiij = m.dynCall_viiij)(a, b, c, d, e, f);
3789
+ l.dynCall_iiij = (a, b, c, d, e) => (l.dynCall_iiij = m.dynCall_iiij)(a, b, c, d, e);
3790
+ l.dynCall_viij = (a, b, c, d, e) => (l.dynCall_viij = m.dynCall_viij)(a, b, c, d, e);
3791
+ l.dynCall_iiji = (a, b, c, d, e) => (l.dynCall_iiji = m.dynCall_iiji)(a, b, c, d, e);
3792
+ l.dynCall_jiji = (a, b, c, d, e) => (l.dynCall_jiji = m.dynCall_jiji)(a, b, c, d, e);
3793
+ l.dynCall_iiiji = (a, b, c, d, e, f) => (l.dynCall_iiiji = m.dynCall_iiiji)(a, b, c, d, e, f);
3794
+ l.dynCall_iij = (a, b, c, d) => (l.dynCall_iij = m.dynCall_iij)(a, b, c, d);
3795
+ l.dynCall_jii = (a, b, c) => (l.dynCall_jii = m.dynCall_jii)(a, b, c);
3796
+ l.dynCall_viiiiij = (a, b, c, d, e, f, g, k) => (l.dynCall_viiiiij = m.dynCall_viiiiij)(a, b, c, d, e, f, g, k);
3797
+ l.dynCall_viji = (a, b, c, d, e) => (l.dynCall_viji = m.dynCall_viji)(a, b, c, d, e);
3798
+ l.dynCall_ji = (a, b) => (l.dynCall_ji = m.dynCall_ji)(a, b);
3799
+ l.dynCall_vij = (a, b, c, d) => (l.dynCall_vij = m.dynCall_vij)(a, b, c, d);
3800
+ l.dynCall_viijii = (a, b, c, d, e, f, g) => (l.dynCall_viijii = m.dynCall_viijii)(a, b, c, d, e, f, g);
3801
+ l.dynCall_iiiiij = (a, b, c, d, e, f, g) => (l.dynCall_iiiiij = m.dynCall_iiiiij)(a, b, c, d, e, f, g);
3802
+ l.dynCall_iiiiijj = (a, b, c, d, e, f, g, k, p) => (l.dynCall_iiiiijj = m.dynCall_iiiiijj)(a, b, c, d, e, f, g, k, p);
3803
+ l.dynCall_iiiiiijj = (a, b, c, d, e, f, g, k, p, n) => (l.dynCall_iiiiiijj = m.dynCall_iiiiiijj)(a, b, c, d, e, f, g, k, p, n);
3804
+ function re(a, b) {
3797
3805
  var c = Y();
3798
3806
  try {
3799
3807
  return Q(a)(b);
@@ -3805,7 +3813,7 @@ function qe(a, b) {
3805
3813
  X(1, 0);
3806
3814
  }
3807
3815
  }
3808
- function ze(a, b, c) {
3816
+ function Ae(a, b, c) {
3809
3817
  var d = Y();
3810
3818
  try {
3811
3819
  Q(a)(b, c);
@@ -3817,7 +3825,7 @@ function ze(a, b, c) {
3817
3825
  X(1, 0);
3818
3826
  }
3819
3827
  }
3820
- function ye(a, b) {
3828
+ function ze(a, b) {
3821
3829
  var c = Y();
3822
3830
  try {
3823
3831
  Q(a)(b);
@@ -3829,7 +3837,7 @@ function ye(a, b) {
3829
3837
  X(1, 0);
3830
3838
  }
3831
3839
  }
3832
- function se(a, b, c, d) {
3840
+ function te(a, b, c, d) {
3833
3841
  var e = Y();
3834
3842
  try {
3835
3843
  return Q(a)(b, c, d);
@@ -3841,7 +3849,7 @@ function se(a, b, c, d) {
3841
3849
  X(1, 0);
3842
3850
  }
3843
3851
  }
3844
- function Ae(a, b, c, d) {
3852
+ function Be(a, b, c, d) {
3845
3853
  var e = Y();
3846
3854
  try {
3847
3855
  Q(a)(b, c, d);
@@ -3853,7 +3861,7 @@ function Ae(a, b, c, d) {
3853
3861
  X(1, 0);
3854
3862
  }
3855
3863
  }
3856
- function Be(a, b, c, d, e) {
3864
+ function Ce(a, b, c, d, e) {
3857
3865
  var f = Y();
3858
3866
  try {
3859
3867
  Q(a)(b, c, d, e);
@@ -3865,7 +3873,7 @@ function Be(a, b, c, d, e) {
3865
3873
  X(1, 0);
3866
3874
  }
3867
3875
  }
3868
- function xe(a) {
3876
+ function ye(a) {
3869
3877
  var b = Y();
3870
3878
  try {
3871
3879
  Q(a)();
@@ -3877,19 +3885,19 @@ function xe(a) {
3877
3885
  X(1, 0);
3878
3886
  }
3879
3887
  }
3880
- function ve(a, b, c, d, e, f, g) {
3888
+ function we(a, b, c, d, e, f, g) {
3881
3889
  var k = Y();
3882
3890
  try {
3883
3891
  return Q(a)(b, c, d, e, f, g);
3884
- } catch (q) {
3892
+ } catch (p) {
3885
3893
  Z(k);
3886
- if (q !== q + 0) {
3887
- throw q;
3894
+ if (p !== p + 0) {
3895
+ throw p;
3888
3896
  }
3889
3897
  X(1, 0);
3890
3898
  }
3891
3899
  }
3892
- function re(a, b, c) {
3900
+ function se(a, b, c) {
3893
3901
  var d = Y();
3894
3902
  try {
3895
3903
  return Q(a)(b, c);
@@ -3901,31 +3909,31 @@ function re(a, b, c) {
3901
3909
  X(1, 0);
3902
3910
  }
3903
3911
  }
3904
- function De(a, b, c, d, e, f, g, k) {
3905
- var q = Y();
3912
+ function Ee(a, b, c, d, e, f, g, k) {
3913
+ var p = Y();
3906
3914
  try {
3907
3915
  Q(a)(b, c, d, e, f, g, k);
3908
3916
  } catch (n) {
3909
- Z(q);
3917
+ Z(p);
3910
3918
  if (n !== n + 0) {
3911
3919
  throw n;
3912
3920
  }
3913
3921
  X(1, 0);
3914
3922
  }
3915
3923
  }
3916
- function we(a, b, c, d, e, f, g, k, q, n) {
3924
+ function xe(a, b, c, d, e, f, g, k, p, n) {
3917
3925
  var t = Y();
3918
3926
  try {
3919
- return Q(a)(b, c, d, e, f, g, k, q, n);
3920
- } catch (v) {
3927
+ return Q(a)(b, c, d, e, f, g, k, p, n);
3928
+ } catch (w) {
3921
3929
  Z(t);
3922
- if (v !== v + 0) {
3923
- throw v;
3930
+ if (w !== w + 0) {
3931
+ throw w;
3924
3932
  }
3925
3933
  X(1, 0);
3926
3934
  }
3927
3935
  }
3928
- function te(a, b, c, d, e) {
3936
+ function ue(a, b, c, d, e) {
3929
3937
  var f = Y();
3930
3938
  try {
3931
3939
  return Q(a)(b, c, d, e);
@@ -3937,10 +3945,10 @@ function te(a, b, c, d, e) {
3937
3945
  X(1, 0);
3938
3946
  }
3939
3947
  }
3940
- function Ee(a, b, c, d, e, f, g, k, q) {
3948
+ function Fe(a, b, c, d, e, f, g, k, p) {
3941
3949
  var n = Y();
3942
3950
  try {
3943
- Q(a)(b, c, d, e, f, g, k, q);
3951
+ Q(a)(b, c, d, e, f, g, k, p);
3944
3952
  } catch (t) {
3945
3953
  Z(n);
3946
3954
  if (t !== t + 0) {
@@ -3949,7 +3957,7 @@ function Ee(a, b, c, d, e, f, g, k, q) {
3949
3957
  X(1, 0);
3950
3958
  }
3951
3959
  }
3952
- function ue(a, b, c, d, e, f) {
3960
+ function ve(a, b, c, d, e, f) {
3953
3961
  var g = Y();
3954
3962
  try {
3955
3963
  return Q(a)(b, c, d, e, f);
@@ -3961,36 +3969,36 @@ function ue(a, b, c, d, e, f) {
3961
3969
  X(1, 0);
3962
3970
  }
3963
3971
  }
3964
- function Ce(a, b, c, d, e, f, g) {
3972
+ function De(a, b, c, d, e, f, g) {
3965
3973
  var k = Y();
3966
3974
  try {
3967
3975
  Q(a)(b, c, d, e, f, g);
3968
- } catch (q) {
3976
+ } catch (p) {
3969
3977
  Z(k);
3970
- if (q !== q + 0) {
3971
- throw q;
3978
+ if (p !== p + 0) {
3979
+ throw p;
3972
3980
  }
3973
3981
  X(1, 0);
3974
3982
  }
3975
3983
  }
3976
- var Ge;
3977
- Ja = function He() {
3978
- Ge || Ie();
3979
- Ge || (Ja = He);
3984
+ var He;
3985
+ Ja = function Ie() {
3986
+ He || Je();
3987
+ He || (Ja = Ie);
3980
3988
  };
3981
- function Ie() {
3989
+ function Je() {
3982
3990
  function a() {
3983
- if (!Ge && (Ge = !0, m.calledRun = !0, !ya)) {
3984
- m.noFSInit || Xb || (Xb = !0, Wb(), m.stdin = m.stdin, m.stdout = m.stdout, m.stderr = m.stderr, m.stdin ? Zb("stdin", m.stdin) : Sb("/dev/tty", "/dev/stdin"), m.stdout ? Zb("stdout", null, m.stdout) : Sb("/dev/tty", "/dev/stdout"), m.stderr ? Zb("stderr", null, m.stderr) : Sb("/dev/tty1", "/dev/stderr"), Ub("/dev/stdin", 0), Ub("/dev/stdout", 1), Ub("/dev/stderr", 1));
3985
- Bb = !1;
3991
+ if (!He && (He = !0, l.calledRun = !0, !ya)) {
3992
+ l.noFSInit || Yb || (Yb = !0, Xb(), l.stdin = l.stdin, l.stdout = l.stdout, l.stderr = l.stderr, l.stdin ? $b("stdin", l.stdin) : Tb("/dev/tty", "/dev/stdin"), l.stdout ? $b("stdout", null, l.stdout) : Tb("/dev/tty", "/dev/stdout"), l.stderr ? $b("stderr", null, l.stderr) : Tb("/dev/tty1", "/dev/stderr"), Vb("/dev/stdin", 0), Vb("/dev/stdout", 1), Vb("/dev/stderr", 1));
3993
+ Cb = !1;
3986
3994
  Xa(Ea);
3987
- aa(m);
3988
- if (m.onRuntimeInitialized) {
3989
- m.onRuntimeInitialized();
3995
+ aa(l);
3996
+ if (l.onRuntimeInitialized) {
3997
+ l.onRuntimeInitialized();
3990
3998
  }
3991
- if (m.postRun) {
3992
- for ("function" == typeof m.postRun && (m.postRun = [m.postRun]); m.postRun.length;) {
3993
- var b = m.postRun.shift();
3999
+ if (l.postRun) {
4000
+ for ("function" == typeof l.postRun && (l.postRun = [l.postRun]); l.postRun.length;) {
4001
+ var b = l.postRun.shift();
3994
4002
  Fa.unshift(b);
3995
4003
  }
3996
4004
  }
@@ -3998,26 +4006,26 @@ function Ie() {
3998
4006
  }
3999
4007
  }
4000
4008
  if (!(0 < Ha)) {
4001
- if (m.preRun) {
4002
- for ("function" == typeof m.preRun && (m.preRun = [m.preRun]); m.preRun.length;) {
4009
+ if (l.preRun) {
4010
+ for ("function" == typeof l.preRun && (l.preRun = [l.preRun]); l.preRun.length;) {
4003
4011
  Ga();
4004
4012
  }
4005
4013
  }
4006
4014
  Xa(Da);
4007
- 0 < Ha || (m.setStatus ? (m.setStatus("Running..."), setTimeout(function() {
4015
+ 0 < Ha || (l.setStatus ? (l.setStatus("Running..."), setTimeout(function() {
4008
4016
  setTimeout(function() {
4009
- m.setStatus("");
4017
+ l.setStatus("");
4010
4018
  }, 1);
4011
4019
  a();
4012
4020
  }, 1)) : a());
4013
4021
  }
4014
4022
  }
4015
- if (m.preInit) {
4016
- for ("function" == typeof m.preInit && (m.preInit = [m.preInit]); 0 < m.preInit.length;) {
4017
- m.preInit.pop()();
4023
+ if (l.preInit) {
4024
+ for ("function" == typeof l.preInit && (l.preInit = [l.preInit]); 0 < l.preInit.length;) {
4025
+ l.preInit.pop()();
4018
4026
  }
4019
4027
  }
4020
- Ie();
4028
+ Je();
4021
4029
 
4022
4030
 
4023
4031