mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 03:01:04 +00:00
1 line
42 KiB
Plaintext
1 line
42 KiB
Plaintext
{"dependencies":[{"name":"@stablelib/binary","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":8,"column":15,"index":236},"end":{"line":8,"column":43,"index":264}}],"key":"YhbOUtcfas8HB9QOUT8p9FPcaiA=","exportNames":["*"],"imports":1}},{"name":"@stablelib/wipe","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":9,"column":13,"index":279},"end":{"line":9,"column":39,"index":305}}],"key":"TyIdzPP7juhR0JJ+s4X6EUIb7Vg=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n // Copyright (C) 2016 Dmitry Chestnykh\n // MIT License. See LICENSE file for details.\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n /**\n * Package chacha implements ChaCha stream cipher.\n */\n var binary_1 = require(_dependencyMap[0], \"@stablelib/binary\");\n var wipe_1 = require(_dependencyMap[1], \"@stablelib/wipe\");\n // Number of ChaCha rounds (ChaCha20).\n var ROUNDS = 20;\n // Applies the ChaCha core function to 16-byte input,\n // 32-byte key key, and puts the result into 64-byte array out.\n function core(out, input, key) {\n var j0 = 0x61707865; // \"expa\" -- ChaCha's \"sigma\" constant\n var j1 = 0x3320646E; // \"nd 3\" for 32-byte keys\n var j2 = 0x79622D32; // \"2-by\"\n var j3 = 0x6B206574; // \"te k\"\n var j4 = key[3] << 24 | key[2] << 16 | key[1] << 8 | key[0];\n var j5 = key[7] << 24 | key[6] << 16 | key[5] << 8 | key[4];\n var j6 = key[11] << 24 | key[10] << 16 | key[9] << 8 | key[8];\n var j7 = key[15] << 24 | key[14] << 16 | key[13] << 8 | key[12];\n var j8 = key[19] << 24 | key[18] << 16 | key[17] << 8 | key[16];\n var j9 = key[23] << 24 | key[22] << 16 | key[21] << 8 | key[20];\n var j10 = key[27] << 24 | key[26] << 16 | key[25] << 8 | key[24];\n var j11 = key[31] << 24 | key[30] << 16 | key[29] << 8 | key[28];\n var j12 = input[3] << 24 | input[2] << 16 | input[1] << 8 | input[0];\n var j13 = input[7] << 24 | input[6] << 16 | input[5] << 8 | input[4];\n var j14 = input[11] << 24 | input[10] << 16 | input[9] << 8 | input[8];\n var j15 = input[15] << 24 | input[14] << 16 | input[13] << 8 | input[12];\n var x0 = j0;\n var x1 = j1;\n var x2 = j2;\n var x3 = j3;\n var x4 = j4;\n var x5 = j5;\n var x6 = j6;\n var x7 = j7;\n var x8 = j8;\n var x9 = j9;\n var x10 = j10;\n var x11 = j11;\n var x12 = j12;\n var x13 = j13;\n var x14 = j14;\n var x15 = j15;\n for (var i = 0; i < ROUNDS; i += 2) {\n x0 = x0 + x4 | 0;\n x12 ^= x0;\n x12 = x12 >>> 32 - 16 | x12 << 16;\n x8 = x8 + x12 | 0;\n x4 ^= x8;\n x4 = x4 >>> 32 - 12 | x4 << 12;\n x1 = x1 + x5 | 0;\n x13 ^= x1;\n x13 = x13 >>> 32 - 16 | x13 << 16;\n x9 = x9 + x13 | 0;\n x5 ^= x9;\n x5 = x5 >>> 32 - 12 | x5 << 12;\n x2 = x2 + x6 | 0;\n x14 ^= x2;\n x14 = x14 >>> 32 - 16 | x14 << 16;\n x10 = x10 + x14 | 0;\n x6 ^= x10;\n x6 = x6 >>> 32 - 12 | x6 << 12;\n x3 = x3 + x7 | 0;\n x15 ^= x3;\n x15 = x15 >>> 32 - 16 | x15 << 16;\n x11 = x11 + x15 | 0;\n x7 ^= x11;\n x7 = x7 >>> 32 - 12 | x7 << 12;\n x2 = x2 + x6 | 0;\n x14 ^= x2;\n x14 = x14 >>> 32 - 8 | x14 << 8;\n x10 = x10 + x14 | 0;\n x6 ^= x10;\n x6 = x6 >>> 32 - 7 | x6 << 7;\n x3 = x3 + x7 | 0;\n x15 ^= x3;\n x15 = x15 >>> 32 - 8 | x15 << 8;\n x11 = x11 + x15 | 0;\n x7 ^= x11;\n x7 = x7 >>> 32 - 7 | x7 << 7;\n x1 = x1 + x5 | 0;\n x13 ^= x1;\n x13 = x13 >>> 32 - 8 | x13 << 8;\n x9 = x9 + x13 | 0;\n x5 ^= x9;\n x5 = x5 >>> 32 - 7 | x5 << 7;\n x0 = x0 + x4 | 0;\n x12 ^= x0;\n x12 = x12 >>> 32 - 8 | x12 << 8;\n x8 = x8 + x12 | 0;\n x4 ^= x8;\n x4 = x4 >>> 32 - 7 | x4 << 7;\n x0 = x0 + x5 | 0;\n x15 ^= x0;\n x15 = x15 >>> 32 - 16 | x15 << 16;\n x10 = x10 + x15 | 0;\n x5 ^= x10;\n x5 = x5 >>> 32 - 12 | x5 << 12;\n x1 = x1 + x6 | 0;\n x12 ^= x1;\n x12 = x12 >>> 32 - 16 | x12 << 16;\n x11 = x11 + x12 | 0;\n x6 ^= x11;\n x6 = x6 >>> 32 - 12 | x6 << 12;\n x2 = x2 + x7 | 0;\n x13 ^= x2;\n x13 = x13 >>> 32 - 16 | x13 << 16;\n x8 = x8 + x13 | 0;\n x7 ^= x8;\n x7 = x7 >>> 32 - 12 | x7 << 12;\n x3 = x3 + x4 | 0;\n x14 ^= x3;\n x14 = x14 >>> 32 - 16 | x14 << 16;\n x9 = x9 + x14 | 0;\n x4 ^= x9;\n x4 = x4 >>> 32 - 12 | x4 << 12;\n x2 = x2 + x7 | 0;\n x13 ^= x2;\n x13 = x13 >>> 32 - 8 | x13 << 8;\n x8 = x8 + x13 | 0;\n x7 ^= x8;\n x7 = x7 >>> 32 - 7 | x7 << 7;\n x3 = x3 + x4 | 0;\n x14 ^= x3;\n x14 = x14 >>> 32 - 8 | x14 << 8;\n x9 = x9 + x14 | 0;\n x4 ^= x9;\n x4 = x4 >>> 32 - 7 | x4 << 7;\n x1 = x1 + x6 | 0;\n x12 ^= x1;\n x12 = x12 >>> 32 - 8 | x12 << 8;\n x11 = x11 + x12 | 0;\n x6 ^= x11;\n x6 = x6 >>> 32 - 7 | x6 << 7;\n x0 = x0 + x5 | 0;\n x15 ^= x0;\n x15 = x15 >>> 32 - 8 | x15 << 8;\n x10 = x10 + x15 | 0;\n x5 ^= x10;\n x5 = x5 >>> 32 - 7 | x5 << 7;\n }\n binary_1.writeUint32LE(x0 + j0 | 0, out, 0);\n binary_1.writeUint32LE(x1 + j1 | 0, out, 4);\n binary_1.writeUint32LE(x2 + j2 | 0, out, 8);\n binary_1.writeUint32LE(x3 + j3 | 0, out, 12);\n binary_1.writeUint32LE(x4 + j4 | 0, out, 16);\n binary_1.writeUint32LE(x5 + j5 | 0, out, 20);\n binary_1.writeUint32LE(x6 + j6 | 0, out, 24);\n binary_1.writeUint32LE(x7 + j7 | 0, out, 28);\n binary_1.writeUint32LE(x8 + j8 | 0, out, 32);\n binary_1.writeUint32LE(x9 + j9 | 0, out, 36);\n binary_1.writeUint32LE(x10 + j10 | 0, out, 40);\n binary_1.writeUint32LE(x11 + j11 | 0, out, 44);\n binary_1.writeUint32LE(x12 + j12 | 0, out, 48);\n binary_1.writeUint32LE(x13 + j13 | 0, out, 52);\n binary_1.writeUint32LE(x14 + j14 | 0, out, 56);\n binary_1.writeUint32LE(x15 + j15 | 0, out, 60);\n }\n /**\n * Encrypt src with ChaCha20 stream generated for the given 32-byte key and\n * 8-byte (as in original implementation) or 12-byte (as in RFC7539) nonce and\n * write the result into dst and return it.\n *\n * dst and src may be the same, but otherwise must not overlap.\n *\n * If nonce is 12 bytes, users should not encrypt more than 256 GiB with the\n * same key and nonce, otherwise the stream will repeat. The function will\n * throw error if counter overflows to prevent this.\n *\n * If nonce is 8 bytes, the output is practically unlimited (2^70 bytes, which\n * is more than a million petabytes). However, it is not recommended to\n * generate 8-byte nonces randomly, as the chance of collision is high.\n *\n * Never use the same key and nonce to encrypt more than one message.\n *\n * If nonceInplaceCounterLength is not 0, the nonce is assumed to be a 16-byte\n * array with stream counter in first nonceInplaceCounterLength bytes and nonce\n * in the last remaining bytes. The counter will be incremented inplace for\n * each ChaCha block. This is useful if you need to encrypt one stream of data\n * in chunks.\n */\n function streamXOR(key, nonce, src, dst, nonceInplaceCounterLength) {\n if (nonceInplaceCounterLength === void 0) {\n nonceInplaceCounterLength = 0;\n }\n // We only support 256-bit keys.\n if (key.length !== 32) {\n throw new Error(\"ChaCha: key size must be 32 bytes\");\n }\n if (dst.length < src.length) {\n throw new Error(\"ChaCha: destination is shorter than source\");\n }\n var nc;\n var counterLength;\n if (nonceInplaceCounterLength === 0) {\n if (nonce.length !== 8 && nonce.length !== 12) {\n throw new Error(\"ChaCha nonce must be 8 or 12 bytes\");\n }\n nc = new Uint8Array(16);\n // First counterLength bytes of nc are counter, starting with zero.\n counterLength = nc.length - nonce.length;\n // Last bytes of nc after counterLength are nonce, set them.\n nc.set(nonce, counterLength);\n } else {\n if (nonce.length !== 16) {\n throw new Error(\"ChaCha nonce with counter must be 16 bytes\");\n }\n // This will update passed nonce with counter inplace.\n nc = nonce;\n counterLength = nonceInplaceCounterLength;\n }\n // Allocate temporary space for ChaCha block.\n var block = new Uint8Array(64);\n for (var i = 0; i < src.length; i += 64) {\n // Generate a block.\n core(block, nc, key);\n // XOR block bytes with src into dst.\n for (var j = i; j < i + 64 && j < src.length; j++) {\n dst[j] = src[j] ^ block[j - i];\n }\n // Increment counter.\n incrementCounter(nc, 0, counterLength);\n }\n // Cleanup temporary space.\n wipe_1.wipe(block);\n if (nonceInplaceCounterLength === 0) {\n // Cleanup counter.\n wipe_1.wipe(nc);\n }\n return dst;\n }\n exports.streamXOR = streamXOR;\n /**\n * Generate ChaCha20 stream for the given 32-byte key and 8-byte or 12-byte\n * nonce and write it into dst and return it.\n *\n * Never use the same key and nonce to generate more than one stream.\n *\n * If nonceInplaceCounterLength is not 0, it behaves the same with respect to\n * the nonce as described in the streamXOR documentation.\n *\n * stream is like streamXOR with all-zero src.\n */\n function stream(key, nonce, dst, nonceInplaceCounterLength) {\n if (nonceInplaceCounterLength === void 0) {\n nonceInplaceCounterLength = 0;\n }\n wipe_1.wipe(dst);\n return streamXOR(key, nonce, dst, dst, nonceInplaceCounterLength);\n }\n exports.stream = stream;\n function incrementCounter(counter, pos, len) {\n var carry = 1;\n while (len--) {\n carry = carry + (counter[pos] & 0xff) | 0;\n counter[pos] = carry & 0xff;\n carry >>>= 8;\n pos++;\n }\n if (carry > 0) {\n throw new Error(\"ChaCha: counter overflow\");\n }\n }\n});","lineCount":271,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0],[5,2,3,0],[6,2,4,0,"Object"],[6,8,4,6],[6,9,4,7,"defineProperty"],[6,23,4,21],[6,24,4,22,"exports"],[6,31,4,29],[6,33,4,31],[6,45,4,43],[6,47,4,45],[7,4,4,47,"value"],[7,9,4,52],[7,11,4,54],[8,2,4,59],[8,3,4,60],[8,4,4,61],[9,2,5,0],[10,0,6,0],[11,0,7,0],[12,2,8,0],[12,6,8,4,"binary_1"],[12,14,8,12],[12,17,8,15,"require"],[12,24,8,22],[12,25,8,22,"_dependencyMap"],[12,39,8,22],[12,63,8,42],[12,64,8,43],[13,2,9,0],[13,6,9,4,"wipe_1"],[13,12,9,10],[13,15,9,13,"require"],[13,22,9,20],[13,23,9,20,"_dependencyMap"],[13,37,9,20],[13,59,9,38],[13,60,9,39],[14,2,10,0],[15,2,11,0],[15,6,11,4,"ROUNDS"],[15,12,11,10],[15,15,11,13],[15,17,11,15],[16,2,12,0],[17,2,13,0],[18,2,14,0],[18,11,14,9,"core"],[18,15,14,13,"core"],[18,16,14,14,"out"],[18,19,14,17],[18,21,14,19,"input"],[18,26,14,24],[18,28,14,26,"key"],[18,31,14,29],[18,33,14,31],[19,4,15,4],[19,8,15,8,"j0"],[19,10,15,10],[19,13,15,13],[19,23,15,23],[19,24,15,24],[19,25,15,25],[20,4,16,4],[20,8,16,8,"j1"],[20,10,16,10],[20,13,16,13],[20,23,16,23],[20,24,16,24],[20,25,16,25],[21,4,17,4],[21,8,17,8,"j2"],[21,10,17,10],[21,13,17,13],[21,23,17,23],[21,24,17,24],[21,25,17,25],[22,4,18,4],[22,8,18,8,"j3"],[22,10,18,10],[22,13,18,13],[22,23,18,23],[22,24,18,24],[22,25,18,25],[23,4,19,4],[23,8,19,8,"j4"],[23,10,19,10],[23,13,19,14,"key"],[23,16,19,17],[23,17,19,18],[23,18,19,19],[23,19,19,20],[23,23,19,24],[23,25,19,26],[23,28,19,31,"key"],[23,31,19,34],[23,32,19,35],[23,33,19,36],[23,34,19,37],[23,38,19,41],[23,40,19,44],[23,43,19,48,"key"],[23,46,19,51],[23,47,19,52],[23,48,19,53],[23,49,19,54],[23,53,19,58],[23,54,19,60],[23,57,19,63,"key"],[23,60,19,66],[23,61,19,67],[23,62,19,68],[23,63,19,69],[24,4,20,4],[24,8,20,8,"j5"],[24,10,20,10],[24,13,20,14,"key"],[24,16,20,17],[24,17,20,18],[24,18,20,19],[24,19,20,20],[24,23,20,24],[24,25,20,26],[24,28,20,31,"key"],[24,31,20,34],[24,32,20,35],[24,33,20,36],[24,34,20,37],[24,38,20,41],[24,40,20,44],[24,43,20,48,"key"],[24,46,20,51],[24,47,20,52],[24,48,20,53],[24,49,20,54],[24,53,20,58],[24,54,20,60],[24,57,20,63,"key"],[24,60,20,66],[24,61,20,67],[24,62,20,68],[24,63,20,69],[25,4,21,4],[25,8,21,8,"j6"],[25,10,21,10],[25,13,21,14,"key"],[25,16,21,17],[25,17,21,18],[25,19,21,20],[25,20,21,21],[25,24,21,25],[25,26,21,27],[25,29,21,32,"key"],[25,32,21,35],[25,33,21,36],[25,35,21,38],[25,36,21,39],[25,40,21,43],[25,42,21,46],[25,45,21,50,"key"],[25,48,21,53],[25,49,21,54],[25,50,21,55],[25,51,21,56],[25,55,21,60],[25,56,21,62],[25,59,21,65,"key"],[25,62,21,68],[25,63,21,69],[25,64,21,70],[25,65,21,71],[26,4,22,4],[26,8,22,8,"j7"],[26,10,22,10],[26,13,22,14,"key"],[26,16,22,17],[26,17,22,18],[26,19,22,20],[26,20,22,21],[26,24,22,25],[26,26,22,27],[26,29,22,32,"key"],[26,32,22,35],[26,33,22,36],[26,35,22,38],[26,36,22,39],[26,40,22,43],[26,42,22,46],[26,45,22,50,"key"],[26,48,22,53],[26,49,22,54],[26,51,22,56],[26,52,22,57],[26,56,22,61],[26,57,22,63],[26,60,22,66,"key"],[26,63,22,69],[26,64,22,70],[26,66,22,72],[26,67,22,73],[27,4,23,4],[27,8,23,8,"j8"],[27,10,23,10],[27,13,23,14,"key"],[27,16,23,17],[27,17,23,18],[27,19,23,20],[27,20,23,21],[27,24,23,25],[27,26,23,27],[27,29,23,32,"key"],[27,32,23,35],[27,33,23,36],[27,35,23,38],[27,36,23,39],[27,40,23,43],[27,42,23,46],[27,45,23,50,"key"],[27,48,23,53],[27,49,23,54],[27,51,23,56],[27,52,23,57],[27,56,23,61],[27,57,23,63],[27,60,23,66,"key"],[27,63,23,69],[27,64,23,70],[27,66,23,72],[27,67,23,73],[28,4,24,4],[28,8,24,8,"j9"],[28,10,24,10],[28,13,24,14,"key"],[28,16,24,17],[28,17,24,18],[28,19,24,20],[28,20,24,21],[28,24,24,25],[28,26,24,27],[28,29,24,32,"key"],[28,32,24,35],[28,33,24,36],[28,35,24,38],[28,36,24,39],[28,40,24,43],[28,42,24,46],[28,45,24,50,"key"],[28,48,24,53],[28,49,24,54],[28,51,24,56],[28,52,24,57],[28,56,24,61],[28,57,24,63],[28,60,24,66,"key"],[28,63,24,69],[28,64,24,70],[28,66,24,72],[28,67,24,73],[29,4,25,4],[29,8,25,8,"j10"],[29,11,25,11],[29,14,25,15,"key"],[29,17,25,18],[29,18,25,19],[29,20,25,21],[29,21,25,22],[29,25,25,26],[29,27,25,28],[29,30,25,33,"key"],[29,33,25,36],[29,34,25,37],[29,36,25,39],[29,37,25,40],[29,41,25,44],[29,43,25,47],[29,46,25,51,"key"],[29,49,25,54],[29,50,25,55],[29,52,25,57],[29,53,25,58],[29,57,25,62],[29,58,25,64],[29,61,25,67,"key"],[29,64,25,70],[29,65,25,71],[29,67,25,73],[29,68,25,74],[30,4,26,4],[30,8,26,8,"j11"],[30,11,26,11],[30,14,26,15,"key"],[30,17,26,18],[30,18,26,19],[30,20,26,21],[30,21,26,22],[30,25,26,26],[30,27,26,28],[30,30,26,33,"key"],[30,33,26,36],[30,34,26,37],[30,36,26,39],[30,37,26,40],[30,41,26,44],[30,43,26,47],[30,46,26,51,"key"],[30,49,26,54],[30,50,26,55],[30,52,26,57],[30,53,26,58],[30,57,26,62],[30,58,26,64],[30,61,26,67,"key"],[30,64,26,70],[30,65,26,71],[30,67,26,73],[30,68,26,74],[31,4,27,4],[31,8,27,8,"j12"],[31,11,27,11],[31,14,27,15,"input"],[31,19,27,20],[31,20,27,21],[31,21,27,22],[31,22,27,23],[31,26,27,27],[31,28,27,29],[31,31,27,34,"input"],[31,36,27,39],[31,37,27,40],[31,38,27,41],[31,39,27,42],[31,43,27,46],[31,45,27,49],[31,48,27,53,"input"],[31,53,27,58],[31,54,27,59],[31,55,27,60],[31,56,27,61],[31,60,27,65],[31,61,27,67],[31,64,27,70,"input"],[31,69,27,75],[31,70,27,76],[31,71,27,77],[31,72,27,78],[32,4,28,4],[32,8,28,8,"j13"],[32,11,28,11],[32,14,28,15,"input"],[32,19,28,20],[32,20,28,21],[32,21,28,22],[32,22,28,23],[32,26,28,27],[32,28,28,29],[32,31,28,34,"input"],[32,36,28,39],[32,37,28,40],[32,38,28,41],[32,39,28,42],[32,43,28,46],[32,45,28,49],[32,48,28,53,"input"],[32,53,28,58],[32,54,28,59],[32,55,28,60],[32,56,28,61],[32,60,28,65],[32,61,28,67],[32,64,28,70,"input"],[32,69,28,75],[32,70,28,76],[32,71,28,77],[32,72,28,78],[33,4,29,4],[33,8,29,8,"j14"],[33,11,29,11],[33,14,29,15,"input"],[33,19,29,20],[33,20,29,21],[33,22,29,23],[33,23,29,24],[33,27,29,28],[33,29,29,30],[33,32,29,35,"input"],[33,37,29,40],[33,38,29,41],[33,40,29,43],[33,41,29,44],[33,45,29,48],[33,47,29,51],[33,50,29,55,"input"],[33,55,29,60],[33,56,29,61],[33,57,29,62],[33,58,29,63],[33,62,29,67],[33,63,29,69],[33,66,29,72,"input"],[33,71,29,77],[33,72,29,78],[33,73,29,79],[33,74,29,80],[34,4,30,4],[34,8,30,8,"j15"],[34,11,30,11],[34,14,30,15,"input"],[34,19,30,20],[34,20,30,21],[34,22,30,23],[34,23,30,24],[34,27,30,28],[34,29,30,30],[34,32,30,35,"input"],[34,37,30,40],[34,38,30,41],[34,40,30,43],[34,41,30,44],[34,45,30,48],[34,47,30,51],[34,50,30,55,"input"],[34,55,30,60],[34,56,30,61],[34,58,30,63],[34,59,30,64],[34,63,30,68],[34,64,30,70],[34,67,30,73,"input"],[34,72,30,78],[34,73,30,79],[34,75,30,81],[34,76,30,82],[35,4,31,4],[35,8,31,8,"x0"],[35,10,31,10],[35,13,31,13,"j0"],[35,15,31,15],[36,4,32,4],[36,8,32,8,"x1"],[36,10,32,10],[36,13,32,13,"j1"],[36,15,32,15],[37,4,33,4],[37,8,33,8,"x2"],[37,10,33,10],[37,13,33,13,"j2"],[37,15,33,15],[38,4,34,4],[38,8,34,8,"x3"],[38,10,34,10],[38,13,34,13,"j3"],[38,15,34,15],[39,4,35,4],[39,8,35,8,"x4"],[39,10,35,10],[39,13,35,13,"j4"],[39,15,35,15],[40,4,36,4],[40,8,36,8,"x5"],[40,10,36,10],[40,13,36,13,"j5"],[40,15,36,15],[41,4,37,4],[41,8,37,8,"x6"],[41,10,37,10],[41,13,37,13,"j6"],[41,15,37,15],[42,4,38,4],[42,8,38,8,"x7"],[42,10,38,10],[42,13,38,13,"j7"],[42,15,38,15],[43,4,39,4],[43,8,39,8,"x8"],[43,10,39,10],[43,13,39,13,"j8"],[43,15,39,15],[44,4,40,4],[44,8,40,8,"x9"],[44,10,40,10],[44,13,40,13,"j9"],[44,15,40,15],[45,4,41,4],[45,8,41,8,"x10"],[45,11,41,11],[45,14,41,14,"j10"],[45,17,41,17],[46,4,42,4],[46,8,42,8,"x11"],[46,11,42,11],[46,14,42,14,"j11"],[46,17,42,17],[47,4,43,4],[47,8,43,8,"x12"],[47,11,43,11],[47,14,43,14,"j12"],[47,17,43,17],[48,4,44,4],[48,8,44,8,"x13"],[48,11,44,11],[48,14,44,14,"j13"],[48,17,44,17],[49,4,45,4],[49,8,45,8,"x14"],[49,11,45,11],[49,14,45,14,"j14"],[49,17,45,17],[50,4,46,4],[50,8,46,8,"x15"],[50,11,46,11],[50,14,46,14,"j15"],[50,17,46,17],[51,4,47,4],[51,9,47,9],[51,13,47,13,"i"],[51,14,47,14],[51,17,47,17],[51,18,47,18],[51,20,47,20,"i"],[51,21,47,21],[51,24,47,24,"ROUNDS"],[51,30,47,30],[51,32,47,32,"i"],[51,33,47,33],[51,37,47,37],[51,38,47,38],[51,40,47,40],[52,6,48,8,"x0"],[52,8,48,10],[52,11,48,13,"x0"],[52,13,48,15],[52,16,48,18,"x4"],[52,18,48,20],[52,21,48,23],[52,22,48,24],[53,6,49,8,"x12"],[53,9,49,11],[53,13,49,15,"x0"],[53,15,49,17],[54,6,50,8,"x12"],[54,9,50,11],[54,12,50,14,"x12"],[54,15,50,17],[54,20,50,23],[54,22,50,25],[54,25,50,28],[54,27,50,31],[54,30,50,34,"x12"],[54,33,50,37],[54,37,50,41],[54,39,50,43],[55,6,51,8,"x8"],[55,8,51,10],[55,11,51,13,"x8"],[55,13,51,15],[55,16,51,18,"x12"],[55,19,51,21],[55,22,51,24],[55,23,51,25],[56,6,52,8,"x4"],[56,8,52,10],[56,12,52,14,"x8"],[56,14,52,16],[57,6,53,8,"x4"],[57,8,53,10],[57,11,53,13,"x4"],[57,13,53,15],[57,18,53,21],[57,20,53,23],[57,23,53,26],[57,25,53,29],[57,28,53,32,"x4"],[57,30,53,34],[57,34,53,38],[57,36,53,40],[58,6,54,8,"x1"],[58,8,54,10],[58,11,54,13,"x1"],[58,13,54,15],[58,16,54,18,"x5"],[58,18,54,20],[58,21,54,23],[58,22,54,24],[59,6,55,8,"x13"],[59,9,55,11],[59,13,55,15,"x1"],[59,15,55,17],[60,6,56,8,"x13"],[60,9,56,11],[60,12,56,14,"x13"],[60,15,56,17],[60,20,56,23],[60,22,56,25],[60,25,56,28],[60,27,56,31],[60,30,56,34,"x13"],[60,33,56,37],[60,37,56,41],[60,39,56,43],[61,6,57,8,"x9"],[61,8,57,10],[61,11,57,13,"x9"],[61,13,57,15],[61,16,57,18,"x13"],[61,19,57,21],[61,22,57,24],[61,23,57,25],[62,6,58,8,"x5"],[62,8,58,10],[62,12,58,14,"x9"],[62,14,58,16],[63,6,59,8,"x5"],[63,8,59,10],[63,11,59,13,"x5"],[63,13,59,15],[63,18,59,21],[63,20,59,23],[63,23,59,26],[63,25,59,29],[63,28,59,32,"x5"],[63,30,59,34],[63,34,59,38],[63,36,59,40],[64,6,60,8,"x2"],[64,8,60,10],[64,11,60,13,"x2"],[64,13,60,15],[64,16,60,18,"x6"],[64,18,60,20],[64,21,60,23],[64,22,60,24],[65,6,61,8,"x14"],[65,9,61,11],[65,13,61,15,"x2"],[65,15,61,17],[66,6,62,8,"x14"],[66,9,62,11],[66,12,62,14,"x14"],[66,15,62,17],[66,20,62,23],[66,22,62,25],[66,25,62,28],[66,27,62,31],[66,30,62,34,"x14"],[66,33,62,37],[66,37,62,41],[66,39,62,43],[67,6,63,8,"x10"],[67,9,63,11],[67,12,63,14,"x10"],[67,15,63,17],[67,18,63,20,"x14"],[67,21,63,23],[67,24,63,26],[67,25,63,27],[68,6,64,8,"x6"],[68,8,64,10],[68,12,64,14,"x10"],[68,15,64,17],[69,6,65,8,"x6"],[69,8,65,10],[69,11,65,13,"x6"],[69,13,65,15],[69,18,65,21],[69,20,65,23],[69,23,65,26],[69,25,65,29],[69,28,65,32,"x6"],[69,30,65,34],[69,34,65,38],[69,36,65,40],[70,6,66,8,"x3"],[70,8,66,10],[70,11,66,13,"x3"],[70,13,66,15],[70,16,66,18,"x7"],[70,18,66,20],[70,21,66,23],[70,22,66,24],[71,6,67,8,"x15"],[71,9,67,11],[71,13,67,15,"x3"],[71,15,67,17],[72,6,68,8,"x15"],[72,9,68,11],[72,12,68,14,"x15"],[72,15,68,17],[72,20,68,23],[72,22,68,25],[72,25,68,28],[72,27,68,31],[72,30,68,34,"x15"],[72,33,68,37],[72,37,68,41],[72,39,68,43],[73,6,69,8,"x11"],[73,9,69,11],[73,12,69,14,"x11"],[73,15,69,17],[73,18,69,20,"x15"],[73,21,69,23],[73,24,69,26],[73,25,69,27],[74,6,70,8,"x7"],[74,8,70,10],[74,12,70,14,"x11"],[74,15,70,17],[75,6,71,8,"x7"],[75,8,71,10],[75,11,71,13,"x7"],[75,13,71,15],[75,18,71,21],[75,20,71,23],[75,23,71,26],[75,25,71,29],[75,28,71,32,"x7"],[75,30,71,34],[75,34,71,38],[75,36,71,40],[76,6,72,8,"x2"],[76,8,72,10],[76,11,72,13,"x2"],[76,13,72,15],[76,16,72,18,"x6"],[76,18,72,20],[76,21,72,23],[76,22,72,24],[77,6,73,8,"x14"],[77,9,73,11],[77,13,73,15,"x2"],[77,15,73,17],[78,6,74,8,"x14"],[78,9,74,11],[78,12,74,14,"x14"],[78,15,74,17],[78,20,74,23],[78,22,74,25],[78,25,74,28],[78,26,74,30],[78,29,74,33,"x14"],[78,32,74,36],[78,36,74,40],[78,37,74,41],[79,6,75,8,"x10"],[79,9,75,11],[79,12,75,14,"x10"],[79,15,75,17],[79,18,75,20,"x14"],[79,21,75,23],[79,24,75,26],[79,25,75,27],[80,6,76,8,"x6"],[80,8,76,10],[80,12,76,14,"x10"],[80,15,76,17],[81,6,77,8,"x6"],[81,8,77,10],[81,11,77,13,"x6"],[81,13,77,15],[81,18,77,21],[81,20,77,23],[81,23,77,26],[81,24,77,28],[81,27,77,31,"x6"],[81,29,77,33],[81,33,77,37],[81,34,77,38],[82,6,78,8,"x3"],[82,8,78,10],[82,11,78,13,"x3"],[82,13,78,15],[82,16,78,18,"x7"],[82,18,78,20],[82,21,78,23],[82,22,78,24],[83,6,79,8,"x15"],[83,9,79,11],[83,13,79,15,"x3"],[83,15,79,17],[84,6,80,8,"x15"],[84,9,80,11],[84,12,80,14,"x15"],[84,15,80,17],[84,20,80,23],[84,22,80,25],[84,25,80,28],[84,26,80,30],[84,29,80,33,"x15"],[84,32,80,36],[84,36,80,40],[84,37,80,41],[85,6,81,8,"x11"],[85,9,81,11],[85,12,81,14,"x11"],[85,15,81,17],[85,18,81,20,"x15"],[85,21,81,23],[85,24,81,26],[85,25,81,27],[86,6,82,8,"x7"],[86,8,82,10],[86,12,82,14,"x11"],[86,15,82,17],[87,6,83,8,"x7"],[87,8,83,10],[87,11,83,13,"x7"],[87,13,83,15],[87,18,83,21],[87,20,83,23],[87,23,83,26],[87,24,83,28],[87,27,83,31,"x7"],[87,29,83,33],[87,33,83,37],[87,34,83,38],[88,6,84,8,"x1"],[88,8,84,10],[88,11,84,13,"x1"],[88,13,84,15],[88,16,84,18,"x5"],[88,18,84,20],[88,21,84,23],[88,22,84,24],[89,6,85,8,"x13"],[89,9,85,11],[89,13,85,15,"x1"],[89,15,85,17],[90,6,86,8,"x13"],[90,9,86,11],[90,12,86,14,"x13"],[90,15,86,17],[90,20,86,23],[90,22,86,25],[90,25,86,28],[90,26,86,30],[90,29,86,33,"x13"],[90,32,86,36],[90,36,86,40],[90,37,86,41],[91,6,87,8,"x9"],[91,8,87,10],[91,11,87,13,"x9"],[91,13,87,15],[91,16,87,18,"x13"],[91,19,87,21],[91,22,87,24],[91,23,87,25],[92,6,88,8,"x5"],[92,8,88,10],[92,12,88,14,"x9"],[92,14,88,16],[93,6,89,8,"x5"],[93,8,89,10],[93,11,89,13,"x5"],[93,13,89,15],[93,18,89,21],[93,20,89,23],[93,23,89,26],[93,24,89,28],[93,27,89,31,"x5"],[93,29,89,33],[93,33,89,37],[93,34,89,38],[94,6,90,8,"x0"],[94,8,90,10],[94,11,90,13,"x0"],[94,13,90,15],[94,16,90,18,"x4"],[94,18,90,20],[94,21,90,23],[94,22,90,24],[95,6,91,8,"x12"],[95,9,91,11],[95,13,91,15,"x0"],[95,15,91,17],[96,6,92,8,"x12"],[96,9,92,11],[96,12,92,14,"x12"],[96,15,92,17],[96,20,92,23],[96,22,92,25],[96,25,92,28],[96,26,92,30],[96,29,92,33,"x12"],[96,32,92,36],[96,36,92,40],[96,37,92,41],[97,6,93,8,"x8"],[97,8,93,10],[97,11,93,13,"x8"],[97,13,93,15],[97,16,93,18,"x12"],[97,19,93,21],[97,22,93,24],[97,23,93,25],[98,6,94,8,"x4"],[98,8,94,10],[98,12,94,14,"x8"],[98,14,94,16],[99,6,95,8,"x4"],[99,8,95,10],[99,11,95,13,"x4"],[99,13,95,15],[99,18,95,21],[99,20,95,23],[99,23,95,26],[99,24,95,28],[99,27,95,31,"x4"],[99,29,95,33],[99,33,95,37],[99,34,95,38],[100,6,96,8,"x0"],[100,8,96,10],[100,11,96,13,"x0"],[100,13,96,15],[100,16,96,18,"x5"],[100,18,96,20],[100,21,96,23],[100,22,96,24],[101,6,97,8,"x15"],[101,9,97,11],[101,13,97,15,"x0"],[101,15,97,17],[102,6,98,8,"x15"],[102,9,98,11],[102,12,98,14,"x15"],[102,15,98,17],[102,20,98,23],[102,22,98,25],[102,25,98,28],[102,27,98,31],[102,30,98,34,"x15"],[102,33,98,37],[102,37,98,41],[102,39,98,43],[103,6,99,8,"x10"],[103,9,99,11],[103,12,99,14,"x10"],[103,15,99,17],[103,18,99,20,"x15"],[103,21,99,23],[103,24,99,26],[103,25,99,27],[104,6,100,8,"x5"],[104,8,100,10],[104,12,100,14,"x10"],[104,15,100,17],[105,6,101,8,"x5"],[105,8,101,10],[105,11,101,13,"x5"],[105,13,101,15],[105,18,101,21],[105,20,101,23],[105,23,101,26],[105,25,101,29],[105,28,101,32,"x5"],[105,30,101,34],[105,34,101,38],[105,36,101,40],[106,6,102,8,"x1"],[106,8,102,10],[106,11,102,13,"x1"],[106,13,102,15],[106,16,102,18,"x6"],[106,18,102,20],[106,21,102,23],[106,22,102,24],[107,6,103,8,"x12"],[107,9,103,11],[107,13,103,15,"x1"],[107,15,103,17],[108,6,104,8,"x12"],[108,9,104,11],[108,12,104,14,"x12"],[108,15,104,17],[108,20,104,23],[108,22,104,25],[108,25,104,28],[108,27,104,31],[108,30,104,34,"x12"],[108,33,104,37],[108,37,104,41],[108,39,104,43],[109,6,105,8,"x11"],[109,9,105,11],[109,12,105,14,"x11"],[109,15,105,17],[109,18,105,20,"x12"],[109,21,105,23],[109,24,105,26],[109,25,105,27],[110,6,106,8,"x6"],[110,8,106,10],[110,12,106,14,"x11"],[110,15,106,17],[111,6,107,8,"x6"],[111,8,107,10],[111,11,107,13,"x6"],[111,13,107,15],[111,18,107,21],[111,20,107,23],[111,23,107,26],[111,25,107,29],[111,28,107,32,"x6"],[111,30,107,34],[111,34,107,38],[111,36,107,40],[112,6,108,8,"x2"],[112,8,108,10],[112,11,108,13,"x2"],[112,13,108,15],[112,16,108,18,"x7"],[112,18,108,20],[112,21,108,23],[112,22,108,24],[113,6,109,8,"x13"],[113,9,109,11],[113,13,109,15,"x2"],[113,15,109,17],[114,6,110,8,"x13"],[114,9,110,11],[114,12,110,14,"x13"],[114,15,110,17],[114,20,110,23],[114,22,110,25],[114,25,110,28],[114,27,110,31],[114,30,110,34,"x13"],[114,33,110,37],[114,37,110,41],[114,39,110,43],[115,6,111,8,"x8"],[115,8,111,10],[115,11,111,13,"x8"],[115,13,111,15],[115,16,111,18,"x13"],[115,19,111,21],[115,22,111,24],[115,23,111,25],[116,6,112,8,"x7"],[116,8,112,10],[116,12,112,14,"x8"],[116,14,112,16],[117,6,113,8,"x7"],[117,8,113,10],[117,11,113,13,"x7"],[117,13,113,15],[117,18,113,21],[117,20,113,23],[117,23,113,26],[117,25,113,29],[117,28,113,32,"x7"],[117,30,113,34],[117,34,113,38],[117,36,113,40],[118,6,114,8,"x3"],[118,8,114,10],[118,11,114,13,"x3"],[118,13,114,15],[118,16,114,18,"x4"],[118,18,114,20],[118,21,114,23],[118,22,114,24],[119,6,115,8,"x14"],[119,9,115,11],[119,13,115,15,"x3"],[119,15,115,17],[120,6,116,8,"x14"],[120,9,116,11],[120,12,116,14,"x14"],[120,15,116,17],[120,20,116,23],[120,22,116,25],[120,25,116,28],[120,27,116,31],[120,30,116,34,"x14"],[120,33,116,37],[120,37,116,41],[120,39,116,43],[121,6,117,8,"x9"],[121,8,117,10],[121,11,117,13,"x9"],[121,13,117,15],[121,16,117,18,"x14"],[121,19,117,21],[121,22,117,24],[121,23,117,25],[122,6,118,8,"x4"],[122,8,118,10],[122,12,118,14,"x9"],[122,14,118,16],[123,6,119,8,"x4"],[123,8,119,10],[123,11,119,13,"x4"],[123,13,119,15],[123,18,119,21],[123,20,119,23],[123,23,119,26],[123,25,119,29],[123,28,119,32,"x4"],[123,30,119,34],[123,34,119,38],[123,36,119,40],[124,6,120,8,"x2"],[124,8,120,10],[124,11,120,13,"x2"],[124,13,120,15],[124,16,120,18,"x7"],[124,18,120,20],[124,21,120,23],[124,22,120,24],[125,6,121,8,"x13"],[125,9,121,11],[125,13,121,15,"x2"],[125,15,121,17],[126,6,122,8,"x13"],[126,9,122,11],[126,12,122,14,"x13"],[126,15,122,17],[126,20,122,23],[126,22,122,25],[126,25,122,28],[126,26,122,30],[126,29,122,33,"x13"],[126,32,122,36],[126,36,122,40],[126,37,122,41],[127,6,123,8,"x8"],[127,8,123,10],[127,11,123,13,"x8"],[127,13,123,15],[127,16,123,18,"x13"],[127,19,123,21],[127,22,123,24],[127,23,123,25],[128,6,124,8,"x7"],[128,8,124,10],[128,12,124,14,"x8"],[128,14,124,16],[129,6,125,8,"x7"],[129,8,125,10],[129,11,125,13,"x7"],[129,13,125,15],[129,18,125,21],[129,20,125,23],[129,23,125,26],[129,24,125,28],[129,27,125,31,"x7"],[129,29,125,33],[129,33,125,37],[129,34,125,38],[130,6,126,8,"x3"],[130,8,126,10],[130,11,126,13,"x3"],[130,13,126,15],[130,16,126,18,"x4"],[130,18,126,20],[130,21,126,23],[130,22,126,24],[131,6,127,8,"x14"],[131,9,127,11],[131,13,127,15,"x3"],[131,15,127,17],[132,6,128,8,"x14"],[132,9,128,11],[132,12,128,14,"x14"],[132,15,128,17],[132,20,128,23],[132,22,128,25],[132,25,128,28],[132,26,128,30],[132,29,128,33,"x14"],[132,32,128,36],[132,36,128,40],[132,37,128,41],[133,6,129,8,"x9"],[133,8,129,10],[133,11,129,13,"x9"],[133,13,129,15],[133,16,129,18,"x14"],[133,19,129,21],[133,22,129,24],[133,23,129,25],[134,6,130,8,"x4"],[134,8,130,10],[134,12,130,14,"x9"],[134,14,130,16],[135,6,131,8,"x4"],[135,8,131,10],[135,11,131,13,"x4"],[135,13,131,15],[135,18,131,21],[135,20,131,23],[135,23,131,26],[135,24,131,28],[135,27,131,31,"x4"],[135,29,131,33],[135,33,131,37],[135,34,131,38],[136,6,132,8,"x1"],[136,8,132,10],[136,11,132,13,"x1"],[136,13,132,15],[136,16,132,18,"x6"],[136,18,132,20],[136,21,132,23],[136,22,132,24],[137,6,133,8,"x12"],[137,9,133,11],[137,13,133,15,"x1"],[137,15,133,17],[138,6,134,8,"x12"],[138,9,134,11],[138,12,134,14,"x12"],[138,15,134,17],[138,20,134,23],[138,22,134,25],[138,25,134,28],[138,26,134,30],[138,29,134,33,"x12"],[138,32,134,36],[138,36,134,40],[138,37,134,41],[139,6,135,8,"x11"],[139,9,135,11],[139,12,135,14,"x11"],[139,15,135,17],[139,18,135,20,"x12"],[139,21,135,23],[139,24,135,26],[139,25,135,27],[140,6,136,8,"x6"],[140,8,136,10],[140,12,136,14,"x11"],[140,15,136,17],[141,6,137,8,"x6"],[141,8,137,10],[141,11,137,13,"x6"],[141,13,137,15],[141,18,137,21],[141,20,137,23],[141,23,137,26],[141,24,137,28],[141,27,137,31,"x6"],[141,29,137,33],[141,33,137,37],[141,34,137,38],[142,6,138,8,"x0"],[142,8,138,10],[142,11,138,13,"x0"],[142,13,138,15],[142,16,138,18,"x5"],[142,18,138,20],[142,21,138,23],[142,22,138,24],[143,6,139,8,"x15"],[143,9,139,11],[143,13,139,15,"x0"],[143,15,139,17],[144,6,140,8,"x15"],[144,9,140,11],[144,12,140,14,"x15"],[144,15,140,17],[144,20,140,23],[144,22,140,25],[144,25,140,28],[144,26,140,30],[144,29,140,33,"x15"],[144,32,140,36],[144,36,140,40],[144,37,140,41],[145,6,141,8,"x10"],[145,9,141,11],[145,12,141,14,"x10"],[145,15,141,17],[145,18,141,20,"x15"],[145,21,141,23],[145,24,141,26],[145,25,141,27],[146,6,142,8,"x5"],[146,8,142,10],[146,12,142,14,"x10"],[146,15,142,17],[147,6,143,8,"x5"],[147,8,143,10],[147,11,143,13,"x5"],[147,13,143,15],[147,18,143,21],[147,20,143,23],[147,23,143,26],[147,24,143,28],[147,27,143,31,"x5"],[147,29,143,33],[147,33,143,37],[147,34,143,38],[148,4,144,4],[149,4,145,4,"binary_1"],[149,12,145,12],[149,13,145,13,"writeUint32LE"],[149,26,145,26],[149,27,145,27,"x0"],[149,29,145,29],[149,32,145,32,"j0"],[149,34,145,34],[149,37,145,37],[149,38,145,38],[149,40,145,40,"out"],[149,43,145,43],[149,45,145,45],[149,46,145,46],[149,47,145,47],[150,4,146,4,"binary_1"],[150,12,146,12],[150,13,146,13,"writeUint32LE"],[150,26,146,26],[150,27,146,27,"x1"],[150,29,146,29],[150,32,146,32,"j1"],[150,34,146,34],[150,37,146,37],[150,38,146,38],[150,40,146,40,"out"],[150,43,146,43],[150,45,146,45],[150,46,146,46],[150,47,146,47],[151,4,147,4,"binary_1"],[151,12,147,12],[151,13,147,13,"writeUint32LE"],[151,26,147,26],[151,27,147,27,"x2"],[151,29,147,29],[151,32,147,32,"j2"],[151,34,147,34],[151,37,147,37],[151,38,147,38],[151,40,147,40,"out"],[151,43,147,43],[151,45,147,45],[151,46,147,46],[151,47,147,47],[152,4,148,4,"binary_1"],[152,12,148,12],[152,13,148,13,"writeUint32LE"],[152,26,148,26],[152,27,148,27,"x3"],[152,29,148,29],[152,32,148,32,"j3"],[152,34,148,34],[152,37,148,37],[152,38,148,38],[152,40,148,40,"out"],[152,43,148,43],[152,45,148,45],[152,47,148,47],[152,48,148,48],[153,4,149,4,"binary_1"],[153,12,149,12],[153,13,149,13,"writeUint32LE"],[153,26,149,26],[153,27,149,27,"x4"],[153,29,149,29],[153,32,149,32,"j4"],[153,34,149,34],[153,37,149,37],[153,38,149,38],[153,40,149,40,"out"],[153,43,149,43],[153,45,149,45],[153,47,149,47],[153,48,149,48],[154,4,150,4,"binary_1"],[154,12,150,12],[154,13,150,13,"writeUint32LE"],[154,26,150,26],[154,27,150,27,"x5"],[154,29,150,29],[154,32,150,32,"j5"],[154,34,150,34],[154,37,150,37],[154,38,150,38],[154,40,150,40,"out"],[154,43,150,43],[154,45,150,45],[154,47,150,47],[154,48,150,48],[155,4,151,4,"binary_1"],[155,12,151,12],[155,13,151,13,"writeUint32LE"],[155,26,151,26],[155,27,151,27,"x6"],[155,29,151,29],[155,32,151,32,"j6"],[155,34,151,34],[155,37,151,37],[155,38,151,38],[155,40,151,40,"out"],[155,43,151,43],[155,45,151,45],[155,47,151,47],[155,48,151,48],[156,4,152,4,"binary_1"],[156,12,152,12],[156,13,152,13,"writeUint32LE"],[156,26,152,26],[156,27,152,27,"x7"],[156,29,152,29],[156,32,152,32,"j7"],[156,34,152,34],[156,37,152,37],[156,38,152,38],[156,40,152,40,"out"],[156,43,152,43],[156,45,152,45],[156,47,152,47],[156,48,152,48],[157,4,153,4,"binary_1"],[157,12,153,12],[157,13,153,13,"writeUint32LE"],[157,26,153,26],[157,27,153,27,"x8"],[157,29,153,29],[157,32,153,32,"j8"],[157,34,153,34],[157,37,153,37],[157,38,153,38],[157,40,153,40,"out"],[157,43,153,43],[157,45,153,45],[157,47,153,47],[157,48,153,48],[158,4,154,4,"binary_1"],[158,12,154,12],[158,13,154,13,"writeUint32LE"],[158,26,154,26],[158,27,154,27,"x9"],[158,29,154,29],[158,32,154,32,"j9"],[158,34,154,34],[158,37,154,37],[158,38,154,38],[158,40,154,40,"out"],[158,43,154,43],[158,45,154,45],[158,47,154,47],[158,48,154,48],[159,4,155,4,"binary_1"],[159,12,155,12],[159,13,155,13,"writeUint32LE"],[159,26,155,26],[159,27,155,27,"x10"],[159,30,155,30],[159,33,155,33,"j10"],[159,36,155,36],[159,39,155,39],[159,40,155,40],[159,42,155,42,"out"],[159,45,155,45],[159,47,155,47],[159,49,155,49],[159,50,155,50],[160,4,156,4,"binary_1"],[160,12,156,12],[160,13,156,13,"writeUint32LE"],[160,26,156,26],[160,27,156,27,"x11"],[160,30,156,30],[160,33,156,33,"j11"],[160,36,156,36],[160,39,156,39],[160,40,156,40],[160,42,156,42,"out"],[160,45,156,45],[160,47,156,47],[160,49,156,49],[160,50,156,50],[161,4,157,4,"binary_1"],[161,12,157,12],[161,13,157,13,"writeUint32LE"],[161,26,157,26],[161,27,157,27,"x12"],[161,30,157,30],[161,33,157,33,"j12"],[161,36,157,36],[161,39,157,39],[161,40,157,40],[161,42,157,42,"out"],[161,45,157,45],[161,47,157,47],[161,49,157,49],[161,50,157,50],[162,4,158,4,"binary_1"],[162,12,158,12],[162,13,158,13,"writeUint32LE"],[162,26,158,26],[162,27,158,27,"x13"],[162,30,158,30],[162,33,158,33,"j13"],[162,36,158,36],[162,39,158,39],[162,40,158,40],[162,42,158,42,"out"],[162,45,158,45],[162,47,158,47],[162,49,158,49],[162,50,158,50],[163,4,159,4,"binary_1"],[163,12,159,12],[163,13,159,13,"writeUint32LE"],[163,26,159,26],[163,27,159,27,"x14"],[163,30,159,30],[163,33,159,33,"j14"],[163,36,159,36],[163,39,159,39],[163,40,159,40],[163,42,159,42,"out"],[163,45,159,45],[163,47,159,47],[163,49,159,49],[163,50,159,50],[164,4,160,4,"binary_1"],[164,12,160,12],[164,13,160,13,"writeUint32LE"],[164,26,160,26],[164,27,160,27,"x15"],[164,30,160,30],[164,33,160,33,"j15"],[164,36,160,36],[164,39,160,39],[164,40,160,40],[164,42,160,42,"out"],[164,45,160,45],[164,47,160,47],[164,49,160,49],[164,50,160,50],[165,2,161,0],[166,2,162,0],[167,0,163,0],[168,0,164,0],[169,0,165,0],[170,0,166,0],[171,0,167,0],[172,0,168,0],[173,0,169,0],[174,0,170,0],[175,0,171,0],[176,0,172,0],[177,0,173,0],[178,0,174,0],[179,0,175,0],[180,0,176,0],[181,0,177,0],[182,0,178,0],[183,0,179,0],[184,0,180,0],[185,0,181,0],[186,0,182,0],[187,0,183,0],[188,0,184,0],[189,2,185,0],[189,11,185,9,"streamXOR"],[189,20,185,18,"streamXOR"],[189,21,185,19,"key"],[189,24,185,22],[189,26,185,24,"nonce"],[189,31,185,29],[189,33,185,31,"src"],[189,36,185,34],[189,38,185,36,"dst"],[189,41,185,39],[189,43,185,41,"nonceInplaceCounterLength"],[189,68,185,66],[189,70,185,68],[190,4,186,4],[190,8,186,8,"nonceInplaceCounterLength"],[190,33,186,33],[190,38,186,38],[190,43,186,43],[190,44,186,44],[190,46,186,46],[191,6,186,48,"nonceInplaceCounterLength"],[191,31,186,73],[191,34,186,76],[191,35,186,77],[192,4,186,79],[193,4,187,4],[194,4,188,4],[194,8,188,8,"key"],[194,11,188,11],[194,12,188,12,"length"],[194,18,188,18],[194,23,188,23],[194,25,188,25],[194,27,188,27],[195,6,189,8],[195,12,189,14],[195,16,189,18,"Error"],[195,21,189,23],[195,22,189,24],[195,57,189,59],[195,58,189,60],[196,4,190,4],[197,4,191,4],[197,8,191,8,"dst"],[197,11,191,11],[197,12,191,12,"length"],[197,18,191,18],[197,21,191,21,"src"],[197,24,191,24],[197,25,191,25,"length"],[197,31,191,31],[197,33,191,33],[198,6,192,8],[198,12,192,14],[198,16,192,18,"Error"],[198,21,192,23],[198,22,192,24],[198,66,192,68],[198,67,192,69],[199,4,193,4],[200,4,194,4],[200,8,194,8,"nc"],[200,10,194,10],[201,4,195,4],[201,8,195,8,"counterLength"],[201,21,195,21],[202,4,196,4],[202,8,196,8,"nonceInplaceCounterLength"],[202,33,196,33],[202,38,196,38],[202,39,196,39],[202,41,196,41],[203,6,197,8],[203,10,197,12,"nonce"],[203,15,197,17],[203,16,197,18,"length"],[203,22,197,24],[203,27,197,29],[203,28,197,30],[203,32,197,34,"nonce"],[203,37,197,39],[203,38,197,40,"length"],[203,44,197,46],[203,49,197,51],[203,51,197,53],[203,53,197,55],[204,8,198,12],[204,14,198,18],[204,18,198,22,"Error"],[204,23,198,27],[204,24,198,28],[204,60,198,64],[204,61,198,65],[205,6,199,8],[206,6,200,8,"nc"],[206,8,200,10],[206,11,200,13],[206,15,200,17,"Uint8Array"],[206,25,200,27],[206,26,200,28],[206,28,200,30],[206,29,200,31],[207,6,201,8],[208,6,202,8,"counterLength"],[208,19,202,21],[208,22,202,24,"nc"],[208,24,202,26],[208,25,202,27,"length"],[208,31,202,33],[208,34,202,36,"nonce"],[208,39,202,41],[208,40,202,42,"length"],[208,46,202,48],[209,6,203,8],[210,6,204,8,"nc"],[210,8,204,10],[210,9,204,11,"set"],[210,12,204,14],[210,13,204,15,"nonce"],[210,18,204,20],[210,20,204,22,"counterLength"],[210,33,204,35],[210,34,204,36],[211,4,205,4],[211,5,205,5],[211,11,206,9],[212,6,207,8],[212,10,207,12,"nonce"],[212,15,207,17],[212,16,207,18,"length"],[212,22,207,24],[212,27,207,29],[212,29,207,31],[212,31,207,33],[213,8,208,12],[213,14,208,18],[213,18,208,22,"Error"],[213,23,208,27],[213,24,208,28],[213,68,208,72],[213,69,208,73],[214,6,209,8],[215,6,210,8],[216,6,211,8,"nc"],[216,8,211,10],[216,11,211,13,"nonce"],[216,16,211,18],[217,6,212,8,"counterLength"],[217,19,212,21],[217,22,212,24,"nonceInplaceCounterLength"],[217,47,212,49],[218,4,213,4],[219,4,214,4],[220,4,215,4],[220,8,215,8,"block"],[220,13,215,13],[220,16,215,16],[220,20,215,20,"Uint8Array"],[220,30,215,30],[220,31,215,31],[220,33,215,33],[220,34,215,34],[221,4,216,4],[221,9,216,9],[221,13,216,13,"i"],[221,14,216,14],[221,17,216,17],[221,18,216,18],[221,20,216,20,"i"],[221,21,216,21],[221,24,216,24,"src"],[221,27,216,27],[221,28,216,28,"length"],[221,34,216,34],[221,36,216,36,"i"],[221,37,216,37],[221,41,216,41],[221,43,216,43],[221,45,216,45],[222,6,217,8],[223,6,218,8,"core"],[223,10,218,12],[223,11,218,13,"block"],[223,16,218,18],[223,18,218,20,"nc"],[223,20,218,22],[223,22,218,24,"key"],[223,25,218,27],[223,26,218,28],[224,6,219,8],[225,6,220,8],[225,11,220,13],[225,15,220,17,"j"],[225,16,220,18],[225,19,220,21,"i"],[225,20,220,22],[225,22,220,24,"j"],[225,23,220,25],[225,26,220,28,"i"],[225,27,220,29],[225,30,220,32],[225,32,220,34],[225,36,220,38,"j"],[225,37,220,39],[225,40,220,42,"src"],[225,43,220,45],[225,44,220,46,"length"],[225,50,220,52],[225,52,220,54,"j"],[225,53,220,55],[225,55,220,57],[225,57,220,59],[226,8,221,12,"dst"],[226,11,221,15],[226,12,221,16,"j"],[226,13,221,17],[226,14,221,18],[226,17,221,21,"src"],[226,20,221,24],[226,21,221,25,"j"],[226,22,221,26],[226,23,221,27],[226,26,221,30,"block"],[226,31,221,35],[226,32,221,36,"j"],[226,33,221,37],[226,36,221,40,"i"],[226,37,221,41],[226,38,221,42],[227,6,222,8],[228,6,223,8],[229,6,224,8,"incrementCounter"],[229,22,224,24],[229,23,224,25,"nc"],[229,25,224,27],[229,27,224,29],[229,28,224,30],[229,30,224,32,"counterLength"],[229,43,224,45],[229,44,224,46],[230,4,225,4],[231,4,226,4],[232,4,227,4,"wipe_1"],[232,10,227,10],[232,11,227,11,"wipe"],[232,15,227,15],[232,16,227,16,"block"],[232,21,227,21],[232,22,227,22],[233,4,228,4],[233,8,228,8,"nonceInplaceCounterLength"],[233,33,228,33],[233,38,228,38],[233,39,228,39],[233,41,228,41],[234,6,229,8],[235,6,230,8,"wipe_1"],[235,12,230,14],[235,13,230,15,"wipe"],[235,17,230,19],[235,18,230,20,"nc"],[235,20,230,22],[235,21,230,23],[236,4,231,4],[237,4,232,4],[237,11,232,11,"dst"],[237,14,232,14],[238,2,233,0],[239,2,234,0,"exports"],[239,9,234,7],[239,10,234,8,"streamXOR"],[239,19,234,17],[239,22,234,20,"streamXOR"],[239,31,234,29],[240,2,235,0],[241,0,236,0],[242,0,237,0],[243,0,238,0],[244,0,239,0],[245,0,240,0],[246,0,241,0],[247,0,242,0],[248,0,243,0],[249,0,244,0],[250,0,245,0],[251,2,246,0],[251,11,246,9,"stream"],[251,17,246,15,"stream"],[251,18,246,16,"key"],[251,21,246,19],[251,23,246,21,"nonce"],[251,28,246,26],[251,30,246,28,"dst"],[251,33,246,31],[251,35,246,33,"nonceInplaceCounterLength"],[251,60,246,58],[251,62,246,60],[252,4,247,4],[252,8,247,8,"nonceInplaceCounterLength"],[252,33,247,33],[252,38,247,38],[252,43,247,43],[252,44,247,44],[252,46,247,46],[253,6,247,48,"nonceInplaceCounterLength"],[253,31,247,73],[253,34,247,76],[253,35,247,77],[254,4,247,79],[255,4,248,4,"wipe_1"],[255,10,248,10],[255,11,248,11,"wipe"],[255,15,248,15],[255,16,248,16,"dst"],[255,19,248,19],[255,20,248,20],[256,4,249,4],[256,11,249,11,"streamXOR"],[256,20,249,20],[256,21,249,21,"key"],[256,24,249,24],[256,26,249,26,"nonce"],[256,31,249,31],[256,33,249,33,"dst"],[256,36,249,36],[256,38,249,38,"dst"],[256,41,249,41],[256,43,249,43,"nonceInplaceCounterLength"],[256,68,249,68],[256,69,249,69],[257,2,250,0],[258,2,251,0,"exports"],[258,9,251,7],[258,10,251,8,"stream"],[258,16,251,14],[258,19,251,17,"stream"],[258,25,251,23],[259,2,252,0],[259,11,252,9,"incrementCounter"],[259,27,252,25,"incrementCounter"],[259,28,252,26,"counter"],[259,35,252,33],[259,37,252,35,"pos"],[259,40,252,38],[259,42,252,40,"len"],[259,45,252,43],[259,47,252,45],[260,4,253,4],[260,8,253,8,"carry"],[260,13,253,13],[260,16,253,16],[260,17,253,17],[261,4,254,4],[261,11,254,11,"len"],[261,14,254,14],[261,16,254,16],[261,18,254,18],[262,6,255,8,"carry"],[262,11,255,13],[262,14,255,16,"carry"],[262,19,255,21],[262,23,255,25,"counter"],[262,30,255,32],[262,31,255,33,"pos"],[262,34,255,36],[262,35,255,37],[262,38,255,40],[262,42,255,44],[262,43,255,45],[262,46,255,48],[262,47,255,49],[263,6,256,8,"counter"],[263,13,256,15],[263,14,256,16,"pos"],[263,17,256,19],[263,18,256,20],[263,21,256,23,"carry"],[263,26,256,28],[263,29,256,31],[263,33,256,35],[264,6,257,8,"carry"],[264,11,257,13],[264,17,257,19],[264,18,257,20],[265,6,258,8,"pos"],[265,9,258,11],[265,11,258,13],[266,4,259,4],[267,4,260,4],[267,8,260,8,"carry"],[267,13,260,13],[267,16,260,16],[267,17,260,17],[267,19,260,19],[268,6,261,8],[268,12,261,14],[268,16,261,18,"Error"],[268,21,261,23],[268,22,261,24],[268,48,261,50],[268,49,261,51],[269,4,262,4],[270,2,263,0],[271,0,263,1],[271,3]],"functionMap":{"names":["<global>","core","streamXOR","stream","incrementCounter"],"mappings":"AAA;ACa;CDmJ;AEwB;CFgD;AGa;CHI;AIE;CJW"},"hasCjsExports":true},"type":"js/module"}]} |