Files
pezkuwi-mobile-app/frontend/.metro-cache/cache/d8/8770ae8261d2b9318680244ef6803484878eeb98c0efd603f2e974036d149969c8f0d6
T
2025-11-08 10:46:19 +00:00

1 line
20 KiB
Plaintext

{"dependencies":[{"name":"../bn/toBn.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":39,"index":39}}],"key":"GG20BlFCryFXR+uOINYlStTZiEg=","exportNames":["*"],"imports":1}},{"name":"../is/boolean.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":40},"end":{"line":2,"column":45,"index":85}}],"key":"yTaz8wML2BQTXrkG66Ujr1e5kU0=","exportNames":["*"],"imports":1}},{"name":"./formatDecimal.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":3,"column":0,"index":86},"end":{"line":3,"column":51,"index":137}}],"key":"sd0lHSWj8bO50LcYDfTwKBHoH5A=","exportNames":["*"],"imports":1}},{"name":"./getSeparator.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":4,"column":0,"index":138},"end":{"line":4,"column":49,"index":187}}],"key":"Xid066qCdZJ9sD4kMYqmv4WPces=","exportNames":["*"],"imports":1}},{"name":"./si.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":5,"column":0,"index":188},"end":{"line":5,"column":53,"index":241}}],"key":"PJ855uvMJnqdmgzkAFxo0HwW76g=","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, \"formatBalance\", {\n enumerable: true,\n get: function () {\n return formatBalance;\n }\n });\n var _bnToBnJs = require(_dependencyMap[0], \"../bn/toBn.js\");\n var _isBooleanJs = require(_dependencyMap[1], \"../is/boolean.js\");\n var _formatDecimalJs = require(_dependencyMap[2], \"./formatDecimal.js\");\n var _getSeparatorJs = require(_dependencyMap[3], \"./getSeparator.js\");\n var _siJs = require(_dependencyMap[4], \"./si.js\");\n var DEFAULT_DECIMALS = 0;\n var DEFAULT_UNIT = _siJs.SI[_siJs.SI_MID].text;\n var defaultDecimals = DEFAULT_DECIMALS;\n var defaultUnit = DEFAULT_UNIT;\n function _formatBalance(input) {\n var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},\n _ref$decimals = _ref.decimals,\n decimals = _ref$decimals === void 0 ? defaultDecimals : _ref$decimals,\n forceUnit = _ref.forceUnit,\n _ref$locale = _ref.locale,\n locale = _ref$locale === void 0 ? 'en' : _ref$locale,\n _ref$withAll = _ref.withAll,\n withAll = _ref$withAll === void 0 ? false : _ref$withAll,\n _ref$withSi = _ref.withSi,\n withSi = _ref$withSi === void 0 ? true : _ref$withSi,\n _ref$withSiFull = _ref.withSiFull,\n withSiFull = _ref$withSiFull === void 0 ? false : _ref$withSiFull,\n _ref$withUnit = _ref.withUnit,\n withUnit = _ref$withUnit === void 0 ? true : _ref$withUnit,\n _ref$withZero = _ref.withZero,\n withZero = _ref$withZero === void 0 ? true : _ref$withZero;\n // we only work with string inputs here - convert anything\n // into the string-only value\n var text = (0, _bnToBnJs.bnToBn)(input).toString();\n if (text.length === 0 || text === '0') {\n return '0';\n }\n // strip the negative sign so we can work with clean groupings, re-add this in the\n // end when we return the result (from here on we work with positive numbers)\n var sign = '';\n if (text[0].startsWith('-')) {\n sign = '-';\n text = text.substring(1);\n }\n // We start at midpoint (8) minus 1 - this means that values display as\n // 123.4567 instead of 0.1234 k (so we always have the most relevant).\n var si = (0, _siJs.calcSi)(text, decimals, forceUnit);\n var mid = text.length - (decimals + si.power);\n var pre = mid <= 0 ? '0' : text.substring(0, mid);\n // get the post from the midpoint onward and then first add max decimals\n // before trimming to the correct (calculated) amount of decimals again\n var post = text.padStart(mid < 0 ? decimals : 1, '0').substring(mid < 0 ? 0 : mid).padEnd(withAll ? Math.max(decimals, 4) : 4, '0').substring(0, withAll ? Math.max(4, decimals + si.power) : 4);\n // remove all trailing 0's (if required via flag)\n if (!withZero) {\n var end = post.length - 1;\n // This looks inefficient, however it is better to do the checks and\n // only make one final slice than it is to do it in multiples\n do {\n if (post[end] === '0') {\n end--;\n }\n } while (post[end] === '0');\n post = post.substring(0, end + 1);\n }\n // the display unit\n var unit = (0, _isBooleanJs.isBoolean)(withUnit) ? _siJs.SI[_siJs.SI_MID].text : withUnit;\n // format the units for display based on the flags\n var units = withSi || withSiFull ? si.value === '-' ? withUnit ? ` ${unit}` : '' : ` ${withSiFull ? `${si.text}${withUnit ? ' ' : ''}` : si.value}${withUnit ? unit : ''}` : '';\n var _getSeparator = (0, _getSeparatorJs.getSeparator)(locale),\n decimal = _getSeparator.decimal,\n thousand = _getSeparator.thousand;\n return `${sign}${(0, _formatDecimalJs.formatDecimal)(pre, thousand)}${post && `${decimal}${post}`}${units}`;\n }\n var formatBalance = _formatBalance;\n formatBalance.calcSi = function (text) {\n var decimals = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : defaultDecimals;\n return (0, _siJs.calcSi)(text, decimals);\n };\n formatBalance.findSi = _siJs.findSi;\n formatBalance.getDefaults = function () {\n return {\n decimals: defaultDecimals,\n unit: defaultUnit\n };\n };\n formatBalance.getOptions = function () {\n var decimals = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : defaultDecimals;\n return _siJs.SI.filter(function (_ref2) {\n var power = _ref2.power;\n return power < 0 ? decimals + power >= 0 : true;\n });\n };\n formatBalance.setDefaults = function (_ref3) {\n var _ref4, _ref5;\n var decimals = _ref3.decimals,\n unit = _ref3.unit;\n defaultDecimals = (_ref4 = Array.isArray(decimals) ? decimals[0] : decimals) != null ? _ref4 : defaultDecimals;\n defaultUnit = (_ref5 = Array.isArray(unit) ? unit[0] : unit) != null ? _ref5 : defaultUnit;\n _siJs.SI[_siJs.SI_MID].text = defaultUnit;\n };\n});","lineCount":108,"map":[[7,2,63,0,"Object"],[7,8,63,0],[7,9,63,0,"defineProperty"],[7,23,63,0],[7,24,63,0,"exports"],[7,31,63,0],[8,4,63,0,"enumerable"],[8,14,63,0],[9,4,63,0,"get"],[9,7,63,0],[9,18,63,0,"get"],[9,19,63,0],[10,6,63,0],[10,13,63,0,"formatBalance"],[10,26,63,0],[11,4,63,0],[12,2,63,0],[13,2,1,0],[13,6,1,0,"_bnToBnJs"],[13,15,1,0],[13,18,1,0,"require"],[13,25,1,0],[13,26,1,0,"_dependencyMap"],[13,40,1,0],[14,2,2,0],[14,6,2,0,"_isBooleanJs"],[14,18,2,0],[14,21,2,0,"require"],[14,28,2,0],[14,29,2,0,"_dependencyMap"],[14,43,2,0],[15,2,3,0],[15,6,3,0,"_formatDecimalJs"],[15,22,3,0],[15,25,3,0,"require"],[15,32,3,0],[15,33,3,0,"_dependencyMap"],[15,47,3,0],[16,2,4,0],[16,6,4,0,"_getSeparatorJs"],[16,21,4,0],[16,24,4,0,"require"],[16,31,4,0],[16,32,4,0,"_dependencyMap"],[16,46,4,0],[17,2,5,0],[17,6,5,0,"_siJs"],[17,11,5,0],[17,14,5,0,"require"],[17,21,5,0],[17,22,5,0,"_dependencyMap"],[17,36,5,0],[18,2,6,0],[18,6,6,6,"DEFAULT_DECIMALS"],[18,22,6,22],[18,25,6,25],[18,26,6,26],[19,2,7,0],[19,6,7,6,"DEFAULT_UNIT"],[19,18,7,18],[19,21,7,21,"SI"],[19,26,7,23],[19,27,7,23,"SI"],[19,29,7,23],[19,30,7,24,"SI_MID"],[19,35,7,30],[19,36,7,30,"SI_MID"],[19,42,7,30],[19,43,7,31],[19,44,7,32,"text"],[19,48,7,36],[20,2,8,0],[20,6,8,4,"defaultDecimals"],[20,21,8,19],[20,24,8,22,"DEFAULT_DECIMALS"],[20,40,8,38],[21,2,9,0],[21,6,9,4,"defaultUnit"],[21,17,9,15],[21,20,9,18,"DEFAULT_UNIT"],[21,32,9,30],[22,2,10,0],[22,11,10,9,"_formatBalance"],[22,25,10,23,"_formatBalance"],[22,26,10,24,"input"],[22,31,10,29],[22,33,10,180],[23,4,10,180],[23,8,10,180,"_ref"],[23,12,10,180],[23,15,10,180,"arguments"],[23,24,10,180],[23,25,10,180,"length"],[23,31,10,180],[23,39,10,180,"arguments"],[23,48,10,180],[23,56,10,180,"undefined"],[23,65,10,180],[23,68,10,180,"arguments"],[23,77,10,180],[23,83,10,176],[23,84,10,177],[23,85,10,178],[24,6,10,178,"_ref$decimals"],[24,19,10,178],[24,22,10,178,"_ref"],[24,26,10,178],[24,27,10,33,"decimals"],[24,35,10,41],[25,6,10,33,"decimals"],[25,14,10,41],[25,17,10,41,"_ref$decimals"],[25,30,10,41],[25,44,10,44,"defaultDecimals"],[25,59,10,59],[25,62,10,59,"_ref$decimals"],[25,75,10,59],[26,6,10,61,"forceUnit"],[26,15,10,70],[26,18,10,70,"_ref"],[26,22,10,70],[26,23,10,61,"forceUnit"],[26,32,10,70],[27,6,10,70,"_ref$locale"],[27,17,10,70],[27,20,10,70,"_ref"],[27,24,10,70],[27,25,10,72,"locale"],[27,31,10,78],[28,6,10,72,"locale"],[28,12,10,78],[28,15,10,78,"_ref$locale"],[28,26,10,78],[28,40,10,81],[28,44,10,85],[28,47,10,85,"_ref$locale"],[28,58,10,85],[29,6,10,85,"_ref$withAll"],[29,18,10,85],[29,21,10,85,"_ref"],[29,25,10,85],[29,26,10,87,"withAll"],[29,33,10,94],[30,6,10,87,"withAll"],[30,13,10,94],[30,16,10,94,"_ref$withAll"],[30,28,10,94],[30,42,10,97],[30,47,10,102],[30,50,10,102,"_ref$withAll"],[30,62,10,102],[31,6,10,102,"_ref$withSi"],[31,17,10,102],[31,20,10,102,"_ref"],[31,24,10,102],[31,25,10,104,"withSi"],[31,31,10,110],[32,6,10,104,"withSi"],[32,12,10,110],[32,15,10,110,"_ref$withSi"],[32,26,10,110],[32,40,10,113],[32,44,10,117],[32,47,10,117,"_ref$withSi"],[32,58,10,117],[33,6,10,117,"_ref$withSiFull"],[33,21,10,117],[33,24,10,117,"_ref"],[33,28,10,117],[33,29,10,119,"withSiFull"],[33,39,10,129],[34,6,10,119,"withSiFull"],[34,16,10,129],[34,19,10,129,"_ref$withSiFull"],[34,34,10,129],[34,48,10,132],[34,53,10,137],[34,56,10,137,"_ref$withSiFull"],[34,71,10,137],[35,6,10,137,"_ref$withUnit"],[35,19,10,137],[35,22,10,137,"_ref"],[35,26,10,137],[35,27,10,139,"withUnit"],[35,35,10,147],[36,6,10,139,"withUnit"],[36,14,10,147],[36,17,10,147,"_ref$withUnit"],[36,30,10,147],[36,44,10,150],[36,48,10,154],[36,51,10,154,"_ref$withUnit"],[36,64,10,154],[37,6,10,154,"_ref$withZero"],[37,19,10,154],[37,22,10,154,"_ref"],[37,26,10,154],[37,27,10,156,"withZero"],[37,35,10,164],[38,6,10,156,"withZero"],[38,14,10,164],[38,17,10,164,"_ref$withZero"],[38,30,10,164],[38,44,10,167],[38,48,10,171],[38,51,10,171,"_ref$withZero"],[38,64,10,171],[39,4,11,4],[40,4,12,4],[41,4,13,4],[41,8,13,8,"text"],[41,12,13,12],[41,15,13,15],[41,19,13,15,"bnToBn"],[41,28,13,21],[41,29,13,21,"bnToBn"],[41,35,13,21],[41,37,13,22,"input"],[41,42,13,27],[41,43,13,28],[41,44,13,29,"toString"],[41,52,13,37],[41,53,13,38],[41,54,13,39],[42,4,14,4],[42,8,14,8,"text"],[42,12,14,12],[42,13,14,13,"length"],[42,19,14,19],[42,24,14,24],[42,25,14,25],[42,29,14,29,"text"],[42,33,14,33],[42,38,14,38],[42,41,14,41],[42,43,14,43],[43,6,15,8],[43,13,15,15],[43,16,15,18],[44,4,16,4],[45,4,17,4],[46,4,18,4],[47,4,19,4],[47,8,19,8,"sign"],[47,12,19,12],[47,15,19,15],[47,17,19,17],[48,4,20,4],[48,8,20,8,"text"],[48,12,20,12],[48,13,20,13],[48,14,20,14],[48,15,20,15],[48,16,20,16,"startsWith"],[48,26,20,26],[48,27,20,27],[48,30,20,30],[48,31,20,31],[48,33,20,33],[49,6,21,8,"sign"],[49,10,21,12],[49,13,21,15],[49,16,21,18],[50,6,22,8,"text"],[50,10,22,12],[50,13,22,15,"text"],[50,17,22,19],[50,18,22,20,"substring"],[50,27,22,29],[50,28,22,30],[50,29,22,31],[50,30,22,32],[51,4,23,4],[52,4,24,4],[53,4,25,4],[54,4,26,4],[54,8,26,10,"si"],[54,10,26,12],[54,13,26,15],[54,17,26,15,"calcSi"],[54,22,26,21],[54,23,26,21,"calcSi"],[54,29,26,21],[54,31,26,22,"text"],[54,35,26,26],[54,37,26,28,"decimals"],[54,45,26,36],[54,47,26,38,"forceUnit"],[54,56,26,47],[54,57,26,48],[55,4,27,4],[55,8,27,10,"mid"],[55,11,27,13],[55,14,27,16,"text"],[55,18,27,20],[55,19,27,21,"length"],[55,25,27,27],[55,29,27,31,"decimals"],[55,37,27,39],[55,40,27,42,"si"],[55,42,27,44],[55,43,27,45,"power"],[55,48,27,50],[55,49,27,51],[56,4,28,4],[56,8,28,10,"pre"],[56,11,28,13],[56,14,28,16,"mid"],[56,17,28,19],[56,21,28,23],[56,22,28,24],[56,25,28,27],[56,28,28,30],[56,31,28,33,"text"],[56,35,28,37],[56,36,28,38,"substring"],[56,45,28,47],[56,46,28,48],[56,47,28,49],[56,49,28,51,"mid"],[56,52,28,54],[56,53,28,55],[57,4,29,4],[58,4,30,4],[59,4,31,4],[59,8,31,8,"post"],[59,12,31,12],[59,15,31,15,"text"],[59,19,31,19],[59,20,32,9,"padStart"],[59,28,32,17],[59,29,32,18,"mid"],[59,32,32,21],[59,35,32,24],[59,36,32,25],[59,39,32,28,"decimals"],[59,47,32,36],[59,50,32,39],[59,51,32,40],[59,53,32,42],[59,56,32,45],[59,57,32,46],[59,58,33,9,"substring"],[59,67,33,18],[59,68,33,19,"mid"],[59,71,33,22],[59,74,33,25],[59,75,33,26],[59,78,33,29],[59,79,33,30],[59,82,33,33,"mid"],[59,85,33,36],[59,86,33,37],[59,87,34,9,"padEnd"],[59,93,34,15],[59,94,34,16,"withAll"],[59,101,34,23],[59,104,34,26,"Math"],[59,108,34,30],[59,109,34,31,"max"],[59,112,34,34],[59,113,34,35,"decimals"],[59,121,34,43],[59,123,34,45],[59,124,34,46],[59,125,34,47],[59,128,34,50],[59,129,34,51],[59,131,34,53],[59,134,34,56],[59,135,34,57],[59,136,35,9,"substring"],[59,145,35,18],[59,146,35,19],[59,147,35,20],[59,149,35,22,"withAll"],[59,156,35,29],[59,159,35,32,"Math"],[59,163,35,36],[59,164,35,37,"max"],[59,167,35,40],[59,168,35,41],[59,169,35,42],[59,171,35,44,"decimals"],[59,179,35,52],[59,182,35,55,"si"],[59,184,35,57],[59,185,35,58,"power"],[59,190,35,63],[59,191,35,64],[59,194,35,67],[59,195,35,68],[59,196,35,69],[60,4,36,4],[61,4,37,4],[61,8,37,8],[61,9,37,9,"withZero"],[61,17,37,17],[61,19,37,19],[62,6,38,8],[62,10,38,12,"end"],[62,13,38,15],[62,16,38,18,"post"],[62,20,38,22],[62,21,38,23,"length"],[62,27,38,29],[62,30,38,32],[62,31,38,33],[63,6,39,8],[64,6,40,8],[65,6,41,8],[65,9,41,11],[66,8,42,12],[66,12,42,16,"post"],[66,16,42,20],[66,17,42,21,"end"],[66,20,42,24],[66,21,42,25],[66,26,42,30],[66,29,42,33],[66,31,42,35],[67,10,43,16,"end"],[67,13,43,19],[67,15,43,21],[68,8,44,12],[69,6,45,8],[69,7,45,9],[69,15,45,17,"post"],[69,19,45,21],[69,20,45,22,"end"],[69,23,45,25],[69,24,45,26],[69,29,45,31],[69,32,45,34],[70,6,46,8,"post"],[70,10,46,12],[70,13,46,15,"post"],[70,17,46,19],[70,18,46,20,"substring"],[70,27,46,29],[70,28,46,30],[70,29,46,31],[70,31,46,33,"end"],[70,34,46,36],[70,37,46,39],[70,38,46,40],[70,39,46,41],[71,4,47,4],[72,4,48,4],[73,4,49,4],[73,8,49,10,"unit"],[73,12,49,14],[73,15,49,17],[73,19,49,17,"isBoolean"],[73,31,49,26],[73,32,49,26,"isBoolean"],[73,41,49,26],[73,43,49,27,"withUnit"],[73,51,49,35],[73,52,49,36],[73,55,50,10,"SI"],[73,60,50,12],[73,61,50,12,"SI"],[73,63,50,12],[73,64,50,13,"SI_MID"],[73,69,50,19],[73,70,50,19,"SI_MID"],[73,76,50,19],[73,77,50,20],[73,78,50,21,"text"],[73,82,50,25],[73,85,51,10,"withUnit"],[73,93,51,18],[74,4,52,4],[75,4,53,4],[75,8,53,10,"units"],[75,13,53,15],[75,16,53,18,"withSi"],[75,22,53,24],[75,26,53,28,"withSiFull"],[75,36,53,38],[75,39,54,10,"si"],[75,41,54,12],[75,42,54,13,"value"],[75,47,54,18],[75,52,54,23],[75,55,54,26],[75,58,55,14,"withUnit"],[75,66,55,22],[75,69,56,18],[75,73,56,22,"unit"],[75,77,56,26],[75,79,56,28],[75,82,57,18],[75,84,57,20],[75,87,58,14],[75,91,58,18,"withSiFull"],[75,101,58,28],[75,104,58,31],[75,107,58,34,"si"],[75,109,58,36],[75,110,58,37,"text"],[75,114,58,41],[75,117,58,44,"withUnit"],[75,125,58,52],[75,128,58,55],[75,131,58,58],[75,134,58,61],[75,136,58,63],[75,138,58,65],[75,141,58,68,"si"],[75,143,58,70],[75,144,58,71,"value"],[75,149,58,76],[75,152,58,79,"withUnit"],[75,160,58,87],[75,163,58,90,"unit"],[75,167,58,94],[75,170,58,97],[75,172,58,99],[75,174,58,101],[75,177,59,10],[75,179,59,12],[76,4,60,4],[76,8,60,4,"_getSeparator"],[76,21,60,4],[76,24,60,34],[76,28,60,34,"getSeparator"],[76,43,60,46],[76,44,60,46,"getSeparator"],[76,56,60,46],[76,58,60,47,"locale"],[76,64,60,53],[76,65,60,54],[77,6,60,12,"decimal"],[77,13,60,19],[77,16,60,19,"_getSeparator"],[77,29,60,19],[77,30,60,12,"decimal"],[77,37,60,19],[78,6,60,21,"thousand"],[78,14,60,29],[78,17,60,29,"_getSeparator"],[78,30,60,29],[78,31,60,21,"thousand"],[78,39,60,29],[79,4,61,4],[79,11,61,11],[79,14,61,14,"sign"],[79,18,61,18],[79,21,61,21],[79,25,61,21,"formatDecimal"],[79,41,61,34],[79,42,61,34,"formatDecimal"],[79,55,61,34],[79,57,61,35,"pre"],[79,60,61,38],[79,62,61,40,"thousand"],[79,70,61,48],[79,71,61,49],[79,74,61,52,"post"],[79,78,61,56],[79,82,61,60],[79,85,61,63,"decimal"],[79,92,61,70],[79,95,61,73,"post"],[79,99,61,77],[79,101,61,79],[79,104,61,82,"units"],[79,109,61,87],[79,111,61,89],[80,2,62,0],[81,2,63,7],[81,6,63,13,"formatBalance"],[81,19,63,26],[81,22,63,29,"_formatBalance"],[81,36,63,43],[82,2,64,0,"formatBalance"],[82,15,64,13],[82,16,64,14,"calcSi"],[82,22,64,20],[82,25,64,23],[82,35,64,24,"text"],[82,39,64,28],[83,4,64,28],[83,8,64,30,"decimals"],[83,16,64,38],[83,19,64,38,"arguments"],[83,28,64,38],[83,29,64,38,"length"],[83,35,64,38],[83,43,64,38,"arguments"],[83,52,64,38],[83,60,64,38,"undefined"],[83,69,64,38],[83,72,64,38,"arguments"],[83,81,64,38],[83,87,64,41,"defaultDecimals"],[83,102,64,56],[84,4,64,56],[84,11,64,61],[84,15,64,61,"calcSi"],[84,20,64,67],[84,21,64,67,"calcSi"],[84,27,64,67],[84,29,64,68,"text"],[84,33,64,72],[84,35,64,74,"decimals"],[84,43,64,82],[84,44,64,83],[85,2,64,83],[86,2,65,0,"formatBalance"],[86,15,65,13],[86,16,65,14,"findSi"],[86,22,65,20],[86,25,65,23,"findSi"],[86,30,65,29],[86,31,65,29,"findSi"],[86,37,65,29],[87,2,66,0,"formatBalance"],[87,15,66,13],[87,16,66,14,"getDefaults"],[87,27,66,25],[87,30,66,28],[87,42,66,34],[88,4,67,4],[88,11,67,11],[89,6,68,8,"decimals"],[89,14,68,16],[89,16,68,18,"defaultDecimals"],[89,31,68,33],[90,6,69,8,"unit"],[90,10,69,12],[90,12,69,14,"defaultUnit"],[91,4,70,4],[91,5,70,5],[92,2,71,0],[92,3,71,1],[93,2,72,0,"formatBalance"],[93,15,72,13],[93,16,72,14,"getOptions"],[93,26,72,24],[93,29,72,27],[93,41,72,59],[94,4,72,59],[94,8,72,28,"decimals"],[94,16,72,36],[94,19,72,36,"arguments"],[94,28,72,36],[94,29,72,36,"length"],[94,35,72,36],[94,43,72,36,"arguments"],[94,52,72,36],[94,60,72,36,"undefined"],[94,69,72,36],[94,72,72,36,"arguments"],[94,81,72,36],[94,87,72,39,"defaultDecimals"],[94,102,72,54],[95,4,73,4],[95,11,73,11,"SI"],[95,16,73,13],[95,17,73,13,"SI"],[95,19,73,13],[95,20,73,14,"filter"],[95,26,73,20],[95,27,73,21],[95,37,73,21,"_ref2"],[95,42,73,21],[96,6,73,21],[96,10,73,24,"power"],[96,15,73,29],[96,18,73,29,"_ref2"],[96,23,73,29],[96,24,73,24,"power"],[96,29,73,29],[97,6,73,29],[97,13,73,36,"power"],[97,18,73,41],[97,21,73,44],[97,22,73,45],[97,25,74,11,"decimals"],[97,33,74,19],[97,36,74,22,"power"],[97,41,74,27],[97,45,74,32],[97,46,74,33],[97,49,75,10],[97,53,75,14],[98,4,75,14],[98,6,75,15],[99,2,76,0],[99,3,76,1],[100,2,77,0,"formatBalance"],[100,15,77,13],[100,16,77,14,"setDefaults"],[100,27,77,25],[100,30,77,28],[100,40,77,28,"_ref3"],[100,45,77,28],[100,47,77,52],[101,4,77,52],[101,8,77,52,"_ref4"],[101,13,77,52],[101,15,77,52,"_ref5"],[101,20,77,52],[102,4,77,52],[102,8,77,31,"decimals"],[102,16,77,39],[102,19,77,39,"_ref3"],[102,24,77,39],[102,25,77,31,"decimals"],[102,33,77,39],[103,6,77,41,"unit"],[103,10,77,45],[103,13,77,45,"_ref3"],[103,18,77,45],[103,19,77,41,"unit"],[103,23,77,45],[104,4,78,4,"defaultDecimals"],[104,19,78,19],[104,23,78,19,"_ref4"],[104,28,78,19],[104,31,78,23,"Array"],[104,36,78,28],[104,37,78,29,"isArray"],[104,44,78,36],[104,45,78,37,"decimals"],[104,53,78,45],[104,54,78,46],[104,57,79,10,"decimals"],[104,65,79,18],[104,66,79,19],[104,67,79,20],[104,68,79,21],[104,71,80,10,"decimals"],[104,79,80,18],[104,91,80,18,"_ref4"],[104,96,80,18],[104,99,80,23,"defaultDecimals"],[104,114,80,38],[105,4,81,4,"defaultUnit"],[105,15,81,15],[105,19,81,15,"_ref5"],[105,24,81,15],[105,27,81,19,"Array"],[105,32,81,24],[105,33,81,25,"isArray"],[105,40,81,32],[105,41,81,33,"unit"],[105,45,81,37],[105,46,81,38],[105,49,82,10,"unit"],[105,53,82,14],[105,54,82,15],[105,55,82,16],[105,56,82,17],[105,59,83,10,"unit"],[105,63,83,14],[105,75,83,14,"_ref5"],[105,80,83,14],[105,83,83,19,"defaultUnit"],[105,94,83,30],[106,4,84,4,"SI"],[106,9,84,6],[106,10,84,6,"SI"],[106,12,84,6],[106,13,84,7,"SI_MID"],[106,18,84,13],[106,19,84,13,"SI_MID"],[106,25,84,13],[106,26,84,14],[106,27,84,15,"text"],[106,31,84,19],[106,34,84,22,"defaultUnit"],[106,45,84,33],[107,2,85,0],[107,3,85,1],[108,0,85,2],[108,3]],"functionMap":{"names":["<global>","_formatBalance","calcSi","getDefaults","getOptions","SI.filter$argument_0","setDefaults"],"mappings":"AAA;ACS;CDoD;uBEE,4DF;4BGE;CHK;2BIC;qBCC;cDE;CJC;4BMC;CNQ"},"hasCjsExports":false},"type":"js/module"}]}