auto-commit for 3a02b3dd-cebb-4882-bfc5-dbb637e71a6d

This commit is contained in:
emergent-agent-e1
2025-11-08 10:27:44 +00:00
parent 0a8c0df2e1
commit 7ae3a6d0ec
1906 changed files with 1906 additions and 0 deletions
@@ -0,0 +1 @@
{"dependencies":[{"name":"./concatMap","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":18,"index":125},"end":{"line":4,"column":40,"index":147}}],"key":"wiarRVo/Xnz++L+H57mQVQrbmOE=","exportNames":["*"],"imports":1}},{"name":"../util/isFunction","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":19,"index":168},"end":{"line":5,"column":48,"index":197}}],"key":"9qhC8NI6t5Y07wDTvuAKtHbucIk=","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.concatMapTo = void 0;\n var concatMap_1 = require(_dependencyMap[0], \"./concatMap\");\n var isFunction_1 = require(_dependencyMap[1], \"../util/isFunction\");\n function concatMapTo(innerObservable, resultSelector) {\n return isFunction_1.isFunction(resultSelector) ? concatMap_1.concatMap(function () {\n return innerObservable;\n }, resultSelector) : concatMap_1.concatMap(function () {\n return innerObservable;\n });\n }\n exports.concatMapTo = concatMapTo;\n});","lineCount":18,"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,"concatMapTo"],[7,21,3,19],[7,24,3,22],[7,29,3,27],[7,30,3,28],[8,2,4,0],[8,6,4,4,"concatMap_1"],[8,17,4,15],[8,20,4,18,"require"],[8,27,4,25],[8,28,4,25,"_dependencyMap"],[8,42,4,25],[8,60,4,39],[8,61,4,40],[9,2,5,0],[9,6,5,4,"isFunction_1"],[9,18,5,16],[9,21,5,19,"require"],[9,28,5,26],[9,29,5,26,"_dependencyMap"],[9,43,5,26],[9,68,5,47],[9,69,5,48],[10,2,6,0],[10,11,6,9,"concatMapTo"],[10,22,6,20,"concatMapTo"],[10,23,6,21,"innerObservable"],[10,38,6,36],[10,40,6,38,"resultSelector"],[10,54,6,52],[10,56,6,54],[11,4,7,4],[11,11,7,11,"isFunction_1"],[11,23,7,23],[11,24,7,24,"isFunction"],[11,34,7,34],[11,35,7,35,"resultSelector"],[11,49,7,49],[11,50,7,50],[11,53,7,53,"concatMap_1"],[11,64,7,64],[11,65,7,65,"concatMap"],[11,74,7,74],[11,75,7,75],[11,87,7,87],[12,6,7,89],[12,13,7,96,"innerObservable"],[12,28,7,111],[13,4,7,113],[13,5,7,114],[13,7,7,116,"resultSelector"],[13,21,7,130],[13,22,7,131],[13,25,7,134,"concatMap_1"],[13,36,7,145],[13,37,7,146,"concatMap"],[13,46,7,155],[13,47,7,156],[13,59,7,168],[14,6,7,170],[14,13,7,177,"innerObservable"],[14,28,7,192],[15,4,7,194],[15,5,7,195],[15,6,7,196],[16,2,8,0],[17,2,9,0,"exports"],[17,9,9,7],[17,10,9,8,"concatMapTo"],[17,21,9,19],[17,24,9,22,"concatMapTo"],[17,35,9,33],[18,0,9,34],[18,3]],"functionMap":{"names":["<global>","concatMapTo","concatMap_1.concatMap$argument_0"],"mappings":"AAA;ACK;2ECC,uCD,0CC,uCD;CDC"},"hasCjsExports":true},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[{"name":"./camelCase.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":23,"index":162},"end":{"line":4,"column":48,"index":187}}],"key":"77+02KlvkBtOlYmzpPJuK+55BJY=","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.stringUpperFirst = exports.stringLowerFirst = void 0;\n const camelCase_js_1 = require(_dependencyMap[0], \"./camelCase.js\");\n /** @internal */\n function converter(map) {\n return value => value ? map[value.charCodeAt(0)] + value.slice(1) : '';\n }\n /**\n * @name stringLowerFirst\n * @summary Lowercase the first letter of a string\n * @description\n * Lowercase the first letter of a string\n * @example\n * <BR>\n *\n * ```javascript\n * import { stringLowerFirst } from '@polkadot/util';\n *\n * stringLowerFirst('ABC'); // => 'aBC'\n * ```\n */\n exports.stringLowerFirst = converter(camelCase_js_1.CC_TO_LO);\n /**\n * @name stringUpperFirst\n * @summary Uppercase the first letter of a string\n * @description\n * Lowercase the first letter of a string\n * @example\n * <BR>\n *\n * ```javascript\n * import { stringUpperFirst } from '@polkadot/util';\n *\n * stringUpperFirst('abc'); // => 'Abc'\n * ```\n */\n exports.stringUpperFirst = converter(camelCase_js_1.CC_TO_UP);\n});","lineCount":43,"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,"stringUpperFirst"],[7,26,3,24],[7,29,3,27,"exports"],[7,36,3,34],[7,37,3,35,"stringLowerFirst"],[7,53,3,51],[7,56,3,54],[7,61,3,59],[7,62,3,60],[8,2,4,0],[8,8,4,6,"camelCase_js_1"],[8,22,4,20],[8,25,4,23,"require"],[8,32,4,30],[8,33,4,30,"_dependencyMap"],[8,47,4,30],[8,68,4,47],[8,69,4,48],[9,2,5,0],[10,2,6,0],[10,11,6,9,"converter"],[10,20,6,18,"converter"],[10,21,6,19,"map"],[10,24,6,22],[10,26,6,24],[11,4,7,4],[11,11,7,12,"value"],[11,16,7,17],[11,20,7,22,"value"],[11,25,7,27],[11,28,8,10,"map"],[11,31,8,13],[11,32,8,14,"value"],[11,37,8,19],[11,38,8,20,"charCodeAt"],[11,48,8,30],[11,49,8,31],[11,50,8,32],[11,51,8,33],[11,52,8,34],[11,55,8,37,"value"],[11,60,8,42],[11,61,8,43,"slice"],[11,66,8,48],[11,67,8,49],[11,68,8,50],[11,69,8,51],[11,72,9,10],[11,74,9,12],[12,2,10,0],[13,2,11,0],[14,0,12,0],[15,0,13,0],[16,0,14,0],[17,0,15,0],[18,0,16,0],[19,0,17,0],[20,0,18,0],[21,0,19,0],[22,0,20,0],[23,0,21,0],[24,0,22,0],[25,0,23,0],[26,0,24,0],[27,2,25,0,"exports"],[27,9,25,7],[27,10,25,8,"stringLowerFirst"],[27,26,25,24],[27,29,25,27,"converter"],[27,38,25,36],[27,39,25,37,"camelCase_js_1"],[27,53,25,51],[27,54,25,52,"CC_TO_LO"],[27,62,25,60],[27,63,25,61],[28,2,26,0],[29,0,27,0],[30,0,28,0],[31,0,29,0],[32,0,30,0],[33,0,31,0],[34,0,32,0],[35,0,33,0],[36,0,34,0],[37,0,35,0],[38,0,36,0],[39,0,37,0],[40,0,38,0],[41,0,39,0],[42,2,40,0,"exports"],[42,9,40,7],[42,10,40,8,"stringUpperFirst"],[42,26,40,24],[42,29,40,27,"converter"],[42,38,40,36],[42,39,40,37,"camelCase_js_1"],[42,53,40,51],[42,54,40,52,"CC_TO_UP"],[42,62,40,60],[42,63,40,61],[43,0,40,62],[43,3]],"functionMap":{"names":["<global>","converter","<anonymous>"],"mappings":"AAA;ACK;WCC;YDE;CDC"},"hasCjsExports":true},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[{"name":"rxjs","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":15,"index":137},"end":{"line":4,"column":30,"index":152}}],"key":"atDzfUGaJNRNtwyVumomzH/5ygw=","exportNames":["*"],"imports":1}},{"name":"../util/index.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":19,"index":173},"end":{"line":5,"column":46,"index":200}}],"key":"H94lp+EitftSFqDHaenrSs5zKB0=","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.getBlockByNumber = getBlockByNumber;\n const rxjs_1 = require(_dependencyMap[0], \"rxjs\");\n const index_js_1 = require(_dependencyMap[1], \"../util/index.js\");\n /**\n * @name getBlockByNumber\n * @param {( BN | bigint | Uint8Array | number | string )} blockNumber\n * @description Get a specific block (e.g. rpc.chain.getBlock) and extend it with the author by block number\n * @example\n * ```javascript\n * const { author, block } = await api.derive.chain.getBlockByNumber(123);\n *\n * console.log(`block #${block.header.number} was authored by ${author}`);\n * ```\n */\n function getBlockByNumber(instanceId, api) {\n return (0, index_js_1.memo)(instanceId, blockNumber => api.rpc.chain.getBlockHash(blockNumber).pipe((0, rxjs_1.switchMap)(h => api.derive.chain.getBlock(h))));\n }\n});","lineCount":24,"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,"getBlockByNumber"],[7,26,3,24],[7,29,3,27,"getBlockByNumber"],[7,45,3,43],[8,2,4,0],[8,8,4,6,"rxjs_1"],[8,14,4,12],[8,17,4,15,"require"],[8,24,4,22],[8,25,4,22,"_dependencyMap"],[8,39,4,22],[8,50,4,29],[8,51,4,30],[9,2,5,0],[9,8,5,6,"index_js_1"],[9,18,5,16],[9,21,5,19,"require"],[9,28,5,26],[9,29,5,26,"_dependencyMap"],[9,43,5,26],[9,66,5,45],[9,67,5,46],[10,2,6,0],[11,0,7,0],[12,0,8,0],[13,0,9,0],[14,0,10,0],[15,0,11,0],[16,0,12,0],[17,0,13,0],[18,0,14,0],[19,0,15,0],[20,0,16,0],[21,2,17,0],[21,11,17,9,"getBlockByNumber"],[21,27,17,25,"getBlockByNumber"],[21,28,17,26,"instanceId"],[21,38,17,36],[21,40,17,38,"api"],[21,43,17,41],[21,45,17,43],[22,4,18,4],[22,11,18,11],[22,12,18,12],[22,13,18,13],[22,15,18,15,"index_js_1"],[22,25,18,25],[22,26,18,26,"memo"],[22,30,18,30],[22,32,18,32,"instanceId"],[22,42,18,42],[22,44,18,45,"blockNumber"],[22,55,18,56],[22,59,18,61,"api"],[22,62,18,64],[22,63,18,65,"rpc"],[22,66,18,68],[22,67,18,69,"chain"],[22,72,18,74],[22,73,18,75,"getBlockHash"],[22,85,18,87],[22,86,18,88,"blockNumber"],[22,97,18,99],[22,98,18,100],[22,99,18,101,"pipe"],[22,103,18,105],[22,104,18,106],[22,105,18,107],[22,106,18,108],[22,108,18,110,"rxjs_1"],[22,114,18,116],[22,115,18,117,"switchMap"],[22,124,18,126],[22,126,18,129,"h"],[22,127,18,130],[22,131,18,135,"api"],[22,134,18,138],[22,135,18,139,"derive"],[22,141,18,145],[22,142,18,146,"chain"],[22,147,18,151],[22,148,18,152,"getBlock"],[22,156,18,160],[22,157,18,161,"h"],[22,158,18,162],[22,159,18,163],[22,160,18,164],[22,161,18,165],[22,162,18,166],[23,2,19,0],[24,0,19,1],[24,3]],"functionMap":{"names":["<global>","getBlockByNumber","<anonymous>"],"mappings":"AAA;ACgB;4CCC,yHD;CDC"},"hasCjsExports":true},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"./emptyCheck.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":24,"index":128},"end":{"line":4,"column":50,"index":154}}],"key":"yjDnfy4cSIs0wsA/Ut4+7Y55L44=","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.polkadot = void 0;\n const emptyCheck_js_1 = require(_dependencyMap[0], \"./emptyCheck.js\");\n exports.polkadot = {\n LimitParathreadCommits: emptyCheck_js_1.emptyCheck,\n OnlyStakingAndClaims: emptyCheck_js_1.emptyCheck,\n PrevalidateAttests: emptyCheck_js_1.emptyCheck,\n RestrictFunctionality: emptyCheck_js_1.emptyCheck,\n TransactionCallFilter: emptyCheck_js_1.emptyCheck,\n ValidateDoubleVoteReports: emptyCheck_js_1.emptyCheck\n };\n});","lineCount":17,"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,"polkadot"],[7,18,3,16],[7,21,3,19],[7,26,3,24],[7,27,3,25],[8,2,4,0],[8,8,4,6,"emptyCheck_js_1"],[8,23,4,21],[8,26,4,24,"require"],[8,33,4,31],[8,34,4,31,"_dependencyMap"],[8,48,4,31],[8,70,4,49],[8,71,4,50],[9,2,5,0,"exports"],[9,9,5,7],[9,10,5,8,"polkadot"],[9,18,5,16],[9,21,5,19],[10,4,6,4,"LimitParathreadCommits"],[10,26,6,26],[10,28,6,28,"emptyCheck_js_1"],[10,43,6,43],[10,44,6,44,"emptyCheck"],[10,54,6,54],[11,4,7,4,"OnlyStakingAndClaims"],[11,24,7,24],[11,26,7,26,"emptyCheck_js_1"],[11,41,7,41],[11,42,7,42,"emptyCheck"],[11,52,7,52],[12,4,8,4,"PrevalidateAttests"],[12,22,8,22],[12,24,8,24,"emptyCheck_js_1"],[12,39,8,39],[12,40,8,40,"emptyCheck"],[12,50,8,50],[13,4,9,4,"RestrictFunctionality"],[13,25,9,25],[13,27,9,27,"emptyCheck_js_1"],[13,42,9,42],[13,43,9,43,"emptyCheck"],[13,53,9,53],[14,4,10,4,"TransactionCallFilter"],[14,25,10,25],[14,27,10,27,"emptyCheck_js_1"],[14,42,10,42],[14,43,10,43,"emptyCheck"],[14,53,10,53],[15,4,11,4,"ValidateDoubleVoteReports"],[15,29,11,29],[15,31,11,31,"emptyCheck_js_1"],[15,46,11,46],[15,47,11,47,"emptyCheck"],[16,2,12,0],[16,3,12,1],[17,0,12,2],[17,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":true},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"./v0.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":3,"column":16,"index":93},"end":{"line":3,"column":34,"index":111}}],"key":"N6CrgjOnj8WHVSvBKD2tui19jSM=","exportNames":["*"],"imports":1}},{"name":"./v1.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":16,"index":129},"end":{"line":4,"column":34,"index":147}}],"key":"IkVtgfXZVYKYIuo03pgrYdQBEKY=","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 const v0_js_1 = require(_dependencyMap[0], \"./v0.js\");\n const v1_js_1 = require(_dependencyMap[1], \"./v1.js\");\n /* eslint-disable sort-keys */\n exports.default = {\n rpc: {},\n types: Object.assign({}, v0_js_1.v0, v1_js_1.v1, {\n // latest mappings\n SiField: 'Si1Field',\n SiLookupTypeId: 'Si1LookupTypeId',\n SiPath: 'Si1Path',\n SiType: 'Si1Type',\n SiTypeDef: 'Si1TypeDef',\n SiTypeDefArray: 'Si1TypeDefArray',\n SiTypeDefBitSequence: 'Si1TypeDefBitSequence',\n SiTypeDefCompact: 'Si1TypeDefCompact',\n SiTypeDefComposite: 'Si1TypeDefComposite',\n SiTypeDefPrimitive: 'Si1TypeDefPrimitive',\n SiTypeDefSequence: 'Si1TypeDefSequence',\n SiTypeDefTuple: 'Si1TypeDefTuple',\n SiTypeParameter: 'Si1TypeParameter',\n SiTypeDefVariant: 'Si1TypeDefVariant',\n SiVariant: 'Si1Variant'\n })\n };\n});","lineCount":31,"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],[7,8,3,6,"v0_js_1"],[7,15,3,13],[7,18,3,16,"require"],[7,25,3,23],[7,26,3,23,"_dependencyMap"],[7,40,3,23],[7,54,3,33],[7,55,3,34],[8,2,4,0],[8,8,4,6,"v1_js_1"],[8,15,4,13],[8,18,4,16,"require"],[8,25,4,23],[8,26,4,23,"_dependencyMap"],[8,40,4,23],[8,54,4,33],[8,55,4,34],[9,2,5,0],[10,2,6,0,"exports"],[10,9,6,7],[10,10,6,8,"default"],[10,17,6,15],[10,20,6,18],[11,4,7,4,"rpc"],[11,7,7,7],[11,9,7,9],[11,10,7,10],[11,11,7,11],[12,4,8,4,"types"],[12,9,8,9],[12,11,8,9,"Object"],[12,17,8,9],[12,18,8,9,"assign"],[12,24,8,9],[12,29,9,11,"v0_js_1"],[12,36,9,18],[12,37,9,19,"v0"],[12,39,9,21],[12,41,10,11,"v1_js_1"],[12,48,10,18],[12,49,10,19,"v1"],[12,51,10,21],[13,6,11,8],[14,6,12,8,"SiField"],[14,13,12,15],[14,15,12,17],[14,25,12,27],[15,6,13,8,"SiLookupTypeId"],[15,20,13,22],[15,22,13,24],[15,39,13,41],[16,6,14,8,"SiPath"],[16,12,14,14],[16,14,14,16],[16,23,14,25],[17,6,15,8,"SiType"],[17,12,15,14],[17,14,15,16],[17,23,15,25],[18,6,16,8,"SiTypeDef"],[18,15,16,17],[18,17,16,19],[18,29,16,31],[19,6,17,8,"SiTypeDefArray"],[19,20,17,22],[19,22,17,24],[19,39,17,41],[20,6,18,8,"SiTypeDefBitSequence"],[20,26,18,28],[20,28,18,30],[20,51,18,53],[21,6,19,8,"SiTypeDefCompact"],[21,22,19,24],[21,24,19,26],[21,43,19,45],[22,6,20,8,"SiTypeDefComposite"],[22,24,20,26],[22,26,20,28],[22,47,20,49],[23,6,21,8,"SiTypeDefPrimitive"],[23,24,21,26],[23,26,21,28],[23,47,21,49],[24,6,22,8,"SiTypeDefSequence"],[24,23,22,25],[24,25,22,27],[24,45,22,47],[25,6,23,8,"SiTypeDefTuple"],[25,20,23,22],[25,22,23,24],[25,39,23,41],[26,6,24,8,"SiTypeParameter"],[26,21,24,23],[26,23,24,25],[26,41,24,43],[27,6,25,8,"SiTypeDefVariant"],[27,22,25,24],[27,24,25,26],[27,43,25,45],[28,6,26,8,"SiVariant"],[28,15,26,17],[28,17,26,19],[29,4,26,31],[30,2,28,0],[30,3,28,1],[31,0,28,2],[31,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":true},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[{"name":"./DeriveJunction.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":28,"index":146},"end":{"line":4,"column":58,"index":176}}],"key":"u7hy5YvS5z1OEyLGfpt1N8plAvo=","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.keyExtractPath = keyExtractPath;\n const DeriveJunction_js_1 = require(_dependencyMap[0], \"./DeriveJunction.js\");\n const RE_JUNCTION = /\\/(\\/?)([^/]+)/g;\n /**\n * @description Extract derivation junctions from the supplied path\n */\n function keyExtractPath(derivePath) {\n const parts = derivePath.match(RE_JUNCTION);\n const path = [];\n let constructed = '';\n if (parts) {\n constructed = parts.join('');\n for (const p of parts) {\n path.push(DeriveJunction_js_1.DeriveJunction.from(p.substring(1)));\n }\n }\n if (constructed !== derivePath) {\n throw new Error(`Re-constructed path \"${constructed}\" does not match input`);\n }\n return {\n parts,\n path\n };\n }\n});","lineCount":31,"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,"keyExtractPath"],[7,24,3,22],[7,27,3,25,"keyExtractPath"],[7,41,3,39],[8,2,4,0],[8,8,4,6,"DeriveJunction_js_1"],[8,27,4,25],[8,30,4,28,"require"],[8,37,4,35],[8,38,4,35,"_dependencyMap"],[8,52,4,35],[8,78,4,57],[8,79,4,58],[9,2,5,0],[9,8,5,6,"RE_JUNCTION"],[9,19,5,17],[9,22,5,20],[9,39,5,37],[10,2,6,0],[11,0,7,0],[12,0,8,0],[13,2,9,0],[13,11,9,9,"keyExtractPath"],[13,25,9,23,"keyExtractPath"],[13,26,9,24,"derivePath"],[13,36,9,34],[13,38,9,36],[14,4,10,4],[14,10,10,10,"parts"],[14,15,10,15],[14,18,10,18,"derivePath"],[14,28,10,28],[14,29,10,29,"match"],[14,34,10,34],[14,35,10,35,"RE_JUNCTION"],[14,46,10,46],[14,47,10,47],[15,4,11,4],[15,10,11,10,"path"],[15,14,11,14],[15,17,11,17],[15,19,11,19],[16,4,12,4],[16,8,12,8,"constructed"],[16,19,12,19],[16,22,12,22],[16,24,12,24],[17,4,13,4],[17,8,13,8,"parts"],[17,13,13,13],[17,15,13,15],[18,6,14,8,"constructed"],[18,17,14,19],[18,20,14,22,"parts"],[18,25,14,27],[18,26,14,28,"join"],[18,30,14,32],[18,31,14,33],[18,33,14,35],[18,34,14,36],[19,6,15,8],[19,11,15,13],[19,17,15,19,"p"],[19,18,15,20],[19,22,15,24,"parts"],[19,27,15,29],[19,29,15,31],[20,8,16,12,"path"],[20,12,16,16],[20,13,16,17,"push"],[20,17,16,21],[20,18,16,22,"DeriveJunction_js_1"],[20,37,16,41],[20,38,16,42,"DeriveJunction"],[20,52,16,56],[20,53,16,57,"from"],[20,57,16,61],[20,58,16,62,"p"],[20,59,16,63],[20,60,16,64,"substring"],[20,69,16,73],[20,70,16,74],[20,71,16,75],[20,72,16,76],[20,73,16,77],[20,74,16,78],[21,6,17,8],[22,4,18,4],[23,4,19,4],[23,8,19,8,"constructed"],[23,19,19,19],[23,24,19,24,"derivePath"],[23,34,19,34],[23,36,19,36],[24,6,20,8],[24,12,20,14],[24,16,20,18,"Error"],[24,21,20,23],[24,22,20,24],[24,46,20,48,"constructed"],[24,57,20,59],[24,81,20,83],[24,82,20,84],[25,4,21,4],[26,4,22,4],[26,11,22,11],[27,6,23,8,"parts"],[27,11,23,13],[28,6,24,8,"path"],[29,4,25,4],[29,5,25,5],[30,2,26,0],[31,0,26,1],[31,3]],"functionMap":{"names":["<global>","keyExtractPath"],"mappings":"AAA;ACQ;CDiB"},"hasCjsExports":true},"type":"js/module"}]}