mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 04:11:02 +00:00
1 line
18 KiB
Plaintext
1 line
18 KiB
Plaintext
{"dependencies":[{"name":"tslib","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":8,"column":16,"index":326},"end":{"line":8,"column":32,"index":342}}],"key":"vm88vOsSPZItrLOmMEyUuGkd1y4=","exportNames":["*"],"imports":1}},{"name":"@polkadot/util","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":9,"column":15,"index":359},"end":{"line":9,"column":40,"index":384}}],"key":"u0mzEw2nilnHoUWtEdZl0JKHutA=","exportNames":["*"],"imports":1}},{"name":"../pbkdf2/index.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":10,"column":19,"index":405},"end":{"line":10,"column":48,"index":434}}],"key":"2iHSf9wKOA+FycxvUHa0Voo3rpo=","exportNames":["*"],"imports":1}},{"name":"../random/index.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":11,"column":19,"index":455},"end":{"line":11,"column":48,"index":484}}],"key":"bAEoLPMIoBrdJ4HpQSSFgORU/c8=","exportNames":["*"],"imports":1}},{"name":"../sha/index.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":12,"column":19,"index":505},"end":{"line":12,"column":45,"index":531}}],"key":"F31Yoypj/8A5WQ+zOsJzIlBpXq4=","exportNames":["*"],"imports":1}},{"name":"./wordlists/en.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":13,"column":40,"index":573},"end":{"line":13,"column":68,"index":601}}],"key":"l4rn+52cE+l+XAeHPyyda4dLeRE=","exportNames":["*"],"imports":1}}],"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.mnemonicToSeedSync = mnemonicToSeedSync;\n exports.mnemonicToEntropy = mnemonicToEntropy;\n exports.entropyToMnemonic = entropyToMnemonic;\n exports.generateMnemonic = generateMnemonic;\n exports.validateMnemonic = validateMnemonic;\n var tslib_1 = require(_dependencyMap[0], \"tslib\");\n var util_1 = require(_dependencyMap[1], \"@polkadot/util\");\n var index_js_1 = require(_dependencyMap[2], \"../pbkdf2/index.js\");\n var index_js_2 = require(_dependencyMap[3], \"../random/index.js\");\n var index_js_3 = require(_dependencyMap[4], \"../sha/index.js\");\n var en_js_1 = tslib_1.__importDefault(require(_dependencyMap[5], \"./wordlists/en.js\"));\n var INVALID_MNEMONIC = 'Invalid mnemonic';\n var INVALID_ENTROPY = 'Invalid entropy';\n var INVALID_CHECKSUM = 'Invalid mnemonic checksum';\n /** @internal */\n function normalize(str) {\n return (str || '').normalize('NFKD');\n }\n /** @internal */\n function binaryToByte(bin) {\n return parseInt(bin, 2);\n }\n /** @internal */\n function bytesToBinary(bytes) {\n return bytes.map(function (x) {\n return x.toString(2).padStart(8, '0');\n }).join('');\n }\n /** @internal */\n function deriveChecksumBits(entropyBuffer) {\n return bytesToBinary(Array.from((0, index_js_3.sha256AsU8a)(entropyBuffer))).slice(0, entropyBuffer.length * 8 / 32);\n }\n function mnemonicToSeedSync(mnemonic, password) {\n return (0, index_js_1.pbkdf2Encode)((0, util_1.stringToU8a)(normalize(mnemonic)), (0, util_1.stringToU8a)(`mnemonic${normalize(password)}`)).password;\n }\n function mnemonicToEntropy(mnemonic) {\n var wordlist = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : en_js_1.default;\n var words = normalize(mnemonic).split(' ');\n if (words.length % 3 !== 0) {\n throw new Error(INVALID_MNEMONIC);\n }\n // convert word indices to 11 bit binary strings\n var bits = words.map(function (word) {\n var index = wordlist.indexOf(word);\n if (index === -1) {\n throw new Error(INVALID_MNEMONIC);\n }\n return index.toString(2).padStart(11, '0');\n }).join('');\n // split the binary string into ENT/CS\n var dividerIndex = Math.floor(bits.length / 33) * 32;\n var entropyBits = bits.slice(0, dividerIndex);\n var checksumBits = bits.slice(dividerIndex);\n // calculate the checksum and compare\n var matched = entropyBits.match(/(.{1,8})/g);\n var entropyBytes = matched == null ? void 0 : matched.map(binaryToByte);\n if (!entropyBytes || entropyBytes.length % 4 !== 0 || entropyBytes.length < 16 || entropyBytes.length > 32) {\n throw new Error(INVALID_ENTROPY);\n }\n var entropy = (0, util_1.u8aToU8a)(entropyBytes);\n if (deriveChecksumBits(entropy) !== checksumBits) {\n throw new Error(INVALID_CHECKSUM);\n }\n return entropy;\n }\n function entropyToMnemonic(entropy) {\n var wordlist = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : en_js_1.default;\n // 128 <= ENT <= 256\n if (entropy.length % 4 !== 0 || entropy.length < 16 || entropy.length > 32) {\n throw new Error(INVALID_ENTROPY);\n }\n var matched = `${bytesToBinary(Array.from(entropy))}${deriveChecksumBits(entropy)}`.match(/(.{1,11})/g);\n var mapped = matched == null ? void 0 : matched.map(function (b) {\n return wordlist[binaryToByte(b)];\n });\n if (!mapped || mapped.length < 12) {\n throw new Error('Unable to map entropy to mnemonic');\n }\n return mapped.join(' ');\n }\n function generateMnemonic(numWords, wordlist) {\n return entropyToMnemonic((0, index_js_2.randomAsU8a)(numWords / 3 * 4), wordlist);\n }\n function validateMnemonic(mnemonic, wordlist) {\n try {\n mnemonicToEntropy(mnemonic, wordlist);\n } catch (_unused) {\n return false;\n }\n return true;\n }\n});","lineCount":98,"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,"mnemonicToSeedSync"],[7,28,3,26],[7,31,3,29,"mnemonicToSeedSync"],[7,49,3,47],[8,2,4,0,"exports"],[8,9,4,7],[8,10,4,8,"mnemonicToEntropy"],[8,27,4,25],[8,30,4,28,"mnemonicToEntropy"],[8,47,4,45],[9,2,5,0,"exports"],[9,9,5,7],[9,10,5,8,"entropyToMnemonic"],[9,27,5,25],[9,30,5,28,"entropyToMnemonic"],[9,47,5,45],[10,2,6,0,"exports"],[10,9,6,7],[10,10,6,8,"generateMnemonic"],[10,26,6,24],[10,29,6,27,"generateMnemonic"],[10,45,6,43],[11,2,7,0,"exports"],[11,9,7,7],[11,10,7,8,"validateMnemonic"],[11,26,7,24],[11,29,7,27,"validateMnemonic"],[11,45,7,43],[12,2,8,0],[12,6,8,6,"tslib_1"],[12,13,8,13],[12,16,8,16,"require"],[12,23,8,23],[12,24,8,23,"_dependencyMap"],[12,38,8,23],[12,50,8,31],[12,51,8,32],[13,2,9,0],[13,6,9,6,"util_1"],[13,12,9,12],[13,15,9,15,"require"],[13,22,9,22],[13,23,9,22,"_dependencyMap"],[13,37,9,22],[13,58,9,39],[13,59,9,40],[14,2,10,0],[14,6,10,6,"index_js_1"],[14,16,10,16],[14,19,10,19,"require"],[14,26,10,26],[14,27,10,26,"_dependencyMap"],[14,41,10,26],[14,66,10,47],[14,67,10,48],[15,2,11,0],[15,6,11,6,"index_js_2"],[15,16,11,16],[15,19,11,19,"require"],[15,26,11,26],[15,27,11,26,"_dependencyMap"],[15,41,11,26],[15,66,11,47],[15,67,11,48],[16,2,12,0],[16,6,12,6,"index_js_3"],[16,16,12,16],[16,19,12,19,"require"],[16,26,12,26],[16,27,12,26,"_dependencyMap"],[16,41,12,26],[16,63,12,44],[16,64,12,45],[17,2,13,0],[17,6,13,6,"en_js_1"],[17,13,13,13],[17,16,13,16,"tslib_1"],[17,23,13,23],[17,24,13,24,"__importDefault"],[17,39,13,39],[17,40,13,40,"require"],[17,47,13,47],[17,48,13,47,"_dependencyMap"],[17,62,13,47],[17,86,13,67],[17,87,13,68],[17,88,13,69],[18,2,14,0],[18,6,14,6,"INVALID_MNEMONIC"],[18,22,14,22],[18,25,14,25],[18,43,14,43],[19,2,15,0],[19,6,15,6,"INVALID_ENTROPY"],[19,21,15,21],[19,24,15,24],[19,41,15,41],[20,2,16,0],[20,6,16,6,"INVALID_CHECKSUM"],[20,22,16,22],[20,25,16,25],[20,52,16,52],[21,2,17,0],[22,2,18,0],[22,11,18,9,"normalize"],[22,20,18,18,"normalize"],[22,21,18,19,"str"],[22,24,18,22],[22,26,18,24],[23,4,19,4],[23,11,19,11],[23,12,19,12,"str"],[23,15,19,15],[23,19,19,19],[23,21,19,21],[23,23,19,23,"normalize"],[23,32,19,32],[23,33,19,33],[23,39,19,39],[23,40,19,40],[24,2,20,0],[25,2,21,0],[26,2,22,0],[26,11,22,9,"binaryToByte"],[26,23,22,21,"binaryToByte"],[26,24,22,22,"bin"],[26,27,22,25],[26,29,22,27],[27,4,23,4],[27,11,23,11,"parseInt"],[27,19,23,19],[27,20,23,20,"bin"],[27,23,23,23],[27,25,23,25],[27,26,23,26],[27,27,23,27],[28,2,24,0],[29,2,25,0],[30,2,26,0],[30,11,26,9,"bytesToBinary"],[30,24,26,22,"bytesToBinary"],[30,25,26,23,"bytes"],[30,30,26,28],[30,32,26,30],[31,4,27,4],[31,11,27,11,"bytes"],[31,16,27,16],[31,17,27,17,"map"],[31,20,27,20],[31,21,27,21],[31,31,27,22,"x"],[31,32,27,23],[32,6,27,23],[32,13,27,28,"x"],[32,14,27,29],[32,15,27,30,"toString"],[32,23,27,38],[32,24,27,39],[32,25,27,40],[32,26,27,41],[32,27,27,42,"padStart"],[32,35,27,50],[32,36,27,51],[32,37,27,52],[32,39,27,54],[32,42,27,57],[32,43,27,58],[33,4,27,58],[33,6,27,59],[33,7,27,60,"join"],[33,11,27,64],[33,12,27,65],[33,14,27,67],[33,15,27,68],[34,2,28,0],[35,2,29,0],[36,2,30,0],[36,11,30,9,"deriveChecksumBits"],[36,29,30,27,"deriveChecksumBits"],[36,30,30,28,"entropyBuffer"],[36,43,30,41],[36,45,30,43],[37,4,31,4],[37,11,31,11,"bytesToBinary"],[37,24,31,24],[37,25,31,25,"Array"],[37,30,31,30],[37,31,31,31,"from"],[37,35,31,35],[37,36,31,36],[37,37,31,37],[37,38,31,38],[37,40,31,40,"index_js_3"],[37,50,31,50],[37,51,31,51,"sha256AsU8a"],[37,62,31,62],[37,64,31,64,"entropyBuffer"],[37,77,31,77],[37,78,31,78],[37,79,31,79],[37,80,31,80],[37,81,31,81,"slice"],[37,86,31,86],[37,87,31,87],[37,88,31,88],[37,90,31,91,"entropyBuffer"],[37,103,31,104],[37,104,31,105,"length"],[37,110,31,111],[37,113,31,114],[37,114,31,115],[37,117,31,119],[37,119,31,121],[37,120,31,122],[38,2,32,0],[39,2,33,0],[39,11,33,9,"mnemonicToSeedSync"],[39,29,33,27,"mnemonicToSeedSync"],[39,30,33,28,"mnemonic"],[39,38,33,36],[39,40,33,38,"password"],[39,48,33,46],[39,50,33,48],[40,4,34,4],[40,11,34,11],[40,12,34,12],[40,13,34,13],[40,15,34,15,"index_js_1"],[40,25,34,25],[40,26,34,26,"pbkdf2Encode"],[40,38,34,38],[40,40,34,40],[40,41,34,41],[40,42,34,42],[40,44,34,44,"util_1"],[40,50,34,50],[40,51,34,51,"stringToU8a"],[40,62,34,62],[40,64,34,64,"normalize"],[40,73,34,73],[40,74,34,74,"mnemonic"],[40,82,34,82],[40,83,34,83],[40,84,34,84],[40,86,34,86],[40,87,34,87],[40,88,34,88],[40,90,34,90,"util_1"],[40,96,34,96],[40,97,34,97,"stringToU8a"],[40,108,34,108],[40,110,34,110],[40,121,34,121,"normalize"],[40,130,34,130],[40,131,34,131,"password"],[40,139,34,139],[40,140,34,140],[40,142,34,142],[40,143,34,143],[40,144,34,144],[40,145,34,145,"password"],[40,153,34,153],[41,2,35,0],[42,2,36,0],[42,11,36,9,"mnemonicToEntropy"],[42,28,36,26,"mnemonicToEntropy"],[42,29,36,27,"mnemonic"],[42,37,36,35],[42,39,36,65],[43,4,36,65],[43,8,36,37,"wordlist"],[43,16,36,45],[43,19,36,45,"arguments"],[43,28,36,45],[43,29,36,45,"length"],[43,35,36,45],[43,43,36,45,"arguments"],[43,52,36,45],[43,60,36,45,"undefined"],[43,69,36,45],[43,72,36,45,"arguments"],[43,81,36,45],[43,87,36,48,"en_js_1"],[43,94,36,55],[43,95,36,56,"default"],[43,102,36,63],[44,4,37,4],[44,8,37,10,"words"],[44,13,37,15],[44,16,37,18,"normalize"],[44,25,37,27],[44,26,37,28,"mnemonic"],[44,34,37,36],[44,35,37,37],[44,36,37,38,"split"],[44,41,37,43],[44,42,37,44],[44,45,37,47],[44,46,37,48],[45,4,38,4],[45,8,38,8,"words"],[45,13,38,13],[45,14,38,14,"length"],[45,20,38,20],[45,23,38,23],[45,24,38,24],[45,29,38,29],[45,30,38,30],[45,32,38,32],[46,6,39,8],[46,12,39,14],[46,16,39,18,"Error"],[46,21,39,23],[46,22,39,24,"INVALID_MNEMONIC"],[46,38,39,40],[46,39,39,41],[47,4,40,4],[48,4,41,4],[49,4,42,4],[49,8,42,10,"bits"],[49,12,42,14],[49,15,42,17,"words"],[49,20,42,22],[49,21,43,9,"map"],[49,24,43,12],[49,25,43,13],[49,35,43,14,"word"],[49,39,43,18],[49,41,43,23],[50,6,44,8],[50,10,44,14,"index"],[50,15,44,19],[50,18,44,22,"wordlist"],[50,26,44,30],[50,27,44,31,"indexOf"],[50,34,44,38],[50,35,44,39,"word"],[50,39,44,43],[50,40,44,44],[51,6,45,8],[51,10,45,12,"index"],[51,15,45,17],[51,20,45,22],[51,21,45,23],[51,22,45,24],[51,24,45,26],[52,8,46,12],[52,14,46,18],[52,18,46,22,"Error"],[52,23,46,27],[52,24,46,28,"INVALID_MNEMONIC"],[52,40,46,44],[52,41,46,45],[53,6,47,8],[54,6,48,8],[54,13,48,15,"index"],[54,18,48,20],[54,19,48,21,"toString"],[54,27,48,29],[54,28,48,30],[54,29,48,31],[54,30,48,32],[54,31,48,33,"padStart"],[54,39,48,41],[54,40,48,42],[54,42,48,44],[54,44,48,46],[54,47,48,49],[54,48,48,50],[55,4,49,4],[55,5,49,5],[55,6,49,6],[55,7,50,9,"join"],[55,11,50,13],[55,12,50,14],[55,14,50,16],[55,15,50,17],[56,4,51,4],[57,4,52,4],[57,8,52,10,"dividerIndex"],[57,20,52,22],[57,23,52,25,"Math"],[57,27,52,29],[57,28,52,30,"floor"],[57,33,52,35],[57,34,52,36,"bits"],[57,38,52,40],[57,39,52,41,"length"],[57,45,52,47],[57,48,52,50],[57,50,52,52],[57,51,52,53],[57,54,52,56],[57,56,52,58],[58,4,53,4],[58,8,53,10,"entropyBits"],[58,19,53,21],[58,22,53,24,"bits"],[58,26,53,28],[58,27,53,29,"slice"],[58,32,53,34],[58,33,53,35],[58,34,53,36],[58,36,53,38,"dividerIndex"],[58,48,53,50],[58,49,53,51],[59,4,54,4],[59,8,54,10,"checksumBits"],[59,20,54,22],[59,23,54,25,"bits"],[59,27,54,29],[59,28,54,30,"slice"],[59,33,54,35],[59,34,54,36,"dividerIndex"],[59,46,54,48],[59,47,54,49],[60,4,55,4],[61,4,56,4],[61,8,56,10,"matched"],[61,15,56,17],[61,18,56,20,"entropyBits"],[61,29,56,31],[61,30,56,32,"match"],[61,35,56,37],[61,36,56,38],[61,47,56,49],[61,48,56,50],[62,4,57,4],[62,8,57,10,"entropyBytes"],[62,20,57,22],[62,23,57,25,"matched"],[62,30,57,32],[62,50,57,25,"matched"],[62,57,57,32],[62,58,57,34,"map"],[62,61,57,37],[62,62,57,38,"binaryToByte"],[62,74,57,50],[62,75,57,51],[63,4,58,4],[63,8,58,8],[63,9,58,9,"entropyBytes"],[63,21,58,21],[63,25,58,26,"entropyBytes"],[63,37,58,38],[63,38,58,39,"length"],[63,44,58,45],[63,47,58,48],[63,48,58,49],[63,53,58,54],[63,54,58,56],[63,58,58,61,"entropyBytes"],[63,70,58,73],[63,71,58,74,"length"],[63,77,58,80],[63,80,58,83],[63,82,58,86],[63,86,58,91,"entropyBytes"],[63,98,58,103],[63,99,58,104,"length"],[63,105,58,110],[63,108,58,113],[63,110,58,116],[63,112,58,118],[64,6,59,8],[64,12,59,14],[64,16,59,18,"Error"],[64,21,59,23],[64,22,59,24,"INVALID_ENTROPY"],[64,37,59,39],[64,38,59,40],[65,4,60,4],[66,4,61,4],[66,8,61,10,"entropy"],[66,15,61,17],[66,18,61,20],[66,19,61,21],[66,20,61,22],[66,22,61,24,"util_1"],[66,28,61,30],[66,29,61,31,"u8aToU8a"],[66,37,61,39],[66,39,61,41,"entropyBytes"],[66,51,61,53],[66,52,61,54],[67,4,62,4],[67,8,62,8,"deriveChecksumBits"],[67,26,62,26],[67,27,62,27,"entropy"],[67,34,62,34],[67,35,62,35],[67,40,62,40,"checksumBits"],[67,52,62,52],[67,54,62,54],[68,6,63,8],[68,12,63,14],[68,16,63,18,"Error"],[68,21,63,23],[68,22,63,24,"INVALID_CHECKSUM"],[68,38,63,40],[68,39,63,41],[69,4,64,4],[70,4,65,4],[70,11,65,11,"entropy"],[70,18,65,18],[71,2,66,0],[72,2,67,0],[72,11,67,9,"entropyToMnemonic"],[72,28,67,26,"entropyToMnemonic"],[72,29,67,27,"entropy"],[72,36,67,34],[72,38,67,64],[73,4,67,64],[73,8,67,36,"wordlist"],[73,16,67,44],[73,19,67,44,"arguments"],[73,28,67,44],[73,29,67,44,"length"],[73,35,67,44],[73,43,67,44,"arguments"],[73,52,67,44],[73,60,67,44,"undefined"],[73,69,67,44],[73,72,67,44,"arguments"],[73,81,67,44],[73,87,67,47,"en_js_1"],[73,94,67,54],[73,95,67,55,"default"],[73,102,67,62],[74,4,68,4],[75,4,69,4],[75,8,69,9,"entropy"],[75,15,69,16],[75,16,69,17,"length"],[75,22,69,23],[75,25,69,26],[75,26,69,27],[75,31,69,32],[75,32,69,33],[75,36,69,39,"entropy"],[75,43,69,46],[75,44,69,47,"length"],[75,50,69,53],[75,53,69,56],[75,55,69,59],[75,59,69,64,"entropy"],[75,66,69,71],[75,67,69,72,"length"],[75,73,69,78],[75,76,69,81],[75,78,69,84],[75,80,69,86],[76,6,70,8],[76,12,70,14],[76,16,70,18,"Error"],[76,21,70,23],[76,22,70,24,"INVALID_ENTROPY"],[76,37,70,39],[76,38,70,40],[77,4,71,4],[78,4,72,4],[78,8,72,10,"matched"],[78,15,72,17],[78,18,72,20],[78,21,72,23,"bytesToBinary"],[78,34,72,36],[78,35,72,37,"Array"],[78,40,72,42],[78,41,72,43,"from"],[78,45,72,47],[78,46,72,48,"entropy"],[78,53,72,55],[78,54,72,56],[78,55,72,57],[78,58,72,60,"deriveChecksumBits"],[78,76,72,78],[78,77,72,79,"entropy"],[78,84,72,86],[78,85,72,87],[78,87,72,89],[78,88,72,90,"match"],[78,93,72,95],[78,94,72,96],[78,106,72,108],[78,107,72,109],[79,4,73,4],[79,8,73,10,"mapped"],[79,14,73,16],[79,17,73,19,"matched"],[79,24,73,26],[79,44,73,19,"matched"],[79,51,73,26],[79,52,73,28,"map"],[79,55,73,31],[79,56,73,32],[79,66,73,33,"b"],[79,67,73,34],[80,6,73,34],[80,13,73,39,"wordlist"],[80,21,73,47],[80,22,73,48,"binaryToByte"],[80,34,73,60],[80,35,73,61,"b"],[80,36,73,62],[80,37,73,63],[80,38,73,64],[81,4,73,64],[81,6,73,65],[82,4,74,4],[82,8,74,8],[82,9,74,9,"mapped"],[82,15,74,15],[82,19,74,20,"mapped"],[82,25,74,26],[82,26,74,27,"length"],[82,32,74,33],[82,35,74,36],[82,37,74,39],[82,39,74,41],[83,6,75,8],[83,12,75,14],[83,16,75,18,"Error"],[83,21,75,23],[83,22,75,24],[83,57,75,59],[83,58,75,60],[84,4,76,4],[85,4,77,4],[85,11,77,11,"mapped"],[85,17,77,17],[85,18,77,18,"join"],[85,22,77,22],[85,23,77,23],[85,26,77,26],[85,27,77,27],[86,2,78,0],[87,2,79,0],[87,11,79,9,"generateMnemonic"],[87,27,79,25,"generateMnemonic"],[87,28,79,26,"numWords"],[87,36,79,34],[87,38,79,36,"wordlist"],[87,46,79,44],[87,48,79,46],[88,4,80,4],[88,11,80,11,"entropyToMnemonic"],[88,28,80,28],[88,29,80,29],[88,30,80,30],[88,31,80,31],[88,33,80,33,"index_js_2"],[88,43,80,43],[88,44,80,44,"randomAsU8a"],[88,55,80,55],[88,57,80,58,"numWords"],[88,65,80,66],[88,68,80,69],[88,69,80,70],[88,72,80,74],[88,73,80,75],[88,74,80,76],[88,76,80,78,"wordlist"],[88,84,80,86],[88,85,80,87],[89,2,81,0],[90,2,82,0],[90,11,82,9,"validateMnemonic"],[90,27,82,25,"validateMnemonic"],[90,28,82,26,"mnemonic"],[90,36,82,34],[90,38,82,36,"wordlist"],[90,46,82,44],[90,48,82,46],[91,4,83,4],[91,8,83,8],[92,6,84,8,"mnemonicToEntropy"],[92,23,84,25],[92,24,84,26,"mnemonic"],[92,32,84,34],[92,34,84,36,"wordlist"],[92,42,84,44],[92,43,84,45],[93,4,85,4],[93,5,85,5],[93,6,86,4],[93,13,86,4,"_unused"],[93,20,86,4],[93,22,86,10],[94,6,87,8],[94,13,87,15],[94,18,87,20],[95,4,88,4],[96,4,89,4],[96,11,89,11],[96,15,89,15],[97,2,90,0],[98,0,90,1],[98,3]],"functionMap":{"names":["<global>","normalize","binaryToByte","bytesToBinary","bytes.map$argument_0","deriveChecksumBits","mnemonicToSeedSync","mnemonicToEntropy","words.map$argument_0","entropyToMnemonic","matched.map$argument_0","generateMnemonic","validateMnemonic"],"mappings":"AAA;ACiB;CDE;AEE;CFE;AGE;qBCC,qCD;CHC;AKE;CLE;AMC;CNE;AOC;aCO;KDM;CPiB;ASC;gCCM,gCD;CTK;AWC;CXE;AYC;CZQ"},"hasCjsExports":true},"type":"js/module"}]} |