Files
pezkuwi-mobile-app/frontend/.metro-cache/cache/af/318344539b845f700762545928a8e1094d0472e2d84fcfde31fdfdda44ac1916aac798
T
2025-11-08 07:19:17 +00:00

1 line
47 KiB
Plaintext

{"dependencies":[],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.naclSecretbox = naclSecretbox;\n exports.naclSecretboxOpen = naclSecretboxOpen;\n /* eslint-disable brace-style,camelcase,comma-spacing,curly,one-var,padding-line-between-statements,space-infix-ops */\n function L32(x, c) {\n return x << c | x >>> 32 - c;\n }\n function ld32(x, i) {\n let u = x[i + 3] & 0xff;\n u = u << 8 | x[i + 2] & 0xff;\n u = u << 8 | x[i + 1] & 0xff;\n return u << 8 | x[i + 0] & 0xff;\n }\n function st32(x, j, u) {\n for (let i = 0; i < 4; i++) {\n x[j + i] = u & 255;\n u >>>= 8;\n }\n }\n function vn(x, xi, y, yi, n) {\n let d = 0;\n for (let i = 0; i < n; i++) d |= x[xi + i] ^ y[yi + i];\n return (1 & d - 1 >>> 8) - 1;\n }\n function core(out, inp, k, c, h) {\n const w = new Uint32Array(16),\n x = new Uint32Array(16),\n y = new Uint32Array(16),\n t = new Uint32Array(4);\n let i, j, m;\n for (i = 0; i < 4; i++) {\n x[5 * i] = ld32(c, 4 * i);\n x[1 + i] = ld32(k, 4 * i);\n x[6 + i] = ld32(inp, 4 * i);\n x[11 + i] = ld32(k, 16 + 4 * i);\n }\n for (i = 0; i < 16; i++) y[i] = x[i];\n for (i = 0; i < 20; i++) {\n for (j = 0; j < 4; j++) {\n for (m = 0; m < 4; m++) t[m] = x[(5 * j + 4 * m) % 16];\n t[1] ^= L32(t[0] + t[3] | 0, 7);\n t[2] ^= L32(t[1] + t[0] | 0, 9);\n t[3] ^= L32(t[2] + t[1] | 0, 13);\n t[0] ^= L32(t[3] + t[2] | 0, 18);\n for (m = 0; m < 4; m++) w[4 * j + (j + m) % 4] = t[m];\n }\n for (m = 0; m < 16; m++) x[m] = w[m];\n }\n if (h) {\n for (i = 0; i < 16; i++) x[i] = x[i] + y[i] | 0;\n for (i = 0; i < 4; i++) {\n x[5 * i] = x[5 * i] - ld32(c, 4 * i) | 0;\n x[6 + i] = x[6 + i] - ld32(inp, 4 * i) | 0;\n }\n for (i = 0; i < 4; i++) {\n st32(out, 4 * i, x[5 * i]);\n st32(out, 16 + 4 * i, x[6 + i]);\n }\n } else {\n for (i = 0; i < 16; i++) st32(out, 4 * i, x[i] + y[i] | 0);\n }\n }\n const sigma = new Uint8Array([101, 120, 112, 97, 110, 100, 32, 51, 50, 45, 98, 121, 116, 101, 32, 107]);\n function crypto_stream_salsa20_xor(c, cpos, m, mpos, b, n, k) {\n const z = new Uint8Array(16),\n x = new Uint8Array(64);\n let u, i;\n if (!b) return 0;\n for (i = 0; i < 16; i++) z[i] = 0;\n for (i = 0; i < 8; i++) z[i] = n[i];\n while (b >= 64) {\n core(x, z, k, sigma, false);\n for (i = 0; i < 64; i++) c[cpos + i] = (m ? m[mpos + i] : 0) ^ x[i];\n u = 1;\n for (i = 8; i < 16; i++) {\n u = u + (z[i] & 0xff) | 0;\n z[i] = u & 0xff;\n u >>>= 8;\n }\n b -= 64;\n cpos += 64;\n if (m) mpos += 64;\n }\n if (b > 0) {\n core(x, z, k, sigma, false);\n for (i = 0; i < b; i++) c[cpos + i] = (m ? m[mpos + i] : 0) ^ x[i];\n }\n return 0;\n }\n function crypto_stream_xor(c, cpos, m, mpos, d, n, k) {\n const s = new Uint8Array(32);\n core(s, n, k, sigma, true);\n return crypto_stream_salsa20_xor(c, cpos, m, mpos, d, n.subarray(16), s);\n }\n function add1305(h, c) {\n let u = 0;\n for (let j = 0; j < 17; j++) {\n u = u + (h[j] + c[j] | 0) | 0;\n h[j] = u & 255;\n u >>>= 8;\n }\n }\n const minusp = new Uint32Array([5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 252]);\n function crypto_onetimeauth(out, outpos, m, mpos, n, k) {\n let i, j, u;\n const x = new Uint32Array(17),\n r = new Uint32Array(17),\n h = new Uint32Array(17),\n c = new Uint32Array(17),\n g = new Uint32Array(17);\n for (j = 0; j < 17; j++) r[j] = h[j] = 0;\n for (j = 0; j < 16; j++) r[j] = k[j];\n r[3] &= 15;\n r[4] &= 252;\n r[7] &= 15;\n r[8] &= 252;\n r[11] &= 15;\n r[12] &= 252;\n r[15] &= 15;\n while (n > 0) {\n for (j = 0; j < 17; j++) c[j] = 0;\n for (j = 0; j < 16 && j < n; ++j) c[j] = m[mpos + j];\n c[j] = 1;\n mpos += j;\n n -= j;\n add1305(h, c);\n for (i = 0; i < 17; i++) {\n x[i] = 0;\n for (j = 0; j < 17; j++) x[i] = x[i] + h[j] * (j <= i ? r[i - j] : 320 * r[i + 17 - j] | 0) | 0 | 0;\n }\n for (i = 0; i < 17; i++) h[i] = x[i];\n u = 0;\n for (j = 0; j < 16; j++) {\n u = u + h[j] | 0;\n h[j] = u & 255;\n u >>>= 8;\n }\n u = u + h[16] | 0;\n h[16] = u & 3;\n u = 5 * (u >>> 2) | 0;\n for (j = 0; j < 16; j++) {\n u = u + h[j] | 0;\n h[j] = u & 255;\n u >>>= 8;\n }\n u = u + h[16] | 0;\n h[16] = u;\n }\n for (j = 0; j < 17; j++) g[j] = h[j];\n add1305(h, minusp);\n const s = -(h[16] >>> 7) | 0;\n for (j = 0; j < 17; j++) h[j] ^= s & (g[j] ^ h[j]);\n for (j = 0; j < 16; j++) c[j] = k[j + 16];\n c[16] = 0;\n add1305(h, c);\n for (j = 0; j < 16; j++) out[outpos + j] = h[j];\n return 0;\n }\n function crypto_onetimeauth_verify(h, hpos, m, mpos, n, k) {\n const x = new Uint8Array(16);\n crypto_onetimeauth(x, 0, m, mpos, n, k);\n return vn(h, hpos, x, 0, 16);\n }\n function crypto_secretbox(c, m, d, n, k) {\n if (d < 32) return -1;\n crypto_stream_xor(c, 0, m, 0, d, n, k);\n crypto_onetimeauth(c, 16, c, 32, d - 32, c);\n for (let i = 0; i < 16; i++) c[i] = 0;\n return 0;\n }\n function crypto_secretbox_open(m, c, d, n, k) {\n const x = new Uint8Array(32);\n if (d < 32) return -1;\n crypto_stream_xor(x, 0, null, 0, 32, n, k);\n if (crypto_onetimeauth_verify(c, 16, c, 32, d - 32, x) !== 0) return -1;\n crypto_stream_xor(m, 0, c, 0, d, n, k);\n for (let i = 0; i < 32; i++) m[i] = 0;\n return 0;\n }\n const crypto_secretbox_KEYBYTES = 32;\n const crypto_secretbox_NONCEBYTES = 24;\n const crypto_secretbox_ZEROBYTES = 32;\n const crypto_secretbox_BOXZEROBYTES = 16;\n function checkLengths(k, n) {\n if (k.length !== crypto_secretbox_KEYBYTES) throw new Error('bad key size');\n if (n.length !== crypto_secretbox_NONCEBYTES) throw new Error('bad nonce size');\n }\n function checkArrayTypes(...args) {\n for (let i = 0, count = args.length; i < count; i++) {\n if (!(args[i] instanceof Uint8Array)) throw new TypeError('unexpected type, use Uint8Array');\n }\n }\n function naclSecretbox(msg, nonce, key) {\n checkArrayTypes(msg, nonce, key);\n checkLengths(key, nonce);\n const m = new Uint8Array(crypto_secretbox_ZEROBYTES + msg.length);\n const c = new Uint8Array(m.length);\n for (let i = 0; i < msg.length; i++) m[i + crypto_secretbox_ZEROBYTES] = msg[i];\n crypto_secretbox(c, m, m.length, nonce, key);\n return c.subarray(crypto_secretbox_BOXZEROBYTES);\n }\n function naclSecretboxOpen(box, nonce, key) {\n checkArrayTypes(box, nonce, key);\n checkLengths(key, nonce);\n const c = new Uint8Array(crypto_secretbox_BOXZEROBYTES + box.length);\n const m = new Uint8Array(c.length);\n for (let i = 0; i < box.length; i++) c[i + crypto_secretbox_BOXZEROBYTES] = box[i];\n if (c.length < 32) return null;\n if (crypto_secretbox_open(m, c, c.length, nonce, key) !== 0) return null;\n return m.subarray(crypto_secretbox_ZEROBYTES);\n }\n});","lineCount":217,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"naclSecretbox"],[7,23,3,21],[7,26,3,24,"naclSecretbox"],[7,39,3,37],[8,2,4,0,"exports"],[8,9,4,7],[8,10,4,8,"naclSecretboxOpen"],[8,27,4,25],[8,30,4,28,"naclSecretboxOpen"],[8,47,4,45],[9,2,5,0],[10,2,6,0],[10,11,6,9,"L32"],[10,14,6,12,"L32"],[10,15,6,13,"x"],[10,16,6,14],[10,18,6,16,"c"],[10,19,6,17],[10,21,6,19],[11,4,6,21],[11,11,6,29,"x"],[11,12,6,30],[11,16,6,34,"c"],[11,17,6,35],[11,20,6,40,"x"],[11,21,6,41],[11,26,6,47],[11,28,6,49],[11,31,6,52,"c"],[11,32,6,55],[12,2,6,57],[13,2,7,0],[13,11,7,9,"ld32"],[13,15,7,13,"ld32"],[13,16,7,14,"x"],[13,17,7,15],[13,19,7,17,"i"],[13,20,7,18],[13,22,7,20],[14,4,8,4],[14,8,8,8,"u"],[14,9,8,9],[14,12,8,12,"x"],[14,13,8,13],[14,14,8,14,"i"],[14,15,8,15],[14,18,8,18],[14,19,8,19],[14,20,8,20],[14,23,8,23],[14,27,8,27],[15,4,9,4,"u"],[15,5,9,5],[15,8,9,9,"u"],[15,9,9,10],[15,13,9,14],[15,14,9,15],[15,17,9,20,"x"],[15,18,9,21],[15,19,9,22,"i"],[15,20,9,23],[15,23,9,26],[15,24,9,27],[15,25,9,28],[15,28,9,31],[15,32,9,36],[16,4,10,4,"u"],[16,5,10,5],[16,8,10,9,"u"],[16,9,10,10],[16,13,10,14],[16,14,10,15],[16,17,10,20,"x"],[16,18,10,21],[16,19,10,22,"i"],[16,20,10,23],[16,23,10,26],[16,24,10,27],[16,25,10,28],[16,28,10,31],[16,32,10,36],[17,4,11,4],[17,11,11,12,"u"],[17,12,11,13],[17,16,11,17],[17,17,11,18],[17,20,11,23,"x"],[17,21,11,24],[17,22,11,25,"i"],[17,23,11,26],[17,26,11,29],[17,27,11,30],[17,28,11,31],[17,31,11,34],[17,35,11,39],[18,2,12,0],[19,2,13,0],[19,11,13,9,"st32"],[19,15,13,13,"st32"],[19,16,13,14,"x"],[19,17,13,15],[19,19,13,17,"j"],[19,20,13,18],[19,22,13,20,"u"],[19,23,13,21],[19,25,13,23],[20,4,14,4],[20,9,14,9],[20,13,14,13,"i"],[20,14,14,14],[20,17,14,17],[20,18,14,18],[20,20,14,20,"i"],[20,21,14,21],[20,24,14,24],[20,25,14,25],[20,27,14,27,"i"],[20,28,14,28],[20,30,14,30],[20,32,14,32],[21,6,15,8,"x"],[21,7,15,9],[21,8,15,10,"j"],[21,9,15,11],[21,12,15,14,"i"],[21,13,15,15],[21,14,15,16],[21,17,15,19,"u"],[21,18,15,20],[21,21,15,23],[21,24,15,26],[22,6,16,8,"u"],[22,7,16,9],[22,13,16,15],[22,14,16,16],[23,4,17,4],[24,2,18,0],[25,2,19,0],[25,11,19,9,"vn"],[25,13,19,11,"vn"],[25,14,19,12,"x"],[25,15,19,13],[25,17,19,15,"xi"],[25,19,19,17],[25,21,19,19,"y"],[25,22,19,20],[25,24,19,22,"yi"],[25,26,19,24],[25,28,19,26,"n"],[25,29,19,27],[25,31,19,29],[26,4,20,4],[26,8,20,8,"d"],[26,9,20,9],[26,12,20,12],[26,13,20,13],[27,4,21,4],[27,9,21,9],[27,13,21,13,"i"],[27,14,21,14],[27,17,21,17],[27,18,21,18],[27,20,21,20,"i"],[27,21,21,21],[27,24,21,24,"n"],[27,25,21,25],[27,27,21,27,"i"],[27,28,21,28],[27,30,21,30],[27,32,22,8,"d"],[27,33,22,9],[27,37,22,13,"x"],[27,38,22,14],[27,39,22,15,"xi"],[27,41,22,17],[27,44,22,20,"i"],[27,45,22,21],[27,46,22,22],[27,49,22,25,"y"],[27,50,22,26],[27,51,22,27,"yi"],[27,53,22,29],[27,56,22,32,"i"],[27,57,22,33],[27,58,22,34],[28,4,23,4],[28,11,23,11],[28,12,23,12],[28,13,23,13],[28,16,23,18,"d"],[28,17,23,19],[28,20,23,22],[28,21,23,23],[28,26,23,29],[28,27,23,31],[28,31,23,35],[28,32,23,36],[29,2,24,0],[30,2,25,0],[30,11,25,9,"core"],[30,15,25,13,"core"],[30,16,25,14,"out"],[30,19,25,17],[30,21,25,19,"inp"],[30,24,25,22],[30,26,25,24,"k"],[30,27,25,25],[30,29,25,27,"c"],[30,30,25,28],[30,32,25,30,"h"],[30,33,25,31],[30,35,25,33],[31,4,26,4],[31,10,26,10,"w"],[31,11,26,11],[31,14,26,14],[31,18,26,18,"Uint32Array"],[31,29,26,29],[31,30,26,30],[31,32,26,32],[31,33,26,33],[32,6,26,35,"x"],[32,7,26,36],[32,10,26,39],[32,14,26,43,"Uint32Array"],[32,25,26,54],[32,26,26,55],[32,28,26,57],[32,29,26,58],[33,6,26,60,"y"],[33,7,26,61],[33,10,26,64],[33,14,26,68,"Uint32Array"],[33,25,26,79],[33,26,26,80],[33,28,26,82],[33,29,26,83],[34,6,26,85,"t"],[34,7,26,86],[34,10,26,89],[34,14,26,93,"Uint32Array"],[34,25,26,104],[34,26,26,105],[34,27,26,106],[34,28,26,107],[35,4,27,4],[35,8,27,8,"i"],[35,9,27,9],[35,11,27,11,"j"],[35,12,27,12],[35,14,27,14,"m"],[35,15,27,15],[36,4,28,4],[36,9,28,9,"i"],[36,10,28,10],[36,13,28,13],[36,14,28,14],[36,16,28,16,"i"],[36,17,28,17],[36,20,28,20],[36,21,28,21],[36,23,28,23,"i"],[36,24,28,24],[36,26,28,26],[36,28,28,28],[37,6,29,8,"x"],[37,7,29,9],[37,8,29,10],[37,9,29,11],[37,12,29,14,"i"],[37,13,29,15],[37,14,29,16],[37,17,29,19,"ld32"],[37,21,29,23],[37,22,29,24,"c"],[37,23,29,25],[37,25,29,27],[37,26,29,28],[37,29,29,31,"i"],[37,30,29,32],[37,31,29,33],[38,6,30,8,"x"],[38,7,30,9],[38,8,30,10],[38,9,30,11],[38,12,30,14,"i"],[38,13,30,15],[38,14,30,16],[38,17,30,19,"ld32"],[38,21,30,23],[38,22,30,24,"k"],[38,23,30,25],[38,25,30,27],[38,26,30,28],[38,29,30,31,"i"],[38,30,30,32],[38,31,30,33],[39,6,31,8,"x"],[39,7,31,9],[39,8,31,10],[39,9,31,11],[39,12,31,14,"i"],[39,13,31,15],[39,14,31,16],[39,17,31,19,"ld32"],[39,21,31,23],[39,22,31,24,"inp"],[39,25,31,27],[39,27,31,29],[39,28,31,30],[39,31,31,33,"i"],[39,32,31,34],[39,33,31,35],[40,6,32,8,"x"],[40,7,32,9],[40,8,32,10],[40,10,32,12],[40,13,32,15,"i"],[40,14,32,16],[40,15,32,17],[40,18,32,20,"ld32"],[40,22,32,24],[40,23,32,25,"k"],[40,24,32,26],[40,26,32,28],[40,28,32,30],[40,31,32,33],[40,32,32,34],[40,35,32,37,"i"],[40,36,32,38],[40,37,32,39],[41,4,33,4],[42,4,34,4],[42,9,34,9,"i"],[42,10,34,10],[42,13,34,13],[42,14,34,14],[42,16,34,16,"i"],[42,17,34,17],[42,20,34,20],[42,22,34,22],[42,24,34,24,"i"],[42,25,34,25],[42,27,34,27],[42,29,35,8,"y"],[42,30,35,9],[42,31,35,10,"i"],[42,32,35,11],[42,33,35,12],[42,36,35,15,"x"],[42,37,35,16],[42,38,35,17,"i"],[42,39,35,18],[42,40,35,19],[43,4,36,4],[43,9,36,9,"i"],[43,10,36,10],[43,13,36,13],[43,14,36,14],[43,16,36,16,"i"],[43,17,36,17],[43,20,36,20],[43,22,36,22],[43,24,36,24,"i"],[43,25,36,25],[43,27,36,27],[43,29,36,29],[44,6,37,8],[44,11,37,13,"j"],[44,12,37,14],[44,15,37,17],[44,16,37,18],[44,18,37,20,"j"],[44,19,37,21],[44,22,37,24],[44,23,37,25],[44,25,37,27,"j"],[44,26,37,28],[44,28,37,30],[44,30,37,32],[45,8,38,12],[45,13,38,17,"m"],[45,14,38,18],[45,17,38,21],[45,18,38,22],[45,20,38,24,"m"],[45,21,38,25],[45,24,38,28],[45,25,38,29],[45,27,38,31,"m"],[45,28,38,32],[45,30,38,34],[45,32,39,16,"t"],[45,33,39,17],[45,34,39,18,"m"],[45,35,39,19],[45,36,39,20],[45,39,39,23,"x"],[45,40,39,24],[45,41,39,25],[45,42,39,26],[45,43,39,27],[45,46,39,30,"j"],[45,47,39,31],[45,50,39,34],[45,51,39,35],[45,54,39,38,"m"],[45,55,39,39],[45,59,39,43],[45,61,39,45],[45,62,39,46],[46,8,40,12,"t"],[46,9,40,13],[46,10,40,14],[46,11,40,15],[46,12,40,16],[46,16,40,20,"L32"],[46,19,40,23],[46,20,40,25,"t"],[46,21,40,26],[46,22,40,27],[46,23,40,28],[46,24,40,29],[46,27,40,32,"t"],[46,28,40,33],[46,29,40,34],[46,30,40,35],[46,31,40,36],[46,34,40,40],[46,35,40,41],[46,37,40,43],[46,38,40,44],[46,39,40,45],[47,8,41,12,"t"],[47,9,41,13],[47,10,41,14],[47,11,41,15],[47,12,41,16],[47,16,41,20,"L32"],[47,19,41,23],[47,20,41,25,"t"],[47,21,41,26],[47,22,41,27],[47,23,41,28],[47,24,41,29],[47,27,41,32,"t"],[47,28,41,33],[47,29,41,34],[47,30,41,35],[47,31,41,36],[47,34,41,40],[47,35,41,41],[47,37,41,43],[47,38,41,44],[47,39,41,45],[48,8,42,12,"t"],[48,9,42,13],[48,10,42,14],[48,11,42,15],[48,12,42,16],[48,16,42,20,"L32"],[48,19,42,23],[48,20,42,25,"t"],[48,21,42,26],[48,22,42,27],[48,23,42,28],[48,24,42,29],[48,27,42,32,"t"],[48,28,42,33],[48,29,42,34],[48,30,42,35],[48,31,42,36],[48,34,42,40],[48,35,42,41],[48,37,42,43],[48,39,42,45],[48,40,42,46],[49,8,43,12,"t"],[49,9,43,13],[49,10,43,14],[49,11,43,15],[49,12,43,16],[49,16,43,20,"L32"],[49,19,43,23],[49,20,43,25,"t"],[49,21,43,26],[49,22,43,27],[49,23,43,28],[49,24,43,29],[49,27,43,32,"t"],[49,28,43,33],[49,29,43,34],[49,30,43,35],[49,31,43,36],[49,34,43,40],[49,35,43,41],[49,37,43,43],[49,39,43,45],[49,40,43,46],[50,8,44,12],[50,13,44,17,"m"],[50,14,44,18],[50,17,44,21],[50,18,44,22],[50,20,44,24,"m"],[50,21,44,25],[50,24,44,28],[50,25,44,29],[50,27,44,31,"m"],[50,28,44,32],[50,30,44,34],[50,32,45,16,"w"],[50,33,45,17],[50,34,45,18],[50,35,45,19],[50,38,45,22,"j"],[50,39,45,23],[50,42,45,26],[50,43,45,27,"j"],[50,44,45,28],[50,47,45,31,"m"],[50,48,45,32],[50,52,45,36],[50,53,45,37],[50,54,45,38],[50,57,45,41,"t"],[50,58,45,42],[50,59,45,43,"m"],[50,60,45,44],[50,61,45,45],[51,6,46,8],[52,6,47,8],[52,11,47,13,"m"],[52,12,47,14],[52,15,47,17],[52,16,47,18],[52,18,47,20,"m"],[52,19,47,21],[52,22,47,24],[52,24,47,26],[52,26,47,28,"m"],[52,27,47,29],[52,29,47,31],[52,31,48,12,"x"],[52,32,48,13],[52,33,48,14,"m"],[52,34,48,15],[52,35,48,16],[52,38,48,19,"w"],[52,39,48,20],[52,40,48,21,"m"],[52,41,48,22],[52,42,48,23],[53,4,49,4],[54,4,50,4],[54,8,50,8,"h"],[54,9,50,9],[54,11,50,11],[55,6,51,8],[55,11,51,13,"i"],[55,12,51,14],[55,15,51,17],[55,16,51,18],[55,18,51,20,"i"],[55,19,51,21],[55,22,51,24],[55,24,51,26],[55,26,51,28,"i"],[55,27,51,29],[55,29,51,31],[55,31,52,12,"x"],[55,32,52,13],[55,33,52,14,"i"],[55,34,52,15],[55,35,52,16],[55,38,52,20,"x"],[55,39,52,21],[55,40,52,22,"i"],[55,41,52,23],[55,42,52,24],[55,45,52,27,"y"],[55,46,52,28],[55,47,52,29,"i"],[55,48,52,30],[55,49,52,31],[55,52,52,35],[55,53,52,36],[56,6,53,8],[56,11,53,13,"i"],[56,12,53,14],[56,15,53,17],[56,16,53,18],[56,18,53,20,"i"],[56,19,53,21],[56,22,53,24],[56,23,53,25],[56,25,53,27,"i"],[56,26,53,28],[56,28,53,30],[56,30,53,32],[57,8,54,12,"x"],[57,9,54,13],[57,10,54,14],[57,11,54,15],[57,14,54,18,"i"],[57,15,54,19],[57,16,54,20],[57,19,54,24,"x"],[57,20,54,25],[57,21,54,26],[57,22,54,27],[57,25,54,30,"i"],[57,26,54,31],[57,27,54,32],[57,30,54,35,"ld32"],[57,34,54,39],[57,35,54,40,"c"],[57,36,54,41],[57,38,54,43],[57,39,54,44],[57,42,54,47,"i"],[57,43,54,48],[57,44,54,49],[57,47,54,53],[57,48,54,54],[58,8,55,12,"x"],[58,9,55,13],[58,10,55,14],[58,11,55,15],[58,14,55,18,"i"],[58,15,55,19],[58,16,55,20],[58,19,55,24,"x"],[58,20,55,25],[58,21,55,26],[58,22,55,27],[58,25,55,30,"i"],[58,26,55,31],[58,27,55,32],[58,30,55,35,"ld32"],[58,34,55,39],[58,35,55,40,"inp"],[58,38,55,43],[58,40,55,45],[58,41,55,46],[58,44,55,49,"i"],[58,45,55,50],[58,46,55,51],[58,49,55,55],[58,50,55,56],[59,6,56,8],[60,6,57,8],[60,11,57,13,"i"],[60,12,57,14],[60,15,57,17],[60,16,57,18],[60,18,57,20,"i"],[60,19,57,21],[60,22,57,24],[60,23,57,25],[60,25,57,27,"i"],[60,26,57,28],[60,28,57,30],[60,30,57,32],[61,8,58,12,"st32"],[61,12,58,16],[61,13,58,17,"out"],[61,16,58,20],[61,18,58,22],[61,19,58,23],[61,22,58,26,"i"],[61,23,58,27],[61,25,58,29,"x"],[61,26,58,30],[61,27,58,31],[61,28,58,32],[61,31,58,35,"i"],[61,32,58,36],[61,33,58,37],[61,34,58,38],[62,8,59,12,"st32"],[62,12,59,16],[62,13,59,17,"out"],[62,16,59,20],[62,18,59,22],[62,20,59,24],[62,23,59,27],[62,24,59,28],[62,27,59,31,"i"],[62,28,59,32],[62,30,59,34,"x"],[62,31,59,35],[62,32,59,36],[62,33,59,37],[62,36,59,40,"i"],[62,37,59,41],[62,38,59,42],[62,39,59,43],[63,6,60,8],[64,4,61,4],[64,5,61,5],[64,11,62,9],[65,6,63,8],[65,11,63,13,"i"],[65,12,63,14],[65,15,63,17],[65,16,63,18],[65,18,63,20,"i"],[65,19,63,21],[65,22,63,24],[65,24,63,26],[65,26,63,28,"i"],[65,27,63,29],[65,29,63,31],[65,31,64,12,"st32"],[65,35,64,16],[65,36,64,17,"out"],[65,39,64,20],[65,41,64,22],[65,42,64,23],[65,45,64,26,"i"],[65,46,64,27],[65,48,64,30,"x"],[65,49,64,31],[65,50,64,32,"i"],[65,51,64,33],[65,52,64,34],[65,55,64,37,"y"],[65,56,64,38],[65,57,64,39,"i"],[65,58,64,40],[65,59,64,41],[65,62,64,45],[65,63,64,46],[65,64,64,47],[66,4,65,4],[67,2,66,0],[68,2,67,0],[68,8,67,6,"sigma"],[68,13,67,11],[68,16,67,14],[68,20,67,18,"Uint8Array"],[68,30,67,28],[68,31,67,29],[68,32,67,30],[68,35,67,33],[68,37,67,35],[68,40,67,38],[68,42,67,40],[68,45,67,43],[68,47,67,45],[68,49,67,47],[68,51,67,49],[68,54,67,52],[68,56,67,54],[68,59,67,57],[68,61,67,59],[68,63,67,61],[68,65,67,63],[68,67,67,65],[68,69,67,67],[68,71,67,69],[68,73,67,71],[68,75,67,73],[68,77,67,75],[68,79,67,77],[68,81,67,79],[68,84,67,82],[68,86,67,84],[68,89,67,87],[68,91,67,89],[68,94,67,92],[68,96,67,94],[68,98,67,96],[68,100,67,98],[68,103,67,101],[68,104,67,102],[68,105,67,103],[69,2,68,0],[69,11,68,9,"crypto_stream_salsa20_xor"],[69,36,68,34,"crypto_stream_salsa20_xor"],[69,37,68,35,"c"],[69,38,68,36],[69,40,68,38,"cpos"],[69,44,68,42],[69,46,68,44,"m"],[69,47,68,45],[69,49,68,47,"mpos"],[69,53,68,51],[69,55,68,53,"b"],[69,56,68,54],[69,58,68,56,"n"],[69,59,68,57],[69,61,68,59,"k"],[69,62,68,60],[69,64,68,62],[70,4,69,4],[70,10,69,10,"z"],[70,11,69,11],[70,14,69,14],[70,18,69,18,"Uint8Array"],[70,28,69,28],[70,29,69,29],[70,31,69,31],[70,32,69,32],[71,6,69,34,"x"],[71,7,69,35],[71,10,69,38],[71,14,69,42,"Uint8Array"],[71,24,69,52],[71,25,69,53],[71,27,69,55],[71,28,69,56],[72,4,70,4],[72,8,70,8,"u"],[72,9,70,9],[72,11,70,11,"i"],[72,12,70,12],[73,4,71,4],[73,8,71,8],[73,9,71,9,"b"],[73,10,71,10],[73,12,72,8],[73,19,72,15],[73,20,72,16],[74,4,73,4],[74,9,73,9,"i"],[74,10,73,10],[74,13,73,13],[74,14,73,14],[74,16,73,16,"i"],[74,17,73,17],[74,20,73,20],[74,22,73,22],[74,24,73,24,"i"],[74,25,73,25],[74,27,73,27],[74,29,74,8,"z"],[74,30,74,9],[74,31,74,10,"i"],[74,32,74,11],[74,33,74,12],[74,36,74,15],[74,37,74,16],[75,4,75,4],[75,9,75,9,"i"],[75,10,75,10],[75,13,75,13],[75,14,75,14],[75,16,75,16,"i"],[75,17,75,17],[75,20,75,20],[75,21,75,21],[75,23,75,23,"i"],[75,24,75,24],[75,26,75,26],[75,28,76,8,"z"],[75,29,76,9],[75,30,76,10,"i"],[75,31,76,11],[75,32,76,12],[75,35,76,15,"n"],[75,36,76,16],[75,37,76,17,"i"],[75,38,76,18],[75,39,76,19],[76,4,77,4],[76,11,77,11,"b"],[76,12,77,12],[76,16,77,16],[76,18,77,18],[76,20,77,20],[77,6,78,8,"core"],[77,10,78,12],[77,11,78,13,"x"],[77,12,78,14],[77,14,78,16,"z"],[77,15,78,17],[77,17,78,19,"k"],[77,18,78,20],[77,20,78,22,"sigma"],[77,25,78,27],[77,27,78,29],[77,32,78,34],[77,33,78,35],[78,6,79,8],[78,11,79,13,"i"],[78,12,79,14],[78,15,79,17],[78,16,79,18],[78,18,79,20,"i"],[78,19,79,21],[78,22,79,24],[78,24,79,26],[78,26,79,28,"i"],[78,27,79,29],[78,29,79,31],[78,31,80,12,"c"],[78,32,80,13],[78,33,80,14,"cpos"],[78,37,80,18],[78,40,80,21,"i"],[78,41,80,22],[78,42,80,23],[78,45,80,26],[78,46,80,27,"m"],[78,47,80,28],[78,50,80,31,"m"],[78,51,80,32],[78,52,80,33,"mpos"],[78,56,80,37],[78,59,80,40,"i"],[78,60,80,41],[78,61,80,42],[78,64,80,45],[78,65,80,46],[78,69,80,50,"x"],[78,70,80,51],[78,71,80,52,"i"],[78,72,80,53],[78,73,80,54],[79,6,81,8,"u"],[79,7,81,9],[79,10,81,12],[79,11,81,13],[80,6,82,8],[80,11,82,13,"i"],[80,12,82,14],[80,15,82,17],[80,16,82,18],[80,18,82,20,"i"],[80,19,82,21],[80,22,82,24],[80,24,82,26],[80,26,82,28,"i"],[80,27,82,29],[80,29,82,31],[80,31,82,33],[81,8,83,12,"u"],[81,9,83,13],[81,12,83,16,"u"],[81,13,83,17],[81,17,83,21,"z"],[81,18,83,22],[81,19,83,23,"i"],[81,20,83,24],[81,21,83,25],[81,24,83,28],[81,28,83,32],[81,29,83,33],[81,32,83,36],[81,33,83,37],[82,8,84,12,"z"],[82,9,84,13],[82,10,84,14,"i"],[82,11,84,15],[82,12,84,16],[82,15,84,19,"u"],[82,16,84,20],[82,19,84,23],[82,23,84,27],[83,8,85,12,"u"],[83,9,85,13],[83,15,85,19],[83,16,85,20],[84,6,86,8],[85,6,87,8,"b"],[85,7,87,9],[85,11,87,13],[85,13,87,15],[86,6,88,8,"cpos"],[86,10,88,12],[86,14,88,16],[86,16,88,18],[87,6,89,8],[87,10,89,12,"m"],[87,11,89,13],[87,13,90,12,"mpos"],[87,17,90,16],[87,21,90,20],[87,23,90,22],[88,4,91,4],[89,4,92,4],[89,8,92,8,"b"],[89,9,92,9],[89,12,92,12],[89,13,92,13],[89,15,92,15],[90,6,93,8,"core"],[90,10,93,12],[90,11,93,13,"x"],[90,12,93,14],[90,14,93,16,"z"],[90,15,93,17],[90,17,93,19,"k"],[90,18,93,20],[90,20,93,22,"sigma"],[90,25,93,27],[90,27,93,29],[90,32,93,34],[90,33,93,35],[91,6,94,8],[91,11,94,13,"i"],[91,12,94,14],[91,15,94,17],[91,16,94,18],[91,18,94,20,"i"],[91,19,94,21],[91,22,94,24,"b"],[91,23,94,25],[91,25,94,27,"i"],[91,26,94,28],[91,28,94,30],[91,30,95,12,"c"],[91,31,95,13],[91,32,95,14,"cpos"],[91,36,95,18],[91,39,95,21,"i"],[91,40,95,22],[91,41,95,23],[91,44,95,26],[91,45,95,27,"m"],[91,46,95,28],[91,49,95,31,"m"],[91,50,95,32],[91,51,95,33,"mpos"],[91,55,95,37],[91,58,95,40,"i"],[91,59,95,41],[91,60,95,42],[91,63,95,45],[91,64,95,46],[91,68,95,50,"x"],[91,69,95,51],[91,70,95,52,"i"],[91,71,95,53],[91,72,95,54],[92,4,96,4],[93,4,97,4],[93,11,97,11],[93,12,97,12],[94,2,98,0],[95,2,99,0],[95,11,99,9,"crypto_stream_xor"],[95,28,99,26,"crypto_stream_xor"],[95,29,99,27,"c"],[95,30,99,28],[95,32,99,30,"cpos"],[95,36,99,34],[95,38,99,36,"m"],[95,39,99,37],[95,41,99,39,"mpos"],[95,45,99,43],[95,47,99,45,"d"],[95,48,99,46],[95,50,99,48,"n"],[95,51,99,49],[95,53,99,51,"k"],[95,54,99,52],[95,56,99,54],[96,4,100,4],[96,10,100,10,"s"],[96,11,100,11],[96,14,100,14],[96,18,100,18,"Uint8Array"],[96,28,100,28],[96,29,100,29],[96,31,100,31],[96,32,100,32],[97,4,101,4,"core"],[97,8,101,8],[97,9,101,9,"s"],[97,10,101,10],[97,12,101,12,"n"],[97,13,101,13],[97,15,101,15,"k"],[97,16,101,16],[97,18,101,18,"sigma"],[97,23,101,23],[97,25,101,25],[97,29,101,29],[97,30,101,30],[98,4,102,4],[98,11,102,11,"crypto_stream_salsa20_xor"],[98,36,102,36],[98,37,102,37,"c"],[98,38,102,38],[98,40,102,40,"cpos"],[98,44,102,44],[98,46,102,46,"m"],[98,47,102,47],[98,49,102,49,"mpos"],[98,53,102,53],[98,55,102,55,"d"],[98,56,102,56],[98,58,102,58,"n"],[98,59,102,59],[98,60,102,60,"subarray"],[98,68,102,68],[98,69,102,69],[98,71,102,71],[98,72,102,72],[98,74,102,74,"s"],[98,75,102,75],[98,76,102,76],[99,2,103,0],[100,2,104,0],[100,11,104,9,"add1305"],[100,18,104,16,"add1305"],[100,19,104,17,"h"],[100,20,104,18],[100,22,104,20,"c"],[100,23,104,21],[100,25,104,23],[101,4,105,4],[101,8,105,8,"u"],[101,9,105,9],[101,12,105,12],[101,13,105,13],[102,4,106,4],[102,9,106,9],[102,13,106,13,"j"],[102,14,106,14],[102,17,106,17],[102,18,106,18],[102,20,106,20,"j"],[102,21,106,21],[102,24,106,24],[102,26,106,26],[102,28,106,28,"j"],[102,29,106,29],[102,31,106,31],[102,33,106,33],[103,6,107,8,"u"],[103,7,107,9],[103,10,107,13,"u"],[103,11,107,14],[103,15,107,19,"h"],[103,16,107,20],[103,17,107,21,"j"],[103,18,107,22],[103,19,107,23],[103,22,107,26,"c"],[103,23,107,27],[103,24,107,28,"j"],[103,25,107,29],[103,26,107,30],[103,29,107,34],[103,30,107,35],[103,31,107,36],[103,34,107,40],[103,35,107,41],[104,6,108,8,"h"],[104,7,108,9],[104,8,108,10,"j"],[104,9,108,11],[104,10,108,12],[104,13,108,15,"u"],[104,14,108,16],[104,17,108,19],[104,20,108,22],[105,6,109,8,"u"],[105,7,109,9],[105,13,109,15],[105,14,109,16],[106,4,110,4],[107,2,111,0],[108,2,112,0],[108,8,112,6,"minusp"],[108,14,112,12],[108,17,112,15],[108,21,112,19,"Uint32Array"],[108,32,112,30],[108,33,112,31],[108,34,112,32],[108,35,112,33],[108,37,112,35],[108,38,112,36],[108,40,112,38],[108,41,112,39],[108,43,112,41],[108,44,112,42],[108,46,112,44],[108,47,112,45],[108,49,112,47],[108,50,112,48],[108,52,112,50],[108,53,112,51],[108,55,112,53],[108,56,112,54],[108,58,112,56],[108,59,112,57],[108,61,112,59],[108,62,112,60],[108,64,112,62],[108,65,112,63],[108,67,112,65],[108,68,112,66],[108,70,112,68],[108,71,112,69],[108,73,112,71],[108,74,112,72],[108,76,112,74],[108,77,112,75],[108,79,112,77],[108,80,112,78],[108,82,112,80],[108,85,112,83],[108,86,112,84],[108,87,112,85],[109,2,113,0],[109,11,113,9,"crypto_onetimeauth"],[109,29,113,27,"crypto_onetimeauth"],[109,30,113,28,"out"],[109,33,113,31],[109,35,113,33,"outpos"],[109,41,113,39],[109,43,113,41,"m"],[109,44,113,42],[109,46,113,44,"mpos"],[109,50,113,48],[109,52,113,50,"n"],[109,53,113,51],[109,55,113,53,"k"],[109,56,113,54],[109,58,113,56],[110,4,114,4],[110,8,114,8,"i"],[110,9,114,9],[110,11,114,11,"j"],[110,12,114,12],[110,14,114,14,"u"],[110,15,114,15],[111,4,115,4],[111,10,115,10,"x"],[111,11,115,11],[111,14,115,14],[111,18,115,18,"Uint32Array"],[111,29,115,29],[111,30,115,30],[111,32,115,32],[111,33,115,33],[112,6,115,35,"r"],[112,7,115,36],[112,10,115,39],[112,14,115,43,"Uint32Array"],[112,25,115,54],[112,26,115,55],[112,28,115,57],[112,29,115,58],[113,6,115,60,"h"],[113,7,115,61],[113,10,115,64],[113,14,115,68,"Uint32Array"],[113,25,115,79],[113,26,115,80],[113,28,115,82],[113,29,115,83],[114,6,115,85,"c"],[114,7,115,86],[114,10,115,89],[114,14,115,93,"Uint32Array"],[114,25,115,104],[114,26,115,105],[114,28,115,107],[114,29,115,108],[115,6,115,110,"g"],[115,7,115,111],[115,10,115,114],[115,14,115,118,"Uint32Array"],[115,25,115,129],[115,26,115,130],[115,28,115,132],[115,29,115,133],[116,4,116,4],[116,9,116,9,"j"],[116,10,116,10],[116,13,116,13],[116,14,116,14],[116,16,116,16,"j"],[116,17,116,17],[116,20,116,20],[116,22,116,22],[116,24,116,24,"j"],[116,25,116,25],[116,27,116,27],[116,29,117,8,"r"],[116,30,117,9],[116,31,117,10,"j"],[116,32,117,11],[116,33,117,12],[116,36,117,15,"h"],[116,37,117,16],[116,38,117,17,"j"],[116,39,117,18],[116,40,117,19],[116,43,117,22],[116,44,117,23],[117,4,118,4],[117,9,118,9,"j"],[117,10,118,10],[117,13,118,13],[117,14,118,14],[117,16,118,16,"j"],[117,17,118,17],[117,20,118,20],[117,22,118,22],[117,24,118,24,"j"],[117,25,118,25],[117,27,118,27],[117,29,119,8,"r"],[117,30,119,9],[117,31,119,10,"j"],[117,32,119,11],[117,33,119,12],[117,36,119,15,"k"],[117,37,119,16],[117,38,119,17,"j"],[117,39,119,18],[117,40,119,19],[118,4,120,4,"r"],[118,5,120,5],[118,6,120,6],[118,7,120,7],[118,8,120,8],[118,12,120,12],[118,14,120,14],[119,4,121,4,"r"],[119,5,121,5],[119,6,121,6],[119,7,121,7],[119,8,121,8],[119,12,121,12],[119,15,121,15],[120,4,122,4,"r"],[120,5,122,5],[120,6,122,6],[120,7,122,7],[120,8,122,8],[120,12,122,12],[120,14,122,14],[121,4,123,4,"r"],[121,5,123,5],[121,6,123,6],[121,7,123,7],[121,8,123,8],[121,12,123,12],[121,15,123,15],[122,4,124,4,"r"],[122,5,124,5],[122,6,124,6],[122,8,124,8],[122,9,124,9],[122,13,124,13],[122,15,124,15],[123,4,125,4,"r"],[123,5,125,5],[123,6,125,6],[123,8,125,8],[123,9,125,9],[123,13,125,13],[123,16,125,16],[124,4,126,4,"r"],[124,5,126,5],[124,6,126,6],[124,8,126,8],[124,9,126,9],[124,13,126,13],[124,15,126,15],[125,4,127,4],[125,11,127,11,"n"],[125,12,127,12],[125,15,127,15],[125,16,127,16],[125,18,127,18],[126,6,128,8],[126,11,128,13,"j"],[126,12,128,14],[126,15,128,17],[126,16,128,18],[126,18,128,20,"j"],[126,19,128,21],[126,22,128,24],[126,24,128,26],[126,26,128,28,"j"],[126,27,128,29],[126,29,128,31],[126,31,129,12,"c"],[126,32,129,13],[126,33,129,14,"j"],[126,34,129,15],[126,35,129,16],[126,38,129,19],[126,39,129,20],[127,6,130,8],[127,11,130,13,"j"],[127,12,130,14],[127,15,130,17],[127,16,130,18],[127,18,130,21,"j"],[127,19,130,22],[127,22,130,25],[127,24,130,27],[127,28,130,33,"j"],[127,29,130,34],[127,32,130,37,"n"],[127,33,130,39],[127,35,130,41],[127,37,130,43,"j"],[127,38,130,44],[127,40,131,12,"c"],[127,41,131,13],[127,42,131,14,"j"],[127,43,131,15],[127,44,131,16],[127,47,131,19,"m"],[127,48,131,20],[127,49,131,21,"mpos"],[127,53,131,25],[127,56,131,28,"j"],[127,57,131,29],[127,58,131,30],[128,6,132,8,"c"],[128,7,132,9],[128,8,132,10,"j"],[128,9,132,11],[128,10,132,12],[128,13,132,15],[128,14,132,16],[129,6,133,8,"mpos"],[129,10,133,12],[129,14,133,16,"j"],[129,15,133,17],[130,6,134,8,"n"],[130,7,134,9],[130,11,134,13,"j"],[130,12,134,14],[131,6,135,8,"add1305"],[131,13,135,15],[131,14,135,16,"h"],[131,15,135,17],[131,17,135,19,"c"],[131,18,135,20],[131,19,135,21],[132,6,136,8],[132,11,136,13,"i"],[132,12,136,14],[132,15,136,17],[132,16,136,18],[132,18,136,20,"i"],[132,19,136,21],[132,22,136,24],[132,24,136,26],[132,26,136,28,"i"],[132,27,136,29],[132,29,136,31],[132,31,136,33],[133,8,137,12,"x"],[133,9,137,13],[133,10,137,14,"i"],[133,11,137,15],[133,12,137,16],[133,15,137,19],[133,16,137,20],[134,8,138,12],[134,13,138,17,"j"],[134,14,138,18],[134,17,138,21],[134,18,138,22],[134,20,138,24,"j"],[134,21,138,25],[134,24,138,28],[134,26,138,30],[134,28,138,32,"j"],[134,29,138,33],[134,31,138,35],[134,33,139,16,"x"],[134,34,139,17],[134,35,139,18,"i"],[134,36,139,19],[134,37,139,20],[134,40,139,24,"x"],[134,41,139,25],[134,42,139,26,"i"],[134,43,139,27],[134,44,139,28],[134,47,139,32,"h"],[134,48,139,33],[134,49,139,34,"j"],[134,50,139,35],[134,51,139,36],[134,55,139,41,"j"],[134,56,139,42],[134,60,139,46,"i"],[134,61,139,47],[134,64,139,51,"r"],[134,65,139,52],[134,66,139,53,"i"],[134,67,139,54],[134,70,139,57,"j"],[134,71,139,58],[134,72,139,59],[134,75,139,64],[134,78,139,67],[134,81,139,70,"r"],[134,82,139,71],[134,83,139,72,"i"],[134,84,139,73],[134,87,139,76],[134,89,139,78],[134,92,139,81,"j"],[134,93,139,82],[134,94,139,83],[134,97,139,87],[134,98,139,89],[134,99,139,91],[134,102,139,94],[134,103,139,95],[134,106,139,99],[134,107,139,100],[135,6,140,8],[136,6,141,8],[136,11,141,13,"i"],[136,12,141,14],[136,15,141,17],[136,16,141,18],[136,18,141,20,"i"],[136,19,141,21],[136,22,141,24],[136,24,141,26],[136,26,141,28,"i"],[136,27,141,29],[136,29,141,31],[136,31,142,12,"h"],[136,32,142,13],[136,33,142,14,"i"],[136,34,142,15],[136,35,142,16],[136,38,142,19,"x"],[136,39,142,20],[136,40,142,21,"i"],[136,41,142,22],[136,42,142,23],[137,6,143,8,"u"],[137,7,143,9],[137,10,143,12],[137,11,143,13],[138,6,144,8],[138,11,144,13,"j"],[138,12,144,14],[138,15,144,17],[138,16,144,18],[138,18,144,20,"j"],[138,19,144,21],[138,22,144,24],[138,24,144,26],[138,26,144,28,"j"],[138,27,144,29],[138,29,144,31],[138,31,144,33],[139,8,145,12,"u"],[139,9,145,13],[139,12,145,17,"u"],[139,13,145,18],[139,16,145,21,"h"],[139,17,145,22],[139,18,145,23,"j"],[139,19,145,24],[139,20,145,25],[139,23,145,29],[139,24,145,30],[140,8,146,12,"h"],[140,9,146,13],[140,10,146,14,"j"],[140,11,146,15],[140,12,146,16],[140,15,146,19,"u"],[140,16,146,20],[140,19,146,23],[140,22,146,26],[141,8,147,12,"u"],[141,9,147,13],[141,15,147,19],[141,16,147,20],[142,6,148,8],[143,6,149,8,"u"],[143,7,149,9],[143,10,149,13,"u"],[143,11,149,14],[143,14,149,17,"h"],[143,15,149,18],[143,16,149,19],[143,18,149,21],[143,19,149,22],[143,22,149,26],[143,23,149,27],[144,6,150,8,"h"],[144,7,150,9],[144,8,150,10],[144,10,150,12],[144,11,150,13],[144,14,150,16,"u"],[144,15,150,17],[144,18,150,20],[144,19,150,21],[145,6,151,8,"u"],[145,7,151,9],[145,10,151,13],[145,11,151,14],[145,15,151,18,"u"],[145,16,151,19],[145,21,151,24],[145,22,151,25],[145,23,151,26],[145,26,151,30],[145,27,151,31],[146,6,152,8],[146,11,152,13,"j"],[146,12,152,14],[146,15,152,17],[146,16,152,18],[146,18,152,20,"j"],[146,19,152,21],[146,22,152,24],[146,24,152,26],[146,26,152,28,"j"],[146,27,152,29],[146,29,152,31],[146,31,152,33],[147,8,153,12,"u"],[147,9,153,13],[147,12,153,17,"u"],[147,13,153,18],[147,16,153,21,"h"],[147,17,153,22],[147,18,153,23,"j"],[147,19,153,24],[147,20,153,25],[147,23,153,29],[147,24,153,30],[148,8,154,12,"h"],[148,9,154,13],[148,10,154,14,"j"],[148,11,154,15],[148,12,154,16],[148,15,154,19,"u"],[148,16,154,20],[148,19,154,23],[148,22,154,26],[149,8,155,12,"u"],[149,9,155,13],[149,15,155,19],[149,16,155,20],[150,6,156,8],[151,6,157,8,"u"],[151,7,157,9],[151,10,157,13,"u"],[151,11,157,14],[151,14,157,17,"h"],[151,15,157,18],[151,16,157,19],[151,18,157,21],[151,19,157,22],[151,22,157,26],[151,23,157,27],[152,6,158,8,"h"],[152,7,158,9],[152,8,158,10],[152,10,158,12],[152,11,158,13],[152,14,158,16,"u"],[152,15,158,17],[153,4,159,4],[154,4,160,4],[154,9,160,9,"j"],[154,10,160,10],[154,13,160,13],[154,14,160,14],[154,16,160,16,"j"],[154,17,160,17],[154,20,160,20],[154,22,160,22],[154,24,160,24,"j"],[154,25,160,25],[154,27,160,27],[154,29,161,8,"g"],[154,30,161,9],[154,31,161,10,"j"],[154,32,161,11],[154,33,161,12],[154,36,161,15,"h"],[154,37,161,16],[154,38,161,17,"j"],[154,39,161,18],[154,40,161,19],[155,4,162,4,"add1305"],[155,11,162,11],[155,12,162,12,"h"],[155,13,162,13],[155,15,162,15,"minusp"],[155,21,162,21],[155,22,162,22],[156,4,163,4],[156,10,163,10,"s"],[156,11,163,11],[156,14,163,15],[156,16,163,17,"h"],[156,17,163,18],[156,18,163,19],[156,20,163,21],[156,21,163,22],[156,26,163,27],[156,27,163,28],[156,28,163,29],[156,31,163,32],[156,32,163,34],[157,4,164,4],[157,9,164,9,"j"],[157,10,164,10],[157,13,164,13],[157,14,164,14],[157,16,164,16,"j"],[157,17,164,17],[157,20,164,20],[157,22,164,22],[157,24,164,24,"j"],[157,25,164,25],[157,27,164,27],[157,29,165,8,"h"],[157,30,165,9],[157,31,165,10,"j"],[157,32,165,11],[157,33,165,12],[157,37,165,16,"s"],[157,38,165,17],[157,42,165,21,"g"],[157,43,165,22],[157,44,165,23,"j"],[157,45,165,24],[157,46,165,25],[157,49,165,28,"h"],[157,50,165,29],[157,51,165,30,"j"],[157,52,165,31],[157,53,165,32],[157,54,165,33],[158,4,166,4],[158,9,166,9,"j"],[158,10,166,10],[158,13,166,13],[158,14,166,14],[158,16,166,16,"j"],[158,17,166,17],[158,20,166,20],[158,22,166,22],[158,24,166,24,"j"],[158,25,166,25],[158,27,166,27],[158,29,167,8,"c"],[158,30,167,9],[158,31,167,10,"j"],[158,32,167,11],[158,33,167,12],[158,36,167,15,"k"],[158,37,167,16],[158,38,167,17,"j"],[158,39,167,18],[158,42,167,21],[158,44,167,23],[158,45,167,24],[159,4,168,4,"c"],[159,5,168,5],[159,6,168,6],[159,8,168,8],[159,9,168,9],[159,12,168,12],[159,13,168,13],[160,4,169,4,"add1305"],[160,11,169,11],[160,12,169,12,"h"],[160,13,169,13],[160,15,169,15,"c"],[160,16,169,16],[160,17,169,17],[161,4,170,4],[161,9,170,9,"j"],[161,10,170,10],[161,13,170,13],[161,14,170,14],[161,16,170,16,"j"],[161,17,170,17],[161,20,170,20],[161,22,170,22],[161,24,170,24,"j"],[161,25,170,25],[161,27,170,27],[161,29,171,8,"out"],[161,32,171,11],[161,33,171,12,"outpos"],[161,39,171,18],[161,42,171,21,"j"],[161,43,171,22],[161,44,171,23],[161,47,171,26,"h"],[161,48,171,27],[161,49,171,28,"j"],[161,50,171,29],[161,51,171,30],[162,4,172,4],[162,11,172,11],[162,12,172,12],[163,2,173,0],[164,2,174,0],[164,11,174,9,"crypto_onetimeauth_verify"],[164,36,174,34,"crypto_onetimeauth_verify"],[164,37,174,35,"h"],[164,38,174,36],[164,40,174,38,"hpos"],[164,44,174,42],[164,46,174,44,"m"],[164,47,174,45],[164,49,174,47,"mpos"],[164,53,174,51],[164,55,174,53,"n"],[164,56,174,54],[164,58,174,56,"k"],[164,59,174,57],[164,61,174,59],[165,4,175,4],[165,10,175,10,"x"],[165,11,175,11],[165,14,175,14],[165,18,175,18,"Uint8Array"],[165,28,175,28],[165,29,175,29],[165,31,175,31],[165,32,175,32],[166,4,176,4,"crypto_onetimeauth"],[166,22,176,22],[166,23,176,23,"x"],[166,24,176,24],[166,26,176,26],[166,27,176,27],[166,29,176,29,"m"],[166,30,176,30],[166,32,176,32,"mpos"],[166,36,176,36],[166,38,176,38,"n"],[166,39,176,39],[166,41,176,41,"k"],[166,42,176,42],[166,43,176,43],[167,4,177,4],[167,11,177,11,"vn"],[167,13,177,13],[167,14,177,14,"h"],[167,15,177,15],[167,17,177,17,"hpos"],[167,21,177,21],[167,23,177,23,"x"],[167,24,177,24],[167,26,177,26],[167,27,177,27],[167,29,177,29],[167,31,177,31],[167,32,177,32],[168,2,178,0],[169,2,179,0],[169,11,179,9,"crypto_secretbox"],[169,27,179,25,"crypto_secretbox"],[169,28,179,26,"c"],[169,29,179,27],[169,31,179,29,"m"],[169,32,179,30],[169,34,179,32,"d"],[169,35,179,33],[169,37,179,35,"n"],[169,38,179,36],[169,40,179,38,"k"],[169,41,179,39],[169,43,179,41],[170,4,180,4],[170,8,180,8,"d"],[170,9,180,9],[170,12,180,12],[170,14,180,14],[170,16,181,8],[170,23,181,15],[170,24,181,16],[170,25,181,17],[171,4,182,4,"crypto_stream_xor"],[171,21,182,21],[171,22,182,22,"c"],[171,23,182,23],[171,25,182,25],[171,26,182,26],[171,28,182,28,"m"],[171,29,182,29],[171,31,182,31],[171,32,182,32],[171,34,182,34,"d"],[171,35,182,35],[171,37,182,37,"n"],[171,38,182,38],[171,40,182,40,"k"],[171,41,182,41],[171,42,182,42],[172,4,183,4,"crypto_onetimeauth"],[172,22,183,22],[172,23,183,23,"c"],[172,24,183,24],[172,26,183,26],[172,28,183,28],[172,30,183,30,"c"],[172,31,183,31],[172,33,183,33],[172,35,183,35],[172,37,183,37,"d"],[172,38,183,38],[172,41,183,41],[172,43,183,43],[172,45,183,45,"c"],[172,46,183,46],[172,47,183,47],[173,4,184,4],[173,9,184,9],[173,13,184,13,"i"],[173,14,184,14],[173,17,184,17],[173,18,184,18],[173,20,184,20,"i"],[173,21,184,21],[173,24,184,24],[173,26,184,26],[173,28,184,28,"i"],[173,29,184,29],[173,31,184,31],[173,33,185,8,"c"],[173,34,185,9],[173,35,185,10,"i"],[173,36,185,11],[173,37,185,12],[173,40,185,15],[173,41,185,16],[174,4,186,4],[174,11,186,11],[174,12,186,12],[175,2,187,0],[176,2,188,0],[176,11,188,9,"crypto_secretbox_open"],[176,32,188,30,"crypto_secretbox_open"],[176,33,188,31,"m"],[176,34,188,32],[176,36,188,34,"c"],[176,37,188,35],[176,39,188,37,"d"],[176,40,188,38],[176,42,188,40,"n"],[176,43,188,41],[176,45,188,43,"k"],[176,46,188,44],[176,48,188,46],[177,4,189,4],[177,10,189,10,"x"],[177,11,189,11],[177,14,189,14],[177,18,189,18,"Uint8Array"],[177,28,189,28],[177,29,189,29],[177,31,189,31],[177,32,189,32],[178,4,190,4],[178,8,190,8,"d"],[178,9,190,9],[178,12,190,12],[178,14,190,14],[178,16,191,8],[178,23,191,15],[178,24,191,16],[178,25,191,17],[179,4,192,4,"crypto_stream_xor"],[179,21,192,21],[179,22,192,22,"x"],[179,23,192,23],[179,25,192,25],[179,26,192,26],[179,28,192,28],[179,32,192,32],[179,34,192,34],[179,35,192,35],[179,37,192,37],[179,39,192,39],[179,41,192,41,"n"],[179,42,192,42],[179,44,192,44,"k"],[179,45,192,45],[179,46,192,46],[180,4,193,4],[180,8,193,8,"crypto_onetimeauth_verify"],[180,33,193,33],[180,34,193,34,"c"],[180,35,193,35],[180,37,193,37],[180,39,193,39],[180,41,193,41,"c"],[180,42,193,42],[180,44,193,44],[180,46,193,46],[180,48,193,48,"d"],[180,49,193,49],[180,52,193,52],[180,54,193,54],[180,56,193,56,"x"],[180,57,193,57],[180,58,193,58],[180,63,193,63],[180,64,193,64],[180,66,194,8],[180,73,194,15],[180,74,194,16],[180,75,194,17],[181,4,195,4,"crypto_stream_xor"],[181,21,195,21],[181,22,195,22,"m"],[181,23,195,23],[181,25,195,25],[181,26,195,26],[181,28,195,28,"c"],[181,29,195,29],[181,31,195,31],[181,32,195,32],[181,34,195,34,"d"],[181,35,195,35],[181,37,195,37,"n"],[181,38,195,38],[181,40,195,40,"k"],[181,41,195,41],[181,42,195,42],[182,4,196,4],[182,9,196,9],[182,13,196,13,"i"],[182,14,196,14],[182,17,196,17],[182,18,196,18],[182,20,196,20,"i"],[182,21,196,21],[182,24,196,24],[182,26,196,26],[182,28,196,28,"i"],[182,29,196,29],[182,31,196,31],[182,33,197,8,"m"],[182,34,197,9],[182,35,197,10,"i"],[182,36,197,11],[182,37,197,12],[182,40,197,15],[182,41,197,16],[183,4,198,4],[183,11,198,11],[183,12,198,12],[184,2,199,0],[185,2,200,0],[185,8,200,6,"crypto_secretbox_KEYBYTES"],[185,33,200,31],[185,36,200,34],[185,38,200,36],[186,2,201,0],[186,8,201,6,"crypto_secretbox_NONCEBYTES"],[186,35,201,33],[186,38,201,36],[186,40,201,38],[187,2,202,0],[187,8,202,6,"crypto_secretbox_ZEROBYTES"],[187,34,202,32],[187,37,202,35],[187,39,202,37],[188,2,203,0],[188,8,203,6,"crypto_secretbox_BOXZEROBYTES"],[188,37,203,35],[188,40,203,38],[188,42,203,40],[189,2,204,0],[189,11,204,9,"checkLengths"],[189,23,204,21,"checkLengths"],[189,24,204,22,"k"],[189,25,204,23],[189,27,204,25,"n"],[189,28,204,26],[189,30,204,28],[190,4,205,4],[190,8,205,8,"k"],[190,9,205,9],[190,10,205,10,"length"],[190,16,205,16],[190,21,205,21,"crypto_secretbox_KEYBYTES"],[190,46,205,46],[190,48,206,8],[190,54,206,14],[190,58,206,18,"Error"],[190,63,206,23],[190,64,206,24],[190,78,206,38],[190,79,206,39],[191,4,207,4],[191,8,207,8,"n"],[191,9,207,9],[191,10,207,10,"length"],[191,16,207,16],[191,21,207,21,"crypto_secretbox_NONCEBYTES"],[191,48,207,48],[191,50,208,8],[191,56,208,14],[191,60,208,18,"Error"],[191,65,208,23],[191,66,208,24],[191,82,208,40],[191,83,208,41],[192,2,209,0],[193,2,210,0],[193,11,210,9,"checkArrayTypes"],[193,26,210,24,"checkArrayTypes"],[193,27,210,25],[193,30,210,28,"args"],[193,34,210,32],[193,36,210,34],[194,4,211,4],[194,9,211,9],[194,13,211,13,"i"],[194,14,211,14],[194,17,211,17],[194,18,211,18],[194,20,211,20,"count"],[194,25,211,25],[194,28,211,28,"args"],[194,32,211,32],[194,33,211,33,"length"],[194,39,211,39],[194,41,211,41,"i"],[194,42,211,42],[194,45,211,45,"count"],[194,50,211,50],[194,52,211,52,"i"],[194,53,211,53],[194,55,211,55],[194,57,211,57],[195,6,212,8],[195,10,212,12],[195,12,212,14,"args"],[195,16,212,18],[195,17,212,19,"i"],[195,18,212,20],[195,19,212,21],[195,31,212,33,"Uint8Array"],[195,41,212,43],[195,42,212,44],[195,44,213,12],[195,50,213,18],[195,54,213,22,"TypeError"],[195,63,213,31],[195,64,213,32],[195,97,213,65],[195,98,213,66],[196,4,214,4],[197,2,215,0],[198,2,216,0],[198,11,216,9,"naclSecretbox"],[198,24,216,22,"naclSecretbox"],[198,25,216,23,"msg"],[198,28,216,26],[198,30,216,28,"nonce"],[198,35,216,33],[198,37,216,35,"key"],[198,40,216,38],[198,42,216,40],[199,4,217,4,"checkArrayTypes"],[199,19,217,19],[199,20,217,20,"msg"],[199,23,217,23],[199,25,217,25,"nonce"],[199,30,217,30],[199,32,217,32,"key"],[199,35,217,35],[199,36,217,36],[200,4,218,4,"checkLengths"],[200,16,218,16],[200,17,218,17,"key"],[200,20,218,20],[200,22,218,22,"nonce"],[200,27,218,27],[200,28,218,28],[201,4,219,4],[201,10,219,10,"m"],[201,11,219,11],[201,14,219,14],[201,18,219,18,"Uint8Array"],[201,28,219,28],[201,29,219,29,"crypto_secretbox_ZEROBYTES"],[201,55,219,55],[201,58,219,58,"msg"],[201,61,219,61],[201,62,219,62,"length"],[201,68,219,68],[201,69,219,69],[202,4,220,4],[202,10,220,10,"c"],[202,11,220,11],[202,14,220,14],[202,18,220,18,"Uint8Array"],[202,28,220,28],[202,29,220,29,"m"],[202,30,220,30],[202,31,220,31,"length"],[202,37,220,37],[202,38,220,38],[203,4,221,4],[203,9,221,9],[203,13,221,13,"i"],[203,14,221,14],[203,17,221,17],[203,18,221,18],[203,20,221,20,"i"],[203,21,221,21],[203,24,221,24,"msg"],[203,27,221,27],[203,28,221,28,"length"],[203,34,221,34],[203,36,221,36,"i"],[203,37,221,37],[203,39,221,39],[203,41,222,8,"m"],[203,42,222,9],[203,43,222,10,"i"],[203,44,222,11],[203,47,222,14,"crypto_secretbox_ZEROBYTES"],[203,73,222,40],[203,74,222,41],[203,77,222,44,"msg"],[203,80,222,47],[203,81,222,48,"i"],[203,82,222,49],[203,83,222,50],[204,4,223,4,"crypto_secretbox"],[204,20,223,20],[204,21,223,21,"c"],[204,22,223,22],[204,24,223,24,"m"],[204,25,223,25],[204,27,223,27,"m"],[204,28,223,28],[204,29,223,29,"length"],[204,35,223,35],[204,37,223,37,"nonce"],[204,42,223,42],[204,44,223,44,"key"],[204,47,223,47],[204,48,223,48],[205,4,224,4],[205,11,224,11,"c"],[205,12,224,12],[205,13,224,13,"subarray"],[205,21,224,21],[205,22,224,22,"crypto_secretbox_BOXZEROBYTES"],[205,51,224,51],[205,52,224,52],[206,2,225,0],[207,2,226,0],[207,11,226,9,"naclSecretboxOpen"],[207,28,226,26,"naclSecretboxOpen"],[207,29,226,27,"box"],[207,32,226,30],[207,34,226,32,"nonce"],[207,39,226,37],[207,41,226,39,"key"],[207,44,226,42],[207,46,226,44],[208,4,227,4,"checkArrayTypes"],[208,19,227,19],[208,20,227,20,"box"],[208,23,227,23],[208,25,227,25,"nonce"],[208,30,227,30],[208,32,227,32,"key"],[208,35,227,35],[208,36,227,36],[209,4,228,4,"checkLengths"],[209,16,228,16],[209,17,228,17,"key"],[209,20,228,20],[209,22,228,22,"nonce"],[209,27,228,27],[209,28,228,28],[210,4,229,4],[210,10,229,10,"c"],[210,11,229,11],[210,14,229,14],[210,18,229,18,"Uint8Array"],[210,28,229,28],[210,29,229,29,"crypto_secretbox_BOXZEROBYTES"],[210,58,229,58],[210,61,229,61,"box"],[210,64,229,64],[210,65,229,65,"length"],[210,71,229,71],[210,72,229,72],[211,4,230,4],[211,10,230,10,"m"],[211,11,230,11],[211,14,230,14],[211,18,230,18,"Uint8Array"],[211,28,230,28],[211,29,230,29,"c"],[211,30,230,30],[211,31,230,31,"length"],[211,37,230,37],[211,38,230,38],[212,4,231,4],[212,9,231,9],[212,13,231,13,"i"],[212,14,231,14],[212,17,231,17],[212,18,231,18],[212,20,231,20,"i"],[212,21,231,21],[212,24,231,24,"box"],[212,27,231,27],[212,28,231,28,"length"],[212,34,231,34],[212,36,231,36,"i"],[212,37,231,37],[212,39,231,39],[212,41,232,8,"c"],[212,42,232,9],[212,43,232,10,"i"],[212,44,232,11],[212,47,232,14,"crypto_secretbox_BOXZEROBYTES"],[212,76,232,43],[212,77,232,44],[212,80,232,47,"box"],[212,83,232,50],[212,84,232,51,"i"],[212,85,232,52],[212,86,232,53],[213,4,233,4],[213,8,233,8,"c"],[213,9,233,9],[213,10,233,10,"length"],[213,16,233,16],[213,19,233,19],[213,21,233,21],[213,23,234,8],[213,30,234,15],[213,34,234,19],[214,4,235,4],[214,8,235,8,"crypto_secretbox_open"],[214,29,235,29],[214,30,235,30,"m"],[214,31,235,31],[214,33,235,33,"c"],[214,34,235,34],[214,36,235,36,"c"],[214,37,235,37],[214,38,235,38,"length"],[214,44,235,44],[214,46,235,46,"nonce"],[214,51,235,51],[214,53,235,53,"key"],[214,56,235,56],[214,57,235,57],[214,62,235,62],[214,63,235,63],[214,65,236,8],[214,72,236,15],[214,76,236,19],[215,4,237,4],[215,11,237,11,"m"],[215,12,237,12],[215,13,237,13,"subarray"],[215,21,237,21],[215,22,237,22,"crypto_secretbox_ZEROBYTES"],[215,48,237,48],[215,49,237,49],[216,2,238,0],[217,0,238,1],[217,3]],"functionMap":{"names":["<global>","L32","ld32","st32","vn","core","crypto_stream_salsa20_xor","crypto_stream_xor","add1305","crypto_onetimeauth","crypto_onetimeauth_verify","crypto_secretbox","crypto_secretbox_open","checkLengths","checkArrayTypes","naclSecretbox","naclSecretboxOpen"],"mappings":"AAA;ACK,0DD;AEC;CFK;AGC;CHK;AIC;CJK;AKC;CLyC;AME;CN8B;AOC;CPI;AQC;CRO;ASE;CT4D;AUC;CVI;AWC;CXQ;AYC;CZW;AaK;CbK;AcC;CdK;AeC;CfS;AgBC;ChBY"},"hasCjsExports":true},"type":"js/module"}]}