{"dependencies":[{"name":"@polkadot/x-global","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":45,"index":45}}],"key":"PYu8VlTe0834YhVn6dAxSOA534w=","exportNames":["*"],"imports":1}},{"name":"./format/formatDate.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":46},"end":{"line":2,"column":52,"index":98}}],"key":"puKU+yhkKboS/7BOZbaiTq9kh7c=","exportNames":["*"],"imports":1}},{"name":"./is/bn.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":3,"column":0,"index":99},"end":{"line":3,"column":34,"index":133}}],"key":"lOZS3NXDysdEnoOLqU+oHQrofBg=","exportNames":["*"],"imports":1}},{"name":"./is/buffer.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":4,"column":0,"index":134},"end":{"line":4,"column":42,"index":176}}],"key":"8HzAXaE0SA+lXAIhw9/wKK0Rzmk=","exportNames":["*"],"imports":1}},{"name":"./is/function.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":5,"column":0,"index":177},"end":{"line":5,"column":46,"index":223}}],"key":"zFzQbG/5AVUER6wk5cSYtPcSudE=","exportNames":["*"],"imports":1}},{"name":"./is/object.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":6,"column":0,"index":224},"end":{"line":6,"column":42,"index":266}}],"key":"NZJchHM6JX185uxhTLFg6Z8ISiM=","exportNames":["*"],"imports":1}},{"name":"./is/u8a.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":7,"column":0,"index":267},"end":{"line":7,"column":36,"index":303}}],"key":"KrqRxHbTVDo1rxqv9fPh5SQszJg=","exportNames":["*"],"imports":1}},{"name":"./u8a/toHex.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":8,"column":0,"index":304},"end":{"line":8,"column":42,"index":346}}],"key":"l5I//72G4fApuUTIgKBDD5BhgcE=","exportNames":["*"],"imports":1}},{"name":"./u8a/toU8a.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":9,"column":0,"index":347},"end":{"line":9,"column":42,"index":389}}],"key":"qQcVQefRlGUefQuYJC7F5TIc180=","exportNames":["*"],"imports":1}},{"name":"./noop.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":10,"column":0,"index":390},"end":{"line":10,"column":33,"index":423}}],"key":"SHpnqczXd7u+6BlKtCamYxlTeT4=","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.loggerFormat = loggerFormat;\n exports.logger = logger;\n var _polkadotXGlobal = require(_dependencyMap[0], \"@polkadot/x-global\");\n var _formatFormatDateJs = require(_dependencyMap[1], \"./format/formatDate.js\");\n var _isBnJs = require(_dependencyMap[2], \"./is/bn.js\");\n var _isBufferJs = require(_dependencyMap[3], \"./is/buffer.js\");\n var _isFunctionJs = require(_dependencyMap[4], \"./is/function.js\");\n var _isObjectJs = require(_dependencyMap[5], \"./is/object.js\");\n var _isU8aJs = require(_dependencyMap[6], \"./is/u8a.js\");\n var _u8aToHexJs = require(_dependencyMap[7], \"./u8a/toHex.js\");\n var _u8aToU8aJs = require(_dependencyMap[8], \"./u8a/toU8a.js\");\n var _noopJs = require(_dependencyMap[9], \"./noop.js\");\n const logTo = {\n debug: 'log',\n error: 'error',\n log: 'log',\n warn: 'warn'\n };\n function formatOther(value) {\n if (value && (0, _isObjectJs.isObject)(value) && value.constructor === Object) {\n const result = {};\n for (const [k, v] of Object.entries(value)) {\n result[k] = loggerFormat(v);\n }\n return result;\n }\n return value;\n }\n function loggerFormat(value) {\n if (Array.isArray(value)) {\n return value.map(loggerFormat);\n } else if ((0, _isBnJs.isBn)(value)) {\n return value.toString();\n } else if ((0, _isU8aJs.isU8a)(value) || (0, _isBufferJs.isBuffer)(value)) {\n return (0, _u8aToHexJs.u8aToHex)((0, _u8aToU8aJs.u8aToU8a)(value));\n }\n return formatOther(value);\n }\n function formatWithLength(maxLength) {\n return v => {\n if (maxLength <= 0) {\n return v;\n }\n const r = `${v}`;\n return r.length < maxLength ? v : `${r.substring(0, maxLength)} ...`;\n };\n }\n function apply(log, type, values, maxSize = -1) {\n if (values.length === 1 && (0, _isFunctionJs.isFunction)(values[0])) {\n const fnResult = values[0]();\n return apply(log, type, Array.isArray(fnResult) ? fnResult : [fnResult], maxSize);\n }\n console[logTo[log]]((0, _formatFormatDateJs.formatDate)(new Date()), type, ...values.map(loggerFormat).map(formatWithLength(maxSize)));\n }\n function isDebugOn(e, type) {\n return !!e && (e === '*' || type === e || e.endsWith('*') && type.startsWith(e.slice(0, -1)));\n }\n function isDebugOff(e, type) {\n return !!e && e.startsWith('-') && (type === e.slice(1) || e.endsWith('*') && type.startsWith(e.slice(1, -1)));\n }\n function getDebugFlag(env, type) {\n let flag = false;\n for (const e of env) {\n if (isDebugOn(e, type)) {\n flag = true;\n } else if (isDebugOff(e, type)) {\n flag = false;\n }\n }\n return flag;\n }\n function parseEnv(type) {\n const maxSize = parseInt(_polkadotXGlobal.xglobal.process?.env?.['DEBUG_MAX'] || '-1', 10);\n return [getDebugFlag((_polkadotXGlobal.xglobal.process?.env?.['DEBUG'] || '').toLowerCase().split(','), type), isNaN(maxSize) ? -1 : maxSize];\n }\n /**\n * @name Logger\n * @summary Creates a consistent log interface for messages\n * @description\n * Returns a `Logger` that has `.log`, `.error`, `.warn` and `.debug` (controlled with environment `DEBUG=typeA,typeB`) methods. Logging is done with a consistent prefix (type of logger, date) followed by the actual message using the underlying console.\n * @example\n *
\n *\n * ```javascript\n * import { logger } from '@polkadot/util';\n *\n * const l = logger('test');\n * ```\n */\n function logger(origin) {\n const type = `${origin.toUpperCase()}:`.padStart(16);\n const [isDebug, maxSize] = parseEnv(origin.toLowerCase());\n return {\n debug: isDebug ? (...values) => apply('debug', type, values, maxSize) : _noopJs.noop,\n error: (...values) => apply('error', type, values),\n log: (...values) => apply('log', type, values),\n noop: _noopJs.noop,\n warn: (...values) => apply('warn', type, values)\n };\n }\n});","lineCount":107,"map":[[7,2,27,0,"exports"],[7,9,27,0],[7,10,27,0,"loggerFormat"],[7,22,27,0],[7,25,27,0,"loggerFormat"],[7,37,27,0],[8,2,106,0,"exports"],[8,9,106,0],[8,10,106,0,"logger"],[8,16,106,0],[8,19,106,0,"logger"],[8,25,106,0],[9,2,1,0],[9,6,1,0,"_polkadotXGlobal"],[9,22,1,0],[9,25,1,0,"require"],[9,32,1,0],[9,33,1,0,"_dependencyMap"],[9,47,1,0],[10,2,2,0],[10,6,2,0,"_formatFormatDateJs"],[10,25,2,0],[10,28,2,0,"require"],[10,35,2,0],[10,36,2,0,"_dependencyMap"],[10,50,2,0],[11,2,3,0],[11,6,3,0,"_isBnJs"],[11,13,3,0],[11,16,3,0,"require"],[11,23,3,0],[11,24,3,0,"_dependencyMap"],[11,38,3,0],[12,2,4,0],[12,6,4,0,"_isBufferJs"],[12,17,4,0],[12,20,4,0,"require"],[12,27,4,0],[12,28,4,0,"_dependencyMap"],[12,42,4,0],[13,2,5,0],[13,6,5,0,"_isFunctionJs"],[13,19,5,0],[13,22,5,0,"require"],[13,29,5,0],[13,30,5,0,"_dependencyMap"],[13,44,5,0],[14,2,6,0],[14,6,6,0,"_isObjectJs"],[14,17,6,0],[14,20,6,0,"require"],[14,27,6,0],[14,28,6,0,"_dependencyMap"],[14,42,6,0],[15,2,7,0],[15,6,7,0,"_isU8aJs"],[15,14,7,0],[15,17,7,0,"require"],[15,24,7,0],[15,25,7,0,"_dependencyMap"],[15,39,7,0],[16,2,8,0],[16,6,8,0,"_u8aToHexJs"],[16,17,8,0],[16,20,8,0,"require"],[16,27,8,0],[16,28,8,0,"_dependencyMap"],[16,42,8,0],[17,2,9,0],[17,6,9,0,"_u8aToU8aJs"],[17,17,9,0],[17,20,9,0,"require"],[17,27,9,0],[17,28,9,0,"_dependencyMap"],[17,42,9,0],[18,2,10,0],[18,6,10,0,"_noopJs"],[18,13,10,0],[18,16,10,0,"require"],[18,23,10,0],[18,24,10,0,"_dependencyMap"],[18,38,10,0],[19,2,11,0],[19,8,11,6,"logTo"],[19,13,11,11],[19,16,11,14],[20,4,12,4,"debug"],[20,9,12,9],[20,11,12,11],[20,16,12,16],[21,4,13,4,"error"],[21,9,13,9],[21,11,13,11],[21,18,13,18],[22,4,14,4,"log"],[22,7,14,7],[22,9,14,9],[22,14,14,14],[23,4,15,4,"warn"],[23,8,15,8],[23,10,15,10],[24,2,16,0],[24,3,16,1],[25,2,17,0],[25,11,17,9,"formatOther"],[25,22,17,20,"formatOther"],[25,23,17,21,"value"],[25,28,17,26],[25,30,17,28],[26,4,18,4],[26,8,18,8,"value"],[26,13,18,13],[26,17,18,17],[26,21,18,17,"isObject"],[26,32,18,25],[26,33,18,25,"isObject"],[26,41,18,25],[26,43,18,26,"value"],[26,48,18,31],[26,49,18,32],[26,53,18,36,"value"],[26,58,18,41],[26,59,18,42,"constructor"],[26,70,18,53],[26,75,18,58,"Object"],[26,81,18,64],[26,83,18,66],[27,6,19,8],[27,12,19,14,"result"],[27,18,19,20],[27,21,19,23],[27,22,19,24],[27,23,19,25],[28,6,20,8],[28,11,20,13],[28,17,20,19],[28,18,20,20,"k"],[28,19,20,21],[28,21,20,23,"v"],[28,22,20,24],[28,23,20,25],[28,27,20,29,"Object"],[28,33,20,35],[28,34,20,36,"entries"],[28,41,20,43],[28,42,20,44,"value"],[28,47,20,49],[28,48,20,50],[28,50,20,52],[29,8,21,12,"result"],[29,14,21,18],[29,15,21,19,"k"],[29,16,21,20],[29,17,21,21],[29,20,21,24,"loggerFormat"],[29,32,21,36],[29,33,21,37,"v"],[29,34,21,38],[29,35,21,39],[30,6,22,8],[31,6,23,8],[31,13,23,15,"result"],[31,19,23,21],[32,4,24,4],[33,4,25,4],[33,11,25,11,"value"],[33,16,25,16],[34,2,26,0],[35,2,27,7],[35,11,27,16,"loggerFormat"],[35,23,27,28,"loggerFormat"],[35,24,27,29,"value"],[35,29,27,34],[35,31,27,36],[36,4,28,4],[36,8,28,8,"Array"],[36,13,28,13],[36,14,28,14,"isArray"],[36,21,28,21],[36,22,28,22,"value"],[36,27,28,27],[36,28,28,28],[36,30,28,30],[37,6,29,8],[37,13,29,15,"value"],[37,18,29,20],[37,19,29,21,"map"],[37,22,29,24],[37,23,29,25,"loggerFormat"],[37,35,29,37],[37,36,29,38],[38,4,30,4],[38,5,30,5],[38,11,31,9],[38,15,31,13],[38,19,31,13,"isBn"],[38,26,31,17],[38,27,31,17,"isBn"],[38,31,31,17],[38,33,31,18,"value"],[38,38,31,23],[38,39,31,24],[38,41,31,26],[39,6,32,8],[39,13,32,15,"value"],[39,18,32,20],[39,19,32,21,"toString"],[39,27,32,29],[39,28,32,30],[39,29,32,31],[40,4,33,4],[40,5,33,5],[40,11,34,9],[40,15,34,13],[40,19,34,13,"isU8a"],[40,27,34,18],[40,28,34,18,"isU8a"],[40,33,34,18],[40,35,34,19,"value"],[40,40,34,24],[40,41,34,25],[40,45,34,29],[40,49,34,29,"isBuffer"],[40,60,34,37],[40,61,34,37,"isBuffer"],[40,69,34,37],[40,71,34,38,"value"],[40,76,34,43],[40,77,34,44],[40,79,34,46],[41,6,35,8],[41,13,35,15],[41,17,35,15,"u8aToHex"],[41,28,35,23],[41,29,35,23,"u8aToHex"],[41,37,35,23],[41,39,35,24],[41,43,35,24,"u8aToU8a"],[41,54,35,32],[41,55,35,32,"u8aToU8a"],[41,63,35,32],[41,65,35,33,"value"],[41,70,35,38],[41,71,35,39],[41,72,35,40],[42,4,36,4],[43,4,37,4],[43,11,37,11,"formatOther"],[43,22,37,22],[43,23,37,23,"value"],[43,28,37,28],[43,29,37,29],[44,2,38,0],[45,2,39,0],[45,11,39,9,"formatWithLength"],[45,27,39,25,"formatWithLength"],[45,28,39,26,"maxLength"],[45,37,39,35],[45,39,39,37],[46,4,40,4],[46,11,40,12,"v"],[46,12,40,13],[46,16,40,18],[47,6,41,8],[47,10,41,12,"maxLength"],[47,19,41,21],[47,23,41,25],[47,24,41,26],[47,26,41,28],[48,8,42,12],[48,15,42,19,"v"],[48,16,42,20],[49,6,43,8],[50,6,44,8],[50,12,44,14,"r"],[50,13,44,15],[50,16,44,18],[50,19,44,21,"v"],[50,20,44,22],[50,22,44,24],[51,6,45,8],[51,13,45,15,"r"],[51,14,45,16],[51,15,45,17,"length"],[51,21,45,23],[51,24,45,26,"maxLength"],[51,33,45,35],[51,36,46,14,"v"],[51,37,46,15],[51,40,47,14],[51,43,47,17,"r"],[51,44,47,18],[51,45,47,19,"substring"],[51,54,47,28],[51,55,47,29],[51,56,47,30],[51,58,47,32,"maxLength"],[51,67,47,41],[51,68,47,42],[51,74,47,48],[52,4,48,4],[52,5,48,5],[53,2,49,0],[54,2,50,0],[54,11,50,9,"apply"],[54,16,50,14,"apply"],[54,17,50,15,"log"],[54,20,50,18],[54,22,50,20,"type"],[54,26,50,24],[54,28,50,26,"values"],[54,34,50,32],[54,36,50,34,"maxSize"],[54,43,50,41],[54,46,50,44],[54,47,50,45],[54,48,50,46],[54,50,50,48],[55,4,51,4],[55,8,51,8,"values"],[55,14,51,14],[55,15,51,15,"length"],[55,21,51,21],[55,26,51,26],[55,27,51,27],[55,31,51,31],[55,35,51,31,"isFunction"],[55,48,51,41],[55,49,51,41,"isFunction"],[55,59,51,41],[55,61,51,42,"values"],[55,67,51,48],[55,68,51,49],[55,69,51,50],[55,70,51,51],[55,71,51,52],[55,73,51,54],[56,6,52,8],[56,12,52,14,"fnResult"],[56,20,52,22],[56,23,52,25,"values"],[56,29,52,31],[56,30,52,32],[56,31,52,33],[56,32,52,34],[56,33,52,35],[56,34,52,36],[57,6,53,8],[57,13,53,15,"apply"],[57,18,53,20],[57,19,53,21,"log"],[57,22,53,24],[57,24,53,26,"type"],[57,28,53,30],[57,30,53,32,"Array"],[57,35,53,37],[57,36,53,38,"isArray"],[57,43,53,45],[57,44,53,46,"fnResult"],[57,52,53,54],[57,53,53,55],[57,56,53,58,"fnResult"],[57,64,53,66],[57,67,53,69],[57,68,53,70,"fnResult"],[57,76,53,78],[57,77,53,79],[57,79,53,81,"maxSize"],[57,86,53,88],[57,87,53,89],[58,4,54,4],[59,4,55,4,"console"],[59,11,55,11],[59,12,55,12,"logTo"],[59,17,55,17],[59,18,55,18,"log"],[59,21,55,21],[59,22,55,22],[59,23,55,23],[59,24,55,24],[59,28,55,24,"formatDate"],[59,47,55,34],[59,48,55,34,"formatDate"],[59,58,55,34],[59,60,55,35],[59,64,55,39,"Date"],[59,68,55,43],[59,69,55,44],[59,70,55,45],[59,71,55,46],[59,73,55,48,"type"],[59,77,55,52],[59,79,55,54],[59,82,55,57,"values"],[59,88,55,63],[59,89,56,9,"map"],[59,92,56,12],[59,93,56,13,"loggerFormat"],[59,105,56,25],[59,106,56,26],[59,107,57,9,"map"],[59,110,57,12],[59,111,57,13,"formatWithLength"],[59,127,57,29],[59,128,57,30,"maxSize"],[59,135,57,37],[59,136,57,38],[59,137,57,39],[59,138,57,40],[60,2,58,0],[61,2,59,0],[61,11,59,9,"isDebugOn"],[61,20,59,18,"isDebugOn"],[61,21,59,19,"e"],[61,22,59,20],[61,24,59,22,"type"],[61,28,59,26],[61,30,59,28],[62,4,60,4],[62,11,60,11],[62,12,60,12],[62,13,60,13,"e"],[62,14,60,14],[62,19,60,19,"e"],[62,20,60,20],[62,25,60,25],[62,28,60,28],[62,32,61,8,"type"],[62,36,61,12],[62,41,61,17,"e"],[62,42,61,18],[62,46,62,9,"e"],[62,47,62,10],[62,48,62,11,"endsWith"],[62,56,62,19],[62,57,62,20],[62,60,62,23],[62,61,62,24],[62,65,63,12,"type"],[62,69,63,16],[62,70,63,17,"startsWith"],[62,80,63,27],[62,81,63,28,"e"],[62,82,63,29],[62,83,63,30,"slice"],[62,88,63,35],[62,89,63,36],[62,90,63,37],[62,92,63,39],[62,93,63,40],[62,94,63,41],[62,95,63,42],[62,96,63,44],[62,97,63,45],[63,2,64,0],[64,2,65,0],[64,11,65,9,"isDebugOff"],[64,21,65,19,"isDebugOff"],[64,22,65,20,"e"],[64,23,65,21],[64,25,65,23,"type"],[64,29,65,27],[64,31,65,29],[65,4,66,4],[65,11,66,11],[65,12,66,12],[65,13,66,13,"e"],[65,14,66,14],[65,18,66,19,"e"],[65,19,66,20],[65,20,66,21,"startsWith"],[65,30,66,31],[65,31,66,32],[65,34,66,35],[65,35,66,36],[65,40,67,9,"type"],[65,44,67,13],[65,49,67,18,"e"],[65,50,67,19],[65,51,67,20,"slice"],[65,56,67,25],[65,57,67,26],[65,58,67,27],[65,59,67,28],[65,63,68,13,"e"],[65,64,68,14],[65,65,68,15,"endsWith"],[65,73,68,23],[65,74,68,24],[65,77,68,27],[65,78,68,28],[65,82,69,16,"type"],[65,86,69,20],[65,87,69,21,"startsWith"],[65,97,69,31],[65,98,69,32,"e"],[65,99,69,33],[65,100,69,34,"slice"],[65,105,69,39],[65,106,69,40],[65,107,69,41],[65,109,69,43],[65,110,69,44],[65,111,69,45],[65,112,69,46],[65,113,69,48],[65,114,69,50],[66,2,70,0],[67,2,71,0],[67,11,71,9,"getDebugFlag"],[67,23,71,21,"getDebugFlag"],[67,24,71,22,"env"],[67,27,71,25],[67,29,71,27,"type"],[67,33,71,31],[67,35,71,33],[68,4,72,4],[68,8,72,8,"flag"],[68,12,72,12],[68,15,72,15],[68,20,72,20],[69,4,73,4],[69,9,73,9],[69,15,73,15,"e"],[69,16,73,16],[69,20,73,20,"env"],[69,23,73,23],[69,25,73,25],[70,6,74,8],[70,10,74,12,"isDebugOn"],[70,19,74,21],[70,20,74,22,"e"],[70,21,74,23],[70,23,74,25,"type"],[70,27,74,29],[70,28,74,30],[70,30,74,32],[71,8,75,12,"flag"],[71,12,75,16],[71,15,75,19],[71,19,75,23],[72,6,76,8],[72,7,76,9],[72,13,77,13],[72,17,77,17,"isDebugOff"],[72,27,77,27],[72,28,77,28,"e"],[72,29,77,29],[72,31,77,31,"type"],[72,35,77,35],[72,36,77,36],[72,38,77,38],[73,8,78,12,"flag"],[73,12,78,16],[73,15,78,19],[73,20,78,24],[74,6,79,8],[75,4,80,4],[76,4,81,4],[76,11,81,11,"flag"],[76,15,81,15],[77,2,82,0],[78,2,83,0],[78,11,83,9,"parseEnv"],[78,19,83,17,"parseEnv"],[78,20,83,18,"type"],[78,24,83,22],[78,26,83,24],[79,4,84,4],[79,10,84,10,"maxSize"],[79,17,84,17],[79,20,84,20,"parseInt"],[79,28,84,28],[79,29,84,29,"xglobal"],[79,45,84,36],[79,46,84,36,"xglobal"],[79,53,84,36],[79,54,84,37,"process"],[79,61,84,44],[79,63,84,46,"env"],[79,66,84,49],[79,69,84,52],[79,80,84,63],[79,81,84,64],[79,85,84,68],[79,89,84,72],[79,91,84,74],[79,93,84,76],[79,94,84,77],[80,4,85,4],[80,11,85,11],[80,12,86,8,"getDebugFlag"],[80,24,86,20],[80,25,86,21],[80,26,86,22,"xglobal"],[80,42,86,29],[80,43,86,29,"xglobal"],[80,50,86,29],[80,51,86,30,"process"],[80,58,86,37],[80,60,86,39,"env"],[80,63,86,42],[80,66,86,45],[80,73,86,52],[80,74,86,53],[80,78,86,57],[80,80,86,59],[80,82,86,61,"toLowerCase"],[80,93,86,72],[80,94,86,73],[80,95,86,74],[80,96,86,75,"split"],[80,101,86,80],[80,102,86,81],[80,105,86,84],[80,106,86,85],[80,108,86,87,"type"],[80,112,86,91],[80,113,86,92],[80,115,87,8,"isNaN"],[80,120,87,13],[80,121,87,14,"maxSize"],[80,128,87,21],[80,129,87,22],[80,132,88,14],[80,133,88,15],[80,134,88,16],[80,137,89,14,"maxSize"],[80,144,89,21],[80,145,90,5],[81,2,91,0],[82,2,92,0],[83,0,93,0],[84,0,94,0],[85,0,95,0],[86,0,96,0],[87,0,97,0],[88,0,98,0],[89,0,99,0],[90,0,100,0],[91,0,101,0],[92,0,102,0],[93,0,103,0],[94,0,104,0],[95,0,105,0],[96,2,106,7],[96,11,106,16,"logger"],[96,17,106,22,"logger"],[96,18,106,23,"origin"],[96,24,106,29],[96,26,106,31],[97,4,107,4],[97,10,107,10,"type"],[97,14,107,14],[97,17,107,17],[97,20,107,20,"origin"],[97,26,107,26],[97,27,107,27,"toUpperCase"],[97,38,107,38],[97,39,107,39],[97,40,107,40],[97,43,107,43],[97,44,107,44,"padStart"],[97,52,107,52],[97,53,107,53],[97,55,107,55],[97,56,107,56],[98,4,108,4],[98,10,108,10],[98,11,108,11,"isDebug"],[98,18,108,18],[98,20,108,20,"maxSize"],[98,27,108,27],[98,28,108,28],[98,31,108,31,"parseEnv"],[98,39,108,39],[98,40,108,40,"origin"],[98,46,108,46],[98,47,108,47,"toLowerCase"],[98,58,108,58],[98,59,108,59],[98,60,108,60],[98,61,108,61],[99,4,109,4],[99,11,109,11],[100,6,110,8,"debug"],[100,11,110,13],[100,13,110,15,"isDebug"],[100,20,110,22],[100,23,111,14],[100,24,111,15],[100,27,111,18,"values"],[100,33,111,24],[100,38,111,29,"apply"],[100,43,111,34],[100,44,111,35],[100,51,111,42],[100,53,111,44,"type"],[100,57,111,48],[100,59,111,50,"values"],[100,65,111,56],[100,67,111,58,"maxSize"],[100,74,111,65],[100,75,111,66],[100,78,112,14,"noop"],[100,85,112,18],[100,86,112,18,"noop"],[100,90,112,18],[101,6,113,8,"error"],[101,11,113,13],[101,13,113,15,"error"],[101,14,113,16],[101,17,113,19,"values"],[101,23,113,25],[101,28,113,30,"apply"],[101,33,113,35],[101,34,113,36],[101,41,113,43],[101,43,113,45,"type"],[101,47,113,49],[101,49,113,51,"values"],[101,55,113,57],[101,56,113,58],[102,6,114,8,"log"],[102,9,114,11],[102,11,114,13,"log"],[102,12,114,14],[102,15,114,17,"values"],[102,21,114,23],[102,26,114,28,"apply"],[102,31,114,33],[102,32,114,34],[102,37,114,39],[102,39,114,41,"type"],[102,43,114,45],[102,45,114,47,"values"],[102,51,114,53],[102,52,114,54],[103,6,115,8,"noop"],[103,10,115,12],[103,12,115,8,"noop"],[103,19,115,12],[103,20,115,12,"noop"],[103,24,115,12],[104,6,116,8,"warn"],[104,10,116,12],[104,12,116,14,"warn"],[104,13,116,15],[104,16,116,18,"values"],[104,22,116,24],[104,27,116,29,"apply"],[104,32,116,34],[104,33,116,35],[104,39,116,41],[104,41,116,43,"type"],[104,45,116,47],[104,47,116,49,"values"],[104,53,116,55],[105,4,117,4],[105,5,117,5],[106,2,118,0],[107,0,118,1],[107,3]],"functionMap":{"names":["","formatOther","loggerFormat","formatWithLength","","apply","isDebugOn","isDebugOff","getDebugFlag","parseEnv","logger","error","log","warn"],"mappings":"AAA;ACgB;CDS;OEC;CFW;AGC;WCC;KDQ;CHC;AKC;CLQ;AMC;CNK;AOC;CPK;AQC;CRW;ASC;CTQ;OUe;cNK,oDM;eCE,2CD;aEC,yCF;cGE,0CH;CVE"},"hasCjsExports":false},"type":"js/module"}]}