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":"./class.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":19,"index":133},"end":{"line":4,"column":40,"index":154}}],"key":"hr8SWx25kSzNXEy+30aPMG7zoCM=","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.isChildClass = isChildClass;\n const class_js_1 = require(_dependencyMap[0], \"./class.js\");\n /**\n * @name isChildClass\n * @summary Tests if the child extends the parent Class\n * @description\n * Checks to see if the child Class extends the parent Class\n * @example\n * <BR>\n *\n * ```javascript\n * import { isChildClass } from '@polkadot/util';\n *\n * console.log('isChildClass', isChildClass(BN, BN); // => true\n * console.log('isChildClass', isChildClass(BN, Uint8Array); // => false\n * ```\n */\n function isChildClass(Parent, Child) {\n // https://stackoverflow.com/questions/30993434/check-if-a-constructor-inherits-another-in-es6/30993664\n return (0, class_js_1.isClass)(Child) && (0, class_js_1.isClass)(Parent)\n // eslint-disable-next-line no-prototype-builtins\n ? Parent === Child || Parent.isPrototypeOf(Child) : false;\n }\n});","lineCount":30,"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,"isChildClass"],[7,22,3,20],[7,25,3,23,"isChildClass"],[7,37,3,35],[8,2,4,0],[8,8,4,6,"class_js_1"],[8,18,4,16],[8,21,4,19,"require"],[8,28,4,26],[8,29,4,26,"_dependencyMap"],[8,43,4,26],[8,60,4,39],[8,61,4,40],[9,2,5,0],[10,0,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,0,17,0],[22,0,18,0],[23,0,19,0],[24,2,20,0],[24,11,20,9,"isChildClass"],[24,23,20,21,"isChildClass"],[24,24,20,22,"Parent"],[24,30,20,28],[24,32,20,30,"Child"],[24,37,20,35],[24,39,20,37],[25,4,21,4],[26,4,22,4],[26,11,22,11],[26,12,22,12],[26,13,22,13],[26,15,22,15,"class_js_1"],[26,25,22,25],[26,26,22,26,"isClass"],[26,33,22,33],[26,35,22,35,"Child"],[26,40,22,40],[26,41,22,41],[26,45,22,45],[26,46,22,46],[26,47,22,47],[26,49,22,49,"class_js_1"],[26,59,22,59],[26,60,22,60,"isClass"],[26,67,22,67],[26,69,22,69,"Parent"],[26,75,22,75],[27,4,23,8],[28,4,23,8],[28,6,24,10,"Parent"],[28,12,24,16],[28,17,24,21,"Child"],[28,22,24,26],[28,26,24,30,"Parent"],[28,32,24,36],[28,33,24,37,"isPrototypeOf"],[28,46,24,50],[28,47,24,51,"Child"],[28,52,24,56],[28,53,24,57],[28,56,25,10],[28,61,25,15],[29,2,26,0],[30,0,26,1],[30,3]],"functionMap":{"names":["<global>","isChildClass"],"mappings":"AAA;ACmB;CDM"},"hasCjsExports":true},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[{"name":"../Observable","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":19,"index":136},"end":{"line":4,"column":43,"index":160}}],"key":"aLqSh2nqZQ/SY46BefsTfEUSJoQ=","exportNames":["*"],"imports":1}},{"name":"../util/executeSchedule","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":24,"index":186},"end":{"line":5,"column":58,"index":220}}],"key":"Fxw52IEQzCrpMSDADIsV7+EnCEs=","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.scheduleAsyncIterable = void 0;\n var Observable_1 = require(_dependencyMap[0], \"../Observable\");\n var executeSchedule_1 = require(_dependencyMap[1], \"../util/executeSchedule\");\n function scheduleAsyncIterable(input, scheduler) {\n if (!input) {\n throw new Error('Iterable cannot be null');\n }\n return new Observable_1.Observable(function (subscriber) {\n executeSchedule_1.executeSchedule(subscriber, scheduler, function () {\n var iterator = input[Symbol.asyncIterator]();\n executeSchedule_1.executeSchedule(subscriber, scheduler, function () {\n iterator.next().then(function (result) {\n if (result.done) {\n subscriber.complete();\n } else {\n subscriber.next(result.value);\n }\n });\n }, 0, true);\n });\n });\n }\n exports.scheduleAsyncIterable = scheduleAsyncIterable;\n});","lineCount":30,"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,"scheduleAsyncIterable"],[7,31,3,29],[7,34,3,32],[7,39,3,37],[7,40,3,38],[8,2,4,0],[8,6,4,4,"Observable_1"],[8,18,4,16],[8,21,4,19,"require"],[8,28,4,26],[8,29,4,26,"_dependencyMap"],[8,43,4,26],[8,63,4,42],[8,64,4,43],[9,2,5,0],[9,6,5,4,"executeSchedule_1"],[9,23,5,21],[9,26,5,24,"require"],[9,33,5,31],[9,34,5,31,"_dependencyMap"],[9,48,5,31],[9,78,5,57],[9,79,5,58],[10,2,6,0],[10,11,6,9,"scheduleAsyncIterable"],[10,32,6,30,"scheduleAsyncIterable"],[10,33,6,31,"input"],[10,38,6,36],[10,40,6,38,"scheduler"],[10,49,6,47],[10,51,6,49],[11,4,7,4],[11,8,7,8],[11,9,7,9,"input"],[11,14,7,14],[11,16,7,16],[12,6,8,8],[12,12,8,14],[12,16,8,18,"Error"],[12,21,8,23],[12,22,8,24],[12,47,8,49],[12,48,8,50],[13,4,9,4],[14,4,10,4],[14,11,10,11],[14,15,10,15,"Observable_1"],[14,27,10,27],[14,28,10,28,"Observable"],[14,38,10,38],[14,39,10,39],[14,49,10,49,"subscriber"],[14,59,10,59],[14,61,10,61],[15,6,11,8,"executeSchedule_1"],[15,23,11,25],[15,24,11,26,"executeSchedule"],[15,39,11,41],[15,40,11,42,"subscriber"],[15,50,11,52],[15,52,11,54,"scheduler"],[15,61,11,63],[15,63,11,65],[15,75,11,77],[16,8,12,12],[16,12,12,16,"iterator"],[16,20,12,24],[16,23,12,27,"input"],[16,28,12,32],[16,29,12,33,"Symbol"],[16,35,12,39],[16,36,12,40,"asyncIterator"],[16,49,12,53],[16,50,12,54],[16,51,12,55],[16,52,12,56],[17,8,13,12,"executeSchedule_1"],[17,25,13,29],[17,26,13,30,"executeSchedule"],[17,41,13,45],[17,42,13,46,"subscriber"],[17,52,13,56],[17,54,13,58,"scheduler"],[17,63,13,67],[17,65,13,69],[17,77,13,81],[18,10,14,16,"iterator"],[18,18,14,24],[18,19,14,25,"next"],[18,23,14,29],[18,24,14,30],[18,25,14,31],[18,26,14,32,"then"],[18,30,14,36],[18,31,14,37],[18,41,14,47,"result"],[18,47,14,53],[18,49,14,55],[19,12,15,20],[19,16,15,24,"result"],[19,22,15,30],[19,23,15,31,"done"],[19,27,15,35],[19,29,15,37],[20,14,16,24,"subscriber"],[20,24,16,34],[20,25,16,35,"complete"],[20,33,16,43],[20,34,16,44],[20,35,16,45],[21,12,17,20],[21,13,17,21],[21,19,18,25],[22,14,19,24,"subscriber"],[22,24,19,34],[22,25,19,35,"next"],[22,29,19,39],[22,30,19,40,"result"],[22,36,19,46],[22,37,19,47,"value"],[22,42,19,52],[22,43,19,53],[23,12,20,20],[24,10,21,16],[24,11,21,17],[24,12,21,18],[25,8,22,12],[25,9,22,13],[25,11,22,15],[25,12,22,16],[25,14,22,18],[25,18,22,22],[25,19,22,23],[26,6,23,8],[26,7,23,9],[26,8,23,10],[27,4,24,4],[27,5,24,5],[27,6,24,6],[28,2,25,0],[29,2,26,0,"exports"],[29,9,26,7],[29,10,26,8,"scheduleAsyncIterable"],[29,31,26,29],[29,34,26,32,"scheduleAsyncIterable"],[29,55,26,53],[30,0,26,54],[30,3]],"functionMap":{"names":["<global>","scheduleAsyncIterable","Observable_1.Observable$argument_0","executeSchedule_1.executeSchedule$argument_2","iterator.next.then$argument_0"],"mappings":"AAA;ACK;uCCI;iECC;qCCG;iBDO;SDE;KDC;CDC"},"hasCjsExports":true},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"@polkadot/api-derive","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":21,"index":155},"end":{"line":4,"column":52,"index":186}}],"key":"p3yyhCDzrqtoph/9KiZJ1mn23xc=","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.decorateDeriveSections = decorateDeriveSections;\n const api_derive_1 = require(_dependencyMap[0], \"@polkadot/api-derive\");\n /**\n * This is a section decorator which keeps all type information.\n */\n function decorateDeriveSections(decorateMethod, derives) {\n const getKeys = s => Object.keys(derives[s]);\n const creator = (s, m) => decorateMethod(derives[s][m]);\n const result = {};\n const names = Object.keys(derives);\n for (let i = 0, count = names.length; i < count; i++) {\n (0, api_derive_1.lazyDeriveSection)(result, names[i], getKeys, creator);\n }\n return result;\n }\n});","lineCount":22,"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,"decorateDeriveSections"],[7,32,3,30],[7,35,3,33,"decorateDeriveSections"],[7,57,3,55],[8,2,4,0],[8,8,4,6,"api_derive_1"],[8,20,4,18],[8,23,4,21,"require"],[8,30,4,28],[8,31,4,28,"_dependencyMap"],[8,45,4,28],[8,72,4,51],[8,73,4,52],[9,2,5,0],[10,0,6,0],[11,0,7,0],[12,2,8,0],[12,11,8,9,"decorateDeriveSections"],[12,33,8,31,"decorateDeriveSections"],[12,34,8,32,"decorateMethod"],[12,48,8,46],[12,50,8,48,"derives"],[12,57,8,55],[12,59,8,57],[13,4,9,4],[13,10,9,10,"getKeys"],[13,17,9,17],[13,20,9,21,"s"],[13,21,9,22],[13,25,9,27,"Object"],[13,31,9,33],[13,32,9,34,"keys"],[13,36,9,38],[13,37,9,39,"derives"],[13,44,9,46],[13,45,9,47,"s"],[13,46,9,48],[13,47,9,49],[13,48,9,50],[14,4,10,4],[14,10,10,10,"creator"],[14,17,10,17],[14,20,10,20,"creator"],[14,21,10,21,"s"],[14,22,10,22],[14,24,10,24,"m"],[14,25,10,25],[14,30,10,30,"decorateMethod"],[14,44,10,44],[14,45,10,45,"derives"],[14,52,10,52],[14,53,10,53,"s"],[14,54,10,54],[14,55,10,55],[14,56,10,56,"m"],[14,57,10,57],[14,58,10,58],[14,59,10,59],[15,4,11,4],[15,10,11,10,"result"],[15,16,11,16],[15,19,11,19],[15,20,11,20],[15,21,11,21],[16,4,12,4],[16,10,12,10,"names"],[16,15,12,15],[16,18,12,18,"Object"],[16,24,12,24],[16,25,12,25,"keys"],[16,29,12,29],[16,30,12,30,"derives"],[16,37,12,37],[16,38,12,38],[17,4,13,4],[17,9,13,9],[17,13,13,13,"i"],[17,14,13,14],[17,17,13,17],[17,18,13,18],[17,20,13,20,"count"],[17,25,13,25],[17,28,13,28,"names"],[17,33,13,33],[17,34,13,34,"length"],[17,40,13,40],[17,42,13,42,"i"],[17,43,13,43],[17,46,13,46,"count"],[17,51,13,51],[17,53,13,53,"i"],[17,54,13,54],[17,56,13,56],[17,58,13,58],[18,6,14,8],[18,7,14,9],[18,8,14,10],[18,10,14,12,"api_derive_1"],[18,22,14,24],[18,23,14,25,"lazyDeriveSection"],[18,40,14,42],[18,42,14,44,"result"],[18,48,14,50],[18,50,14,52,"names"],[18,55,14,57],[18,56,14,58,"i"],[18,57,14,59],[18,58,14,60],[18,60,14,62,"getKeys"],[18,67,14,69],[18,69,14,71,"creator"],[18,76,14,78],[18,77,14,79],[19,4,15,4],[20,4,16,4],[20,11,16,11,"result"],[20,17,16,17],[21,2,17,0],[22,0,17,1],[22,3]],"functionMap":{"names":["<global>","decorateDeriveSections","getKeys","creator"],"mappings":"AAA;ACO;oBCC,8BD;oBEC,uCF;CDO"},"hasCjsExports":true},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"./getDevServer","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":8,"column":0,"index":174},"end":{"line":8,"column":42,"index":216}}],"key":"WKfBgnKYQ+362ADqmV6Rh2L8YC4=","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 function _interopDefault(e) {\n return e && e.__esModule ? e : {\n default: e\n };\n }\n exports.buildUrlForBundle = buildUrlForBundle;\n var _getDevServer = require(_dependencyMap[0], \"./getDevServer\");\n var getDevServer = _interopDefault(_getDevServer);\n /**\n * Copyright © 2022 650 Industries.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n /**\n * Given a path and some optional additional query parameters, create the dev server bundle URL.\n * @param bundlePath like `/foobar`\n * @param params like `{ platform: \"web\" }`\n * @returns a URL like \"/foobar.bundle?platform=android&modulesOnly=true&runModule=false&runtimeBytecodeVersion=null\"\n */\n function buildUrlForBundle(bundlePath) {\n if (/^https?:\\/\\//.test(bundlePath)) {\n return bundlePath;\n }\n const {\n url: baseURL\n } = (0, getDevServer.default)();\n return baseURL ? new URL(bundlePath, baseURL).toString() : `//${bundlePath.replace(/^\\/+/, '')}`;\n }\n});","lineCount":37,"map":[[12,2,16,0,"exports"],[12,9,16,0],[12,10,16,0,"buildUrlForBundle"],[12,27,16,0],[12,30,16,0,"buildUrlForBundle"],[12,47,16,0],[13,2,8,0],[13,6,8,0,"_getDevServer"],[13,19,8,0],[13,22,8,0,"require"],[13,29,8,0],[13,30,8,0,"_dependencyMap"],[13,44,8,0],[14,2,8,0],[14,6,8,0,"getDevServer"],[14,18,8,0],[14,21,8,0,"_interopDefault"],[14,36,8,0],[14,37,8,0,"_getDevServer"],[14,50,8,0],[15,2,1,0],[16,0,2,0],[17,0,3,0],[18,0,4,0],[19,0,5,0],[20,0,6,0],[22,2,10,0],[23,0,11,0],[24,0,12,0],[25,0,13,0],[26,0,14,0],[27,0,15,0],[28,2,16,7],[28,11,16,16,"buildUrlForBundle"],[28,28,16,33,"buildUrlForBundle"],[28,29,16,34,"bundlePath"],[28,39,16,52],[28,41,16,62],[29,4,17,2],[29,8,17,6],[29,22,17,20],[29,23,17,21,"test"],[29,27,17,25],[29,28,17,26,"bundlePath"],[29,38,17,36],[29,39,17,37],[29,41,17,39],[30,6,18,4],[30,13,18,11,"bundlePath"],[30,23,18,21],[31,4,19,2],[32,4,20,2],[32,10,20,8],[33,6,20,10,"url"],[33,9,20,13],[33,11,20,15,"baseURL"],[34,4,20,23],[34,5,20,24],[34,8,20,27],[34,12,20,27,"getDevServer"],[34,24,20,39],[34,25,20,39,"default"],[34,32,20,39],[34,34,20,40],[34,35,20,41],[35,4,21,2],[35,11,21,9,"baseURL"],[35,18,21,16],[35,21,21,19],[35,25,21,23,"URL"],[35,28,21,26],[35,29,21,27,"bundlePath"],[35,39,21,37],[35,41,21,39,"baseURL"],[35,48,21,46],[35,49,21,47],[35,50,21,48,"toString"],[35,58,21,56],[35,59,21,57],[35,60,21,58],[35,63,21,61],[35,68,21,66,"bundlePath"],[35,78,21,76],[35,79,21,77,"replace"],[35,86,21,84],[35,87,21,85],[35,93,21,91],[35,95,21,93],[35,97,21,95],[35,98,21,96],[35,100,21,98],[36,2,22,0],[37,0,22,1],[37,3]],"functionMap":{"names":["<global>","buildUrlForBundle"],"mappings":"AAA;OCe;CDM"},"hasCjsExports":false},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"./hyphenateProperty","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":52,"index":52}}],"key":"H8O71MoJ0AWjZFTARiieipg/pYQ=","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 function _interopDefault(e) {\n return e && e.__esModule ? e : {\n default: e\n };\n }\n Object.defineProperty(exports, \"default\", {\n enumerable: true,\n get: function () {\n return cssifyDeclaration;\n }\n });\n var _hyphenateProperty = require(_dependencyMap[0], \"./hyphenateProperty\");\n var hyphenateProperty = _interopDefault(_hyphenateProperty);\n function cssifyDeclaration(property, value) {\n return (0, hyphenateProperty.default)(property) + ':' + value;\n }\n});","lineCount":23,"map":[[12,2,2,15,"Object"],[12,8,2,15],[12,9,2,15,"defineProperty"],[12,23,2,15],[12,24,2,15,"exports"],[12,31,2,15],[13,4,2,15,"enumerable"],[13,14,2,15],[14,4,2,15,"get"],[14,7,2,15],[14,18,2,15,"get"],[14,19,2,15],[15,6,2,15],[15,13,2,15,"cssifyDeclaration"],[15,30,2,15],[16,4,2,15],[17,2,2,15],[18,2,1,0],[18,6,1,0,"_hyphenateProperty"],[18,24,1,0],[18,27,1,0,"require"],[18,34,1,0],[18,35,1,0,"_dependencyMap"],[18,49,1,0],[19,2,1,0],[19,6,1,0,"hyphenateProperty"],[19,23,1,0],[19,26,1,0,"_interopDefault"],[19,41,1,0],[19,42,1,0,"_hyphenateProperty"],[19,60,1,0],[20,2,2,15],[20,11,2,24,"cssifyDeclaration"],[20,28,2,41,"cssifyDeclaration"],[20,29,2,42,"property"],[20,37,2,50],[20,39,2,52,"value"],[20,44,2,57],[20,46,2,59],[21,4,3,2],[21,11,3,9],[21,15,3,9,"hyphenateProperty"],[21,32,3,26],[21,33,3,26,"default"],[21,40,3,26],[21,42,3,27,"property"],[21,50,3,35],[21,51,3,36],[21,54,3,39],[21,57,3,42],[21,60,3,45,"value"],[21,65,3,50],[22,2,4,0],[23,0,4,1],[23,3]],"functionMap":{"names":["<global>","cssifyDeclaration"],"mappings":"AAA;eCC"},"hasCjsExports":false},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"./mode","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":1,"column":13,"index":13},"end":{"line":1,"column":30,"index":30}}],"key":"kP3UoMWYBHY2j1qDa+F4rCzyVl0=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n const Mode = require(_dependencyMap[0], \"./mode\");\n function ByteData(data) {\n this.mode = Mode.BYTE;\n if (typeof data === 'string') {\n this.data = new TextEncoder().encode(data);\n } else {\n this.data = new Uint8Array(data);\n }\n }\n ByteData.getBitsLength = function getBitsLength(length) {\n return length * 8;\n };\n ByteData.prototype.getLength = function getLength() {\n return this.data.length;\n };\n ByteData.prototype.getBitsLength = function getBitsLength() {\n return ByteData.getBitsLength(this.data.length);\n };\n ByteData.prototype.write = function (bitBuffer) {\n for (let i = 0, l = this.data.length; i < l; i++) {\n bitBuffer.put(this.data[i], 8);\n }\n };\n module.exports = ByteData;\n});","lineCount":26,"map":[[2,2,1,0],[2,8,1,6,"Mode"],[2,12,1,10],[2,15,1,13,"require"],[2,22,1,20],[2,23,1,20,"_dependencyMap"],[2,37,1,20],[2,50,1,29],[2,51,1,30],[3,2,3,0],[3,11,3,9,"ByteData"],[3,19,3,17,"ByteData"],[3,20,3,19,"data"],[3,24,3,23],[3,26,3,25],[4,4,4,2],[4,8,4,6],[4,9,4,7,"mode"],[4,13,4,11],[4,16,4,14,"Mode"],[4,20,4,18],[4,21,4,19,"BYTE"],[4,25,4,23],[5,4,5,2],[5,8,5,6],[5,15,5,14,"data"],[5,19,5,19],[5,24,5,24],[5,32,5,32],[5,34,5,34],[6,6,6,4],[6,10,6,8],[6,11,6,9,"data"],[6,15,6,13],[6,18,6,16],[6,22,6,20,"TextEncoder"],[6,33,6,31],[6,34,6,32],[6,35,6,33],[6,36,6,34,"encode"],[6,42,6,40],[6,43,6,41,"data"],[6,47,6,45],[6,48,6,46],[7,4,7,2],[7,5,7,3],[7,11,7,9],[8,6,8,4],[8,10,8,8],[8,11,8,9,"data"],[8,15,8,13],[8,18,8,16],[8,22,8,20,"Uint8Array"],[8,32,8,30],[8,33,8,31,"data"],[8,37,8,35],[8,38,8,36],[9,4,9,2],[10,2,10,0],[11,2,12,0,"ByteData"],[11,10,12,8],[11,11,12,9,"getBitsLength"],[11,24,12,22],[11,27,12,25],[11,36,12,34,"getBitsLength"],[11,49,12,47,"getBitsLength"],[11,50,12,49,"length"],[11,56,12,55],[11,58,12,57],[12,4,13,2],[12,11,13,9,"length"],[12,17,13,15],[12,20,13,18],[12,21,13,19],[13,2,14,0],[13,3,14,1],[14,2,16,0,"ByteData"],[14,10,16,8],[14,11,16,9,"prototype"],[14,20,16,18],[14,21,16,19,"getLength"],[14,30,16,28],[14,33,16,31],[14,42,16,40,"getLength"],[14,51,16,49,"getLength"],[14,52,16,49],[14,54,16,53],[15,4,17,2],[15,11,17,9],[15,15,17,13],[15,16,17,14,"data"],[15,20,17,18],[15,21,17,19,"length"],[15,27,17,25],[16,2,18,0],[16,3,18,1],[17,2,20,0,"ByteData"],[17,10,20,8],[17,11,20,9,"prototype"],[17,20,20,18],[17,21,20,19,"getBitsLength"],[17,34,20,32],[17,37,20,35],[17,46,20,44,"getBitsLength"],[17,59,20,57,"getBitsLength"],[17,60,20,57],[17,62,20,61],[18,4,21,2],[18,11,21,9,"ByteData"],[18,19,21,17],[18,20,21,18,"getBitsLength"],[18,33,21,31],[18,34,21,32],[18,38,21,36],[18,39,21,37,"data"],[18,43,21,41],[18,44,21,42,"length"],[18,50,21,48],[18,51,21,49],[19,2,22,0],[19,3,22,1],[20,2,24,0,"ByteData"],[20,10,24,8],[20,11,24,9,"prototype"],[20,20,24,18],[20,21,24,19,"write"],[20,26,24,24],[20,29,24,27],[20,39,24,37,"bitBuffer"],[20,48,24,46],[20,50,24,48],[21,4,25,2],[21,9,25,7],[21,13,25,11,"i"],[21,14,25,12],[21,17,25,15],[21,18,25,16],[21,20,25,18,"l"],[21,21,25,19],[21,24,25,22],[21,28,25,26],[21,29,25,27,"data"],[21,33,25,31],[21,34,25,32,"length"],[21,40,25,38],[21,42,25,40,"i"],[21,43,25,41],[21,46,25,44,"l"],[21,47,25,45],[21,49,25,47,"i"],[21,50,25,48],[21,52,25,50],[21,54,25,52],[22,6,26,4,"bitBuffer"],[22,15,26,13],[22,16,26,14,"put"],[22,19,26,17],[22,20,26,18],[22,24,26,22],[22,25,26,23,"data"],[22,29,26,27],[22,30,26,28,"i"],[22,31,26,29],[22,32,26,30],[22,34,26,32],[22,35,26,33],[22,36,26,34],[23,4,27,2],[24,2,28,0],[24,3,28,1],[25,2,30,0,"module"],[25,8,30,6],[25,9,30,7,"exports"],[25,16,30,14],[25,19,30,17,"ByteData"],[25,27,30,25],[26,0,30,25],[26,3]],"functionMap":{"names":["<global>","ByteData","getBitsLength","getLength","ByteData.prototype.write"],"mappings":"AAA;ACE;CDO;yBEE;CFE;+BGE;CHE;mCEE;CFE;2BIE;CJI"},"hasCjsExports":true},"type":"js/module"}]}