Files
pezkuwi-mobile-app/frontend/.metro-cache/cache/c3/b4283b021952db0f6acce5d80755ce76e02a0f75a59d603cd92de8eb3f4216e24e90b6
T
2025-10-24 02:46:57 +00:00

1 line
29 KiB
Plaintext

{"dependencies":[{"name":"@polkadot/util","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":243,"index":243}}],"key":"ISHU1ovvPMrCldqRjtd1JhW9dyo=","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 Object.defineProperty(exports, \"DEFAULT_UINT_BITS\", {\n enumerable: true,\n get: function () {\n return DEFAULT_UINT_BITS;\n }\n });\n Object.defineProperty(exports, \"AbstractInt\", {\n enumerable: true,\n get: function () {\n return AbstractInt;\n }\n });\n var _polkadotUtil = require(_dependencyMap[0], \"@polkadot/util\");\n const DEFAULT_UINT_BITS = 64;\n const MAX_NUMBER_BITS = 52;\n const MUL_P = new _polkadotUtil.BN(1_00_00);\n const FORMATTERS = [['Perquintill', _polkadotUtil.BN_QUINTILL], ['Perbill', _polkadotUtil.BN_BILLION], ['Permill', _polkadotUtil.BN_MILLION], ['Percent', _polkadotUtil.BN_HUNDRED]];\n function isToBn(value) {\n return (0, _polkadotUtil.isFunction)(value.toBn);\n }\n function toPercentage(value, divisor) {\n return `${(value.mul(MUL_P).div(divisor).toNumber() / 100).toFixed(2)}%`;\n }\n /** @internal */\n function decodeAbstractInt(value, isNegative) {\n if ((0, _polkadotUtil.isNumber)(value)) {\n if (!Number.isInteger(value) || value > Number.MAX_SAFE_INTEGER || value < Number.MIN_SAFE_INTEGER) {\n throw new Error('Number needs to be an integer <= Number.MAX_SAFE_INTEGER, i.e. 2 ^ 53 - 1');\n }\n return value;\n } else if ((0, _polkadotUtil.isString)(value)) {\n if ((0, _polkadotUtil.isHex)(value, -1, true)) {\n return (0, _polkadotUtil.hexToBn)(value, {\n isLe: false,\n isNegative\n }).toString();\n }\n if (value.includes('.') || value.includes(',') || value.includes('e')) {\n throw new Error('String should not contain decimal points or scientific notation');\n }\n return value;\n } else if ((0, _polkadotUtil.isBn)(value) || (0, _polkadotUtil.isBigInt)(value)) {\n return value.toString();\n } else if ((0, _polkadotUtil.isObject)(value)) {\n if (isToBn(value)) {\n return value.toBn().toString();\n }\n // Allow the construction from an object with a single top-level key. This means that\n // single key objects can be treated equivalently to numbers, assuming they meet the\n // specific requirements. (This is useful in Weights 1.5 where Objects are compact)\n const keys = Object.keys(value);\n if (keys.length !== 1) {\n throw new Error('Unable to construct number from multi-key object');\n }\n return decodeAbstractInt(value[keys[0]], isNegative);\n } else if (!value) {\n return 0;\n }\n throw new Error(`Unable to create BN from unknown type ${typeof value}`);\n }\n /**\n * @name AbstractInt\n * @ignore\n * @noInheritDoc\n */\n class AbstractInt extends _polkadotUtil.BN {\n #bitLength;\n constructor(registry, value = 0, bitLength = DEFAULT_UINT_BITS, isSigned = false) {\n // Construct via a string/number, which will be passed in the BN constructor.\n // It would be ideal to actually return a BN, but there is an issue:\n // https://github.com/indutny/bn.js/issues/206\n super(\n // shortcut isU8a as used in SCALE decoding\n (0, _polkadotUtil.isU8a)(value) ? bitLength <= 48 ? (0, _polkadotUtil.u8aToNumber)(value.subarray(0, bitLength / 8), {\n isNegative: isSigned\n }) : (0, _polkadotUtil.u8aToBn)(value.subarray(0, bitLength / 8), {\n isLe: true,\n isNegative: isSigned\n }).toString() : decodeAbstractInt(value, isSigned));\n this.registry = registry;\n this.#bitLength = bitLength;\n this.encodedLength = this.#bitLength / 8;\n this.initialU8aLength = this.#bitLength / 8;\n this.isUnsigned = !isSigned;\n const isNegative = this.isNeg();\n const maxBits = bitLength - (isSigned && !isNegative ? 1 : 0);\n if (isNegative && !isSigned) {\n throw new Error(`${this.toRawType()}: Negative number passed to unsigned type`);\n } else if (super.bitLength() > maxBits) {\n throw new Error(`${this.toRawType()}: Input too large. Found input with ${super.bitLength()} bits, expected ${maxBits}`);\n }\n }\n /**\n * @description returns a hash of the contents\n */\n get hash() {\n return this.registry.hash(this.toU8a());\n }\n /**\n * @description Checks if the value is a zero value (align elsewhere)\n */\n get isEmpty() {\n return this.isZero();\n }\n /**\n * @description Returns the number of bits in the value\n */\n bitLength() {\n return this.#bitLength;\n }\n /**\n * @description Compares the value of the input to see if there is a match\n */\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n eq(other) {\n // Here we are actually overriding the built-in .eq to take care of both\n // number and BN inputs (no `.eqn` needed) - numbers will be converted\n return super.eq((0, _polkadotUtil.isHex)(other) ? (0, _polkadotUtil.hexToBn)(other.toString(), {\n isLe: false,\n isNegative: !this.isUnsigned\n }) : (0, _polkadotUtil.bnToBn)(other));\n }\n /**\n * @description Returns a breakdown of the hex encoding for this Codec\n */\n inspect() {\n return {\n outer: [this.toU8a()]\n };\n }\n /**\n * @description True if this value is the max of the type\n */\n isMax() {\n const u8a = this.toU8a().filter(b => b === 0xff);\n return u8a.length === this.#bitLength / 8;\n }\n /**\n * @description Returns a BigInt representation of the number\n */\n toBigInt() {\n return BigInt(this.toString());\n }\n /**\n * @description Returns the BN representation of the number. (Compatibility)\n */\n toBn() {\n return this;\n }\n /**\n * @description Returns a hex string representation of the value\n */\n toHex(isLe = false) {\n // For display/JSON, this is BE, for compare, use isLe\n return (0, _polkadotUtil.bnToHex)(this, {\n bitLength: this.bitLength(),\n isLe,\n isNegative: !this.isUnsigned\n });\n }\n /**\n * @description Converts the Object to to a human-friendly JSON, with additional fields, expansion and formatting of information\n */\n toHuman(_isExpanded) {\n const rawType = this.toRawType();\n if (rawType === 'Balance') {\n return this.isMax() ? 'everything'\n // FIXME In the case of multiples we need some way of detecting which instance this belongs\n // to. as it stands we will always format (incorrectly) against the first token defined\n : (0, _polkadotUtil.formatBalance)(this, {\n decimals: this.registry.chainDecimals[0],\n withSi: true,\n withUnit: this.registry.chainTokens[0]\n });\n }\n const [, divisor] = FORMATTERS.find(([type]) => type === rawType) || [];\n return divisor ? toPercentage(this, divisor) : (0, _polkadotUtil.formatNumber)(this);\n }\n /**\n * @description Converts the Object to JSON, typically used for RPC transfers\n */\n toJSON(onlyHex = false) {\n // FIXME this return type should by string | number, however BN returns string\n // Options here are\n // - super.bitLength() - the actual used bits, use hex when close to MAX_SAFE_INTEGER\n // - this.#bitLength - the max used bits, use hex when larger than native Rust type\n return onlyHex || this.#bitLength > 128 || super.bitLength() > MAX_NUMBER_BITS ? this.toHex() : this.toNumber();\n }\n /**\n * @description Returns the value in a primitive form, either number when <= 52 bits, or string otherwise\n */\n toPrimitive() {\n return super.bitLength() > MAX_NUMBER_BITS ? this.toString() : this.toNumber();\n }\n /**\n * @description Returns the base runtime type name for this instance\n */\n toRawType() {\n // NOTE In the case of balances, which have a special meaning on the UI\n // and can be interpreted differently, return a specific value for it so\n // underlying it always matches (no matter which length it actually is)\n return this instanceof this.registry.createClassUnsafe('Balance') ? 'Balance' : `${this.isUnsigned ? 'u' : 'i'}${this.bitLength()}`;\n }\n /**\n * @description Returns the string representation of the value\n * @param base The base to use for the conversion\n */\n toString(base) {\n // only included here since we do not inherit docs\n return super.toString(base);\n }\n /**\n * @description Encodes the value as a Uint8Array as per the SCALE specifications\n */\n toU8a(_isBare) {\n return (0, _polkadotUtil.bnToU8a)(this, {\n bitLength: this.bitLength(),\n isLe: true,\n isNegative: !this.isUnsigned\n });\n }\n }\n});","lineCount":229,"map":[[7,2,2,0,"Object"],[7,8,2,0],[7,9,2,0,"defineProperty"],[7,23,2,0],[7,24,2,0,"exports"],[7,31,2,0],[8,4,2,0,"enumerable"],[8,14,2,0],[9,4,2,0,"get"],[9,7,2,0],[9,18,2,0,"get"],[9,19,2,0],[10,6,2,0],[10,13,2,0,"DEFAULT_UINT_BITS"],[10,30,2,0],[11,4,2,0],[12,2,2,0],[13,2,60,0,"Object"],[13,8,60,0],[13,9,60,0,"defineProperty"],[13,23,60,0],[13,24,60,0,"exports"],[13,31,60,0],[14,4,60,0,"enumerable"],[14,14,60,0],[15,4,60,0,"get"],[15,7,60,0],[15,18,60,0,"get"],[15,19,60,0],[16,6,60,0],[16,13,60,0,"AbstractInt"],[16,24,60,0],[17,4,60,0],[18,2,60,0],[19,2,1,0],[19,6,1,0,"_polkadotUtil"],[19,19,1,0],[19,22,1,0,"require"],[19,29,1,0],[19,30,1,0,"_dependencyMap"],[19,44,1,0],[20,2,2,7],[20,8,2,13,"DEFAULT_UINT_BITS"],[20,25,2,30],[20,28,2,33],[20,30,2,35],[21,2,3,0],[21,8,3,6,"MAX_NUMBER_BITS"],[21,23,3,21],[21,26,3,24],[21,28,3,26],[22,2,4,0],[22,8,4,6,"MUL_P"],[22,13,4,11],[22,16,4,14],[22,20,4,18,"BN"],[22,33,4,20],[22,34,4,20,"BN"],[22,36,4,20],[22,37,4,21],[22,44,4,28],[22,45,4,29],[23,2,5,0],[23,8,5,6,"FORMATTERS"],[23,18,5,16],[23,21,5,19],[23,22,6,4],[23,23,6,5],[23,36,6,18],[23,38,6,20,"BN_QUINTILL"],[23,51,6,31],[23,52,6,31,"BN_QUINTILL"],[23,63,6,31],[23,64,6,32],[23,66,7,4],[23,67,7,5],[23,76,7,14],[23,78,7,16,"BN_BILLION"],[23,91,7,26],[23,92,7,26,"BN_BILLION"],[23,102,7,26],[23,103,7,27],[23,105,8,4],[23,106,8,5],[23,115,8,14],[23,117,8,16,"BN_MILLION"],[23,130,8,26],[23,131,8,26,"BN_MILLION"],[23,141,8,26],[23,142,8,27],[23,144,9,4],[23,145,9,5],[23,154,9,14],[23,156,9,16,"BN_HUNDRED"],[23,169,9,26],[23,170,9,26,"BN_HUNDRED"],[23,180,9,26],[23,181,9,27],[23,182,10,1],[24,2,11,0],[24,11,11,9,"isToBn"],[24,17,11,15,"isToBn"],[24,18,11,16,"value"],[24,23,11,21],[24,25,11,23],[25,4,12,4],[25,11,12,11],[25,15,12,11,"isFunction"],[25,28,12,21],[25,29,12,21,"isFunction"],[25,39,12,21],[25,41,12,22,"value"],[25,46,12,27],[25,47,12,28,"toBn"],[25,51,12,32],[25,52,12,33],[26,2,13,0],[27,2,14,0],[27,11,14,9,"toPercentage"],[27,23,14,21,"toPercentage"],[27,24,14,22,"value"],[27,29,14,27],[27,31,14,29,"divisor"],[27,38,14,36],[27,40,14,38],[28,4,15,4],[28,11,15,11],[28,14,15,14],[28,15,15,15,"value"],[28,20,15,20],[28,21,15,21,"mul"],[28,24,15,24],[28,25,15,25,"MUL_P"],[28,30,15,30],[28,31,15,31],[28,32,15,32,"div"],[28,35,15,35],[28,36,15,36,"divisor"],[28,43,15,43],[28,44,15,44],[28,45,15,45,"toNumber"],[28,53,15,53],[28,54,15,54],[28,55,15,55],[28,58,15,58],[28,61,15,61],[28,63,15,63,"toFixed"],[28,70,15,70],[28,71,15,71],[28,72,15,72],[28,73,15,73],[28,76,15,76],[29,2,16,0],[30,2,17,0],[31,2,18,0],[31,11,18,9,"decodeAbstractInt"],[31,28,18,26,"decodeAbstractInt"],[31,29,18,27,"value"],[31,34,18,32],[31,36,18,34,"isNegative"],[31,46,18,44],[31,48,18,46],[32,4,19,4],[32,8,19,8],[32,12,19,8,"isNumber"],[32,25,19,16],[32,26,19,16,"isNumber"],[32,34,19,16],[32,36,19,17,"value"],[32,41,19,22],[32,42,19,23],[32,44,19,25],[33,6,20,8],[33,10,20,12],[33,11,20,13,"Number"],[33,17,20,19],[33,18,20,20,"isInteger"],[33,27,20,29],[33,28,20,30,"value"],[33,33,20,35],[33,34,20,36],[33,38,20,40,"value"],[33,43,20,45],[33,46,20,48,"Number"],[33,52,20,54],[33,53,20,55,"MAX_SAFE_INTEGER"],[33,69,20,71],[33,73,20,75,"value"],[33,78,20,80],[33,81,20,83,"Number"],[33,87,20,89],[33,88,20,90,"MIN_SAFE_INTEGER"],[33,104,20,106],[33,106,20,108],[34,8,21,12],[34,14,21,18],[34,18,21,22,"Error"],[34,23,21,27],[34,24,21,28],[34,99,21,103],[34,100,21,104],[35,6,22,8],[36,6,23,8],[36,13,23,15,"value"],[36,18,23,20],[37,4,24,4],[37,5,24,5],[37,11,25,9],[37,15,25,13],[37,19,25,13,"isString"],[37,32,25,21],[37,33,25,21,"isString"],[37,41,25,21],[37,43,25,22,"value"],[37,48,25,27],[37,49,25,28],[37,51,25,30],[38,6,26,8],[38,10,26,12],[38,14,26,12,"isHex"],[38,27,26,17],[38,28,26,17,"isHex"],[38,33,26,17],[38,35,26,18,"value"],[38,40,26,23],[38,42,26,25],[38,43,26,26],[38,44,26,27],[38,46,26,29],[38,50,26,33],[38,51,26,34],[38,53,26,36],[39,8,27,12],[39,15,27,19],[39,19,27,19,"hexToBn"],[39,32,27,26],[39,33,27,26,"hexToBn"],[39,40,27,26],[39,42,27,27,"value"],[39,47,27,32],[39,49,27,34],[40,10,27,36,"isLe"],[40,14,27,40],[40,16,27,42],[40,21,27,47],[41,10,27,49,"isNegative"],[42,8,27,60],[42,9,27,61],[42,10,27,62],[42,11,27,63,"toString"],[42,19,27,71],[42,20,27,72],[42,21,27,73],[43,6,28,8],[44,6,29,8],[44,10,29,12,"value"],[44,15,29,17],[44,16,29,18,"includes"],[44,24,29,26],[44,25,29,27],[44,28,29,30],[44,29,29,31],[44,33,29,35,"value"],[44,38,29,40],[44,39,29,41,"includes"],[44,47,29,49],[44,48,29,50],[44,51,29,53],[44,52,29,54],[44,56,29,58,"value"],[44,61,29,63],[44,62,29,64,"includes"],[44,70,29,72],[44,71,29,73],[44,74,29,76],[44,75,29,77],[44,77,29,79],[45,8,30,12],[45,14,30,18],[45,18,30,22,"Error"],[45,23,30,27],[45,24,30,28],[45,89,30,93],[45,90,30,94],[46,6,31,8],[47,6,32,8],[47,13,32,15,"value"],[47,18,32,20],[48,4,33,4],[48,5,33,5],[48,11,34,9],[48,15,34,13],[48,19,34,13,"isBn"],[48,32,34,17],[48,33,34,17,"isBn"],[48,37,34,17],[48,39,34,18,"value"],[48,44,34,23],[48,45,34,24],[48,49,34,28],[48,53,34,28,"isBigInt"],[48,66,34,36],[48,67,34,36,"isBigInt"],[48,75,34,36],[48,77,34,37,"value"],[48,82,34,42],[48,83,34,43],[48,85,34,45],[49,6,35,8],[49,13,35,15,"value"],[49,18,35,20],[49,19,35,21,"toString"],[49,27,35,29],[49,28,35,30],[49,29,35,31],[50,4,36,4],[50,5,36,5],[50,11,37,9],[50,15,37,13],[50,19,37,13,"isObject"],[50,32,37,21],[50,33,37,21,"isObject"],[50,41,37,21],[50,43,37,22,"value"],[50,48,37,27],[50,49,37,28],[50,51,37,30],[51,6,38,8],[51,10,38,12,"isToBn"],[51,16,38,18],[51,17,38,19,"value"],[51,22,38,24],[51,23,38,25],[51,25,38,27],[52,8,39,12],[52,15,39,19,"value"],[52,20,39,24],[52,21,39,25,"toBn"],[52,25,39,29],[52,26,39,30],[52,27,39,31],[52,28,39,32,"toString"],[52,36,39,40],[52,37,39,41],[52,38,39,42],[53,6,40,8],[54,6,41,8],[55,6,42,8],[56,6,43,8],[57,6,44,8],[57,12,44,14,"keys"],[57,16,44,18],[57,19,44,21,"Object"],[57,25,44,27],[57,26,44,28,"keys"],[57,30,44,32],[57,31,44,33,"value"],[57,36,44,38],[57,37,44,39],[58,6,45,8],[58,10,45,12,"keys"],[58,14,45,16],[58,15,45,17,"length"],[58,21,45,23],[58,26,45,28],[58,27,45,29],[58,29,45,31],[59,8,46,12],[59,14,46,18],[59,18,46,22,"Error"],[59,23,46,27],[59,24,46,28],[59,74,46,78],[59,75,46,79],[60,6,47,8],[61,6,48,8],[61,13,48,15,"decodeAbstractInt"],[61,30,48,32],[61,31,48,33,"value"],[61,36,48,38],[61,37,48,39,"keys"],[61,41,48,43],[61,42,48,44],[61,43,48,45],[61,44,48,46],[61,45,48,47],[61,47,48,49,"isNegative"],[61,57,48,59],[61,58,48,60],[62,4,49,4],[62,5,49,5],[62,11,50,9],[62,15,50,13],[62,16,50,14,"value"],[62,21,50,19],[62,23,50,21],[63,6,51,8],[63,13,51,15],[63,14,51,16],[64,4,52,4],[65,4,53,4],[65,10,53,10],[65,14,53,14,"Error"],[65,19,53,19],[65,20,53,20],[65,61,53,61],[65,68,53,68,"value"],[65,73,53,73],[65,75,53,75],[65,76,53,76],[66,2,54,0],[67,2,55,0],[68,0,56,0],[69,0,57,0],[70,0,58,0],[71,0,59,0],[72,2,60,7],[72,8,60,13,"AbstractInt"],[72,19,60,24],[72,28,60,33,"BN"],[72,41,60,35],[72,42,60,35,"BN"],[72,44,60,35],[72,45,60,36],[73,4,67,4],[73,5,67,5,"bitLength"],[73,14,67,14],[74,4,68,4,"constructor"],[74,15,68,15,"constructor"],[74,16,68,16,"registry"],[74,24,68,24],[74,26,68,26,"value"],[74,31,68,31],[74,34,68,34],[74,35,68,35],[74,37,68,37,"bitLength"],[74,46,68,46],[74,49,68,49,"DEFAULT_UINT_BITS"],[74,66,68,66],[74,68,68,68,"isSigned"],[74,76,68,76],[74,79,68,79],[74,84,68,84],[74,86,68,86],[75,6,69,8],[76,6,70,8],[77,6,71,8],[78,6,72,8],[78,11,72,13],[79,6,73,8],[80,6,74,8],[80,10,74,8,"isU8a"],[80,23,74,13],[80,24,74,13,"isU8a"],[80,29,74,13],[80,31,74,14,"value"],[80,36,74,19],[80,37,74,20],[80,40,75,14,"bitLength"],[80,49,75,23],[80,53,75,27],[80,55,75,29],[80,58,76,18],[80,62,76,18,"u8aToNumber"],[80,75,76,29],[80,76,76,29,"u8aToNumber"],[80,87,76,29],[80,89,76,30,"value"],[80,94,76,35],[80,95,76,36,"subarray"],[80,103,76,44],[80,104,76,45],[80,105,76,46],[80,107,76,48,"bitLength"],[80,116,76,57],[80,119,76,60],[80,120,76,61],[80,121,76,62],[80,123,76,64],[81,8,76,66,"isNegative"],[81,18,76,76],[81,20,76,78,"isSigned"],[82,6,76,87],[82,7,76,88],[82,8,76,89],[82,11,77,18],[82,15,77,18,"u8aToBn"],[82,28,77,25],[82,29,77,25,"u8aToBn"],[82,36,77,25],[82,38,77,26,"value"],[82,43,77,31],[82,44,77,32,"subarray"],[82,52,77,40],[82,53,77,41],[82,54,77,42],[82,56,77,44,"bitLength"],[82,65,77,53],[82,68,77,56],[82,69,77,57],[82,70,77,58],[82,72,77,60],[83,8,77,62,"isLe"],[83,12,77,66],[83,14,77,68],[83,18,77,72],[84,8,77,74,"isNegative"],[84,18,77,84],[84,20,77,86,"isSigned"],[85,6,77,95],[85,7,77,96],[85,8,77,97],[85,9,77,98,"toString"],[85,17,77,106],[85,18,77,107],[85,19,77,108],[85,22,78,14,"decodeAbstractInt"],[85,39,78,31],[85,40,78,32,"value"],[85,45,78,37],[85,47,78,39,"isSigned"],[85,55,78,47],[85,56,78,48],[85,57,78,49],[86,6,79,8],[86,10,79,12],[86,11,79,13,"registry"],[86,19,79,21],[86,22,79,24,"registry"],[86,30,79,32],[87,6,80,8],[87,10,80,12],[87,11,80,13],[87,12,80,14,"bitLength"],[87,21,80,23],[87,24,80,26,"bitLength"],[87,33,80,35],[88,6,81,8],[88,10,81,12],[88,11,81,13,"encodedLength"],[88,24,81,26],[88,27,81,29],[88,31,81,33],[88,32,81,34],[88,33,81,35,"bitLength"],[88,42,81,44],[88,45,81,47],[88,46,81,48],[89,6,82,8],[89,10,82,12],[89,11,82,13,"initialU8aLength"],[89,27,82,29],[89,30,82,32],[89,34,82,36],[89,35,82,37],[89,36,82,38,"bitLength"],[89,45,82,47],[89,48,82,50],[89,49,82,51],[90,6,83,8],[90,10,83,12],[90,11,83,13,"isUnsigned"],[90,21,83,23],[90,24,83,26],[90,25,83,27,"isSigned"],[90,33,83,35],[91,6,84,8],[91,12,84,14,"isNegative"],[91,22,84,24],[91,25,84,27],[91,29,84,31],[91,30,84,32,"isNeg"],[91,35,84,37],[91,36,84,38],[91,37,84,39],[92,6,85,8],[92,12,85,14,"maxBits"],[92,19,85,21],[92,22,85,24,"bitLength"],[92,31,85,33],[92,35,85,37,"isSigned"],[92,43,85,45],[92,47,85,49],[92,48,85,50,"isNegative"],[92,58,85,60],[92,61,85,63],[92,62,85,64],[92,65,85,67],[92,66,85,68],[92,67,85,69],[93,6,86,8],[93,10,86,12,"isNegative"],[93,20,86,22],[93,24,86,26],[93,25,86,27,"isSigned"],[93,33,86,35],[93,35,86,37],[94,8,87,12],[94,14,87,18],[94,18,87,22,"Error"],[94,23,87,27],[94,24,87,28],[94,27,87,31],[94,31,87,35],[94,32,87,36,"toRawType"],[94,41,87,45],[94,42,87,46],[94,43,87,47],[94,86,87,90],[94,87,87,91],[95,6,88,8],[95,7,88,9],[95,13,89,13],[95,17,89,17],[95,22,89,22],[95,23,89,23,"bitLength"],[95,32,89,32],[95,33,89,33],[95,34,89,34],[95,37,89,37,"maxBits"],[95,44,89,44],[95,46,89,46],[96,8,90,12],[96,14,90,18],[96,18,90,22,"Error"],[96,23,90,27],[96,24,90,28],[96,27,90,31],[96,31,90,35],[96,32,90,36,"toRawType"],[96,41,90,45],[96,42,90,46],[96,43,90,47],[96,82,90,86],[96,87,90,91],[96,88,90,92,"bitLength"],[96,97,90,101],[96,98,90,102],[96,99,90,103],[96,118,90,122,"maxBits"],[96,125,90,129],[96,127,90,131],[96,128,90,132],[97,6,91,8],[98,4,92,4],[99,4,93,4],[100,0,94,0],[101,0,95,0],[102,4,96,4],[102,8,96,8,"hash"],[102,12,96,12,"hash"],[102,13,96,12],[102,15,96,15],[103,6,97,8],[103,13,97,15],[103,17,97,19],[103,18,97,20,"registry"],[103,26,97,28],[103,27,97,29,"hash"],[103,31,97,33],[103,32,97,34],[103,36,97,38],[103,37,97,39,"toU8a"],[103,42,97,44],[103,43,97,45],[103,44,97,46],[103,45,97,47],[104,4,98,4],[105,4,99,4],[106,0,100,0],[107,0,101,0],[108,4,102,4],[108,8,102,8,"isEmpty"],[108,15,102,15,"isEmpty"],[108,16,102,15],[108,18,102,18],[109,6,103,8],[109,13,103,15],[109,17,103,19],[109,18,103,20,"isZero"],[109,24,103,26],[109,25,103,27],[109,26,103,28],[110,4,104,4],[111,4,105,4],[112,0,106,0],[113,0,107,0],[114,4,108,4,"bitLength"],[114,13,108,13,"bitLength"],[114,14,108,13],[114,16,108,16],[115,6,109,8],[115,13,109,15],[115,17,109,19],[115,18,109,20],[115,19,109,21,"bitLength"],[115,28,109,30],[116,4,110,4],[117,4,111,4],[118,0,112,0],[119,0,113,0],[120,4,114,4],[121,4,115,4,"eq"],[121,6,115,6,"eq"],[121,7,115,7,"other"],[121,12,115,12],[121,14,115,14],[122,6,116,8],[123,6,117,8],[124,6,118,8],[124,13,118,15],[124,18,118,20],[124,19,118,21,"eq"],[124,21,118,23],[124,22,118,24],[124,26,118,24,"isHex"],[124,39,118,29],[124,40,118,29,"isHex"],[124,45,118,29],[124,47,118,30,"other"],[124,52,118,35],[124,53,118,36],[124,56,119,14],[124,60,119,14,"hexToBn"],[124,73,119,21],[124,74,119,21,"hexToBn"],[124,81,119,21],[124,83,119,22,"other"],[124,88,119,27],[124,89,119,28,"toString"],[124,97,119,36],[124,98,119,37],[124,99,119,38],[124,101,119,40],[125,8,119,42,"isLe"],[125,12,119,46],[125,14,119,48],[125,19,119,53],[126,8,119,55,"isNegative"],[126,18,119,65],[126,20,119,67],[126,21,119,68],[126,25,119,72],[126,26,119,73,"isUnsigned"],[127,6,119,84],[127,7,119,85],[127,8,119,86],[127,11,120,14],[127,15,120,14,"bnToBn"],[127,28,120,20],[127,29,120,20,"bnToBn"],[127,35,120,20],[127,37,120,21,"other"],[127,42,120,26],[127,43,120,27],[127,44,120,28],[128,4,121,4],[129,4,122,4],[130,0,123,0],[131,0,124,0],[132,4,125,4,"inspect"],[132,11,125,11,"inspect"],[132,12,125,11],[132,14,125,14],[133,6,126,8],[133,13,126,15],[134,8,127,12,"outer"],[134,13,127,17],[134,15,127,19],[134,16,127,20],[134,20,127,24],[134,21,127,25,"toU8a"],[134,26,127,30],[134,27,127,31],[134,28,127,32],[135,6,128,8],[135,7,128,9],[136,4,129,4],[137,4,130,4],[138,0,131,0],[139,0,132,0],[140,4,133,4,"isMax"],[140,9,133,9,"isMax"],[140,10,133,9],[140,12,133,12],[141,6,134,8],[141,12,134,14,"u8a"],[141,15,134,17],[141,18,134,20],[141,22,134,24],[141,23,134,25,"toU8a"],[141,28,134,30],[141,29,134,31],[141,30,134,32],[141,31,134,33,"filter"],[141,37,134,39],[141,38,134,41,"b"],[141,39,134,42],[141,43,134,47,"b"],[141,44,134,48],[141,49,134,53],[141,53,134,57],[141,54,134,58],[142,6,135,8],[142,13,135,15,"u8a"],[142,16,135,18],[142,17,135,19,"length"],[142,23,135,25],[142,28,135,31],[142,32,135,35],[142,33,135,36],[142,34,135,37,"bitLength"],[142,43,135,46],[142,46,135,49],[142,47,135,51],[143,4,136,4],[144,4,137,4],[145,0,138,0],[146,0,139,0],[147,4,140,4,"toBigInt"],[147,12,140,12,"toBigInt"],[147,13,140,12],[147,15,140,15],[148,6,141,8],[148,13,141,15,"BigInt"],[148,19,141,21],[148,20,141,22],[148,24,141,26],[148,25,141,27,"toString"],[148,33,141,35],[148,34,141,36],[148,35,141,37],[148,36,141,38],[149,4,142,4],[150,4,143,4],[151,0,144,0],[152,0,145,0],[153,4,146,4,"toBn"],[153,8,146,8,"toBn"],[153,9,146,8],[153,11,146,11],[154,6,147,8],[154,13,147,15],[154,17,147,19],[155,4,148,4],[156,4,149,4],[157,0,150,0],[158,0,151,0],[159,4,152,4,"toHex"],[159,9,152,9,"toHex"],[159,10,152,10,"isLe"],[159,14,152,14],[159,17,152,17],[159,22,152,22],[159,24,152,24],[160,6,153,8],[161,6,154,8],[161,13,154,15],[161,17,154,15,"bnToHex"],[161,30,154,22],[161,31,154,22,"bnToHex"],[161,38,154,22],[161,40,154,23],[161,44,154,27],[161,46,154,29],[162,8,155,12,"bitLength"],[162,17,155,21],[162,19,155,23],[162,23,155,27],[162,24,155,28,"bitLength"],[162,33,155,37],[162,34,155,38],[162,35,155,39],[163,8,156,12,"isLe"],[163,12,156,16],[164,8,157,12,"isNegative"],[164,18,157,22],[164,20,157,24],[164,21,157,25],[164,25,157,29],[164,26,157,30,"isUnsigned"],[165,6,158,8],[165,7,158,9],[165,8,158,10],[166,4,159,4],[167,4,160,4],[168,0,161,0],[169,0,162,0],[170,4,163,4,"toHuman"],[170,11,163,11,"toHuman"],[170,12,163,12,"_isExpanded"],[170,23,163,23],[170,25,163,25],[171,6,164,8],[171,12,164,14,"rawType"],[171,19,164,21],[171,22,164,24],[171,26,164,28],[171,27,164,29,"toRawType"],[171,36,164,38],[171,37,164,39],[171,38,164,40],[172,6,165,8],[172,10,165,12,"rawType"],[172,17,165,19],[172,22,165,24],[172,31,165,33],[172,33,165,35],[173,8,166,12],[173,15,166,19],[173,19,166,23],[173,20,166,24,"isMax"],[173,25,166,29],[173,26,166,30],[173,27,166,31],[173,30,167,18],[174,8,168,16],[175,8,169,16],[176,8,169,16],[176,10,170,18],[176,14,170,18,"formatBalance"],[176,27,170,31],[176,28,170,31,"formatBalance"],[176,41,170,31],[176,43,170,32],[176,47,170,36],[176,49,170,38],[177,10,170,40,"decimals"],[177,18,170,48],[177,20,170,50],[177,24,170,54],[177,25,170,55,"registry"],[177,33,170,63],[177,34,170,64,"chainDecimals"],[177,47,170,77],[177,48,170,78],[177,49,170,79],[177,50,170,80],[178,10,170,82,"withSi"],[178,16,170,88],[178,18,170,90],[178,22,170,94],[179,10,170,96,"withUnit"],[179,18,170,104],[179,20,170,106],[179,24,170,110],[179,25,170,111,"registry"],[179,33,170,119],[179,34,170,120,"chainTokens"],[179,45,170,131],[179,46,170,132],[179,47,170,133],[180,8,170,135],[180,9,170,136],[180,10,170,137],[181,6,171,8],[182,6,172,8],[182,12,172,14],[182,15,172,17,"divisor"],[182,22,172,24],[182,23,172,25],[182,26,172,28,"FORMATTERS"],[182,36,172,38],[182,37,172,39,"find"],[182,41,172,43],[182,42,172,44],[182,43,172,45],[182,44,172,46,"type"],[182,48,172,50],[182,49,172,51],[182,54,172,56,"type"],[182,58,172,60],[182,63,172,65,"rawType"],[182,70,172,72],[182,71,172,73],[182,75,172,77],[182,77,172,79],[183,6,173,8],[183,13,173,15,"divisor"],[183,20,173,22],[183,23,174,14,"toPercentage"],[183,35,174,26],[183,36,174,27],[183,40,174,31],[183,42,174,33,"divisor"],[183,49,174,40],[183,50,174,41],[183,53,175,14],[183,57,175,14,"formatNumber"],[183,70,175,26],[183,71,175,26,"formatNumber"],[183,83,175,26],[183,85,175,27],[183,89,175,31],[183,90,175,32],[184,4,176,4],[185,4,177,4],[186,0,178,0],[187,0,179,0],[188,4,180,4,"toJSON"],[188,10,180,10,"toJSON"],[188,11,180,11,"onlyHex"],[188,18,180,18],[188,21,180,21],[188,26,180,26],[188,28,180,28],[189,6,181,8],[190,6,182,8],[191,6,183,8],[192,6,184,8],[193,6,185,8],[193,13,185,15,"onlyHex"],[193,20,185,22],[193,24,185,27],[193,28,185,31],[193,29,185,32],[193,30,185,33,"bitLength"],[193,39,185,42],[193,42,185,45],[193,45,185,49],[193,49,185,54],[193,54,185,59],[193,55,185,60,"bitLength"],[193,64,185,69],[193,65,185,70],[193,66,185,71],[193,69,185,74,"MAX_NUMBER_BITS"],[193,84,185,90],[193,87,186,14],[193,91,186,18],[193,92,186,19,"toHex"],[193,97,186,24],[193,98,186,25],[193,99,186,26],[193,102,187,14],[193,106,187,18],[193,107,187,19,"toNumber"],[193,115,187,27],[193,116,187,28],[193,117,187,29],[194,4,188,4],[195,4,189,4],[196,0,190,0],[197,0,191,0],[198,4,192,4,"toPrimitive"],[198,15,192,15,"toPrimitive"],[198,16,192,15],[198,18,192,18],[199,6,193,8],[199,13,193,15],[199,18,193,20],[199,19,193,21,"bitLength"],[199,28,193,30],[199,29,193,31],[199,30,193,32],[199,33,193,35,"MAX_NUMBER_BITS"],[199,48,193,50],[199,51,194,14],[199,55,194,18],[199,56,194,19,"toString"],[199,64,194,27],[199,65,194,28],[199,66,194,29],[199,69,195,14],[199,73,195,18],[199,74,195,19,"toNumber"],[199,82,195,27],[199,83,195,28],[199,84,195,29],[200,4,196,4],[201,4,197,4],[202,0,198,0],[203,0,199,0],[204,4,200,4,"toRawType"],[204,13,200,13,"toRawType"],[204,14,200,13],[204,16,200,16],[205,6,201,8],[206,6,202,8],[207,6,203,8],[208,6,204,8],[208,13,204,15],[208,17,204,19],[208,29,204,31],[208,33,204,35],[208,34,204,36,"registry"],[208,42,204,44],[208,43,204,45,"createClassUnsafe"],[208,60,204,62],[208,61,204,63],[208,70,204,72],[208,71,204,73],[208,74,205,14],[208,83,205,23],[208,86,206,14],[208,89,206,17],[208,93,206,21],[208,94,206,22,"isUnsigned"],[208,104,206,32],[208,107,206,35],[208,110,206,38],[208,113,206,41],[208,116,206,44],[208,119,206,47],[208,123,206,51],[208,124,206,52,"bitLength"],[208,133,206,61],[208,134,206,62],[208,135,206,63],[208,137,206,65],[209,4,207,4],[210,4,208,4],[211,0,209,0],[212,0,210,0],[213,0,211,0],[214,4,212,4,"toString"],[214,12,212,12,"toString"],[214,13,212,13,"base"],[214,17,212,17],[214,19,212,19],[215,6,213,8],[216,6,214,8],[216,13,214,15],[216,18,214,20],[216,19,214,21,"toString"],[216,27,214,29],[216,28,214,30,"base"],[216,32,214,34],[216,33,214,35],[217,4,215,4],[218,4,216,4],[219,0,217,0],[220,0,218,0],[221,4,219,4,"toU8a"],[221,9,219,9,"toU8a"],[221,10,219,10,"_isBare"],[221,17,219,17],[221,19,219,19],[222,6,220,8],[222,13,220,15],[222,17,220,15,"bnToU8a"],[222,30,220,22],[222,31,220,22,"bnToU8a"],[222,38,220,22],[222,40,220,23],[222,44,220,27],[222,46,220,29],[223,8,221,12,"bitLength"],[223,17,221,21],[223,19,221,23],[223,23,221,27],[223,24,221,28,"bitLength"],[223,33,221,37],[223,34,221,38],[223,35,221,39],[224,8,222,12,"isLe"],[224,12,222,16],[224,14,222,18],[224,18,222,22],[225,8,223,12,"isNegative"],[225,18,223,22],[225,20,223,24],[225,21,223,25],[225,25,223,29],[225,26,223,30,"isUnsigned"],[226,6,224,8],[226,7,224,9],[226,8,224,10],[227,4,225,4],[228,2,226,0],[229,0,226,1],[229,3]],"functionMap":{"names":["<global>","isToBn","toPercentage","decodeAbstractInt","AbstractInt","AbstractInt#constructor","AbstractInt#get__hash","AbstractInt#get__isEmpty","AbstractInt#bitLength","AbstractInt#eq","AbstractInt#inspect","AbstractInt#isMax","toU8a.filter$argument_0","AbstractInt#toBigInt","AbstractInt#toBn","AbstractInt#toHex","AbstractInt#toHuman","FORMATTERS.find$argument_0","AbstractInt#toJSON","AbstractInt#toPrimitive","AbstractInt#toRawType","AbstractInt#toString","AbstractInt#toU8a"],"mappings":"AAA;ACU;CDE;AEC;CFE;AGE;CHoC;OIM;ICQ;KDwB;IEI;KFE;IGI;KHE;III;KJE;IKK;KLM;IMI;KNI;IOI;wCCC,iBD;KPE;ISI;KTE;IUI;KVE;IWI;KXO;IYI;4CCS,4BD;KZI;IcI;KdQ;IeI;KfI;IgBI;KhBO;IiBK;KjBG;IkBI;KlBM;CJC"},"hasCjsExports":false},"type":"js/module"}]}