mainnet-js 3.1.6 → 3.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.html CHANGED
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta charset="utf-8">
5
5
  <title>The Empty Mainnet App</title>
6
- <meta name="viewport" content="width=device-width, initial-scale=1"><script defer src="mainnet-3.1.6.js"></script></head>
6
+ <meta name="viewport" content="width=device-width, initial-scale=1"><script defer src="mainnet-3.1.7.js"></script></head>
7
7
  <body><script>document.addEventListener("DOMContentLoaded", async (event) => Object.assign(globalThis, await __mainnetPromise))</script>
8
8
  </body>
9
9
  </html>
@@ -274,7 +274,7 @@ eval("/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harm
274
274
  \********************************/
275
275
  /***/ ((module, __webpack_exports__, __webpack_require__) => {
276
276
 
277
- eval("__webpack_require__.a(module, async (__webpack_handle_async_dependencies__, __webpack_async_result__) => { try {\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"getGlobalProvider\": () => (/* binding */ getGlobalProvider),\n/* harmony export */ \"getNetworkProvider\": () => (/* binding */ getNetworkProvider),\n/* harmony export */ \"removeGlobalProvider\": () => (/* binding */ removeGlobalProvider),\n/* harmony export */ \"setGlobalProvider\": () => (/* binding */ setGlobalProvider)\n/* harmony export */ });\n/* harmony import */ var _ElectrumNetworkProvider_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./ElectrumNetworkProvider.js */ \"./src/network/ElectrumNetworkProvider.ts\");\n/* harmony import */ var _electrum_cash_network__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @electrum-cash/network */ \"../../node_modules/@electrum-cash/network/dist/index.mjs\");\n/* harmony import */ var _electrum_cash_web_socket__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @electrum-cash/web-socket */ \"../../node_modules/@electrum-cash/web-socket/dist/index.mjs\");\n/* harmony import */ var _configuration_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./configuration.js */ \"./src/network/configuration.ts\");\n/* harmony import */ var _util_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./util.js */ \"./src/network/util.ts\");\n/* harmony import */ var _interface_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../interface.js */ \"./src/interface.ts\");\n/* harmony import */ var _constant_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constant.js */ \"./src/network/constant.ts\");\nvar __webpack_async_dependencies__ = __webpack_handle_async_dependencies__([_configuration_js__WEBPACK_IMPORTED_MODULE_4__, _ElectrumNetworkProvider_js__WEBPACK_IMPORTED_MODULE_5__]);\n([_configuration_js__WEBPACK_IMPORTED_MODULE_4__, _ElectrumNetworkProvider_js__WEBPACK_IMPORTED_MODULE_5__] = __webpack_async_dependencies__.then ? (await __webpack_async_dependencies__)() : __webpack_async_dependencies__);\n\n\n\n\n\n\n\nfunction setGlobalProvider(network, provider) {\n const accessor = _constant_js__WEBPACK_IMPORTED_MODULE_2__.networkTickerMap[network];\n globalThis[accessor] = provider;\n return provider;\n}\nfunction getGlobalProvider(network) {\n const accessor = _constant_js__WEBPACK_IMPORTED_MODULE_2__.networkTickerMap[network];\n return globalThis[accessor];\n}\nfunction removeGlobalProvider(network) {\n const accessor = _constant_js__WEBPACK_IMPORTED_MODULE_2__.networkTickerMap[network];\n if (accessor in globalThis) {\n delete globalThis[accessor];\n }\n}\nfunction getNetworkProvider(network = _interface_js__WEBPACK_IMPORTED_MODULE_3__.Network.MAINNET, servers, manualConnectionManagement, options) {\n const globalContext = servers === undefined &&\n manualConnectionManagement === undefined &&\n options === undefined;\n if (globalContext) {\n const globalProvider = getGlobalProvider(network);\n if (globalProvider) {\n return globalProvider;\n }\n }\n manualConnectionManagement = manualConnectionManagement\n ? manualConnectionManagement\n : false;\n servers = servers ? servers : (0,_configuration_js__WEBPACK_IMPORTED_MODULE_4__.getDefaultServers)(network);\n // If the user has passed a single string, assume a single client connection\n if (typeof servers === \"string\") {\n servers = [servers];\n }\n // There were server(s)\n if (servers) {\n const client = getClient(servers[0], network, options);\n let provider = new _ElectrumNetworkProvider_js__WEBPACK_IMPORTED_MODULE_5__[\"default\"](client, network, manualConnectionManagement);\n if (globalContext) {\n return setGlobalProvider(network, provider);\n }\n return provider;\n }\n else {\n throw Error(\"No servers provided, defaults not available.\");\n }\n}\n// create a client with a server\nfunction getClient(server, network, options) {\n let url = (0,_util_js__WEBPACK_IMPORTED_MODULE_6__.parseElectrumUrl)(server);\n return getElectrumClient(url, options?.timeout ?? 120000, network);\n}\nfunction getElectrumClient(params, timeout, network) {\n if (params.scheme?.includes(\"tcp\")) {\n throw Error(\"TCP connections are not supported.\");\n }\n const webSocket = new _electrum_cash_web_socket__WEBPACK_IMPORTED_MODULE_1__.ElectrumWebSocket(params.host, params.port, params.scheme === \"wss\", timeout);\n return new _electrum_cash_network__WEBPACK_IMPORTED_MODULE_0__.ElectrumClient((0,_configuration_js__WEBPACK_IMPORTED_MODULE_4__.getUserAgent)(), _constant_js__WEBPACK_IMPORTED_MODULE_2__.ELECTRUM_CASH_PROTOCOL_VERSION, webSocket, {\n disableBrowserConnectivityHandling: true,\n disableBrowserVisibilityHandling: true,\n });\n}\n\n__webpack_async_result__();\n} catch(e) { __webpack_async_result__(e); } });\n\n//# sourceURL=webpack://mainnet-js/./src/network/default.ts?");
277
+ eval("__webpack_require__.a(module, async (__webpack_handle_async_dependencies__, __webpack_async_result__) => { try {\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"getGlobalProvider\": () => (/* binding */ getGlobalProvider),\n/* harmony export */ \"getNetworkProvider\": () => (/* binding */ getNetworkProvider),\n/* harmony export */ \"removeGlobalProvider\": () => (/* binding */ removeGlobalProvider),\n/* harmony export */ \"setGlobalProvider\": () => (/* binding */ setGlobalProvider)\n/* harmony export */ });\n/* harmony import */ var _ElectrumNetworkProvider_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./ElectrumNetworkProvider.js */ \"./src/network/ElectrumNetworkProvider.ts\");\n/* harmony import */ var _electrum_cash_network__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @electrum-cash/network */ \"../../node_modules/@electrum-cash/network/dist/index.mjs\");\n/* harmony import */ var _electrum_cash_web_socket__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @electrum-cash/web-socket */ \"../../node_modules/@electrum-cash/web-socket/dist/index.mjs\");\n/* harmony import */ var _configuration_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./configuration.js */ \"./src/network/configuration.ts\");\n/* harmony import */ var _util_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./util.js */ \"./src/network/util.ts\");\n/* harmony import */ var _interface_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../interface.js */ \"./src/interface.ts\");\n/* harmony import */ var _constant_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constant.js */ \"./src/network/constant.ts\");\nvar __webpack_async_dependencies__ = __webpack_handle_async_dependencies__([_configuration_js__WEBPACK_IMPORTED_MODULE_4__, _ElectrumNetworkProvider_js__WEBPACK_IMPORTED_MODULE_5__]);\n([_configuration_js__WEBPACK_IMPORTED_MODULE_4__, _ElectrumNetworkProvider_js__WEBPACK_IMPORTED_MODULE_5__] = __webpack_async_dependencies__.then ? (await __webpack_async_dependencies__)() : __webpack_async_dependencies__);\n\n\n\n\n\n\n\nfunction setGlobalProvider(network, provider) {\n const accessor = _constant_js__WEBPACK_IMPORTED_MODULE_2__.networkTickerMap[network];\n globalThis[accessor] = provider;\n return provider;\n}\nfunction getGlobalProvider(network) {\n const accessor = _constant_js__WEBPACK_IMPORTED_MODULE_2__.networkTickerMap[network];\n return globalThis[accessor];\n}\nfunction removeGlobalProvider(network) {\n const accessor = _constant_js__WEBPACK_IMPORTED_MODULE_2__.networkTickerMap[network];\n if (accessor in globalThis) {\n delete globalThis[accessor];\n }\n}\nfunction getNetworkProvider(network = _interface_js__WEBPACK_IMPORTED_MODULE_3__.Network.MAINNET, servers, manualConnectionManagement, options) {\n const globalContext = servers === undefined &&\n manualConnectionManagement === undefined &&\n options === undefined;\n if (globalContext) {\n const globalProvider = getGlobalProvider(network);\n if (globalProvider) {\n return globalProvider;\n }\n }\n manualConnectionManagement = manualConnectionManagement\n ? manualConnectionManagement\n : false;\n servers = servers ? servers : (0,_configuration_js__WEBPACK_IMPORTED_MODULE_4__.getDefaultServers)(network);\n // If the user has passed a single string, assume a single client connection\n if (typeof servers === \"string\") {\n servers = [servers];\n }\n // There were server(s)\n if (servers) {\n const client = getClient(servers[0], network, options);\n let provider = new _ElectrumNetworkProvider_js__WEBPACK_IMPORTED_MODULE_5__[\"default\"](client, network, manualConnectionManagement);\n if (globalContext) {\n return setGlobalProvider(network, provider);\n }\n return provider;\n }\n else {\n throw Error(\"No servers provided, defaults not available.\");\n }\n}\n// create a client with a server\nfunction getClient(server, network, options) {\n let url = (0,_util_js__WEBPACK_IMPORTED_MODULE_6__.parseElectrumUrl)(server);\n return getElectrumClient(url, options?.timeout ?? 120000, network);\n}\nfunction getElectrumClient(params, timeout, network) {\n if (params.scheme?.includes(\"tcp\")) {\n throw Error(\"TCP connections are not supported.\");\n }\n const webSocket = new _electrum_cash_web_socket__WEBPACK_IMPORTED_MODULE_1__.ElectrumWebSocket(params.host, params.port, params.scheme === \"wss\", timeout, {\n disableBrowserConnectivityHandling: true,\n disableBrowserVisibilityHandling: true,\n });\n return new _electrum_cash_network__WEBPACK_IMPORTED_MODULE_0__.ElectrumClient((0,_configuration_js__WEBPACK_IMPORTED_MODULE_4__.getUserAgent)(), _constant_js__WEBPACK_IMPORTED_MODULE_2__.ELECTRUM_CASH_PROTOCOL_VERSION, webSocket, {\n disableBrowserConnectivityHandling: true,\n disableBrowserVisibilityHandling: true,\n });\n}\n\n__webpack_async_result__();\n} catch(e) { __webpack_async_result__(e); } });\n\n//# sourceURL=webpack://mainnet-js/./src/network/default.ts?");
278
278
 
279
279
  /***/ }),
280
280
 
@@ -1764,7 +1764,7 @@ eval("/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harm
1764
1764
  \****************************************************************/
1765
1765
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
1766
1766
 
1767
- eval("/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"ConnectionStatus\": () => (/* binding */ $db7c797e63383364$export$7516420eb880ab68),\n/* harmony export */ \"ElectrumClient\": () => (/* binding */ $558b46d3f899ced5$export$2e2bcd8739ae039)\n/* harmony export */ });\n/* unused harmony exports isVersionRejected, isVersionNegotiated */\n/* harmony import */ var _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @electrum-cash/debug-logs */ \"../../node_modules/@electrum-cash/debug-logs/dist/index.mjs\");\n/* harmony import */ var eventemitter3__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! eventemitter3 */ \"../../node_modules/eventemitter3/index.mjs\");\n/* harmony import */ var async_mutex__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! async-mutex */ \"../../node_modules/async-mutex/index.mjs\");\n/* harmony import */ var _electrum_cash_web_socket__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @electrum-cash/web-socket */ \"../../node_modules/@electrum-cash/web-socket/dist/index.mjs\");\n/* harmony import */ var lossless_json__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! lossless-json */ \"../../node_modules/lossless-json/lib/esm/index.js\");\n\n\n\n\n\n\n\nfunction $parcel$export(e, n, v, s) {\n Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});\n}\n\n\n\nclass $24139611f53a54b8$export$5d955335434540c6 {\n /**\n\t * Helper function that builds an Electrum request object.\n\t *\n\t * @param method - method to call.\n\t * @param parameters - method parameters for the call.\n\t * @param requestId - unique string or number referencing this request.\n\t *\n\t * @returns a properly formatted Electrum request string.\n\t */ static buildRequestObject(method, parameters, requestId) {\n // Return the formatted request object.\n // NOTE: Electrum either uses JsonRPC strictly or loosely.\n // If we specify protocol identifier without being 100% compliant, we risk being disconnected/blacklisted.\n // For this reason, we omit the protocol identifier to avoid issues.\n return JSON.stringify({\n method: method,\n params: parameters,\n id: requestId\n });\n }\n /**\n\t * Constant used to verify if a provided string is a valid version number.\n\t *\n\t * @returns a regular expression that matches valid version numbers.\n\t */ static get versionRegexp() {\n return /^\\d+(\\.\\d+)+$/;\n }\n /**\n\t * Constant used to separate statements/messages in a stream of data.\n\t *\n\t * @returns the delimiter used by Electrum to separate statements.\n\t */ static get statementDelimiter() {\n return \"\\n\";\n }\n}\n\n\nvar $e83d2e7688025acd$exports = {};\n\n$parcel$export($e83d2e7688025acd$exports, \"isVersionRejected\", () => $e83d2e7688025acd$export$e1f38ab2b4ebdde6);\n$parcel$export($e83d2e7688025acd$exports, \"isVersionNegotiated\", () => $e83d2e7688025acd$export$9598f0c76aa41d73);\nconst $e83d2e7688025acd$export$e1f38ab2b4ebdde6 = function(object) {\n return \"error\" in object;\n};\nconst $e83d2e7688025acd$export$9598f0c76aa41d73 = function(object) {\n return \"software\" in object && \"protocol\" in object;\n};\n\n\n// Acceptable parameter types for RPC messages\nconst $abcb763a48577a1e$export$d73a2e87a509880 = function(message) {\n return \"id\" in message && \"error\" in message;\n};\nconst $abcb763a48577a1e$export$81276773828ff315 = function(message) {\n return \"id\" in message && \"result\" in message;\n};\nconst $abcb763a48577a1e$export$280de919a0cf6928 = function(message) {\n return !(\"id\" in message) && \"method\" in message;\n};\nconst $abcb763a48577a1e$export$94e3360fcddccc76 = function(message) {\n return \"id\" in message && \"method\" in message;\n};\n\n\n\nvar $db7c797e63383364$exports = {};\n\n$parcel$export($db7c797e63383364$exports, \"ConnectionStatus\", () => $db7c797e63383364$export$7516420eb880ab68);\n// Disable indent rule for this file because it is broken (https://github.com/typescript-eslint/typescript-eslint/issues/1824)\n/* eslint-disable @typescript-eslint/indent */ /**\n * Enum that denotes the connection status of an ElectrumConnection.\n * @enum {number}\n * @property {0} DISCONNECTED The connection is disconnected.\n * @property {1} AVAILABLE The connection is connected.\n * @property {2} DISCONNECTING The connection is disconnecting.\n * @property {3} CONNECTING The connection is connecting.\n * @property {4} RECONNECTING The connection is restarting.\n */ var $db7c797e63383364$export$7516420eb880ab68;\n(function(ConnectionStatus) {\n ConnectionStatus[ConnectionStatus[\"DISCONNECTED\"] = 0] = \"DISCONNECTED\";\n ConnectionStatus[ConnectionStatus[\"CONNECTED\"] = 1] = \"CONNECTED\";\n ConnectionStatus[ConnectionStatus[\"DISCONNECTING\"] = 2] = \"DISCONNECTING\";\n ConnectionStatus[ConnectionStatus[\"CONNECTING\"] = 3] = \"CONNECTING\";\n ConnectionStatus[ConnectionStatus[\"RECONNECTING\"] = 4] = \"RECONNECTING\";\n})($db7c797e63383364$export$7516420eb880ab68 || ($db7c797e63383364$export$7516420eb880ab68 = {}));\n\n\n\nclass $ff134c9a9e1f7361$export$de0f57fc22079b5e extends (0, eventemitter3__WEBPACK_IMPORTED_MODULE_1__.EventEmitter) {\n /**\n\t * Sets up network configuration for an Electrum client connection.\n\t *\n\t * @param application - your application name, used to identify to the electrum host.\n\t * @param version - protocol version to use with the host.\n\t * @param socketOrHostname - pre-configured electrum socket or fully qualified domain name or IP number of the host\n\t * @param options - ...\n\t *\n\t * @throws {Error} if `version` is not a valid version string.\n\t */ constructor(application, version, socketOrHostname, options){\n // Initialize the event emitter.\n super();\n this.application = application;\n this.version = version;\n this.socketOrHostname = socketOrHostname;\n this.options = options;\n this.status = (0, $db7c797e63383364$export$7516420eb880ab68).DISCONNECTED;\n this.verifications = [];\n this.messageBuffer = \"\";\n // Check if the provided version is a valid version number.\n if (!(0, $24139611f53a54b8$export$5d955335434540c6).versionRegexp.test(version)) // Throw an error since the version number was not valid.\n throw new Error(`Provided version string (${version}) is not a valid protocol version number.`);\n // If a hostname was provided..\n if (typeof socketOrHostname === \"string\") // Use a web socket with default parameters.\n this.socket = new (0, _electrum_cash_web_socket__WEBPACK_IMPORTED_MODULE_3__.ElectrumWebSocket)(socketOrHostname);\n else // Use the provided socket.\n this.socket = socketOrHostname;\n // Set up handlers for connection and disconnection.\n this.socket.on(\"connected\", this.onSocketConnect.bind(this));\n this.socket.on(\"disconnected\", this.onSocketDisconnect.bind(this));\n // Set up handler for incoming data.\n this.socket.on(\"data\", this.parseMessageChunk.bind(this));\n // Handle visibility changes when run in a browser environment (if not explicitly disabled).\n if (typeof document !== \"undefined\" && !this.options.disableBrowserVisibilityHandling) document.addEventListener(\"visibilitychange\", this.handleVisibilityChange.bind(this));\n // Handle network connection changes when run in a browser environment (if not explicitly disabled).\n if (typeof window !== \"undefined\" && !this.options.disableBrowserConnectivityHandling) {\n window.addEventListener(\"online\", this.handleNetworkChange.bind(this));\n window.addEventListener(\"offline\", this.handleNetworkChange.bind(this));\n }\n }\n // Expose hostIdentifier from the socket.\n get hostIdentifier() {\n return this.socket.hostIdentifier;\n }\n // Expose port from the socket.\n get encrypted() {\n return this.socket.encrypted;\n }\n /**\n\t * Assembles incoming data into statements and hands them off to the message parser.\n\t *\n\t * @param data - data to append to the current message buffer, as a string.\n\t *\n\t * @throws {SyntaxError} if the passed statement parts are not valid JSON.\n\t */ parseMessageChunk(data) {\n // Update the timestamp for when we last received data.\n this.lastReceivedTimestamp = Date.now();\n // Emit a notification indicating that the connection has received data.\n this.emit(\"received\");\n // Clear and remove all verification timers.\n this.verifications.forEach((timer)=>clearTimeout(timer));\n this.verifications.length = 0;\n // Add the message to the current message buffer.\n this.messageBuffer += data;\n // Check if the new message buffer contains the statement delimiter.\n while(this.messageBuffer.includes((0, $24139611f53a54b8$export$5d955335434540c6).statementDelimiter)){\n // Split message buffer into statements.\n const statementParts = this.messageBuffer.split((0, $24139611f53a54b8$export$5d955335434540c6).statementDelimiter);\n // For as long as we still have statements to parse..\n while(statementParts.length > 1){\n // Move the first statement to its own variable.\n const currentStatementList = String(statementParts.shift());\n // Parse the statement into an object or list of objects.\n let statementList = (0, lossless_json__WEBPACK_IMPORTED_MODULE_4__.parse)(currentStatementList, null, this.options.useBigInt ? (0, lossless_json__WEBPACK_IMPORTED_MODULE_4__.parseNumberAndBigInt) : parseFloat);\n // Wrap the statement in an array if it is not already a batched statement list.\n if (!Array.isArray(statementList)) statementList = [\n statementList\n ];\n // For as long as there is statements in the result set..\n while(statementList.length > 0){\n // Move the first statement from the batch to its own variable.\n const currentStatement = statementList.shift();\n // If the current statement is a subscription notification..\n if ((0, $abcb763a48577a1e$export$280de919a0cf6928)(currentStatement)) {\n // Emit the notification for handling higher up in the stack.\n this.emit(\"response\", currentStatement);\n continue;\n }\n // If the current statement is a version negotiation response..\n if (currentStatement.id === \"versionNegotiation\") {\n if ((0, $abcb763a48577a1e$export$d73a2e87a509880)(currentStatement)) // Then emit a failed version negotiation response signal.\n this.emit(\"version\", {\n error: currentStatement.error\n });\n else {\n // Extract the software and protocol version reported.\n const [software, protocol] = currentStatement.result;\n // Emit a successful version negotiation response signal.\n this.emit(\"version\", {\n software: software,\n protocol: protocol\n });\n }\n continue;\n }\n // If the current statement is a keep-alive response..\n if (currentStatement.id === \"keepAlive\") continue;\n // Emit the statements for handling higher up in the stack.\n this.emit(\"response\", currentStatement);\n }\n }\n // Store the remaining statement as the current message buffer.\n this.messageBuffer = statementParts.shift() || \"\";\n }\n }\n /**\n\t * Sends a keep-alive message to the host.\n\t *\n\t * @returns true if the ping message was fully flushed to the socket, false if\n\t * part of the message is queued in the user memory\n\t */ ping() {\n // Write a log message.\n (0, _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"]).ping(`Sending keep-alive ping to '${this.hostIdentifier}'`);\n // Craft a keep-alive message.\n const message = (0, $24139611f53a54b8$export$5d955335434540c6).buildRequestObject(\"server.ping\", [], \"keepAlive\");\n // Send the keep-alive message.\n const status = this.send(message);\n // Return the ping status.\n return status;\n }\n /**\n\t * Initiates the network connection negotiates a protocol version. Also emits the 'connect' signal if successful.\n\t *\n\t * @throws {Error} if the socket connection fails.\n\t * @returns a promise resolving when the connection is established\n\t */ async connect() {\n // If we are already connected return true.\n if (this.status === (0, $db7c797e63383364$export$7516420eb880ab68).CONNECTED) return;\n // Indicate that the connection is connecting\n this.status = (0, $db7c797e63383364$export$7516420eb880ab68).CONNECTING;\n // Emit a connect event now that the connection is being set up.\n this.emit(\"connecting\");\n // Define a function to wrap connection as a promise.\n const connectionResolver = (resolve, reject)=>{\n const rejector = (error)=>{\n // Set the status back to disconnected\n this.status = (0, $db7c797e63383364$export$7516420eb880ab68).DISCONNECTED;\n // Emit a connect event indicating that we failed to connect.\n this.emit(\"disconnected\");\n // Reject with the error as reason\n reject(error);\n };\n // Replace previous error handlers to reject the promise on failure.\n this.socket.removeAllListeners(\"error\");\n this.socket.once(\"error\", rejector);\n // Define a function to wrap version negotiation as a callback.\n const versionNegotiator = ()=>{\n // Write a log message to show that we have started version negotiation.\n (0, _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"]).network(`Requesting protocol version ${this.version} with '${this.hostIdentifier}'.`);\n // remove the one-time error handler since no error was detected.\n this.socket.removeListener(\"error\", rejector);\n // Build a version negotiation message.\n const versionMessage = (0, $24139611f53a54b8$export$5d955335434540c6).buildRequestObject(\"server.version\", [\n this.application,\n this.version\n ], \"versionNegotiation\");\n // Define a function to wrap version validation as a function.\n const versionValidator = (version)=>{\n // Check if version negotiation failed.\n if ((0, $e83d2e7688025acd$export$e1f38ab2b4ebdde6)(version)) {\n // Disconnect from the host.\n this.disconnect(true);\n // Declare an error message.\n const errorMessage = \"unsupported protocol version.\";\n // Log the error.\n (0, _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"]).errors(`Failed to connect with ${this.hostIdentifier} due to ${errorMessage}`);\n // Reject the connection with false since version negotiation failed.\n reject(errorMessage);\n } else if (version.protocol !== this.version && `${version.protocol}.0` !== this.version && `${version.protocol}.0.0` !== this.version) {\n // Disconnect from the host.\n this.disconnect(true);\n // Declare an error message.\n const errorMessage = `incompatible protocol version negotiated (${version.protocol} !== ${this.version}).`;\n // Log the error.\n (0, _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"]).errors(`Failed to connect with ${this.hostIdentifier} due to ${errorMessage}`);\n // Reject the connection with false since version negotiation failed.\n reject(errorMessage);\n } else {\n // Write a log message.\n (0, _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"]).network(`Negotiated protocol version ${version.protocol} with '${this.hostIdentifier}', powered by ${version.software}.`);\n // Set connection status to connected\n this.status = (0, $db7c797e63383364$export$7516420eb880ab68).CONNECTED;\n // Emit a connect event now that the connection is usable.\n this.emit(\"connected\");\n // Resolve the connection promise since we successfully connected and negotiated protocol version.\n resolve();\n }\n };\n // Listen for version negotiation once.\n this.once(\"version\", versionValidator);\n // Send the version negotiation message.\n this.send(versionMessage);\n };\n // Prepare the version negotiation.\n this.socket.once(\"connected\", versionNegotiator);\n // Set up handler for network errors.\n this.socket.on(\"error\", this.onSocketError.bind(this));\n // Connect to the server.\n this.socket.connect();\n };\n // Wait until connection is established and version negotiation succeeds.\n await new Promise(connectionResolver);\n }\n /**\n\t * Restores the network connection.\n\t */ async reconnect() {\n // If a reconnect timer is set, remove it\n await this.clearReconnectTimer();\n // Write a log message.\n (0, _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"]).network(`Trying to reconnect to '${this.hostIdentifier}'..`);\n // Set the status to reconnecting for more accurate log messages.\n this.status = (0, $db7c797e63383364$export$7516420eb880ab68).RECONNECTING;\n // Emit a connect event now that the connection is usable.\n this.emit(\"reconnecting\");\n // Disconnect the underlying socket.\n this.socket.disconnect();\n try {\n // Try to connect again.\n await this.connect();\n } catch (error) {\n // Do nothing as the error should be handled via the disconnect and error signals.\n }\n }\n /**\n\t * Removes the current reconnect timer.\n\t */ clearReconnectTimer() {\n // If a reconnect timer is set, remove it\n if (this.reconnectTimer) clearTimeout(this.reconnectTimer);\n // Reset the timer reference.\n this.reconnectTimer = undefined;\n }\n /**\n\t * Removes the current keep-alive timer.\n\t */ clearKeepAliveTimer() {\n // If a keep-alive timer is set, remove it\n if (this.keepAliveTimer) clearTimeout(this.keepAliveTimer);\n // Reset the timer reference.\n this.keepAliveTimer = undefined;\n }\n /**\n\t * Initializes the keep alive timer loop.\n\t */ setupKeepAliveTimer() {\n // If the keep-alive timer loop is not currently set up..\n if (!this.keepAliveTimer) // Set a new keep-alive timer.\n this.keepAliveTimer = setTimeout(this.ping.bind(this), this.options.sendKeepAliveIntervalInMilliSeconds);\n }\n /**\n\t * Tears down the current connection and removes all event listeners on disconnect.\n\t *\n\t * @param force - disconnect even if the connection has not been fully established yet.\n\t * @param intentional - update connection state if disconnect is intentional.\n\t *\n\t * @returns true if successfully disconnected, or false if there was no connection.\n\t */ async disconnect(force = false, intentional = true) {\n // Return early when there is nothing to disconnect from\n if (this.status === (0, $db7c797e63383364$export$7516420eb880ab68).DISCONNECTED && !force) // Return false to indicate that there was nothing to disconnect from.\n return false;\n // Update connection state if the disconnection is intentional.\n // NOTE: The state is meant to represent what the client is requesting, but\n // is used internally to handle visibility changes in browsers to ensure functional reconnection.\n if (intentional) // Set connection status to null to indicate tear-down is currently happening.\n this.status = (0, $db7c797e63383364$export$7516420eb880ab68).DISCONNECTING;\n // Emit a connect event to indicate that we are disconnecting.\n this.emit(\"disconnecting\");\n // If a keep-alive timer is set, remove it.\n await this.clearKeepAliveTimer();\n // If a reconnect timer is set, remove it\n await this.clearReconnectTimer();\n const disconnectResolver = (resolve)=>{\n // Resolve to true after the connection emits a disconnect\n this.once(\"disconnected\", ()=>resolve(true));\n // Close the connection on the socket level.\n this.socket.disconnect();\n };\n // Return true to indicate that we disconnected.\n return new Promise(disconnectResolver);\n }\n /**\n\t * Updates the connection state based on browser reported connectivity.\n\t *\n\t * Most modern browsers are able to provide information on the connection state\n\t * which allows for significantly faster response times to network changes compared\n\t * to waiting for network requests to fail.\n\t *\n\t * When available, we make use of this to fail early to provide a better user experience.\n\t */ async handleNetworkChange() {\n // Do nothing if we do not have the navigator available.\n if (typeof window.navigator === \"undefined\") return;\n // Attempt to reconnect to the network now that we may be online again.\n if (window.navigator.onLine === true) this.reconnect();\n // Disconnected from the network so that cleanup can happen while we're offline.\n if (window.navigator.onLine !== true) {\n const forceDisconnect = true;\n const isIntentional = true;\n this.disconnect(forceDisconnect, isIntentional);\n }\n }\n /**\n\t * Updates connection state based on application visibility.\n\t *\n\t * Some browsers will disconnect network connections when the browser is out of focus,\n\t * which would normally cause our reconnect-on-timeout routines to trigger, but that\n\t * results in a poor user experience since the events are not handled consistently\n\t * and sometimes it can take some time after restoring focus to the browser.\n\t *\n\t * By manually disconnecting when this happens we prevent the default reconnection routines\n\t * and make the behavior consistent across browsers.\n\t */ async handleVisibilityChange() {\n // Disconnect when application is removed from focus.\n if (document.visibilityState === \"hidden\") {\n const forceDisconnect = true;\n const isIntentional = true;\n this.disconnect(forceDisconnect, isIntentional);\n }\n // Reconnect when application is returned to focus.\n if (document.visibilityState === \"visible\") this.reconnect();\n }\n /**\n\t * Sends an arbitrary message to the server.\n\t *\n\t * @param message - json encoded request object to send to the server, as a string.\n\t *\n\t * @returns true if the message was fully flushed to the socket, false if part of the message\n\t * is queued in the user memory\n\t */ send(message) {\n // Remove the current keep-alive timer if it exists.\n this.clearKeepAliveTimer();\n // Get the current timestamp in milliseconds.\n const currentTime = Date.now();\n // Follow up and verify that the message got sent..\n const verificationTimer = setTimeout(this.verifySend.bind(this, currentTime), this.socket.timeout);\n // Store the verification timer locally so that it can be cleared when data has been received.\n this.verifications.push(verificationTimer);\n // Set a new keep-alive timer.\n this.setupKeepAliveTimer();\n // Write the message to the network socket.\n return this.socket.write(message + (0, $24139611f53a54b8$export$5d955335434540c6).statementDelimiter);\n }\n // --- Event managers. --- //\n /**\n\t * Marks the connection as timed out and schedules reconnection if we have not\n\t * received data within the expected time frame.\n\t */ verifySend(sentTimestamp) {\n // If we haven't received any data since we last sent data out..\n if (Number(this.lastReceivedTimestamp) < sentTimestamp) {\n // If this connection is already disconnected, we do not change anything\n if (this.status === (0, $db7c797e63383364$export$7516420eb880ab68).DISCONNECTED || this.status === (0, $db7c797e63383364$export$7516420eb880ab68).DISCONNECTING) // debug.warning(`Tried to verify already disconnected connection to '${this.hostIdentifier}'`);\n return;\n // Remove the current keep-alive timer if it exists.\n this.clearKeepAliveTimer();\n // Write a notification to the logs.\n (0, _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"]).network(`Connection to '${this.hostIdentifier}' timed out.`);\n // Close the connection to avoid re-use.\n // NOTE: This initiates reconnection routines if the connection has not\n // been marked as intentionally disconnected.\n this.socket.disconnect();\n }\n }\n /**\n\t * Updates the connection status when a connection is confirmed.\n\t */ onSocketConnect() {\n // If a reconnect timer is set, remove it.\n this.clearReconnectTimer();\n // Set up the initial timestamp for when we last received data from the server.\n this.lastReceivedTimestamp = Date.now();\n // Set up the initial keep-alive timer.\n this.setupKeepAliveTimer();\n // Clear all temporary error listeners.\n this.socket.removeAllListeners(\"error\");\n // Set up handler for network errors.\n this.socket.on(\"error\", this.onSocketError.bind(this));\n }\n /**\n\t * Updates the connection status when a connection is ended.\n\t */ onSocketDisconnect() {\n // Remove the current keep-alive timer if it exists.\n this.clearKeepAliveTimer();\n // If this is a connection we're trying to tear down..\n if (this.status === (0, $db7c797e63383364$export$7516420eb880ab68).DISCONNECTING) {\n // Mark the connection as disconnected.\n this.status = (0, $db7c797e63383364$export$7516420eb880ab68).DISCONNECTED;\n // Send a disconnect signal higher up the stack.\n this.emit(\"disconnected\");\n // If a reconnect timer is set, remove it.\n this.clearReconnectTimer();\n // Remove all event listeners\n this.removeAllListeners();\n // Write a log message.\n (0, _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"]).network(`Disconnected from '${this.hostIdentifier}'.`);\n } else {\n // If this is for an established connection..\n if (this.status === (0, $db7c797e63383364$export$7516420eb880ab68).CONNECTED) // Write a notification to the logs.\n (0, _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"]).errors(`Connection with '${this.hostIdentifier}' was closed, trying to reconnect in ${this.options.reconnectAfterMilliSeconds / 1000} seconds.`);\n // Mark the connection as disconnected for now..\n this.status = (0, $db7c797e63383364$export$7516420eb880ab68).DISCONNECTED;\n // Send a disconnect signal higher up the stack.\n this.emit(\"disconnected\");\n // If we don't have a pending reconnection timer..\n if (!this.reconnectTimer) // Attempt to reconnect after one keep-alive duration.\n this.reconnectTimer = setTimeout(this.reconnect.bind(this), this.options.reconnectAfterMilliSeconds);\n }\n }\n /**\n\t * Notify administrator of any unexpected errors.\n\t */ onSocketError(error) {\n // Report a generic error if no error information is present.\n // NOTE: When using WSS, the error event explicitly\n // only allows to send a \"simple\" event without data.\n // https://stackoverflow.com/a/18804298\n if (typeof error === \"undefined\") // Do nothing, and instead rely on the socket disconnect event for further information.\n return;\n // Log the error, as there is nothing we can do to actually handle it.\n (0, _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"]).errors(`Network error ('${this.hostIdentifier}'): `, error);\n }\n}\n\n\n\n// Define number of milliseconds per second for legibility.\nconst $d801b1f9b7fc3074$var$MILLI_SECONDS_PER_SECOND = 1000;\nconst $d801b1f9b7fc3074$export$5ba3a4134d0d751d = {\n // By default, all numbers including integers are parsed as regular JavaScript numbers.\n useBigInt: false,\n // Send a ping message every seconds, to detect network problem as early as possible.\n sendKeepAliveIntervalInMilliSeconds: 1 * $d801b1f9b7fc3074$var$MILLI_SECONDS_PER_SECOND,\n // Try to reconnect 5 seconds after unintentional disconnects.\n reconnectAfterMilliSeconds: 5 * $d801b1f9b7fc3074$var$MILLI_SECONDS_PER_SECOND,\n // Try to detect stale connections 5 seconds after every send.\n verifyConnectionTimeoutInMilliSeconds: 5 * $d801b1f9b7fc3074$var$MILLI_SECONDS_PER_SECOND,\n // Automatically manage the connection for a consistent behavior across browsers and devices.\n disableBrowserVisibilityHandling: false,\n disableBrowserConnectivityHandling: false\n};\n\n\n\n\n\n\n/**\n * High-level Electrum client that lets applications send requests and subscribe to notification events from a server.\n */ class $558b46d3f899ced5$var$ElectrumClient extends (0, eventemitter3__WEBPACK_IMPORTED_MODULE_1__.EventEmitter) {\n /**\n\t * Number corresponding to the underlying connection status.\n\t */ get status() {\n return this.connection.status;\n }\n /**\n\t * Initializes an Electrum client.\n\t *\n\t * @param application - your application name, used to identify to the electrum host.\n\t * @param version - protocol version to use with the host.\n\t * @param socketOrHostname - pre-configured electrum socket or fully qualified domain name or IP number of the host\n\t * @param options - ...\n\t *\n\t * @throws {Error} if `version` is not a valid version string.\n\t */ constructor(application, version, socketOrHostname, options = {}){\n // Initialize the event emitter.\n super();\n this.application = application;\n this.version = version;\n this.socketOrHostname = socketOrHostname;\n this.options = options;\n this.subscriptionMethods = {};\n this.requestId = 0;\n this.requestResolvers = {};\n this.connectionLock = new (0, async_mutex__WEBPACK_IMPORTED_MODULE_2__.Mutex)();\n // Update default options with the provided values.\n const networkOptions = {\n ...(0, $d801b1f9b7fc3074$export$5ba3a4134d0d751d),\n ...options\n };\n // Set up a connection to an electrum server.\n this.connection = new (0, $ff134c9a9e1f7361$export$de0f57fc22079b5e)(application, version, socketOrHostname, networkOptions);\n }\n // Expose hostIdentifier from the connection.\n get hostIdentifier() {\n return this.connection.hostIdentifier;\n }\n // Expose port from the connection.\n get encrypted() {\n return this.connection.encrypted;\n }\n /**\n\t * Connects to the remote server.\n\t *\n\t * @throws {Error} if the socket connection fails.\n\t * @returns a promise resolving when the connection is established.\n\t */ async connect() {\n // Create a lock so that multiple connects/disconnects cannot race each other.\n const unlock = await this.connectionLock.acquire();\n try {\n // If we are already connected, do not attempt to connect again.\n if (this.connection.status === (0, $db7c797e63383364$export$7516420eb880ab68).CONNECTED) return;\n // Listen for parsed statements.\n this.connection.on(\"response\", this.response.bind(this));\n // Hook up handles for the connected and disconnected events.\n this.connection.on(\"connected\", this.resubscribeOnConnect.bind(this));\n this.connection.on(\"disconnected\", this.onConnectionDisconnect.bind(this));\n // Relay connecting and reconnecting events.\n this.connection.on(\"connecting\", this.handleConnectionStatusChanges.bind(this, \"connecting\"));\n this.connection.on(\"disconnecting\", this.handleConnectionStatusChanges.bind(this, \"disconnecting\"));\n this.connection.on(\"reconnecting\", this.handleConnectionStatusChanges.bind(this, \"reconnecting\"));\n // Hook up client metadata gathering functions.\n this.connection.on(\"version\", this.storeSoftwareVersion.bind(this));\n this.connection.on(\"received\", this.updateLastReceivedTimestamp.bind(this));\n // Relay error events.\n this.connection.on(\"error\", this.emit.bind(this, \"error\"));\n // Connect with the server.\n await this.connection.connect();\n } finally{\n unlock();\n }\n }\n /**\n\t * Disconnects from the remote server and removes all event listeners/subscriptions and open requests.\n\t *\n\t * @param force - disconnect even if the connection has not been fully established yet.\n\t * @param retainSubscriptions - retain subscription data so they will be restored on reconnection.\n\t *\n\t * @returns true if successfully disconnected, or false if there was no connection.\n\t */ async disconnect(force = false, retainSubscriptions = false) {\n if (!retainSubscriptions) {\n // Cancel all event listeners.\n this.removeAllListeners();\n // Remove all subscription data\n this.subscriptionMethods = {};\n }\n // Disconnect from the remote server.\n return this.connection.disconnect(force);\n }\n /**\n\t * Calls a method on the remote server with the supplied parameters.\n\t *\n\t * @param method - name of the method to call.\n\t * @param parameters - one or more parameters for the method.\n\t *\n\t * @throws {Error} if the client is disconnected.\n\t * @returns a promise that resolves with the result of the method or an Error.\n\t */ async request(method, ...parameters) {\n // If we are not connected to a server..\n if (this.connection.status !== (0, $db7c797e63383364$export$7516420eb880ab68).CONNECTED) // Reject the request with a disconnected error message.\n throw new Error(`Unable to send request to a disconnected server '${this.hostIdentifier}'.`);\n // Increase the request ID by one.\n this.requestId += 1;\n // Store a copy of the request id.\n const id = this.requestId;\n // Format the arguments as an electrum request object.\n const message = (0, $24139611f53a54b8$export$5d955335434540c6).buildRequestObject(method, parameters, id);\n // Define a function to wrap the request in a promise.\n const requestResolver = (resolve)=>{\n // Add a request resolver for this promise to the list of requests.\n this.requestResolvers[id] = (error, data)=>{\n // If the resolution failed..\n if (error) // Resolve the promise with the error for the application to handle.\n resolve(error);\n else // Resolve the promise with the request results.\n resolve(data);\n };\n // Send the request message to the remote server.\n this.connection.send(message);\n };\n // Write a log message.\n (0, _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"]).network(`Sending request '${method}' to '${this.hostIdentifier}'`);\n // return a promise to deliver results later.\n return new Promise(requestResolver);\n }\n /**\n\t * Subscribes to the method and payload at the server.\n\t *\n\t * @remarks the response for the subscription request is issued as a notification event.\n\t *\n\t * @param method - one of the subscribable methods the server supports.\n\t * @param parameters - one or more parameters for the method.\n\t *\n\t * @throws {Error} if the client is disconnected.\n\t * @returns a promise resolving when the subscription is established.\n\t */ async subscribe(method, ...parameters) {\n // Initialize an empty list of subscription payloads, if needed.\n if (!this.subscriptionMethods[method]) this.subscriptionMethods[method] = new Set();\n // Store the subscription parameters to track what data we have subscribed to.\n this.subscriptionMethods[method].add(JSON.stringify(parameters));\n // Send initial subscription request.\n const requestData = await this.request(method, ...parameters);\n // If the request failed, throw it as an error.\n if (requestData instanceof Error) throw requestData;\n // If the request returned more than one data point..\n if (Array.isArray(requestData)) // .. throw an error, as this breaks our expectation for subscriptions.\n throw new Error(\"Subscription request returned an more than one data point.\");\n // Construct a notification structure to package the initial result as a notification.\n const notification = {\n jsonrpc: \"2.0\",\n method: method,\n params: [\n ...parameters,\n requestData\n ]\n };\n // Manually emit an event for the initial response.\n this.emit(\"notification\", notification);\n // Try to update the chain height.\n this.updateChainHeightFromHeadersNotifications(notification);\n }\n /**\n\t * Unsubscribes to the method at the server and removes any callback functions\n\t * when there are no more subscriptions for the method.\n\t *\n\t * @param method - a previously subscribed to method.\n\t * @param parameters - one or more parameters for the method.\n\t *\n\t * @throws {Error} if no subscriptions exist for the combination of the provided `method` and `parameters.\n\t * @throws {Error} if the client is disconnected.\n\t * @returns a promise resolving when the subscription is removed.\n\t */ async unsubscribe(method, ...parameters) {\n // Throw an error if the client is disconnected.\n if (this.connection.status !== (0, $db7c797e63383364$export$7516420eb880ab68).CONNECTED) throw new Error(`Unable to send unsubscribe request to a disconnected server '${this.hostIdentifier}'.`);\n // If this method has no subscriptions..\n if (!this.subscriptionMethods[method]) // Reject this promise with an explanation.\n throw new Error(`Cannot unsubscribe from '${method}' since the method has no subscriptions.`);\n // Pack up the parameters as a long string.\n const subscriptionParameters = JSON.stringify(parameters);\n // If the method payload could not be located..\n if (!this.subscriptionMethods[method].has(subscriptionParameters)) // Reject this promise with an explanation.\n throw new Error(`Cannot unsubscribe from '${method}' since it has no subscription with the given parameters.`);\n // Remove this specific subscription payload from internal tracking.\n this.subscriptionMethods[method].delete(subscriptionParameters);\n // Send unsubscription request to the server\n // NOTE: As a convenience we allow users to define the method as the subscribe or unsubscribe version.\n await this.request(method.replace(\".subscribe\", \".unsubscribe\"), ...parameters);\n // Write a log message.\n (0, _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"]).client(`Unsubscribed from '${String(method)}' for the '${subscriptionParameters}' parameters.`);\n }\n /**\n\t * Restores existing subscriptions without updating status or triggering manual callbacks.\n\t *\n\t * @throws {Error} if subscription data cannot be found for all stored event names.\n\t * @throws {Error} if the client is disconnected.\n\t * @returns a promise resolving to true when the subscriptions are restored.\n\t *\n\t * @ignore\n\t */ async resubscribeOnConnect() {\n // Write a log message.\n (0, _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"]).client(`Connected to '${this.hostIdentifier}'.`);\n // Synchronize with the underlying connection status.\n this.handleConnectionStatusChanges(\"connected\");\n // Initialize an empty list of resubscription promises.\n const resubscriptionPromises = [];\n // For each method we have a subscription for..\n for(const method in this.subscriptionMethods){\n // .. and for each parameter we have previously been subscribed to..\n for (const parameterJSON of this.subscriptionMethods[method].values()){\n // restore the parameters from JSON.\n const parameters = JSON.parse(parameterJSON);\n // Send a subscription request.\n resubscriptionPromises.push(this.subscribe(method, ...parameters));\n }\n // Wait for all re-subscriptions to complete.\n await Promise.all(resubscriptionPromises);\n }\n // Write a log message if there was any subscriptions to restore.\n if (resubscriptionPromises.length > 0) (0, _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"]).client(`Restored ${resubscriptionPromises.length} previous subscriptions for '${this.hostIdentifier}'`);\n }\n /**\n\t * Parser messages from the remote server to resolve request promises and emit subscription events.\n\t *\n\t * @param message - the response message\n\t *\n\t * @throws {Error} if the message ID does not match an existing request.\n\t * @ignore\n\t */ response(message) {\n // If the received message is a notification, we forward it to all event listeners\n if ((0, $abcb763a48577a1e$export$280de919a0cf6928)(message)) {\n // Write a log message.\n (0, _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"]).client(`Received notification for '${message.method}' from '${this.hostIdentifier}'`);\n // Forward the message content to all event listeners.\n this.emit(\"notification\", message);\n // Try to update the chain height.\n this.updateChainHeightFromHeadersNotifications(message);\n // Return since it does not have an associated request resolver\n return;\n }\n // If the response ID is null we cannot use it to index our request resolvers\n if (message.id === null) // Throw an internal error, this should not happen.\n throw new Error(\"Internal error: Received an RPC response with ID null.\");\n // Look up which request promise we should resolve this.\n const requestResolver = this.requestResolvers[message.id];\n // If we do not have a request resolver for this response message..\n if (!requestResolver) {\n // Log that a message was ignored since the request has already been rejected.\n (0, _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"]).warning(`Ignoring response #${message.id} as the request has already been rejected.`);\n // Return as this has now been fully handled.\n return;\n }\n // Remove the promise from the request list.\n delete this.requestResolvers[message.id];\n // If the message contains an error..\n if ((0, $abcb763a48577a1e$export$d73a2e87a509880)(message)) // Forward the message error to the request resolver and omit the `result` parameter.\n requestResolver(new Error(message.error.message));\n else {\n // Forward the message content to the request resolver and omit the `error` parameter\n // (by setting it to undefined).\n requestResolver(undefined, message.result);\n // Attempt to extract genesis hash from feature requests.\n this.storeGenesisHashFromFeaturesResponse(message);\n }\n }\n /**\n\t * Callback function that is called when connection to the Electrum server is lost.\n\t * Aborts all active requests with an error message indicating that connection was lost.\n\t *\n\t * @ignore\n\t */ async onConnectionDisconnect() {\n // Loop over active requests\n for(const resolverId in this.requestResolvers){\n // Extract request resolver for readability\n const requestResolver = this.requestResolvers[resolverId];\n // Resolve the active request with an error indicating that the connection was lost.\n requestResolver(new Error(\"Connection lost\"));\n // Remove the promise from the request list.\n delete this.requestResolvers[resolverId];\n }\n // Synchronize with the underlying connection status.\n this.handleConnectionStatusChanges(\"disconnected\");\n }\n /**\n\t * Stores the server provider software version field on successful version negotiation.\n\t *\n\t * @ignore\n\t */ async storeSoftwareVersion(versionStatement) {\n // TODO: handle failed version negotiation better.\n if (versionStatement.error) // Do nothing.\n return;\n // Store the software version.\n this.software = versionStatement.software;\n }\n /**\n\t * Updates the last received timestamp.\n\t *\n\t * @ignore\n\t */ async updateLastReceivedTimestamp() {\n // Update the timestamp for when we last received data.\n this.lastReceivedTimestamp = Date.now();\n }\n /**\n\t * Checks if the provided message is a response to a headers subscription,\n\t * and if so updates the locally stored chain height value for this client.\n\t *\n\t * @ignore\n\t */ async updateChainHeightFromHeadersNotifications(message) {\n // If the message is a notification for a new chain height..\n if (message.method === \"blockchain.headers.subscribe\") // ..also store the updated chain height locally.\n this.chainHeight = message.params[0].height;\n }\n /**\n\t * Checks if the provided message is a response to a server.features request,\n\t * and if so stores the genesis hash for this client locally.\n\t *\n\t * @ignore\n\t */ async storeGenesisHashFromFeaturesResponse(message) {\n try {\n // If the message is a response to a features request..\n if (typeof message.result.genesis_hash !== \"undefined\") // ..store the genesis hash locally.\n this.genesisHash = message.result.genesis_hash;\n } catch (error) {\n // Do nothing.\n }\n }\n /**\n\t * Helper function to synchronize state and events with the underlying connection.\n\t */ async handleConnectionStatusChanges(eventName) {\n // Re-emit the event.\n this.emit(eventName);\n }\n}\nvar // Export the client.\n$558b46d3f899ced5$export$2e2bcd8739ae039 = $558b46d3f899ced5$var$ElectrumClient;\n\n\n\n\n\n\n\n//# sourceMappingURL=index.mjs.map\n\n\n//# sourceURL=webpack://mainnet-js/../../node_modules/@electrum-cash/network/dist/index.mjs?");
1767
+ eval("/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"ConnectionStatus\": () => (/* binding */ ConnectionStatus),\n/* harmony export */ \"ElectrumClient\": () => (/* binding */ electrum_client_default)\n/* harmony export */ });\n/* unused harmony exports isRPCErrorResponse, isRPCNotification, isRPCRequest, isRPCStatement, isVersionNegotiated, isVersionRejected */\n/* harmony import */ var _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @electrum-cash/debug-logs */ \"../../node_modules/@electrum-cash/debug-logs/dist/index.mjs\");\n/* harmony import */ var _electrum_cash_web_socket__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @electrum-cash/web-socket */ \"../../node_modules/@electrum-cash/web-socket/dist/index.mjs\");\n/* harmony import */ var eventemitter3__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! eventemitter3 */ \"../../node_modules/eventemitter3/index.mjs\");\n/* harmony import */ var lossless_json__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! lossless-json */ \"../../node_modules/lossless-json/lib/esm/index.js\");\n/* harmony import */ var async_mutex__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! async-mutex */ \"../../node_modules/async-mutex/index.mjs\");\n\n\n\n\n\n\n//#region source/electrum-protocol.ts\n/**\n* Grouping of utilities that simplifies implementation of the Electrum protocol.\n*\n* @ignore\n*/\nvar ElectrumProtocol = class {\n\t/**\n\t* Helper function that builds an Electrum request object.\n\t*\n\t* @param method - method to call.\n\t* @param parameters - method parameters for the call.\n\t* @param requestId - unique string or number referencing this request.\n\t*\n\t* @returns a properly formatted Electrum request string.\n\t*/\n\tstatic buildRequestObject(method, parameters, requestId) {\n\t\treturn JSON.stringify({\n\t\t\tmethod,\n\t\t\tparams: parameters,\n\t\t\tid: requestId\n\t\t});\n\t}\n\t/**\n\t* Constant used to verify if a provided string is a valid version number.\n\t*\n\t* @returns a regular expression that matches valid version numbers.\n\t*/\n\tstatic get versionRegexp() {\n\t\treturn /^\\d+(\\.\\d+)+$/;\n\t}\n\t/**\n\t* Constant used to separate statements/messages in a stream of data.\n\t*\n\t* @returns the delimiter used by Electrum to separate statements.\n\t*/\n\tstatic get statementDelimiter() {\n\t\treturn \"\\n\";\n\t}\n};\n\n//#endregion\n//#region source/rpc-interfaces.ts\nconst isRPCErrorResponse = function(message) {\n\treturn \"id\" in message && \"error\" in message;\n};\nconst isRPCStatement = function(message) {\n\treturn \"id\" in message && \"result\" in message;\n};\nconst isRPCNotification = function(message) {\n\treturn !(\"id\" in message) && \"method\" in message;\n};\nconst isRPCRequest = function(message) {\n\treturn \"id\" in message && \"method\" in message;\n};\n\n//#endregion\n//#region source/enums.ts\n/**\n* Enum that denotes the connection status of an ElectrumConnection.\n* @enum {number}\n* @property {0} DISCONNECTED The connection is disconnected.\n* @property {1} AVAILABLE The connection is connected.\n* @property {2} DISCONNECTING The connection is disconnecting.\n* @property {3} CONNECTING The connection is connecting.\n* @property {4} RECONNECTING The connection is restarting.\n*/\nlet ConnectionStatus = /* @__PURE__ */ function(ConnectionStatus$1) {\n\tConnectionStatus$1[ConnectionStatus$1[\"DISCONNECTED\"] = 0] = \"DISCONNECTED\";\n\tConnectionStatus$1[ConnectionStatus$1[\"CONNECTED\"] = 1] = \"CONNECTED\";\n\tConnectionStatus$1[ConnectionStatus$1[\"DISCONNECTING\"] = 2] = \"DISCONNECTING\";\n\tConnectionStatus$1[ConnectionStatus$1[\"CONNECTING\"] = 3] = \"CONNECTING\";\n\tConnectionStatus$1[ConnectionStatus$1[\"RECONNECTING\"] = 4] = \"RECONNECTING\";\n\treturn ConnectionStatus$1;\n}({});\n\n//#endregion\n//#region source/interfaces.ts\n/**\n* @ignore\n*/\nconst isVersionRejected = function(object) {\n\treturn \"error\" in object;\n};\n/**\n* @ignore\n*/\nconst isVersionNegotiated = function(object) {\n\treturn \"software\" in object && \"protocol\" in object;\n};\n\n//#endregion\n//#region source/electrum-connection.ts\n/**\n* Wrapper around TLS/WSS sockets that gracefully separates a network stream into Electrum protocol messages.\n*/\nvar ElectrumConnection = class extends eventemitter3__WEBPACK_IMPORTED_MODULE_2__.EventEmitter {\n\tstatus = ConnectionStatus.DISCONNECTED;\n\tlastReceivedTimestamp;\n\tsocket;\n\tkeepAliveTimer;\n\treconnectTimer;\n\tverifications = [];\n\tmessageBuffer = \"\";\n\t/**\n\t* Sets up network configuration for an Electrum client connection.\n\t*\n\t* @param application - your application name, used to identify to the electrum host.\n\t* @param version - protocol version to use with the host.\n\t* @param socketOrHostname - pre-configured electrum socket or fully qualified domain name or IP number of the host\n\t* @param options - ...\n\t*\n\t* @throws {Error} if `version` is not a valid version string.\n\t*/\n\tconstructor(application, version, socketOrHostname, options) {\n\t\tsuper();\n\t\tthis.application = application;\n\t\tthis.version = version;\n\t\tthis.socketOrHostname = socketOrHostname;\n\t\tthis.options = options;\n\t\tif (!ElectrumProtocol.versionRegexp.test(version)) throw /* @__PURE__ */ new Error(`Provided version string (${version}) is not a valid protocol version number.`);\n\t\tif (typeof socketOrHostname === \"string\") this.socket = new _electrum_cash_web_socket__WEBPACK_IMPORTED_MODULE_1__.ElectrumWebSocket(socketOrHostname, void 0, void 0, void 0, this.options);\n\t\telse this.socket = socketOrHostname;\n\t\tthis.socket.on(\"connected\", this.onSocketConnect.bind(this));\n\t\tthis.socket.on(\"disconnected\", this.onSocketDisconnect.bind(this));\n\t\tthis.socket.on(\"data\", this.parseMessageChunk.bind(this));\n\t}\n\tget hostIdentifier() {\n\t\treturn this.socket.hostIdentifier;\n\t}\n\tget encrypted() {\n\t\treturn this.socket.encrypted;\n\t}\n\t/**\n\t* Assembles incoming data into statements and hands them off to the message parser.\n\t*\n\t* @param data - data to append to the current message buffer, as a string.\n\t*\n\t* @throws {SyntaxError} if the passed statement parts are not valid JSON.\n\t*/\n\tparseMessageChunk(data) {\n\t\tthis.lastReceivedTimestamp = Date.now();\n\t\tthis.emit(\"received\");\n\t\tthis.verifications.forEach((timer) => clearTimeout(timer));\n\t\tthis.verifications.length = 0;\n\t\tthis.messageBuffer += data;\n\t\twhile (this.messageBuffer.includes(ElectrumProtocol.statementDelimiter)) {\n\t\t\tconst statementParts = this.messageBuffer.split(ElectrumProtocol.statementDelimiter);\n\t\t\twhile (statementParts.length > 1) {\n\t\t\t\tlet statementList = (0,lossless_json__WEBPACK_IMPORTED_MODULE_3__.parse)(String(statementParts.shift()), null, this.options.useBigInt ? lossless_json__WEBPACK_IMPORTED_MODULE_3__.parseNumberAndBigInt : parseFloat);\n\t\t\t\tif (!Array.isArray(statementList)) statementList = [statementList];\n\t\t\t\twhile (statementList.length > 0) {\n\t\t\t\t\tconst currentStatement = statementList.shift();\n\t\t\t\t\tif (isRPCNotification(currentStatement)) {\n\t\t\t\t\t\tthis.emit(\"response\", currentStatement);\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t\tif (currentStatement.id === \"versionNegotiation\") {\n\t\t\t\t\t\tif (isRPCErrorResponse(currentStatement)) this.emit(\"version\", { error: currentStatement.error });\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tconst [software, protocol] = currentStatement.result;\n\t\t\t\t\t\t\tthis.emit(\"version\", {\n\t\t\t\t\t\t\t\tsoftware,\n\t\t\t\t\t\t\t\tprotocol\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t\tif (currentStatement.id === \"keepAlive\") continue;\n\t\t\t\t\tthis.emit(\"response\", currentStatement);\n\t\t\t\t}\n\t\t\t}\n\t\t\tthis.messageBuffer = statementParts.shift() || \"\";\n\t\t}\n\t}\n\t/**\n\t* Sends a keep-alive message to the host.\n\t*\n\t* @returns true if the ping message was fully flushed to the socket, false if\n\t* part of the message is queued in the user memory\n\t*/\n\tping() {\n\t\t_electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"].ping(`Sending keep-alive ping to '${this.hostIdentifier}'`);\n\t\tconst message = ElectrumProtocol.buildRequestObject(\"server.ping\", [], \"keepAlive\");\n\t\treturn this.send(message);\n\t}\n\t/**\n\t* Initiates the network connection negotiates a protocol version. Also emits the 'connect' signal if successful.\n\t*\n\t* @throws {Error} if the socket connection fails.\n\t* @returns a promise resolving when the connection is established\n\t*/\n\tasync connect() {\n\t\tif (this.status === ConnectionStatus.CONNECTED) return;\n\t\tthis.status = ConnectionStatus.CONNECTING;\n\t\tthis.emit(\"connecting\");\n\t\tconst connectionResolver = (resolve, reject) => {\n\t\t\tthis.once(\"connected\", () => {\n\t\t\t\tthis.removeListener(\"disconnected\", reject);\n\t\t\t\tresolve();\n\t\t\t});\n\t\t\tthis.once(\"disconnected\", () => {\n\t\t\t\tthis.removeListener(\"connected\", resolve);\n\t\t\t\treject();\n\t\t\t});\n\t\t\tthis.socket.connect();\n\t\t};\n\t\tawait new Promise(connectionResolver);\n\t}\n\t/**\n\t* Restores the network connection.\n\t*/\n\tasync reconnect() {\n\t\tawait this.clearReconnectTimer();\n\t\t_electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"].network(`Trying to reconnect to '${this.hostIdentifier}'..`);\n\t\tthis.status = ConnectionStatus.RECONNECTING;\n\t\tthis.emit(\"reconnecting\");\n\t\tthis.socket.disconnect();\n\t\ttry {\n\t\t\tawait this.connect();\n\t\t} catch (_error) {}\n\t}\n\t/**\n\t* Removes the current reconnect timer.\n\t*/\n\tclearReconnectTimer() {\n\t\tif (this.reconnectTimer) clearTimeout(this.reconnectTimer);\n\t\tthis.reconnectTimer = void 0;\n\t}\n\t/**\n\t* Removes the current keep-alive timer.\n\t*/\n\tclearKeepAliveTimer() {\n\t\tif (this.keepAliveTimer) clearTimeout(this.keepAliveTimer);\n\t\tthis.keepAliveTimer = void 0;\n\t}\n\t/**\n\t* Initializes the keep alive timer loop.\n\t*/\n\tsetupKeepAliveTimer() {\n\t\tif (!this.keepAliveTimer) this.keepAliveTimer = setTimeout(this.ping.bind(this), this.options.sendKeepAliveIntervalInMilliSeconds);\n\t}\n\t/**\n\t* Tears down the current connection and removes all event listeners on disconnect.\n\t*\n\t* @param force - disconnect even if the connection has not been fully established yet.\n\t* @param intentional - update connection state if disconnect is intentional.\n\t*\n\t* @returns true if successfully disconnected, or false if there was no connection.\n\t*/\n\tasync disconnect(force = false, intentional = true) {\n\t\tif (this.status === ConnectionStatus.DISCONNECTED && !force) return false;\n\t\tif (intentional) this.status = ConnectionStatus.DISCONNECTING;\n\t\tthis.emit(\"disconnecting\");\n\t\tawait this.clearKeepAliveTimer();\n\t\tawait this.clearReconnectTimer();\n\t\tconst disconnectResolver = (resolve) => {\n\t\t\tthis.once(\"disconnected\", () => resolve(true));\n\t\t\tthis.socket.disconnect();\n\t\t};\n\t\treturn new Promise(disconnectResolver);\n\t}\n\t/**\n\t* Sends an arbitrary message to the server.\n\t*\n\t* @param message - json encoded request object to send to the server, as a string.\n\t*\n\t* @returns true if the message was fully flushed to the socket, false if part of the message\n\t* is queued in the user memory\n\t*/\n\tsend(message) {\n\t\tthis.clearKeepAliveTimer();\n\t\tconst currentTime = Date.now();\n\t\tconst verificationTimer = setTimeout(this.verifySend.bind(this, currentTime), this.socket.timeout);\n\t\tthis.verifications.push(verificationTimer);\n\t\tthis.setupKeepAliveTimer();\n\t\treturn this.socket.write(message + ElectrumProtocol.statementDelimiter);\n\t}\n\t/**\n\t* Marks the connection as timed out and schedules reconnection if we have not\n\t* received data within the expected time frame.\n\t*/\n\tverifySend(sentTimestamp) {\n\t\tif (Number(this.lastReceivedTimestamp) < sentTimestamp) {\n\t\t\tif (this.status === ConnectionStatus.DISCONNECTED || this.status === ConnectionStatus.DISCONNECTING) return;\n\t\t\tthis.clearKeepAliveTimer();\n\t\t\t_electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"].network(`Connection to '${this.hostIdentifier}' timed out.`);\n\t\t\tthis.socket.disconnect();\n\t\t}\n\t}\n\t/**\n\t* Updates the connection status when a connection is confirmed.\n\t*/\n\tasync onSocketConnect() {\n\t\tthis.clearReconnectTimer();\n\t\tthis.lastReceivedTimestamp = Date.now();\n\t\tthis.setupKeepAliveTimer();\n\t\tawait new Promise(this.negotiateVersion.bind(this));\n\t\tthis.emit(\"connected\");\n\t\tthis.socket.removeAllListeners(\"error\");\n\t\tthis.socket.on(\"error\", this.onSocketError.bind(this));\n\t}\n\t/**\n\t* Updates the connection status when a connection is ended.\n\t*/\n\tonSocketDisconnect() {\n\t\tthis.clearKeepAliveTimer();\n\t\tif (this.status === ConnectionStatus.DISCONNECTING) {\n\t\t\tthis.status = ConnectionStatus.DISCONNECTED;\n\t\t\tthis.emit(\"disconnected\");\n\t\t\tthis.clearReconnectTimer();\n\t\t\tthis.removeAllListeners();\n\t\t\t_electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"].network(`Disconnected from '${this.hostIdentifier}'.`);\n\t\t} else {\n\t\t\tif (this.status === ConnectionStatus.CONNECTED) _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"].errors(`Connection with '${this.hostIdentifier}' was closed, trying to reconnect in ${this.options.reconnectAfterMilliSeconds / 1e3} seconds.`);\n\t\t\tthis.status = ConnectionStatus.DISCONNECTED;\n\t\t\tthis.emit(\"disconnected\");\n\t\t\tif (!this.reconnectTimer) this.reconnectTimer = setTimeout(this.reconnect.bind(this), this.options.reconnectAfterMilliSeconds);\n\t\t}\n\t}\n\t/**\n\t* Notify administrator of any unexpected errors.\n\t*/\n\tonSocketError(error) {\n\t\tif (typeof error === \"undefined\") return;\n\t\t_electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"].errors(`Network error ('${this.hostIdentifier}'): `, error);\n\t}\n\t/**\n\t* Negotiate the protocol version with the server.\n\t* Disconnect the connection if the version negotiation fails.\n\t* @param resolve \n\t* @param reject \n\t*/\n\tasync negotiateVersion(resolve, reject) {\n\t\tconst rejector = (error) => {\n\t\t\tthis.status = ConnectionStatus.DISCONNECTED;\n\t\t\tthis.emit(\"disconnected\");\n\t\t\treject(error);\n\t\t};\n\t\t_electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"].network(`Requesting protocol version ${this.version} with '${this.hostIdentifier}'.`);\n\t\tthis.socket.once(\"error\", rejector);\n\t\tconst versionMessage = ElectrumProtocol.buildRequestObject(\"server.version\", [this.application, this.version], \"versionNegotiation\");\n\t\tconst versionValidator = (version) => {\n\t\t\tif (isVersionRejected(version)) {\n\t\t\t\tthis.disconnect(true);\n\t\t\t\tconst errorMessage = \"unsupported protocol version.\";\n\t\t\t\t_electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"].errors(`Failed to connect with ${this.hostIdentifier} due to ${errorMessage}`);\n\t\t\t\treject(errorMessage);\n\t\t\t} else if (version.protocol !== this.version && `${version.protocol}.0` !== this.version && `${version.protocol}.0.0` !== this.version) {\n\t\t\t\tthis.disconnect(true);\n\t\t\t\tconst errorMessage = `incompatible protocol version negotiated (${version.protocol} !== ${this.version}).`;\n\t\t\t\t_electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"].errors(`Failed to connect with ${this.hostIdentifier} due to ${errorMessage}`);\n\t\t\t\treject(errorMessage);\n\t\t\t} else {\n\t\t\t\t_electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"].network(`Negotiated protocol version ${version.protocol} with '${this.hostIdentifier}', powered by ${version.software}.`);\n\t\t\t\tthis.status = ConnectionStatus.CONNECTED;\n\t\t\t\tresolve();\n\t\t\t}\n\t\t};\n\t\tthis.once(\"version\", versionValidator);\n\t\tthis.send(versionMessage);\n\t}\n};\n\n//#endregion\n//#region source/constants.ts\nconst MILLI_SECONDS_PER_SECOND = 1e3;\n/**\n* Configure default options.\n*/\nconst defaultNetworkOptions = {\n\tuseBigInt: false,\n\tsendKeepAliveIntervalInMilliSeconds: 1 * MILLI_SECONDS_PER_SECOND,\n\treconnectAfterMilliSeconds: 5 * MILLI_SECONDS_PER_SECOND,\n\tverifyConnectionTimeoutInMilliSeconds: 5 * MILLI_SECONDS_PER_SECOND,\n\tdisableBrowserVisibilityHandling: false,\n\tdisableBrowserConnectivityHandling: false\n};\n\n//#endregion\n//#region source/electrum-client.ts\n/**\n* High-level Electrum client that lets applications send requests and subscribe to notification events from a server.\n*/\nvar ElectrumClient = class extends eventemitter3__WEBPACK_IMPORTED_MODULE_2__.EventEmitter {\n\t/**\n\t* The name and version of the server software indexing the blockchain.\n\t*/\n\tsoftware;\n\t/**\n\t* The genesis hash of the blockchain indexed by the server.\n\t* @remarks This is only available after a 'server.features' call.\n\t*/\n\tgenesisHash;\n\t/**\n\t* The chain height of the blockchain indexed by the server.\n\t* @remarks This is only available after a 'blockchain.headers.subscribe' call.\n\t*/\n\tchainHeight;\n\t/**\n\t* Timestamp of when we last received data from the server indexing the blockchain.\n\t*/\n\tlastReceivedTimestamp;\n\t/**\n\t* Number corresponding to the underlying connection status.\n\t*/\n\tget status() {\n\t\treturn this.connection.status;\n\t}\n\tconnection;\n\tsubscriptionMethods = {};\n\trequestId = 0;\n\trequestResolvers = {};\n\tconnectionLock = new async_mutex__WEBPACK_IMPORTED_MODULE_4__.Mutex();\n\t/**\n\t* Initializes an Electrum client.\n\t*\n\t* @param application - your application name, used to identify to the electrum host.\n\t* @param version - protocol version to use with the host.\n\t* @param socketOrHostname - pre-configured electrum socket or fully qualified domain name or IP number of the host\n\t* @param options - ...\n\t*\n\t* @throws {Error} if `version` is not a valid version string.\n\t*/\n\tconstructor(application, version, socketOrHostname, options = {}) {\n\t\tsuper();\n\t\tthis.application = application;\n\t\tthis.version = version;\n\t\tthis.socketOrHostname = socketOrHostname;\n\t\tthis.options = options;\n\t\tthis.connection = new ElectrumConnection(application, version, socketOrHostname, {\n\t\t\t...defaultNetworkOptions,\n\t\t\t...options\n\t\t});\n\t}\n\tget hostIdentifier() {\n\t\treturn this.connection.hostIdentifier;\n\t}\n\tget encrypted() {\n\t\treturn this.connection.encrypted;\n\t}\n\t/**\n\t* Connects to the remote server.\n\t*\n\t* @throws {Error} if the socket connection fails.\n\t* @returns a promise resolving when the connection is established.\n\t*/\n\tasync connect() {\n\t\tconst unlock = await this.connectionLock.acquire();\n\t\ttry {\n\t\t\tif (this.connection.status === ConnectionStatus.CONNECTED) return;\n\t\t\tthis.connection.on(\"response\", this.response.bind(this));\n\t\t\tthis.connection.on(\"connected\", this.resubscribeOnConnect.bind(this));\n\t\t\tthis.connection.on(\"disconnected\", this.onConnectionDisconnect.bind(this));\n\t\t\tthis.connection.on(\"connecting\", this.handleConnectionStatusChanges.bind(this, \"connecting\"));\n\t\t\tthis.connection.on(\"disconnecting\", this.handleConnectionStatusChanges.bind(this, \"disconnecting\"));\n\t\t\tthis.connection.on(\"reconnecting\", this.handleConnectionStatusChanges.bind(this, \"reconnecting\"));\n\t\t\tthis.connection.on(\"version\", this.storeSoftwareVersion.bind(this));\n\t\t\tthis.connection.on(\"received\", this.updateLastReceivedTimestamp.bind(this));\n\t\t\tthis.connection.on(\"error\", this.emit.bind(this, \"error\"));\n\t\t\tawait this.connection.connect();\n\t\t} finally {\n\t\t\tunlock();\n\t\t}\n\t}\n\t/**\n\t* Disconnects from the remote server and removes all event listeners/subscriptions and open requests.\n\t*\n\t* @param force - disconnect even if the connection has not been fully established yet.\n\t* @param retainSubscriptions - retain subscription data so they will be restored on reconnection.\n\t*\n\t* @returns true if successfully disconnected, or false if there was no connection.\n\t*/\n\tasync disconnect(force = false, retainSubscriptions = false) {\n\t\tif (!retainSubscriptions) {\n\t\t\tthis.removeAllListeners();\n\t\t\tthis.subscriptionMethods = {};\n\t\t}\n\t\treturn this.connection.disconnect(force);\n\t}\n\t/**\n\t* Calls a method on the remote server with the supplied parameters.\n\t*\n\t* @param method - name of the method to call.\n\t* @param parameters - one or more parameters for the method.\n\t*\n\t* @throws {Error} if the client is disconnected.\n\t* @returns a promise that resolves with the result of the method or an Error.\n\t*/\n\tasync request(method, ...parameters) {\n\t\tif (this.connection.status !== ConnectionStatus.CONNECTED) throw /* @__PURE__ */ new Error(`Unable to send request to a disconnected server '${this.hostIdentifier}'.`);\n\t\tthis.requestId += 1;\n\t\tconst id = this.requestId;\n\t\tconst message = ElectrumProtocol.buildRequestObject(method, parameters, id);\n\t\tconst requestResolver = (resolve) => {\n\t\t\tthis.requestResolvers[id] = (error, data) => {\n\t\t\t\tif (error) resolve(error);\n\t\t\t\telse resolve(data);\n\t\t\t};\n\t\t\tthis.connection.send(message);\n\t\t};\n\t\t_electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"].network(`Sending request '${method}' to '${this.hostIdentifier}'`);\n\t\treturn new Promise(requestResolver);\n\t}\n\t/**\n\t* Subscribes to the method and payload at the server.\n\t*\n\t* @remarks the response for the subscription request is issued as a notification event.\n\t*\n\t* @param method - one of the subscribable methods the server supports.\n\t* @param parameters - one or more parameters for the method.\n\t*\n\t* @throws {Error} if the client is disconnected.\n\t* @returns a promise resolving when the subscription is established.\n\t*/\n\tasync subscribe(method, ...parameters) {\n\t\tif (!this.subscriptionMethods[method]) this.subscriptionMethods[method] = /* @__PURE__ */ new Set();\n\t\tthis.subscriptionMethods[method].add(JSON.stringify(parameters));\n\t\tconst requestData = await this.request(method, ...parameters);\n\t\tif (requestData instanceof Error) throw requestData;\n\t\tif (Array.isArray(requestData)) throw /* @__PURE__ */ new Error(\"Subscription request returned an more than one data point.\");\n\t\tconst notification = {\n\t\t\tjsonrpc: \"2.0\",\n\t\t\tmethod,\n\t\t\tparams: [...parameters, requestData]\n\t\t};\n\t\tthis.emit(\"notification\", notification);\n\t\tthis.updateChainHeightFromHeadersNotifications(notification);\n\t}\n\t/**\n\t* Unsubscribes to the method at the server and removes any callback functions\n\t* when there are no more subscriptions for the method.\n\t*\n\t* @param method - a previously subscribed to method.\n\t* @param parameters - one or more parameters for the method.\n\t*\n\t* @throws {Error} if no subscriptions exist for the combination of the provided `method` and `parameters.\n\t* @throws {Error} if the client is disconnected.\n\t* @returns a promise resolving when the subscription is removed.\n\t*/\n\tasync unsubscribe(method, ...parameters) {\n\t\tif (this.connection.status !== ConnectionStatus.CONNECTED) throw /* @__PURE__ */ new Error(`Unable to send unsubscribe request to a disconnected server '${this.hostIdentifier}'.`);\n\t\tif (!this.subscriptionMethods[method]) throw /* @__PURE__ */ new Error(`Cannot unsubscribe from '${method}' since the method has no subscriptions.`);\n\t\tconst subscriptionParameters = JSON.stringify(parameters);\n\t\tif (!this.subscriptionMethods[method].has(subscriptionParameters)) throw /* @__PURE__ */ new Error(`Cannot unsubscribe from '${method}' since it has no subscription with the given parameters.`);\n\t\tthis.subscriptionMethods[method].delete(subscriptionParameters);\n\t\tawait this.request(method.replace(\".subscribe\", \".unsubscribe\"), ...parameters);\n\t\t_electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"].client(`Unsubscribed from '${String(method)}' for the '${subscriptionParameters}' parameters.`);\n\t}\n\t/**\n\t* Restores existing subscriptions without updating status or triggering manual callbacks.\n\t*\n\t* @throws {Error} if subscription data cannot be found for all stored event names.\n\t* @throws {Error} if the client is disconnected.\n\t* @returns a promise resolving to true when the subscriptions are restored.\n\t*\n\t* @ignore\n\t*/\n\tasync resubscribeOnConnect() {\n\t\t_electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"].client(`Connected to '${this.hostIdentifier}'.`);\n\t\tthis.handleConnectionStatusChanges(\"connected\");\n\t\tconst resubscriptionPromises = [];\n\t\tfor (const method in this.subscriptionMethods) {\n\t\t\tfor (const parameterJSON of this.subscriptionMethods[method].values()) {\n\t\t\t\tconst parameters = JSON.parse(parameterJSON);\n\t\t\t\tresubscriptionPromises.push(this.subscribe(method, ...parameters));\n\t\t\t}\n\t\t\tawait Promise.all(resubscriptionPromises);\n\t\t}\n\t\tif (resubscriptionPromises.length > 0) _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"].client(`Restored ${resubscriptionPromises.length} previous subscriptions for '${this.hostIdentifier}'`);\n\t}\n\t/**\n\t* Parser messages from the remote server to resolve request promises and emit subscription events.\n\t*\n\t* @param message - the response message\n\t*\n\t* @throws {Error} if the message ID does not match an existing request.\n\t* @ignore\n\t*/\n\tresponse(message) {\n\t\tif (isRPCNotification(message)) {\n\t\t\t_electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"].client(`Received notification for '${message.method}' from '${this.hostIdentifier}'`);\n\t\t\tthis.emit(\"notification\", message);\n\t\t\tthis.updateChainHeightFromHeadersNotifications(message);\n\t\t\treturn;\n\t\t}\n\t\tif (message.id === null) throw /* @__PURE__ */ new Error(\"Internal error: Received an RPC response with ID null.\");\n\t\tconst requestResolver = this.requestResolvers[message.id];\n\t\tif (!requestResolver) {\n\t\t\t_electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_0__[\"default\"].warning(`Ignoring response #${message.id} as the request has already been rejected.`);\n\t\t\treturn;\n\t\t}\n\t\tdelete this.requestResolvers[message.id];\n\t\tif (isRPCErrorResponse(message)) requestResolver(new Error(message.error.message));\n\t\telse {\n\t\t\trequestResolver(void 0, message.result);\n\t\t\tthis.storeGenesisHashFromFeaturesResponse(message);\n\t\t}\n\t}\n\t/**\n\t* Callback function that is called when connection to the Electrum server is lost.\n\t* Aborts all active requests with an error message indicating that connection was lost.\n\t*\n\t* @ignore\n\t*/\n\tasync onConnectionDisconnect() {\n\t\tfor (const resolverId in this.requestResolvers) {\n\t\t\tconst requestResolver = this.requestResolvers[resolverId];\n\t\t\trequestResolver(/* @__PURE__ */ new Error(\"Connection lost\"));\n\t\t\tdelete this.requestResolvers[resolverId];\n\t\t}\n\t\tthis.handleConnectionStatusChanges(\"disconnected\");\n\t}\n\t/**\n\t* Stores the server provider software version field on successful version negotiation.\n\t*\n\t* @ignore\n\t*/\n\tasync storeSoftwareVersion(versionStatement) {\n\t\tif (versionStatement.error) return;\n\t\tthis.software = versionStatement.software;\n\t}\n\t/**\n\t* Updates the last received timestamp.\n\t*\n\t* @ignore\n\t*/\n\tasync updateLastReceivedTimestamp() {\n\t\tthis.lastReceivedTimestamp = Date.now();\n\t}\n\t/**\n\t* Checks if the provided message is a response to a headers subscription,\n\t* and if so updates the locally stored chain height value for this client.\n\t*\n\t* @ignore\n\t*/\n\tasync updateChainHeightFromHeadersNotifications(message) {\n\t\tif (message.method === \"blockchain.headers.subscribe\") this.chainHeight = message.params[0].height;\n\t}\n\t/**\n\t* Checks if the provided message is a response to a server.features request,\n\t* and if so stores the genesis hash for this client locally.\n\t*\n\t* @ignore\n\t*/\n\tasync storeGenesisHashFromFeaturesResponse(message) {\n\t\ttry {\n\t\t\tif (typeof message.result.genesis_hash !== \"undefined\") this.genesisHash = message.result.genesis_hash;\n\t\t} catch (_ignored) {}\n\t}\n\t/**\n\t* Helper function to synchronize state and events with the underlying connection.\n\t*/\n\tasync handleConnectionStatusChanges(eventName) {\n\t\tthis.emit(eventName);\n\t}\n\tconnecting;\n\tconnected;\n\tdisconnecting;\n\tdisconnected;\n\treconnecting;\n\tnotification;\n\terror;\n};\nvar electrum_client_default = ElectrumClient;\n\n//#endregion\n\n//# sourceMappingURL=index.mjs.map\n\n//# sourceURL=webpack://mainnet-js/../../node_modules/@electrum-cash/network/dist/index.mjs?");
1768
1768
 
1769
1769
  /***/ }),
1770
1770
 
@@ -1774,7 +1774,7 @@ eval("/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harm
1774
1774
  \*******************************************************************/
1775
1775
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
1776
1776
 
1777
- eval("/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"ElectrumWebSocket\": () => (/* binding */ $05743633fea447d4$export$25b4633f61498e1)\n/* harmony export */ });\n/* harmony import */ var _monsterbitar_isomorphic_ws__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @monsterbitar/isomorphic-ws */ \"../../node_modules/@monsterbitar/isomorphic-ws/browser.mjs\");\n/* harmony import */ var eventemitter3__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! eventemitter3 */ \"../../node_modules/eventemitter3/index.mjs\");\n/* harmony import */ var _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @electrum-cash/debug-logs */ \"../../node_modules/@electrum-cash/debug-logs/dist/index.mjs\");\n\n\n\n\n\nfunction $parcel$export(e, n, v, s) {\n Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});\n}\nvar $05743633fea447d4$exports = {};\n\n$parcel$export($05743633fea447d4$exports, \"ElectrumWebSocket\", () => $05743633fea447d4$export$25b4633f61498e1);\n\n\n\n// Export a default timeout value of 30 seconds.\nconst $d801b1f9b7fc3074$export$1bddf2b96e25d075 = 30000;\n\n\nclass $05743633fea447d4$export$25b4633f61498e1 extends (0, eventemitter3__WEBPACK_IMPORTED_MODULE_1__.EventEmitter) {\n host;\n port;\n encrypted;\n timeout;\n // Declare an empty WebSocket.\n webSocket;\n // Used to disconnect after some time if initial connection is too slow.\n disconnectTimer;\n // Initialize boolean that indicates whether the onConnect function has run (initialize to false).\n onConnectHasRun;\n // Initialize event forwarding functions.\n eventForwarders;\n /**\n\t * Creates a socket configured with connection information for a given Electrum server.\n\t *\n\t * @param host Fully qualified domain name or IP address of the host\n\t * @param port Network port for the host to connect to, defaults to the standard TLS port\n\t * @param encrypted If false, uses an unencrypted connection instead of the default on TLS\n\t * @param timeout If no connection is established after `timeout` ms, the connection is terminated\n\t */ constructor(host, port = 50004, encrypted = true, timeout = (0, $d801b1f9b7fc3074$export$1bddf2b96e25d075)){\n // Initialize the event emitter.\n super();\n this.host = host;\n this.port = port;\n this.encrypted = encrypted;\n this.timeout = timeout;\n this.onConnectHasRun = false;\n this.eventForwarders = {\n disconnect: ()=>this.emit(\"disconnected\"),\n wsData: (event)=>this.emit(\"data\", `${event.data}\\n`),\n wsError: (event)=>this.emit(\"error\", new Error(event.error))\n };\n }\n /**\n\t * Returns a string for the host identifier for usage in debug messages.\n\t */ get hostIdentifier() {\n return `${this.host}:${this.port}`;\n }\n /**\n\t * Connect to host:port using the specified transport\n\t */ connect() {\n // Check that no existing socket exists before initiating a new connection.\n if (this.webSocket) throw new Error(\"Cannot initiate a new socket connection when an existing connection exists\");\n // Set a timer to force disconnect after `timeout` seconds\n this.disconnectTimer = setTimeout(()=>this.disconnectOnTimeout(), this.timeout);\n // Remove the timer if a connection is successfully established\n this.once(\"connected\", this.clearDisconnectTimerOnTimeout);\n // Set a named connection type for logging purposes.\n const connectionType = this.encrypted ? \"an encrypted WebSocket\" : \"a WebSocket\";\n // Log that we are trying to establish a connection.\n (0, _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_2__[\"default\"]).network(`Initiating ${connectionType} connection to '${this.host}:${this.port}'.`);\n if (this.encrypted) // Initialize this.webSocket (rejecting self-signed certificates).\n // We reject self-signed certificates to match functionality of browsers.\n this.webSocket = new (0, _monsterbitar_isomorphic_ws__WEBPACK_IMPORTED_MODULE_0__.WebSocket)(`wss://${this.host}:${this.port}`);\n else // Initialize this.webSocket.\n this.webSocket = new (0, _monsterbitar_isomorphic_ws__WEBPACK_IMPORTED_MODULE_0__.WebSocket)(`ws://${this.host}:${this.port}`);\n // Trigger successful connection events.\n this.webSocket.addEventListener(\"open\", this.onConnect.bind(this));\n // Forward the encountered errors.\n this.webSocket.addEventListener(\"error\", this.eventForwarders.wsError);\n }\n /**\n\t * Sets up forwarding of events related to the connection.\n\t */ onConnect() {\n // If the onConnect function has already run, do not execute it again.\n if (this.onConnectHasRun) return;\n // Set a named connection type for logging purposes.\n const connectionType = this.encrypted ? \"an encrypted WebSocket\" : \"a WebSocket\";\n // Log that the connection has been established.\n (0, _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_2__[\"default\"]).network(`Established ${connectionType} connection with '${this.host}:${this.port}'.`);\n // Forward the socket events\n this.webSocket.addEventListener(\"close\", this.eventForwarders.disconnect);\n this.webSocket.addEventListener(\"message\", this.eventForwarders.wsData);\n // Indicate that the onConnect function has run.\n this.onConnectHasRun = true;\n // Emit the connect event.\n this.emit(\"connected\");\n }\n /**\n\t * Clears the disconnect timer if it is still active.\n\t */ clearDisconnectTimerOnTimeout() {\n // Clear the retry timer if it is still active.\n if (this.disconnectTimer) clearTimeout(this.disconnectTimer);\n }\n /**\n\t * Forcibly terminate the connection.\n\t *\n\t * @throws {Error} if no connection was found\n\t */ disconnect() {\n // Clear the disconnect timer so that the socket does not try to disconnect again later.\n this.clearDisconnectTimerOnTimeout();\n try {\n // Remove all event forwarders.\n this.webSocket.removeEventListener(\"close\", this.eventForwarders.disconnect);\n this.webSocket.removeEventListener(\"message\", this.eventForwarders.wsData);\n this.webSocket.removeEventListener(\"error\", this.eventForwarders.wsError);\n // Gracefully terminate the connection.\n this.webSocket.close();\n } catch (ignored) {\n // close() will throw an error if the connection has not been established yet.\n // We ignore this error, since no similar error gets thrown in the TLS Socket.\n } finally{\n // Remove the stored socket regardless of any thrown errors.\n this.webSocket = undefined;\n }\n // Indicate that the onConnect function has not run and it has to be run again.\n this.onConnectHasRun = false;\n // Emit a disconnect event\n this.emit(\"disconnected\");\n }\n /**\n\t * Write data to the socket\n\t *\n\t * @param data Data to be written to the socket\n\t * @param callback Callback function to be called when the write has completed\n\t *\n\t * @throws {Error} if no connection was found\n\t * @returns true if the message was fully flushed to the socket, false if part of the message\n\t * is queued in the user memory\n\t */ write(data, callback) {\n // Throw an error if no active connection is found\n if (!this.webSocket) throw new Error(\"Cannot write to socket when there is no active connection\");\n // Write data to the WebSocket\n this.webSocket.send(data, callback);\n // WebSockets always fit everything in a single request, so we return true\n return true;\n }\n /**\n\t * Force a disconnection if no connection is established after `timeout` milliseconds.\n\t */ disconnectOnTimeout() {\n // Remove the connect listener.\n this.removeListener(\"connected\", this.clearDisconnectTimerOnTimeout);\n // Emit an error event so that connect is rejected upstream.\n this.emit(\"error\", new Error(`Connection to '${this.host}:${this.port}' timed out after ${this.timeout} milliseconds`));\n // Forcibly disconnect to clean up the connection on timeout\n this.disconnect();\n }\n // Add magic glue that makes typedoc happy so that we can have the events listed on the class.\n connected;\n disconnected;\n data;\n error;\n}\n\n\n\n\n\n//# sourceMappingURL=index.mjs.map\n\n\n//# sourceURL=webpack://mainnet-js/../../node_modules/@electrum-cash/web-socket/dist/index.mjs?");
1777
+ eval("/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"ElectrumWebSocket\": () => (/* binding */ ElectrumWebSocket)\n/* harmony export */ });\n/* harmony import */ var _monsterbitar_isomorphic_ws__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @monsterbitar/isomorphic-ws */ \"../../node_modules/@monsterbitar/isomorphic-ws/browser.mjs\");\n/* harmony import */ var eventemitter3__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! eventemitter3 */ \"../../node_modules/eventemitter3/index.mjs\");\n/* harmony import */ var _electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @electrum-cash/debug-logs */ \"../../node_modules/@electrum-cash/debug-logs/dist/index.mjs\");\n\n\n\n\n//#region source/constants.ts\nconst defaultTimeout = 30 * 1e3;\n\n//#endregion\n//#region source/web.ts\n/**\n* Web Socket used when communicating with Electrum servers.\n*/\nvar ElectrumWebSocket = class extends eventemitter3__WEBPACK_IMPORTED_MODULE_1__.EventEmitter {\n\twebSocket;\n\tdisconnectTimer;\n\tonConnectHasRun = false;\n\teventForwarders = {\n\t\tdisconnect: () => this.emit(\"disconnected\"),\n\t\twsData: (event) => this.emit(\"data\", `${event.data}\\n`),\n\t\twsError: (event) => this.emit(\"error\", new Error(event.error))\n\t};\n\tboundHandleVisibilityChange = this.handleVisibilityChange.bind(this);\n\tboundHandleConnectivityChange = this.handleConnectivityChange.bind(this);\n\t/**\n\t* Creates a socket configured with connection information for a given Electrum server.\n\t*\n\t* @param host Fully qualified domain name or IP address of the host\n\t* @param port Network port for the host to connect to, defaults to the standard TLS port\n\t* @param encrypted If false, uses an unencrypted connection instead of the default on TLS\n\t* @param timeout If no connection is established after `timeout` ms, the connection is terminated\n\t* @param reconnectionOptions Options to disable the automatic reconnection behavior when browser visibility or connectivity changes\n\t*/\n\tconstructor(host, port = 50004, encrypted = true, timeout = defaultTimeout, reconnectionOptions = {\n\t\tdisableBrowserVisibilityHandling: false,\n\t\tdisableBrowserConnectivityHandling: false\n\t}) {\n\t\tsuper();\n\t\tthis.host = host;\n\t\tthis.port = port;\n\t\tthis.encrypted = encrypted;\n\t\tthis.timeout = timeout;\n\t\tthis.reconnectionOptions = reconnectionOptions;\n\t}\n\t/**\n\t* Returns a string for the host identifier for usage in debug messages.\n\t*/\n\tget hostIdentifier() {\n\t\treturn `${this.host}:${this.port}`;\n\t}\n\t/**\n\t* Connect to host:port using the specified transport\n\t*/\n\tconnect() {\n\t\tif (this.webSocket) throw /* @__PURE__ */ new Error(\"Cannot initiate a new socket connection when an existing connection exists\");\n\t\tthis.disconnectTimer = setTimeout(() => this.disconnectOnTimeout(), this.timeout);\n\t\tthis.once(\"connected\", this.clearDisconnectTimerOnTimeout);\n\t\tconst connectionType = this.encrypted ? \"an encrypted WebSocket\" : \"a WebSocket\";\n\t\t_electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_2__[\"default\"].network(`Initiating ${connectionType} connection to '${this.host}:${this.port}'.`);\n\t\tif (this.encrypted) this.webSocket = new _monsterbitar_isomorphic_ws__WEBPACK_IMPORTED_MODULE_0__.WebSocket(`wss://${this.host}:${this.port}`);\n\t\telse this.webSocket = new _monsterbitar_isomorphic_ws__WEBPACK_IMPORTED_MODULE_0__.WebSocket(`ws://${this.host}:${this.port}`);\n\t\tthis.webSocket.addEventListener(\"open\", this.onConnect.bind(this));\n\t\tthis.webSocket.addEventListener(\"error\", this.eventForwarders.wsError);\n\t}\n\t/**\n\t* Enables handler for browser consistent behavior with regards to connectivity and visibility events.\n\t*\n\t* Note that some browser disconnect sockets when a tab or window loses focus in order to save battery.\n\t* Note that some browser disconnect sockets when the browser loses connectivity.\n\t*\n\t* This feature allows for consistent behavior across browsers by default, but can be disabled if needed.\n\t*/\n\tconfigureBehaviorConsistency() {\n\t\tconst { disableBrowserVisibilityHandling, disableBrowserConnectivityHandling } = this.reconnectionOptions;\n\t\tif (!disableBrowserVisibilityHandling) this.enforceConsistentVisibilityBehavior();\n\t\tif (!disableBrowserConnectivityHandling) this.enforceConsistentConnectivityBehavior();\n\t}\n\t/**\n\t* Disables all automation regarding browser connectivity and visibility states.\n\t*/\n\tdisableBehaviorConsistency() {\n\t\tthis.disableConsistentVisibilityBehavior();\n\t\tthis.disableConsistentConnectivityBehavior();\n\t}\n\t/**\n\t* Adds event handlers for automatic connection and disconnect on browser visibility changes.\n\t*/\n\tenforceConsistentVisibilityBehavior() {\n\t\tif (typeof document !== \"undefined\") {\n\t\t\tdocument.removeEventListener(\"visibilitychange\", this.boundHandleVisibilityChange);\n\t\t\tdocument.addEventListener(\"visibilitychange\", this.boundHandleVisibilityChange);\n\t\t}\n\t}\n\t/**\n\t* Removes event handlers for browser visibility events.\n\t*/\n\tdisableConsistentVisibilityBehavior() {\n\t\tif (typeof document !== \"undefined\") document.removeEventListener(\"visibilitychange\", this.boundHandleVisibilityChange);\n\t}\n\t/**\n\t* Adds event handlers for automatic connection and disconnect on browser connectivity changes.\n\t*/\n\tenforceConsistentConnectivityBehavior() {\n\t\tif (typeof window !== \"undefined\") {\n\t\t\twindow.removeEventListener(\"online\", this.boundHandleConnectivityChange);\n\t\t\twindow.removeEventListener(\"offline\", this.boundHandleConnectivityChange);\n\t\t\twindow.addEventListener(\"online\", this.boundHandleConnectivityChange);\n\t\t\twindow.addEventListener(\"offline\", this.boundHandleConnectivityChange);\n\t\t}\n\t}\n\t/**\n\t* Removes event handlers for browser connectivity events.\n\t*/\n\tdisableConsistentConnectivityBehavior() {\n\t\tif (typeof window !== \"undefined\") {\n\t\t\twindow.removeEventListener(\"online\", this.boundHandleConnectivityChange);\n\t\t\twindow.removeEventListener(\"offline\", this.boundHandleConnectivityChange);\n\t\t}\n\t}\n\t/**\n\t* Sets up forwarding of events related to the connection.\n\t*/\n\tonConnect() {\n\t\tif (this.onConnectHasRun) return;\n\t\tconst connectionType = this.encrypted ? \"an encrypted WebSocket\" : \"a WebSocket\";\n\t\t_electrum_cash_debug_logs__WEBPACK_IMPORTED_MODULE_2__[\"default\"].network(`Established ${connectionType} connection with '${this.host}:${this.port}'.`);\n\t\tthis.webSocket.addEventListener(\"close\", this.eventForwarders.disconnect);\n\t\tthis.webSocket.addEventListener(\"message\", this.eventForwarders.wsData);\n\t\tthis.configureBehaviorConsistency();\n\t\tthis.onConnectHasRun = true;\n\t\tthis.emit(\"connected\");\n\t}\n\t/**\n\t* Clears the disconnect timer if it is still active.\n\t*/\n\tclearDisconnectTimerOnTimeout() {\n\t\tif (this.disconnectTimer) clearTimeout(this.disconnectTimer);\n\t}\n\t/**\n\t* Forcibly terminate the connection.\n\t*\n\t* @throws {Error} if no connection was found\n\t*/\n\tdisconnect() {\n\t\tthis.disableBehaviorConsistency();\n\t\tthis.closeAndRemoveSocket();\n\t}\n\tcloseAndRemoveSocket() {\n\t\tthis.clearDisconnectTimerOnTimeout();\n\t\ttry {\n\t\t\tthis.webSocket.removeEventListener(\"close\", this.eventForwarders.disconnect);\n\t\t\tthis.webSocket.removeEventListener(\"message\", this.eventForwarders.wsData);\n\t\t\tthis.webSocket.removeEventListener(\"error\", this.eventForwarders.wsError);\n\t\t\tthis.webSocket.addEventListener(\"error\", (_ignored) => {}, { once: true });\n\t\t\tthis.webSocket.close();\n\t\t} catch (_ignored) {} finally {\n\t\t\tthis.webSocket = void 0;\n\t\t}\n\t\tthis.onConnectHasRun = false;\n\t\tthis.emit(\"disconnected\");\n\t}\n\t/**\n\t* Write data to the socket\n\t*\n\t* @param data Data to be written to the socket\n\t* @param callback Callback function to be called when the write has completed\n\t*\n\t* @throws {Error} if no connection was found\n\t* @returns true if the message was fully flushed to the socket, false if part of the message\n\t* is queued in the user memory\n\t*/\n\twrite(data, callback) {\n\t\tif (!this.webSocket) throw /* @__PURE__ */ new Error(\"Cannot write to socket when there is no active connection\");\n\t\tthis.webSocket.send(data, callback);\n\t\treturn true;\n\t}\n\t/**\n\t* Force a disconnection if no connection is established after `timeout` milliseconds.\n\t*/\n\tdisconnectOnTimeout() {\n\t\tthis.removeListener(\"connected\", this.clearDisconnectTimerOnTimeout);\n\t\tthis.emit(\"error\", /* @__PURE__ */ new Error(`Connection to '${this.host}:${this.port}' timed out after ${this.timeout} milliseconds`));\n\t\tthis.closeAndRemoveSocket();\n\t}\n\t/**\n\t* Handles visibility changes when run in a browser environment.\n\t*/\n\thandleVisibilityChange() {\n\t\tif (document?.visibilityState === \"hidden\") {\n\t\t\tthis.closeAndRemoveSocket();\n\t\t\treturn;\n\t\t}\n\t\tif (this.webSocket) return;\n\t\treturn this.connect();\n\t}\n\t/**\n\t* Handles connectivity changes when run in a browser environment.\n\t*/\n\thandleConnectivityChange() {\n\t\tif (window.navigator.onLine === false) {\n\t\t\tthis.closeAndRemoveSocket();\n\t\t\treturn;\n\t\t}\n\t\tif (this.webSocket) return;\n\t\treturn this.connect();\n\t}\n\tconnected;\n\tdisconnected;\n\tdata;\n\terror;\n};\n\n//#endregion\n\n//# sourceMappingURL=index.mjs.map\n\n//# sourceURL=webpack://mainnet-js/../../node_modules/@electrum-cash/web-socket/dist/index.mjs?");
1778
1778
 
1779
1779
  /***/ }),
1780
1780
 
@@ -60,7 +60,10 @@ function getElectrumClient(params, timeout, network) {
60
60
  if (params.scheme?.includes("tcp")) {
61
61
  throw Error("TCP connections are not supported.");
62
62
  }
63
- const webSocket = new ElectrumWebSocket(params.host, params.port, params.scheme === "wss", timeout);
63
+ const webSocket = new ElectrumWebSocket(params.host, params.port, params.scheme === "wss", timeout, {
64
+ disableBrowserConnectivityHandling: true,
65
+ disableBrowserVisibilityHandling: true,
66
+ });
64
67
  return new ElectrumClient(getUserAgent(), ELECTRUM_CASH_PROTOCOL_VERSION, webSocket, {
65
68
  disableBrowserConnectivityHandling: true,
66
69
  disableBrowserVisibilityHandling: true,
@@ -1 +1 @@
1
- {"version":3,"file":"default.js","sourceRoot":"","sources":["../../../src/network/default.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AAClF,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAE9D,OAAO,EAAE,iBAAiB,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,WAAW,CAAC;AAE7C,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAC1C,OAAO,EACL,gBAAgB,EAChB,8BAA8B,GAC/B,MAAM,eAAe,CAAC;AAEvB,MAAM,UAAU,iBAAiB,CAC/B,OAAgB,EAChB,QAAyB;IAEzB,MAAM,QAAQ,GAAG,gBAAgB,CAAC,OAAO,CAAC,CAAC;IAC3C,UAAU,CAAC,QAAQ,CAAC,GAAG,QAAQ,CAAC;IAChC,OAAO,QAAQ,CAAC;AAClB,CAAC;AAED,MAAM,UAAU,iBAAiB,CAC/B,OAAgB;IAEhB,MAAM,QAAQ,GAAG,gBAAgB,CAAC,OAAO,CAAC,CAAC;IAC3C,OAAO,UAAU,CAAC,QAAQ,CAAC,CAAC;AAC9B,CAAC;AAED,MAAM,UAAU,oBAAoB,CAAC,OAAgB;IACnD,MAAM,QAAQ,GAAG,gBAAgB,CAAC,OAAO,CAAC,CAAC;IAC3C,IAAI,QAAQ,IAAI,UAAU,EAAE,CAAC;QAC3B,OAAO,UAAU,CAAC,QAAQ,CAAC,CAAC;IAC9B,CAAC;AACH,CAAC;AAED,MAAM,UAAU,kBAAkB,CAChC,UAAmB,OAAO,CAAC,OAAO,EAClC,OAA2B,EAC3B,0BAAoC,EACpC,OAA4B;IAE5B,MAAM,aAAa,GACjB,OAAO,KAAK,SAAS;QACrB,0BAA0B,KAAK,SAAS;QACxC,OAAO,KAAK,SAAS,CAAC;IACxB,IAAI,aAAa,EAAE,CAAC;QAClB,MAAM,cAAc,GAAG,iBAAiB,CAAC,OAAO,CAAC,CAAC;QAClD,IAAI,cAAc,EAAE,CAAC;YACnB,OAAO,cAAc,CAAC;QACxB,CAAC;IACH,CAAC;IAED,0BAA0B,GAAG,0BAA0B;QACrD,CAAC,CAAC,0BAA0B;QAC5B,CAAC,CAAC,KAAK,CAAC;IACV,OAAO,GAAG,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAC;IACzD,4EAA4E;IAC5E,IAAI,OAAO,OAAO,KAAK,QAAQ,EAAE,CAAC;QAChC,OAAO,GAAG,CAAC,OAAiB,CAAC,CAAC;IAChC,CAAC;IAED,uBAAuB;IACvB,IAAI,OAAO,EAAE,CAAC;QACZ,MAAM,MAAM,GAAG,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;QACvD,IAAI,QAAQ,GAAG,IAAI,uBAAuB,CACxC,MAAM,EACN,OAAO,EACP,0BAA0B,CAC3B,CAAC;QAEF,IAAI,aAAa,EAAE,CAAC;YAClB,OAAO,iBAAiB,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;QAC9C,CAAC;QAED,OAAO,QAAQ,CAAC;IAClB,CAAC;SAAM,CAAC;QACN,MAAM,KAAK,CAAC,8CAA8C,CAAC,CAAC;IAC9D,CAAC;AACH,CAAC;AAED,gCAAgC;AAChC,SAAS,SAAS,CAChB,MAAc,EACd,OAAgB,EAChB,OAA4B;IAE5B,IAAI,GAAG,GAAG,gBAAgB,CAAC,MAAM,CAAC,CAAC;IACnC,OAAO,iBAAiB,CAAC,GAAG,EAAE,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,OAAO,CAAC,CAAC;AACrE,CAAC;AAED,SAAS,iBAAiB,CACxB,MAA0B,EAC1B,OAAe,EACf,OAAgB;IAEhB,IAAI,MAAM,CAAC,MAAM,EAAE,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC;QACnC,MAAM,KAAK,CAAC,oCAAoC,CAAC,CAAC;IACpD,CAAC;IAED,MAAM,SAAS,GAAG,IAAI,iBAAiB,CACrC,MAAM,CAAC,IAAI,EACX,MAAM,CAAC,IAAI,EACX,MAAM,CAAC,MAAM,KAAK,KAAK,EACvB,OAAO,CACR,CAAC;IACF,OAAO,IAAI,cAAc,CACvB,YAAY,EAAE,EACd,8BAA8B,EAC9B,SAAS,EACT;QACE,kCAAkC,EAAE,IAAI;QACxC,gCAAgC,EAAE,IAAI;KACvC,CACF,CAAC;AACJ,CAAC"}
1
+ {"version":3,"file":"default.js","sourceRoot":"","sources":["../../../src/network/default.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AAClF,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAE9D,OAAO,EAAE,iBAAiB,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,WAAW,CAAC;AAE7C,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAC1C,OAAO,EACL,gBAAgB,EAChB,8BAA8B,GAC/B,MAAM,eAAe,CAAC;AAEvB,MAAM,UAAU,iBAAiB,CAC/B,OAAgB,EAChB,QAAyB;IAEzB,MAAM,QAAQ,GAAG,gBAAgB,CAAC,OAAO,CAAC,CAAC;IAC3C,UAAU,CAAC,QAAQ,CAAC,GAAG,QAAQ,CAAC;IAChC,OAAO,QAAQ,CAAC;AAClB,CAAC;AAED,MAAM,UAAU,iBAAiB,CAC/B,OAAgB;IAEhB,MAAM,QAAQ,GAAG,gBAAgB,CAAC,OAAO,CAAC,CAAC;IAC3C,OAAO,UAAU,CAAC,QAAQ,CAAC,CAAC;AAC9B,CAAC;AAED,MAAM,UAAU,oBAAoB,CAAC,OAAgB;IACnD,MAAM,QAAQ,GAAG,gBAAgB,CAAC,OAAO,CAAC,CAAC;IAC3C,IAAI,QAAQ,IAAI,UAAU,EAAE,CAAC;QAC3B,OAAO,UAAU,CAAC,QAAQ,CAAC,CAAC;IAC9B,CAAC;AACH,CAAC;AAED,MAAM,UAAU,kBAAkB,CAChC,UAAmB,OAAO,CAAC,OAAO,EAClC,OAA2B,EAC3B,0BAAoC,EACpC,OAA4B;IAE5B,MAAM,aAAa,GACjB,OAAO,KAAK,SAAS;QACrB,0BAA0B,KAAK,SAAS;QACxC,OAAO,KAAK,SAAS,CAAC;IACxB,IAAI,aAAa,EAAE,CAAC;QAClB,MAAM,cAAc,GAAG,iBAAiB,CAAC,OAAO,CAAC,CAAC;QAClD,IAAI,cAAc,EAAE,CAAC;YACnB,OAAO,cAAc,CAAC;QACxB,CAAC;IACH,CAAC;IAED,0BAA0B,GAAG,0BAA0B;QACrD,CAAC,CAAC,0BAA0B;QAC5B,CAAC,CAAC,KAAK,CAAC;IACV,OAAO,GAAG,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAC;IACzD,4EAA4E;IAC5E,IAAI,OAAO,OAAO,KAAK,QAAQ,EAAE,CAAC;QAChC,OAAO,GAAG,CAAC,OAAiB,CAAC,CAAC;IAChC,CAAC;IAED,uBAAuB;IACvB,IAAI,OAAO,EAAE,CAAC;QACZ,MAAM,MAAM,GAAG,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;QACvD,IAAI,QAAQ,GAAG,IAAI,uBAAuB,CACxC,MAAM,EACN,OAAO,EACP,0BAA0B,CAC3B,CAAC;QAEF,IAAI,aAAa,EAAE,CAAC;YAClB,OAAO,iBAAiB,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;QAC9C,CAAC;QAED,OAAO,QAAQ,CAAC;IAClB,CAAC;SAAM,CAAC;QACN,MAAM,KAAK,CAAC,8CAA8C,CAAC,CAAC;IAC9D,CAAC;AACH,CAAC;AAED,gCAAgC;AAChC,SAAS,SAAS,CAChB,MAAc,EACd,OAAgB,EAChB,OAA4B;IAE5B,IAAI,GAAG,GAAG,gBAAgB,CAAC,MAAM,CAAC,CAAC;IACnC,OAAO,iBAAiB,CAAC,GAAG,EAAE,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,OAAO,CAAC,CAAC;AACrE,CAAC;AAED,SAAS,iBAAiB,CACxB,MAA0B,EAC1B,OAAe,EACf,OAAgB;IAEhB,IAAI,MAAM,CAAC,MAAM,EAAE,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC;QACnC,MAAM,KAAK,CAAC,oCAAoC,CAAC,CAAC;IACpD,CAAC;IAED,MAAM,SAAS,GAAG,IAAI,iBAAiB,CACrC,MAAM,CAAC,IAAI,EACX,MAAM,CAAC,IAAI,EACX,MAAM,CAAC,MAAM,KAAK,KAAK,EACvB,OAAO,EACP;QACE,kCAAkC,EAAE,IAAI;QACxC,gCAAgC,EAAE,IAAI;KACvC,CACF,CAAC;IACF,OAAO,IAAI,cAAc,CACvB,YAAY,EAAE,EACd,8BAA8B,EAC9B,SAAS,EACT;QACE,kCAAkC,EAAE,IAAI;QACxC,gCAAgC,EAAE,IAAI;KACvC,CACF,CAAC;AACJ,CAAC"}
@@ -1 +1 @@
1
- {"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.webworker.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/chain.ts","../../../node_modules/@bitauth/libauth/build/lib/address/base58-address.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/bech32.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/cash-address.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/locking-bytecode.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/address.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/hashes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/ripemd160/ripemd160.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/secp256k1/secp256k1-wasm-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/secp256k1/secp256k1-wasm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/sha1/sha1.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/sha256/sha256.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/sha512/sha512.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/bin.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-bch/compiler-bch.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-defaults.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-operation-helpers.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-operations.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/scenarios.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/p2pkh-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/standard/p2pkh.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/standard/standard.d.ts","../../../node_modules/@bitauth/libauth/build/lib/engine/types/template-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/combinations.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/base-convert.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/bin-string.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/error.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/hex.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/log.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/number.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/read.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/time.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/type-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/utf8.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/format.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/dependencies.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/secp256k1-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/default-crypto-instances.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/hmac.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/pbkdf2.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/ripemd160.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/secp256k1.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/sha1.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/sha256.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/sha512.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/crypto.d.ts","../../../node_modules/@bitauth/libauth/build/lib/engine/types/bcmr-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/engine/engine.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/hd-key.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/key-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.chinese-simplified.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.chinese-traditional.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.czech.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.english.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.french.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.italian.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.japanese.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.korean.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.portuguese.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.spanish.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/bip39.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/wallet-import-format.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/key.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/compile.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/language-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/language-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/parse.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/reduce.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/resolve.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/language.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/read-components.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/transaction-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/transaction-encoding.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/message.d.ts","../../../node_modules/@bitauth/libauth/build/lib/schema/bcmr.d.ts","../../../node_modules/@bitauth/libauth/build/lib/schema/wallet-template.d.ts","../../../node_modules/@bitauth/libauth/build/lib/schema/schema.d.ts","../../../node_modules/@bitauth/libauth/build/lib/transaction/generate-transaction.d.ts","../../../node_modules/@bitauth/libauth/build/lib/transaction/transaction.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-2020-consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/virtual-machine.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/vm-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/fixtures/satoshi-client/bitcoin-satoshi-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/arithmetic.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/bitwise.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/combinators.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/common-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/signing-serialization.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/crypto.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/encoding.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/flow-control.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/format.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/inspection.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/instruction-sets-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/instruction-sets-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/nop.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/push.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/stack.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/time.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/common.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-tokens.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-loops.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/bch.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/instruction-sets.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vmb-tests/bch-vmb-test-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vmb-tests/vmb-tests.d.ts","../../../node_modules/@bitauth/libauth/build/lib/lib.d.ts","../../../node_modules/@bitauth/libauth/build/index.d.ts","../src/enum.ts","../src/config.ts","../src/interface.ts","../src/cache/interface.ts","../src/cache/IndexedDbCache.ts","../src/cache/MemoryCache.ts","../src/cache/WebStorageCache.ts","../src/cache/walletCache.ts","../src/db/interface.ts","../src/db/StorageProvider.ts","../src/message/interface.ts","../../../node_modules/eventemitter3/index.d.ts","../../../node_modules/@electrum-cash/network/dist/index.d.ts","../src/network/interface.ts","../src/wallet/enum.ts","../src/wallet/interface.ts","../src/network/NetworkProvider.ts","../src/util/transaction.ts","../src/util/header.ts","../src/network/ElectrumNetworkProvider.ts","../../../node_modules/@electrum-cash/web-socket/dist/index.d.ts","../src/constant.ts","../src/util/getRuntimePlatform.ts","../src/db/ExchangeRateProvider.ts","../src/rate/ExchangeRate.ts","../src/util/sanitizeUnit.ts","../src/util/amountInSatoshi.ts","../src/util/hash160.ts","../src/util/deriveCashaddr.ts","../src/wallet/model.ts","../src/util/asSendRequestObject.ts","../src/util/base64.ts","../src/util/satoshiToAmount.ts","../src/util/convert.ts","../src/util/delay.ts","../src/util/derivePublicKeyHash.ts","../src/util/deriveNetwork.ts","../src/util/getAddrsByXpubKey.ts","../src/util/getUsdRate.ts","../src/util/sanitizeAddress.ts","../src/util/randomInt.ts","../src/util/getXPubKey.ts","../src/util/sumUtxoValue.ts","../src/util/checkUtxos.ts","../src/util/index.ts","../src/network/constant.ts","../src/network/configuration.ts","../src/network/util.ts","../src/network/default.ts","../src/network/getRelayFeeCache.ts","../src/transaction/allocateFee.ts","../src/util/sumSendRequestAmounts.ts","../src/transaction/Wif.ts","../src/wallet/Util.ts","../src/message/signed.ts","../src/wallet/Base.ts","../src/cache/index.ts","../src/history/interface.ts","../src/history/getHistory.ts","../src/util/checkForEmptySeed.ts","../src/util/hd.ts","../src/wallet/HDWallet.ts","../src/wallet/Watch.ts","../src/message/index.ts","../src/util/checkWifNetwork.ts","../src/util/randomBytes.ts","../src/wallet/Wif.ts","../src/wallet/createWallet.ts","../src/cli.ts","../src/test/fetch.ts","../src/test/expect.ts","../src/db/index.ts","../src/mine/mine.ts","../src/mine/index.ts","../src/network/Connection.ts","../src/network/index.ts","../src/libauth.ts","../src/index.ts","../src/util/browserNotSupported.ts","../src/util/deriveLockscript.ts","../src/util/floor.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/jest/node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/@types/jest/node_modules/chalk/index.d.ts","../../../node_modules/@types/jest/node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@types/jest/node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts","../../../node_modules/@types/jest/node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/@types/jest/node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileIdsList":[[201,330],[49,50,51,52,330],[330],[54,55,57,58,59,60,330],[56,330],[62,201,330],[62,63,64,65,66,67,68,69,71,72,330],[70,330],[74,88,89,90,91,92,93,94,95,96,330],[87,88,330],[61,86,330],[90,330],[72,98,330],[75,76,77,78,79,80,81,82,83,84,85,330],[97,100,101,102,103,104,105,106,107,108,109,110,111,201,330],[100,201,330],[100,101,112,113,330],[115,116,117,118,119,120,330],[117,201,330],[53,61,73,86,97,99,114,121,125,128,130,198,200,330],[122,123,124,330],[123,201,330],[126,127,330],[129,330],[149,330],[160,201,330],[136,137,330],[160,161,162,163,164,165,166,167,330],[169,330],[197,330],[170,201,330],[169,170,171,172,173,330],[161,330],[171,197,330],[175,176,201,330],[164,330],[176,177,178,330],[136,137,149,159,160,166,168,171,174,179,180,181,182,183,187,188,191,201,330],[180,192,330],[182,192,197,330],[184,201,330],[187,192,330],[136,137,189,330],[181,183,185,186,188,189,190,330],[193,194,195,330],[141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,330],[145,330],[137,201,330],[140,159,180,187,192,196,330],[132,201,330],[131,133,134,135,138,139,330],[136,137,197,330],[199,330],[214,330],[214,215,330],[330,342,345],[330,340],[330,338,344],[330,342],[330,339,343],[330,341],[284,330],[287,330],[288,293,321,330],[289,300,301,308,318,329,330],[289,290,300,308,330],[291,330],[292,293,301,309,330],[293,318,326,330],[294,296,300,308,330],[295,330],[296,297,330],[300,330],[298,300,330],[300,301,302,318,329,330],[300,301,302,315,318,321,330],[330,334],[303,308,318,329,330],[300,301,303,304,308,318,326,329,330],[303,305,318,326,329,330],[284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336],[300,306,330],[307,329,330],[296,300,308,318,330],[309,330],[310,330],[287,311,330],[312,328,330,334],[313,330],[314,330],[300,315,316,330],[315,317,330,332],[288,300,318,319,320,321,330],[288,318,320,330],[318,319,330],[321,330],[322,330],[300,324,325,330],[324,325,330],[293,308,318,326,330],[327,330],[308,328,330],[288,303,314,329,330],[293,330],[318,330,331],[330,332],[330,333],[288,293,300,302,311,318,329,330,332,334],[318,330,335],[206,330],[206,210,330],[202,204,205,206,207,208,209,330],[217,270,330],[211,330],[211,212,330],[202,330],[48,202,203,205,219,227,228,260,330],[205,330],[203,204,205,213,217,218,224,232,247,249,257,258,260,261,264,265,269,270,272,273,274,276,278,279,330],[213,257,330],[202,213,230,330],[275,330],[202,203,205,219,248,251,330],[204,205,206,207,208,209,215,216,218,219,220,221,330],[205,216,218,330],[205,247,248,330],[205,215,216,219,222,223,248,249,250,330],[48,219,248,330],[216,219,222,251,277,330],[216,330],[204,224,225,226,330],[202,205,210,217,224,232,245,253,254,330],[217,224,232,330],[48,203,227,228,330],[202,232,330],[225,330],[203,330],[48,229,235,330],[202,203,205,230,330],[203,238,330],[202,230,330],[227,330],[202,205,330],[202,221,225,227,228,229,230,231,233,234,236,237,238,239,240,241,242,243,244,245,246,330],[225,293,330],[238,330],[232,330],[202,203,205,210,212,213,216,217,218,222,232,246,247,251,252,254,255,256,257,330],[202,203,204,205,217,218,224,232,245,258,259,260,261,262,263,330],[48,202,203,216,219,220,251,330],[202,203,205,213,217,218,224,231,238,257,258,260,261,330],[202,203,204,217,218,222,224,232,255,262,265,266,267,268,330],[203,218,258,264,265,269,330],[203,205,216,217,330],[202,204,205,224,231,330]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"9e8ca8ed051c2697578c023d9c29d6df689a083561feba5c14aedee895853999","affectsGlobalScope":true,"impliedFormat":1},{"version":"30055c4694373918593a99ac50e8bc2d42922b8117f71c79719ee433320eb80c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"11aec49f70e2b113c31b93f6bbd39ab344990a71eb7f9b8ec4f87087d104fa5b","signature":"14877f8999c6edc2eca4a4739b92b3e513a6f58a4e62b3f6e6929d22dcc177f1"},{"version":"a38d71d48e8097dc479eeb78d9a9a070c8e4a58c6e3dab44dd3bc3ca9fcfa027","impliedFormat":99},{"version":"cba6688cd77e97f8bec08ed8b1e98db2cd3fe119d76f136b032de3f36bc4f20c","impliedFormat":99},{"version":"987749b82eed507f1a2412cdcbd949fff5710bdd66db6ce8e2165d2fdacb74d6","impliedFormat":99},{"version":"26aaba823e6eb0ca301c3e70786e3217b20e80ff59879f4e4897e00ecb7ba060","impliedFormat":99},{"version":"1d41545e31b119d9bb993202dc5fa73815ac0cfe486feaddad7c3bbcbcef0e68","impliedFormat":99},{"version":"7e392413f34965abfd94cff06e38e3dabb999d0e97583c318a72b99f79d3e75f","impliedFormat":99},{"version":"7426d1ec25b2f49f7700e85a63bea9a7aba52fd33a0879f6fd3e8e98568b5811","impliedFormat":99},{"version":"60fc0d963d309f2984e37784feb937250ac80b0872aca8c938e7f671000df77b","impliedFormat":99},{"version":"2f275fec9095538f7ca65b5c89a470726d786244c711e55cc2c7ec60eea1b346","impliedFormat":99},{"version":"aed13d0d330e79bf17373a0cabe9dac6ec29d3e1a0b5c8eaaacb81fd2fa94494","impliedFormat":99},{"version":"23f634e12d2c1c5f876caddf838923f8e1485f259b16bbaa8263d6b89ba87592","impliedFormat":99},{"version":"de3af19c02f00bd370a985b62061a6d7d02883ec012382f3c19c39046d52c966","impliedFormat":99},{"version":"1b30425956ed9d9a6a7388d40f19fc1a5e4b88a921fb13d6a23cb55147211f28","impliedFormat":99},{"version":"4f9462a097d141e885b737f09164e861e2895f1043d0646180db3c03f0dbf143","impliedFormat":99},{"version":"d34336323293a332e720fa87bec70af73a870dc7b3f7d5f38cfca0fc3c3b65ad","impliedFormat":99},{"version":"b3531a70c555139ccbeca949f84282d65b6a5755d863ac3503e35a82502b09ca","impliedFormat":99},{"version":"6d199ba5d5156351ccfeecaa9a5ae01af5b7784cd81f222e7a0c11e4721b354e","impliedFormat":99},{"version":"f3a8d7c9272a3a82c85f2341f5e2ca3c3d18f060150226f787870c8ec3e2a827","impliedFormat":99},{"version":"1b0df60f3b58b2f4d4478820ac476f7e78274a52292d9d42373a0a96dcd3069f","impliedFormat":99},{"version":"6aa2c64d92e9090f78179c0bed1602e9f860b91275d459e67e318c9e79464657","impliedFormat":99},{"version":"9f315cecb5e5da51300379da15a3f78aec7453cb4d004fef057d8ef6e5d7dcbc","impliedFormat":99},{"version":"d06e733c0ebb22e1e3af02a32c34e625947b88513d3bbfb8b13bbfe94e12fe4b","impliedFormat":99},{"version":"cd1b749ad64dadd2a14d785d1af90a7c05304cad2fb6a77a90c78e1f88b0c436","impliedFormat":99},{"version":"a9d41a14643ed25da84e060e39d81a8170e5cf407909528b34ce32e9c3e5522b","impliedFormat":99},{"version":"79f75d25b82ef484fff58c701d4d15aba4d13976cf7c981cdb4cebbaaa0e8105","impliedFormat":99},{"version":"ce33c917b77d69a60d4844a965a3db13ee6c2ac0bcc2bf8429e28586cd57d0f5","impliedFormat":99},{"version":"a785ac9f11b50e976663ee951f7a7acc3320a36532524a9d46a0fe542720e34f","impliedFormat":99},{"version":"5ba8578db919e6b54168305899203c13fd5a86e8f8e76b08fb42eaf9c6879f5e","impliedFormat":99},{"version":"67f397f227fbf8576e325c6b3c5d39d9fda989ba0b09b58705f33427af457e81","impliedFormat":99},{"version":"c8a1f0f8c1480aa0a5245a43c3c2b380d17da6eae045ffb92a2daf5e764d7b3a","impliedFormat":99},{"version":"ba555564cda57456f002787864df83ac0d35d8e74b4e89d3d73e688cd4464f87","impliedFormat":99},{"version":"3d6c80e747f1c522a6cf6df4c7e86d1e07b01fd9e1c160ed4170ad63d132ca7d","impliedFormat":99},{"version":"728dcbde517e31c9b8bc622ecb1ef5a275568d69e6bcab2f34de961d8f681e1c","impliedFormat":99},{"version":"119014bf306302bd117b1bbe9f809313816d36020a59d07f2c6c37790665757c","impliedFormat":99},{"version":"829608c14e83f9ad43e6e260119617029d6d425b7ae6a21132c6e3ee2ca850e3","impliedFormat":99},{"version":"0e3823c30ce7d5ee4e0cf6fb915ba8233054bf3988d55359dbf984fea5c2568a","impliedFormat":99},{"version":"ad40ae7beeef7d76a610b2669d798235c7a8e5a5ea0de65de8ab7433641c206a","impliedFormat":99},{"version":"9a870477f7e4a5c19dd446e1cd6c337bc6109089175e0557d7bb320f2894a9fc","impliedFormat":99},{"version":"949dc79359a4014c163c82d16f9a33130ff948a4fd5dc9ee1276ebf4e9dddc29","impliedFormat":99},{"version":"64d5f2f2523adbb097b6c20d346158bb48307ef9c9f7f65f423aa0af58beb9db","impliedFormat":99},{"version":"d35ca62340b51165dd1a9d27f4615790d38961f6e0728e3fe688643ee25a9750","impliedFormat":99},{"version":"af650943a57e3e1a0cf2d73e4fb2fc4f9e0b5f3414242d849f13713d7bfc86a7","impliedFormat":99},{"version":"05070c9cce1bf6c0a6ad2f9cab6562d6f0717ef3be5e85bf607a88292866dfe8","impliedFormat":99},{"version":"423872925077214074ac64562f539ea6a95e2aec64aa1dfc21ce7e18a49fb2a1","impliedFormat":99},{"version":"d5170c8d36bae7f5e54716612fcffe654b406e3222810073aeda14c20bede12a","impliedFormat":99},{"version":"0716f1b01085ea795a96bc1d9159baf2b98025c2f1ebd9b40b49434dc70b89d9","impliedFormat":99},{"version":"c5286a8f76ab94568608c5e3c588024ed63047e61ddd8037c373dc68af120392","impliedFormat":99},{"version":"1c0807be4d4ecefddbf9b719139c13368ec4a5ed95c7324aa4d591e3cc550840","impliedFormat":99},{"version":"7f9e6651383f0563cc730c42973bee069dd48cc96d99940218379e516d900a9d","impliedFormat":99},{"version":"e6370030948c325544eb00e8ec025ca8b5c29c667630d99b9c568fe01f665078","impliedFormat":99},{"version":"e5dda9fb9dab003e975fa2b3f8afb3f3e21914f48df73b4c21c4e7d3aa59c550","impliedFormat":99},{"version":"bc06e0598f8dedbb70b897f45d387f33fff56c0e93c95531df7836b81929db6f","impliedFormat":99},{"version":"5ddafee7e18fef65f2fcc9e6c143e8cfce64fe639fcd43512fd48103cb7d0880","impliedFormat":99},{"version":"e58f814f0cdddf98a39a886af78aef76af93a9407d314bfa35c825f3c9b9ed81","impliedFormat":99},{"version":"06c9b6087d78baf71927b1d8da838c6bc1577398e02d615d10a6d454c590b1e3","impliedFormat":99},{"version":"1159f7a7770f4f3e21c7c1cf5dd679c44ddf4f6d5700290b728af9a8678bfb20","impliedFormat":99},{"version":"0d4359e3863dee0d03ee806a2027c3ca80d2df49fadfb4883a83d253dbf7b7ce","impliedFormat":99},{"version":"fb1d640181613305988efc7fe3370d34c046d39e03fc047c3551c94e9d08e0a3","impliedFormat":99},{"version":"1440fc398d5289c15ecf7c39580a968ade6e4c050bf519fa9555b34591bb4af1","impliedFormat":99},{"version":"6869337d36e58a184d046aae831f640dbd65e37f089a8cadb284e9d71e294df8","impliedFormat":99},{"version":"c2df7d7040a47954a9e3f7cad68adadfaf415a3a2462c7c623589323d0b7adf3","impliedFormat":99},{"version":"50e01013f474ae073d2c59624749bb26fbeb8a44ecb76695606126d16ed64553","impliedFormat":99},{"version":"b04b90388c60ef1674fd77e3a66d9432873980e7ee87745332b9c10457fe7289","impliedFormat":99},{"version":"3e768d76d6b43e265d2e074179bb5770774155d157ce68a5a02c907282750cfc","impliedFormat":99},{"version":"6ba33903b042f585b4cf3192ee22af279326e64ad157101e1bcede7a70b15adf","impliedFormat":99},{"version":"c6467ed6ced9fc889c3b71f940c8f88bce1e7bd95368ebc57ef9466a358e6674","impliedFormat":99},{"version":"9b7cded7d20ce665ee2bfdd5633da6bef8a499db922d3b6b4460c964cd1be562","impliedFormat":99},{"version":"4acbab96d77eba31dcf5449218d922801031d7de833663ff9d8e9b61369a0aef","impliedFormat":99},{"version":"40fb77b3d3b3e2a7efd19d2d22627026bfb62cec7717ba5e557b521ae2637dc4","impliedFormat":99},{"version":"55b13c1dd972dfeda70fcee2b2537a785ed03fc5c361b11608a2712b90b959cd","impliedFormat":99},{"version":"adb20bc681c4d0c3374d8b78791f8ead0ca0fe15983a551b40fc4936648bb578","impliedFormat":99},{"version":"bff8dc562f4ff354814df681853116fcfa12c295e4303603a6fc679f6d971750","impliedFormat":99},{"version":"e544a1c40a5f673a3a7e52de4f49681bbf529d9e1153aa7751f0e588c07d7efa","impliedFormat":99},{"version":"6f239b41df9c2ea6444023435f07d2369bb76d88f5028982e8f88d9dbcb604e4","impliedFormat":99},{"version":"39c752cffb1a85d727d4c6e5b0c25282ae3a4fdfe5d8227c38b50044cd4ed743","impliedFormat":99},{"version":"8ca5d1bbdf57ef5bc32f37a9726ee951c2864ad336a34ff318d0cac7e7f651de","impliedFormat":99},{"version":"37f59378ffb6b2d6971586a55cc10411bdba7206f7193b52d42197e32f2446f7","impliedFormat":99},{"version":"fbedf387f1d5b9ad293214ad01a3d89bfc6df3217af27a27e510c73a037312a5","impliedFormat":99},{"version":"996950adc8136a34770e8565dfb7ccedbe188234fdf2db46cc79fa6cdbd66a7a","impliedFormat":99},{"version":"160f9097426561fdaed62ce71a37fccf99be456011eef35d01253741932c9661","impliedFormat":99},{"version":"3ad36afdc1975a50309d2e55b5c2bba46aadba993537bc75b65f085bfef3c996","impliedFormat":99},{"version":"801a096aef05881eb498616cb15ba6cb3da874865207a088dd963a46023cc89c","impliedFormat":99},{"version":"e0a8a476d2d73c121ef763186d4a36991a45471dcbe98732748643d39c17f09c","impliedFormat":99},{"version":"3d5e6241b997c057749fa806facb8887891fb06e67eab4c113bd36ca17bf77fb","impliedFormat":99},{"version":"0122b4d85b9be2b0b55f414090edb2e7e5b58cd4e022ce23989d6e119506faea","impliedFormat":99},{"version":"feeaf290ca736cd2be9dbbc6fc46771ce201529e95ce882c92a796368bcc73e3","impliedFormat":99},{"version":"95aaaf4d6f9d3a1b8966728a20c48164bfa7a8d9230f207f2a43ac11fc594e10","impliedFormat":99},{"version":"991351e5fbf046ade49c4235865af04ed3bf79bb1344864d64dc6fa1e090514c","impliedFormat":99},{"version":"0d3a3d5097a6a21e8574900bf1a1bc5df40988586dcf9dcb653fa700503d4962","impliedFormat":99},{"version":"4eeb635e14e95d82264e58ba48a44eb73f3e38c23b3ce826a1ab87fb215fe7a2","impliedFormat":99},{"version":"cd2995a95d0c9ff13ee7a97c9128e2684ead9b89ebcd991ee8e889aca948e207","impliedFormat":99},{"version":"afec6accba8ddf0aa8b91e1883aa2ea801a2f3f6404f7aacf34dc7ed6fb8cec7","impliedFormat":99},{"version":"02823ab4704c645aa0a594d520426cd9b1a776a242005bb04d35389dd35ab1f2","impliedFormat":99},{"version":"80b9cfc778a768d883d329669a325bfeefe1a6c866e05c75a64689960ac5f2aa","impliedFormat":99},{"version":"2a83200ba02822ce3ac4d68c2cab29273150505ed567532a133a20bbc7e68ec6","impliedFormat":99},{"version":"2b113dd63b57d48fc6f9a748e22cd6cdd2b18bee091a8286b36f32085138ee15","impliedFormat":99},{"version":"d684dd5b0a093bb586b8477b6ceda5f62f793982041fd1b2a222fef52a1c3b2d","impliedFormat":99},{"version":"30062e3628fef7c84a3c193d1bfe21a5498f9b53f3d6593323c5d41bf8576ef4","impliedFormat":99},{"version":"19b0eca295f5dfbc38857244c9e875b9410926ec00ec96e4700c7957c92533ca","impliedFormat":99},{"version":"03af5ad674ec20be8583ada8fc6833b445b88bf9244481e7a2ee283213070c68","impliedFormat":99},{"version":"c0c1c1bfcf65b773f5609169abe698305d281b5f926e4c63a188a87e670de425","impliedFormat":99},{"version":"40e0080e7412be9160e51065e73fa02fd59fe914da2fb12139814d9f34044464","impliedFormat":99},{"version":"e21f5e986a1d531131c64b94b0304e67e076d31107e80f604b3d466fcfef6d46","impliedFormat":99},{"version":"2c521da211b5b8384fca5996cb362bfcc62411ca2f22bf40221a8de7e033d303","impliedFormat":99},{"version":"c3315aa3888b4ab9804c8ef9b07caab5e5c0cf412a909faa70200e9d5aeb7c9c","impliedFormat":99},{"version":"ba760ff1ddcdd93c88cad217bc17e8b4e922f5e697bcaae0846a0028d31ba599","impliedFormat":99},{"version":"f1083bc7c0d73c8fcbe183c7131e7cc54543aad18f42654a3a3e1be48fc39465","impliedFormat":99},{"version":"7a34416b8856d7fa9fc0cad61de9a5dfeb140544309ce74778cfa1110e07b72a","impliedFormat":99},{"version":"a80e8bc4c77d345bf132ed1a7beb2d716d01999f1d7c5be29a71a1c002e175ce","impliedFormat":99},{"version":"ca0cbc4dfaf6a85cc4174a1ed7211aa17125a9d87dbde4d387fcd3db16d31223","impliedFormat":99},{"version":"12cb647b2b5019e5ab0c96023af34eb1e80eac58938577909c2bc20403da5890","impliedFormat":99},{"version":"0d56443cf4645c9fec714e14f6c99e246f27926169e0bd10069bc7cab1d74043","impliedFormat":99},{"version":"a3d1d3d9f234c7bfc31440649d48b523a80848945c3d8a2e0e5c58155e5a35cd","impliedFormat":99},{"version":"00b2af81f381c78a7c7a94ccd1ec6678fa9102554f0bbe4a48008818710afd98","impliedFormat":99},{"version":"a5f44d1ab98b8f29f90492c057eafffc14521a7cc0cdb8e036ef0541f2d923cc","impliedFormat":99},{"version":"858625b1fd6da32ef93167a7bb30e9ebfdb1b12c2c771f6e276e21fcbf6d28d6","impliedFormat":99},{"version":"1dca71c43b1f127c85a832c91ebd93f568f848f71ebbad49c69c97b28f102478","impliedFormat":99},{"version":"4140f62e4f8c9719ce15b3c73b2b5a36ca27e14fdec8d1b94c711abf190ddd38","impliedFormat":99},{"version":"28ced0cf69dd632d98961761b4250d6c0253e861fb217d019cf2ea634b882699","impliedFormat":99},{"version":"5ff96b7fc47bd4eccea926d559d6a76ad8871f752447f3fa698427c756c832d7","impliedFormat":99},{"version":"62ed2978ed2f3611e60bc80fdfedf5d0b6cb26b46835758d73b56956b0b7d936","impliedFormat":99},{"version":"0b7887c86bf0fe8f44d0f9082ae70ca0307d1013b958d884d54ae95698a8344a","impliedFormat":99},{"version":"31779f2eec7eb6657587a9943837d504e5d1747db5b06349ba51b05257588aa0","impliedFormat":99},{"version":"a42c680a17c557688a90c4c547f5f425b78e33cdebbc7ee4fd0135b0fdb26dae","impliedFormat":99},{"version":"e1d916f45a9c540c3ec595a41b55fc80049df132e63f75367c0290fc7238a89e","impliedFormat":99},{"version":"53608e6e0d36b8fd5a9e3b5afbce1f67c2933410317beb2b9973b77c1f13a0cb","impliedFormat":99},{"version":"49611c9c0dea1fad478353d0a5c394cd5c66b60d760d12e0d99063a2ec8cda5f","impliedFormat":99},{"version":"6b207c678bf857a3253cf4c82c1da768b6d7fd5e6a0ac3c8e27f83f65bb6f24b","impliedFormat":99},{"version":"2140fde2b2b1861f77c0e308232a2f73dd78e7cc784207c618de3b6c46da190a","impliedFormat":99},{"version":"68cf4649d2c34c7f3485ea72b95f8c1f4383f265dad143c16fbe608037358f53","impliedFormat":99},{"version":"20a981ef7b7bdabd1920d67b32b5d53675bc11bae590c3fdfd4746ed1e6fa7a0","impliedFormat":99},{"version":"9b6ac1aaf1599be6c19f32a3e87bcec56d5f2fce6d41fe39ba5fe175d1549c4e","impliedFormat":99},{"version":"cfa9f8ffa183bf6bc84394787fa1c54bc060441643b5f0c4ece5645632a11976","impliedFormat":99},{"version":"59d6dd3cf7364974669a5942dbb548e691b1f8414c12940b5ba27339dee4a91e","impliedFormat":99},{"version":"3c4b2980f4880b3de393ecfd0ff078c00a0d7ed2f751a2c68bc5394ec9917878","impliedFormat":99},{"version":"49e1b05f3946a3a49dcbc81900e6192f84cf3d870223fc04133924079ab26e75","impliedFormat":99},{"version":"433ba82be5f2662d62fe8365a537644adb43b7f281d810c99eb1c09e4e209f88","impliedFormat":99},{"version":"0c181e791efb543d0560d9b2870515d821e3dfa0e2a8dda640f1535b2764ba6e","impliedFormat":99},{"version":"eb82d2e6a9a1159f416a32750c5aa269904727d1a384bd56fb61ae9e1542c151","impliedFormat":99},{"version":"30dd04b36fcdfcf9f4cc5fcde78bf86941275b1641481b1643419a46934b6bc7","impliedFormat":99},{"version":"684631ad2087983d1fa9cfe781debe5b59efa87291c1df2ca0033bc26f3f9282","impliedFormat":99},{"version":"5d4e07aa8912747754c81949a7fae410393a0b511b607da5c8859b59134dbed0","impliedFormat":99},{"version":"ca358f352179f2ef403c343bfe76b167d7735162a6084cbce3213417a9ccd158","impliedFormat":99},{"version":"a43368b9ec2b3b71677d47a05c7d3296ca632f6c05b3be9aa9b18b18df6666ae","impliedFormat":99},{"version":"e7542a62f622e137e574f6c2811e4eec547bef5ef17868f1740c17b001d10a8d","impliedFormat":99},{"version":"c8e4c5adf99601307a86a7ffd1ea4899bbcf44bd4fee17100a9dcd3232047cc1","impliedFormat":99},{"version":"7b2510df81a30a99a97f2b439b4ffb382d0f3d465fd46665e29e899d6fc30617","impliedFormat":99},{"version":"5b0488f48695d38c3f1fc7a95f1e5a5ec32d09d2c10b167d20ee4c1307630ed7","impliedFormat":99},{"version":"80222964f435aa1b28c4714ea86d3499d776fc47dbdbb4d161ce34d1d9c33ca4","impliedFormat":99},{"version":"418471fc8ccdb989edeebd30ece9a45480d9144255050a301f48d95231ca43bb","impliedFormat":99},{"version":"bca3eb2e7d0e4a24daba895e9ead08317a90a8326b07b63d2775b09cc61b2f6d","impliedFormat":99},{"version":"05e6fbfa9545e669d5e67e3188d03f7fd50c41b84e13da570330a2b016e0b45f","impliedFormat":99},{"version":"e7deee5e735375a7dc03b23fa8e2dd0e707bada9f9e4d7d96da60a688d7fcc3f","impliedFormat":99},{"version":"3b944a181090e86de3b44670de8061d6def4315e3f0e68a448469c2ab867b552","impliedFormat":99},{"version":"266d796619bbd68b75e6848dff8b0f5ce7feb0bed225ff928bfe25bdc4602250","signature":"5cbbc192960d423ee248e4637a303bba7bc6c5897f8f9f9cb2bdec71418a86ed"},{"version":"d90f8e2fae7e6418c43d49db901ac55b71596633627442cc54ef0dcb9be52652","signature":"f6e2bb9b8f99b9c464239e72479a3ccf213306c8db269573e9b57cd7d1d5ae50"},{"version":"7a474f6155fa388aaa9b94e8938ce74d37f290dd32b6053bf7ca7f80e4ba5235","signature":"f535d0e212b21cf44cef76c4ab9575bd8fc872f49a665de6e5531f4458a87160"},{"version":"e783cd105107800009d3cf3c3b4b0c3815905528deed5c917c9230189ed7452d","signature":"1a305f4e0816e0aeacbdf7f0c2ba7ad8dc3e60916c0ed28946fdad753aa972f6"},{"version":"8526d2a4a66eb2363fd8a0f119f25fc4216e5bd9a92330d6734bb11d6f39f3af","signature":"286f0a57e7e1b93d00cdd6a1817739a4018a10baa63f60038ab388f973a404e4"},{"version":"da9f1e5ff61ddd8d0e2f6b723dcdc840e8da74c9ce419f681b21c0fa18edaf85","signature":"68f9fba31a9898c15c08053fd0dff961ca64759b22a20a15229df30899ac090c"},{"version":"59f6a4d2928a90a5cc48b85f23b8c58b6ca27e2475bda3886ca15d9618fb29e6","signature":"2c55afb6cf8360cc9fb987dadcd62649ac62841a1a91b4ef2a906e8f0b9941eb"},{"version":"ccc51a04f872cfda45eb1908a9f9333f6b0b4cacf1ad1454ba68c4fb0cca51a9","signature":"6ff18052b239401dede64dfdfce2bc2e20632110a9ff82456749f609517fe721"},{"version":"e6bef70114b74828a98d49720fb98184c8faa2655801f7ff1d5399c14c8c4572","signature":"fa2eae3a28979e3d440e9beb1fc257675d416bffcfe744c38f49e34dd63898db"},{"version":"3b51f53f02132c5283706ffb3c5e2ce6f5acb819fc4b42f26894d3d98d87c929","signature":"b160e3dd134b408f7771757b2667dc8df5b5db56378fdff870296593017cbbf5"},{"version":"9ab225a0b0ad3670296a83ed879918b1af2bbbe8aa74ae97de35524ef134e5e0","signature":"c1b4f1b82b22734fe6a7e4d1105b35b700a3051bf4fc3dede769efffd9aba1cc"},{"version":"27679e96d1bd38c5938178aaf4abe8627493090b63d6bae2ce8436e6a87ebe4d","impliedFormat":1},{"version":"c9743b14ef911885fa32fd147248762ca05ad628d0e038deeef443579f757db1","impliedFormat":99},{"version":"cc925bb05a88470c834ada8b8d423683db31707fe4da36296f4afd2f69e2e30b","signature":"9af941ebbb5f205652cc7691b35105f06131b6e22631483df9a3d2e12c90c4c3"},{"version":"30219b4811cf18773d66acdba1dccd978667a34ca2b8c79b82c3cf815131f4f3","signature":"ad92e210c81ee442085cc19f44797ffc75e9e85a85fce52f7bd9b49bc58bab80"},{"version":"a772b519563357255a041bad1a57c1f8600997d2e83f1f6df79dec3358c2962d","signature":"0bcaa9b28f9185c25d8bb560f4056a2f82ce46f43f822d43c5280d831a72a131"},{"version":"db0684af9e32fd0565b09e14137bde08228ac06ce800084730788df318436121","signature":"53ba8fad914af2be8672983f1e874628cc22bb3c566feb3dffb4e2f26e39b0cf"},{"version":"1d6800aeb28b8beac0b5f3fef6a481574d71919ecdb7075af52f88e1e28f9b71","signature":"a5f7076c6e98069ceafa2615d44f23f294b4dc2f257842b7bb067b4943b07e80"},{"version":"16c4d4aaee5e0046fcbf70d59a103b8cd78b4f772f4c6125a6b4b3373d490987","signature":"ae56fb90af23a6c7c0b7789b531a39065e1e0b963c6d420337e4db08605e1fe5"},{"version":"e4d290d14eed371ecc51cf2036bf064e5ff3191734e66459db1b14a0c6f2eeb7","signature":"3dc200b619d9b3921ed927e025af75ccc380d77447ddb5bae02944692f2bd454"},{"version":"a1d6ed1fb32226de6bcc0d39a5053a336e153b7488f152c11187f0ea76a0c1e3","impliedFormat":99},{"version":"a706e1129b56e72e53f0a6284a1c5295e45c1a31792ef1f044217f360faec15c","signature":"166a173f09113441ad608576f8aa5d48df9f105e2c8a7feca0a3dcf27fd89df0"},{"version":"03058ca16f42d0a619f6faa3848096bcf5c5bb3382d12aae23c78a1e17888b31","signature":"97b5d2fdec7c85f9a8bbff85350c12635a94ef3dfa265679ab0806ecadb85dd4"},{"version":"ef86c33a91aac82d86ae26dd7d5b049e094f1c9eed121375575e93a5217b4e0b","signature":"6880c56133117c76a8e2fbff4c2918caea2f1d2f7db06668ee5149094584e43c"},{"version":"ddb193970ad94819ba28b1b9d68fed79cc729568a49940359665f1306f95393c","signature":"d9926272f3d88d7b5461ae47c9da311d353ceacbb176e976aea11a22d3c8c5cb"},{"version":"40871fe15e2ecf88714da0847588959d7049d34709a5c4f9f2584d8cdbda2874","signature":"89b9bdcbcfb6dadcff24eab8a1a3ec3ae0eb2d548a37f4091aa8aab0ac405627"},{"version":"9e87fba04e87f1d900a459f6cd3aa53311ead8a1e9bd32f1c4019cbcea2cb7fd","signature":"bd283455bb1836729cbb987f5cec241041de4854e4ed2d4155d64e81854ff201"},{"version":"ea38212c34e9ef0d803a4629c30d3808f984dbb8c8da792ec9dfc4cb4da07e46","signature":"00ee72c8e766b351df16e157c6dbd7b82f5fd659b64a4ae71bada2af2c9a2196"},{"version":"b88204d8ac6d600d44a99d26f5884ef55d0dce70e47647a07decb32514ed54e4","signature":"7f8acc73668636513659747f853332a4b7fefa40d5ccf5d20f7696a69598e399"},{"version":"c3201cebefbbf7e25dd84c4bc61f357b13e89e2df71ed663ea800bf2a769f5c1","signature":"5c0d189ae1021e4e1b6fde67ed2e9a357474be7dc3eb4211de84a1235882deb7"},{"version":"ce07cd96d51ff742fdbaab46120b3e0b3edfdacc7b97e1552001291c325c8838","signature":"4fcba3823aea7a18b160041af629cff46341a0ff790b691b831939eb7f954a47"},{"version":"2a851f3adebd931ec949cd374ce0ab05d59dae3cfe3a56300cb0f55c1b933213","signature":"614051bf05d3b41673e2e865ed30c4eea50a171253fe7b7d3fd0b93a84bcafc4"},{"version":"73b725c171aacdf8016868cbb3f6537b7298b610c3b4a23be99ee1b1c71a53b3","signature":"85d459db8a234a07d7af58bd4a96f9db1b5ce5149072dde460b70fa96eece384"},{"version":"6a31a0b9d7f9730794768ff1dd5c4f510e4e1e35a1af5bd106df7392530d07f3","signature":"5f3cda1fd5dae864899c33f4cd18955e0bd43107572789ab990e41fdaad333f7"},{"version":"ca29c120c816120222d7561cd221c6aad4af304cf06e234bc16a6ea59022878c","signature":"be8c4dff12f713c857ff7211e205ba6cf5a4212829268e5d3937c5eec30fe03e"},{"version":"19c2bc5072ded03c0e230bbf1560ffdb38ccde0ff19e640ba6ae9d4a067dec81","signature":"157efbab6372e89ffb534b16a298e716175add5dfc8159fb9608877eb2a18059"},{"version":"0a3e28437639fa6653393be28e33c52c790ba72a802c56c6c70b6702a1bbb522","signature":"911b6da100b2ee84b9fc1dbdc34771a0701e4c8e0fa694bb510c33359b6026e2"},{"version":"abbb06c6c8f8bbbdceb60b6a46e2bf496a39b539f93c30cb38fe2137ce6aa83e","signature":"0ea4b7de810d4759cc256c64d94cbeb12e97a26582f8cea8981827a20be67125"},{"version":"bbf28aac6fc307a3925db448f87dc5e8d85b4806d9cead36f8776d77afa0b00f","signature":"2aeae9a85d9f2bd098e207b97f94105370c2986206f9992fe593430d5e6e2ff2"},{"version":"fb724c133584a056c6d715ce5275bfa294e2378c8bacc28e9ecac1acd5e73717","signature":"94ea9bfd0e479d53e6dbe56667671a509c9368dca504b26bef69d726abba8a2b"},{"version":"c1fb57d64078078c7548b0bb94b4ad00e62df72464a190e274de7a68973a52f2","signature":"3dfc11fb9036c0deffd34eca4bf80cb7c86b8f6e47f4d7c93b6970593367adfb"},{"version":"a4cf31373d4ddc07a09d5cd831df664dc093f2dd3b37b08ed7f08c21bb49d6e6","signature":"ee4e8505266b5bb2be82d994812b327c7eff0330648f8b7be90fa4de1e73ca48"},{"version":"d095e6bbfcd4f018806f73231311f9cffe242037bcc320e784c1c0f5ec1820d0","signature":"00e2d807fa89745a9a07a23ae586664725a4883a372bfec8a99db075e4e3a2e4"},{"version":"96f258d8c4dd85e8bf7b6e9a9d178c0b9388d5f4d283be8631d65552c35d1ea8","signature":"8613b26881a0a26fb34dc3648c6f32aa77696e8b65688d1de6dad2cee5034831"},{"version":"d23cd3b599d668f7ba1b4a708313d1ce761105fb4ffb0099314e8604417c4ee5","signature":"fa2db834e2587a561f5801fad014dcdd086fa57ec877a5c50eb1b4a4bedf633b"},{"version":"a6a11fda4d6d55588d5667dec55981234e803b3f014c03e5ee29bda5f5ab77e0","signature":"a3bb1c830fe06af6e8a2978827fc835b8027ca3e1d9a23286be3389f6fc0cc35"},{"version":"97ca28b5c460096532d75a9ce804407b96690b160fcda292fd662025d7484ef5","signature":"2a98a4ab9e9820072a946fcfef340d689969735f1d6de698296ffeb39a12ade9"},{"version":"88a63bc5562d804a5d8a538471150dbf66d05f6612ac95b51f886aa8cdaacf14","signature":"29365ccb20bf2e82cb68733ae86df255284262c5a96707766605e74e7a4e31bf"},{"version":"cc21719babc095ecc3f78e6b4dc4d480b404b39caee0b8b4ebc529173a35ba2d","signature":"339c6463f32d297da9d028f9e1ddfa65bb09ade95fb4d4f941ed1afa98b69474"},{"version":"a86be42004c11e1e88d7ed5f606d5dbee707e5368f81144629f74535649b4f0f","signature":"d7f1748d7edc511cb9d290495cc8fef29990ad8097cb002843e47a4df8e8cb1b"},{"version":"22a7b5274e0c3eda9fc6defba141f0e76759714bc2586f3088744fa677456839","signature":"89889fc6b52ca7dd87c1cda1f1ec88b7ca670632761341ee497b515a25275437"},{"version":"71766854add73b8605a25e51e440ae537a38657ef60cd2172b9f7f3b182e949d","signature":"c03ae6b1a90abef48c8560207c3ade602a03c7b0400266d72de1d878f0e8595b"},{"version":"523da4fedbeff46441da8142ed5e2a67baab3931e3c4af8e486a3ae216c8e9a8","signature":"ba343d51c387bb4364109935cc71e23c8ed6d43d0b9ebb5be728e747ff344edb"},{"version":"05b9c773579fa21ed1720579e4874cbdfa44b62ba886e5d86a939391b2280a37","signature":"e7d9429fa198056b070f735514cdcb61de388fe8311b46ed313da75934a398c9"},{"version":"9ce37889c840574b868727286458b1b9a096e8b35fcbca73efc89da95b9301d3","signature":"fbd7490c61287e5dd21a191889565090b2a74a08756c1a96a5be582a96f2f620"},{"version":"388b7b0c8748ac411ecbfbb9676d0583f455baa0e2947af812a1c4dba4e41860","signature":"6eb1a106e16f4622d756ceb77dacbbc8fe3ab7a504de8811e0250a080982ceb3"},"fd4664d3ba891c02fc4c5b95d7de2b7d399e1b80e9a413d244e13ed124ec3eb4",{"version":"2cb665e04ffbce718a7be68e1875b9f8eee236739a079371ccd56696ebef6efa","signature":"08e921a75ffb64bf6359eb471543046fc540a45175bc10d9bfc10f07a094d8c4"},{"version":"761a6d6b9f2183c8209f450099a6c4cddc8e7eb4e2339be7da574d9b16c5237a","signature":"cba8f67be65fb4df3dbe95b986dee315d01470e1fe2c3939cd837b1783391735"},{"version":"0329fa3e6702a35c56591d4de8a42459c2127ca91745437eacda173b3b3e18e9","signature":"8b6042d4eb490073d078e68d11adb50c3217d7ad37992f5d27caaaeb7fd0c513"},{"version":"59598100e94188bb6468a8d2082f02a38b10920268b75ed15f9dc7c895dc90ed","signature":"869edbd2d4eb7939186d2a1e4d4a8f4d3b49f6968b30c30a7ffafe85a3a3850f"},{"version":"315b4ade2773b0a9a0c00b1eddb51c3f5daee7d558dc3371050106eb19aa3fe3","signature":"962e06e08fba0d408fe6fe07b31ec638c3c4d5050462a8f735466e1383a40edb"},{"version":"d09a06d7c7837d485720982c2fe996d102b54ae1389332ee6537165d7dd1da38","signature":"9474f35e4354d1c672c0e50a1486f883635acf25ac51daf558b0fe3a060f453c"},"12aa9c803cd79a739aa663156f39131869a41388bf253e3b51f0f61f98a07663",{"version":"1376fcb20905de176bd02c73f5fdd6dc0366d36d60725eec51273b30df79792c","signature":"ee3e10a4d1ca340b0ecfe104928d710096114a854bce058958f8fe1c5104b464"},{"version":"f7a76e04d55272e70d5e4aa916062f943870ac3253d495e1bfc3fd8bf2678769","signature":"4b3f957d26a976450dc20f17c42bc5985076b7aee2862c089d74618e70a32885"},{"version":"63ae39a34eb50bc66962f497136bfb3edf43eee2d5ca5588dd6a6b57569928dd","signature":"b786bd3b474e34d30a2dec8a5463c275b9f60f3dec90c9b9290d92922a49b2da"},{"version":"c1122a7d537641b06a2e4b5a0c70a08644cadffaa695e07c5271121951333e0a","signature":"bf23f8d76d60ea190fb57a69c680028ab33410610b4c3de78d2205ac9124b1fa"},{"version":"dfde2ab8bd062f440f68d8a0cbb5395a9288b10cc72b4382ac38eec88669ea22","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"37fcbadd9474687ec8464b6769167b1777921aa7a981d209d95e24a7a216337e","signature":"c4c2edaa636235a2977987778d7d5843ff70aaa66be8b959a259dc13fffdf2de"},{"version":"889b4beefc59797c39dd56afbd7a441c95a55d64ada2640ed7537ffff93c3d43","signature":"e4b720ad7cb72f6aa05cc8d94f15aa76a6335ce56f094ce06ca3a9fbb83be0b3"},"61bf0f4302ee1e5e4b2d037c7de82ce8410560dc61fcdadd1a1d4f016b99134c",{"version":"dc3b8558e7b3a460899bf9c18d20d9f41a55723961d385c03e8e47eed08c0ce1","signature":"3b278139f3ee26991f492c67ff390110b6908aacd90c407d7fd64c30476b2427"},"030e1fcbaf536940f6facf8677ff38f729b5574cfa6ebfcd6d354054ffd104af",{"version":"2db56aa2c1cc6a1f505922bdfad8bdb849d52c89eb0bfb8294dc5642fb3da17f","signature":"eb9ed10f5edb23efc5897763b5b2cad5d49b774abc2dc946fe7a3c94188bd6f9"},{"version":"623c1c8a4aa2c809f44e10f8edb4fe628039461e65c93c83027185049aec843e","signature":"9af9b7bea59b671adad2c3d96e6a32016ddd4bb733ec1eccfc748db741c7bd71"},{"version":"92e6d34734761367decfc51940f032ed342c9bb2d8faed5a0345b32af6c6bb6c","signature":"6656dccace415e2c2c6efa3030480206e1b613bf9778143327745d9b448bed47"},{"version":"a73027a4a089f54d3b7f5d1f5fee42ece2d00433a505181e39e26ba32f2a5e23","signature":"a5143f71cf3b3e24434ea1bcbfb2ce96538bb1a48a23670d5d824d5f3cb68455"},{"version":"d5ace6192178d45de42affa439c12585d4fe6aa51ec198da3261d64ce7f6897d","signature":"c3631567b9942cdb63c8c47b953e009ba090ac0353bb974adfd02b5b32af807b"},{"version":"cf8888dcc41b068af7a630cbfffccf68ce6f2ffb5413fda9ec562ca0493f8752","signature":"c441aeef9933c2a798ee7457ace59fd1bf3c69dacadb9777f02a1e3cb4e8df52"},{"version":"547bf5974369e3ff85eee157cbc94a69ce177b218cf0586ab93731491c6fc5ae","signature":"75e5571585ae7220697ba4a08f5b9621981839acd5c6352675535bb26512c261"},{"version":"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true,"impliedFormat":1},{"version":"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9","impliedFormat":1},{"version":"bb65c6267c5d6676be61acbf6604cf0a4555ac4b505df58ac15c831fcbff4e3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","impliedFormat":1},{"version":"5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"afcc1c426b76db7ec80e563d4fb0ba9e6bcc6e63c2d7e9342e649dc56d26347f","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","impliedFormat":1},{"version":"f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true,"impliedFormat":1},{"version":"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","impliedFormat":1},{"version":"d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","impliedFormat":1},{"version":"b01a80007e448d035a16c74b5c95a5405b2e81b12fabcf18b75aa9eb9ef28990","impliedFormat":1},{"version":"04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","impliedFormat":1},{"version":"dbe5aa5a5dd8bd1c6a8d11b1310c3f0cdabaacc78a37b394a8c7b14faeb5fb84","impliedFormat":1},{"version":"2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58","impliedFormat":1},{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true,"impliedFormat":1},{"version":"d076fede3cb042e7b13fc29442aaa03a57806bc51e2b26a67a01fbc66a7c0c12","impliedFormat":1},{"version":"7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","impliedFormat":1},{"version":"b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30","impliedFormat":1},{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"213fc4f2b172d8beb74b77d7c1b41488d67348066d185e4263470cbb010cd6e8","impliedFormat":1},{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","impliedFormat":1},{"version":"4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true,"impliedFormat":1},{"version":"f7db71191aa7aac5d6bc927ed6e7075c2763d22c7238227ec0c63c8cf5cb6a8b","affectsGlobalScope":true,"impliedFormat":1},{"version":"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","impliedFormat":1},{"version":"ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e9a8d4274033cb520ee12d6f68d161ba2b9128b87399645d3916b71187032836","impliedFormat":1},{"version":"a7321c0e96eecb19dcbf178493836474cef21ee3f9345384ce9d74e4be31228d","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"3054ef91b855e005b9c4681399e9d64d2a7b07a22d539314d794f09e53b876a7","impliedFormat":1},{"version":"427ce5854885cfc34387e09de05c1d5c1acf94c2143e1693f1d9ff54880573e7","impliedFormat":1},{"version":"bed2c4f96fab3348be4a34d88dcb12578c1b2475b07c6acd369e99e227718d81","impliedFormat":1},{"version":"e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","impliedFormat":1},{"version":"9ac9b7b349a96ff204f4172183cca1672cc402e1ee7277bfcdec96c000b7d818","impliedFormat":1},{"version":"ac127e4c6f2b5220b293cc9d2e64ba49781225b792a51cda50f3db8eafba550c","impliedFormat":1},{"version":"f5e277afc658b3fefe1e9d06f3018416ea92f3e094bc21d38517f7f36627a5e4","affectsGlobalScope":true,"impliedFormat":1}],"root":[48,[203,213],[216,222],[224,283]],"options":{"allowJs":false,"allowSyntheticDefaultImports":true,"alwaysStrict":true,"composite":true,"declaration":true,"declarationMap":true,"downlevelIteration":true,"esModuleInterop":true,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitAny":false,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./module","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":false,"target":99,"useDefineForClassFields":false},"referencedMap":[[202,1],[53,2],[49,1],[50,3],[51,3],[52,1],[61,4],[54,3],[55,3],[56,3],[57,5],[58,3],[59,3],[60,3],[63,6],[64,3],[65,1],[66,6],[62,1],[67,6],[73,7],[69,1],[68,1],[70,1],[71,8],[74,1],[97,9],[89,10],[87,11],[90,1],[91,12],[92,1],[88,3],[93,1],[94,1],[95,1],[96,1],[99,13],[98,3],[72,3],[75,3],[76,3],[77,3],[78,3],[86,14],[79,3],[80,3],[81,1],[82,3],[83,3],[84,3],[85,3],[112,15],[100,1],[101,16],[114,17],[113,1],[102,3],[103,3],[104,3],[105,3],[106,3],[107,3],[108,3],[109,3],[110,3],[111,3],[115,1],[117,1],[116,1],[121,18],[118,1],[119,1],[120,19],[201,20],[125,21],[122,1],[124,22],[123,1],[126,1],[128,23],[127,1],[129,1],[130,24],[160,3],[161,3],[162,25],[163,26],[164,3],[165,1],[166,1],[167,27],[168,28],[170,29],[171,30],[172,31],[169,1],[173,27],[174,32],[175,3],[180,33],[182,34],[177,35],[186,1],[187,36],[176,1],[178,27],[179,37],[192,38],[184,3],[181,39],[183,40],[185,41],[188,42],[189,1],[190,43],[191,44],[193,3],[194,3],[195,1],[196,45],[141,1],[142,1],[143,1],[144,1],[159,46],[146,47],[147,1],[148,3],[149,1],[150,1],[151,1],[152,48],[153,3],[154,1],[155,1],[156,1],[145,1],[157,1],[158,1],[197,49],[139,3],[132,3],[131,3],[133,50],[134,3],[135,1],[138,27],[140,51],[136,1],[137,1],[198,52],[199,1],[200,53],[215,54],[223,55],[346,56],[338,3],[341,57],[340,3],[339,3],[345,58],[343,59],[344,60],[342,61],[284,62],[285,62],[287,63],[288,64],[289,65],[290,66],[291,67],[292,68],[293,69],[294,70],[295,71],[296,72],[297,72],[299,73],[298,74],[300,73],[301,75],[302,76],[286,77],[336,3],[303,78],[304,79],[305,80],[337,81],[306,82],[307,83],[308,84],[309,85],[310,86],[311,87],[312,88],[313,89],[314,90],[315,91],[316,91],[317,92],[318,93],[320,94],[319,95],[321,96],[322,97],[323,3],[324,98],[325,99],[326,100],[327,101],[328,102],[329,103],[330,104],[331,105],[332,106],[333,107],[334,108],[335,109],[214,3],[46,3],[47,3],[8,3],[11,3],[10,3],[2,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[3,3],[20,3],[4,3],[21,3],[25,3],[22,3],[23,3],[24,3],[26,3],[27,3],[28,3],[5,3],[29,3],[30,3],[31,3],[32,3],[6,3],[36,3],[33,3],[34,3],[35,3],[37,3],[7,3],[38,3],[43,3],[44,3],[39,3],[40,3],[41,3],[42,3],[1,3],[45,3],[9,3],[207,110],[208,110],[209,110],[259,111],[206,3],[210,112],[48,3],[271,113],[204,3],[224,3],[226,114],[212,114],[274,115],[211,3],[203,116],[261,117],[260,118],[280,119],[205,116],[279,116],[266,120],[213,3],[257,121],[276,122],[275,116],[277,123],[222,124],[219,125],[249,126],[248,3],[251,127],[252,128],[278,129],[216,118],[250,130],[227,131],[273,3],[272,3],[255,132],[253,133],[229,134],[233,135],[234,116],[281,136],[262,116],[246,118],[267,137],[236,138],[237,3],[231,139],[282,116],[239,140],[238,116],[283,3],[240,141],[225,3],[241,142],[244,116],[230,116],[263,3],[221,143],[247,144],[268,145],[243,3],[242,146],[228,137],[235,134],[254,147],[245,118],[220,116],[258,148],[264,149],[256,150],[265,151],[269,152],[270,153],[217,3],[218,154],[232,155]],"latestChangedDtsFile":"./module/util/floor.d.ts","version":"5.6.2"}
1
+ {"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.webworker.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/chain.ts","../../../node_modules/@bitauth/libauth/build/lib/address/base58-address.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/bech32.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/cash-address.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/locking-bytecode.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/address.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/hashes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/ripemd160/ripemd160.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/secp256k1/secp256k1-wasm-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/secp256k1/secp256k1-wasm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/sha1/sha1.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/sha256/sha256.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/sha512/sha512.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/bin.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-bch/compiler-bch.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-defaults.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-operation-helpers.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-operations.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/scenarios.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/p2pkh-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/standard/p2pkh.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/standard/standard.d.ts","../../../node_modules/@bitauth/libauth/build/lib/engine/types/template-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/combinations.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/base-convert.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/bin-string.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/error.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/hex.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/log.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/number.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/read.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/time.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/type-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/utf8.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/format.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/dependencies.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/secp256k1-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/default-crypto-instances.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/hmac.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/pbkdf2.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/ripemd160.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/secp256k1.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/sha1.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/sha256.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/sha512.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/crypto.d.ts","../../../node_modules/@bitauth/libauth/build/lib/engine/types/bcmr-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/engine/engine.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/hd-key.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/key-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.chinese-simplified.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.chinese-traditional.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.czech.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.english.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.french.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.italian.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.japanese.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.korean.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.portuguese.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.spanish.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/bip39.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/wallet-import-format.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/key.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/compile.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/language-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/language-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/parse.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/reduce.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/resolve.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/language.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/read-components.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/transaction-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/transaction-encoding.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/message.d.ts","../../../node_modules/@bitauth/libauth/build/lib/schema/bcmr.d.ts","../../../node_modules/@bitauth/libauth/build/lib/schema/wallet-template.d.ts","../../../node_modules/@bitauth/libauth/build/lib/schema/schema.d.ts","../../../node_modules/@bitauth/libauth/build/lib/transaction/generate-transaction.d.ts","../../../node_modules/@bitauth/libauth/build/lib/transaction/transaction.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-2020-consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/virtual-machine.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/vm-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/fixtures/satoshi-client/bitcoin-satoshi-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/arithmetic.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/bitwise.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/combinators.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/common-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/signing-serialization.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/crypto.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/encoding.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/flow-control.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/format.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/inspection.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/instruction-sets-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/instruction-sets-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/nop.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/push.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/stack.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/time.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/common.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-tokens.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-loops.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/bch.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/instruction-sets.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vmb-tests/bch-vmb-test-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vmb-tests/vmb-tests.d.ts","../../../node_modules/@bitauth/libauth/build/lib/lib.d.ts","../../../node_modules/@bitauth/libauth/build/index.d.ts","../src/enum.ts","../src/config.ts","../src/interface.ts","../src/cache/interface.ts","../src/cache/IndexedDbCache.ts","../src/cache/MemoryCache.ts","../src/cache/WebStorageCache.ts","../src/cache/walletCache.ts","../src/db/interface.ts","../src/db/StorageProvider.ts","../src/message/interface.ts","../../../node_modules/eventemitter3/index.d.ts","../../../node_modules/@electrum-cash/web-socket/dist/index.d.mts","../../../node_modules/@electrum-cash/network/dist/index.d.mts","../src/network/interface.ts","../src/wallet/enum.ts","../src/wallet/interface.ts","../src/network/NetworkProvider.ts","../src/util/transaction.ts","../src/util/header.ts","../src/network/ElectrumNetworkProvider.ts","../src/constant.ts","../src/util/getRuntimePlatform.ts","../src/db/ExchangeRateProvider.ts","../src/rate/ExchangeRate.ts","../src/util/sanitizeUnit.ts","../src/util/amountInSatoshi.ts","../src/util/hash160.ts","../src/util/deriveCashaddr.ts","../src/wallet/model.ts","../src/util/asSendRequestObject.ts","../src/util/base64.ts","../src/util/satoshiToAmount.ts","../src/util/convert.ts","../src/util/delay.ts","../src/util/derivePublicKeyHash.ts","../src/util/deriveNetwork.ts","../src/util/getAddrsByXpubKey.ts","../src/util/getUsdRate.ts","../src/util/sanitizeAddress.ts","../src/util/randomInt.ts","../src/util/getXPubKey.ts","../src/util/sumUtxoValue.ts","../src/util/checkUtxos.ts","../src/util/index.ts","../src/network/constant.ts","../src/network/configuration.ts","../src/network/util.ts","../src/network/default.ts","../src/network/getRelayFeeCache.ts","../src/transaction/allocateFee.ts","../src/util/sumSendRequestAmounts.ts","../src/transaction/Wif.ts","../src/wallet/Util.ts","../src/message/signed.ts","../src/wallet/Base.ts","../src/cache/index.ts","../src/history/interface.ts","../src/history/getHistory.ts","../src/util/checkForEmptySeed.ts","../src/util/hd.ts","../src/wallet/HDWallet.ts","../src/wallet/Watch.ts","../src/message/index.ts","../src/util/checkWifNetwork.ts","../src/util/randomBytes.ts","../src/wallet/Wif.ts","../src/wallet/createWallet.ts","../src/cli.ts","../src/test/fetch.ts","../src/test/expect.ts","../src/db/index.ts","../src/mine/mine.ts","../src/mine/index.ts","../src/network/Connection.ts","../src/network/index.ts","../src/libauth.ts","../src/index.ts","../src/util/browserNotSupported.ts","../src/util/deriveLockscript.ts","../src/util/floor.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/jest/node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/@types/jest/node_modules/chalk/index.d.ts","../../../node_modules/@types/jest/node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@types/jest/node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts","../../../node_modules/@types/jest/node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/@types/jest/node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileIdsList":[[201,330],[49,50,51,52,330],[330],[54,55,57,58,59,60,330],[56,330],[62,201,330],[62,63,64,65,66,67,68,69,71,72,330],[70,330],[74,88,89,90,91,92,93,94,95,96,330],[87,88,330],[61,86,330],[90,330],[72,98,330],[75,76,77,78,79,80,81,82,83,84,85,330],[97,100,101,102,103,104,105,106,107,108,109,110,111,201,330],[100,201,330],[100,101,112,113,330],[115,116,117,118,119,120,330],[117,201,330],[53,61,73,86,97,99,114,121,125,128,130,198,200,330],[122,123,124,330],[123,201,330],[126,127,330],[129,330],[149,330],[160,201,330],[136,137,330],[160,161,162,163,164,165,166,167,330],[169,330],[197,330],[170,201,330],[169,170,171,172,173,330],[161,330],[171,197,330],[175,176,201,330],[164,330],[176,177,178,330],[136,137,149,159,160,166,168,171,174,179,180,181,182,183,187,188,191,201,330],[180,192,330],[182,192,197,330],[184,201,330],[187,192,330],[136,137,189,330],[181,183,185,186,188,189,190,330],[193,194,195,330],[141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,330],[145,330],[137,201,330],[140,159,180,187,192,196,330],[132,201,330],[131,133,134,135,138,139,330],[136,137,197,330],[199,330],[214,215,330],[214,330],[330,342,345],[330,340],[330,338,344],[330,342],[330,339,343],[330,341],[284,330],[287,330],[288,293,321,330],[289,300,301,308,318,329,330],[289,290,300,308,330],[291,330],[292,293,301,309,330],[293,318,326,330],[294,296,300,308,330],[295,330],[296,297,330],[300,330],[298,300,330],[300,301,302,318,329,330],[300,301,302,315,318,321,330],[330,334],[303,308,318,329,330],[300,301,303,304,308,318,326,329,330],[303,305,318,326,329,330],[284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336],[300,306,330],[307,329,330],[296,300,308,318,330],[309,330],[310,330],[287,311,330],[312,328,330,334],[313,330],[314,330],[300,315,316,330],[315,317,330,332],[288,300,318,319,320,321,330],[288,318,320,330],[318,319,330],[321,330],[322,330],[300,324,325,330],[324,325,330],[293,308,318,326,330],[327,330],[308,328,330],[288,303,314,329,330],[293,330],[318,330,331],[330,332],[330,333],[288,293,300,302,311,318,329,330,332,334],[318,330,335],[206,330],[206,210,330],[202,204,205,206,207,208,209,330],[218,270,330],[211,330],[211,212,330],[202,330],[48,202,203,205,220,227,228,260,330],[205,330],[203,204,205,213,218,219,224,232,247,249,257,258,260,261,264,265,269,270,272,273,274,276,278,279,330],[213,257,330],[202,213,230,330],[275,330],[202,203,205,220,248,251,330],[204,205,206,207,208,209,216,217,219,220,221,222,330],[205,217,219,330],[205,247,248,330],[205,215,216,217,220,223,248,249,250,330],[48,220,248,330],[217,220,223,251,277,330],[217,330],[204,224,225,226,330],[202,205,210,218,224,232,245,253,254,330],[218,224,232,330],[48,203,227,228,330],[202,232,330],[225,330],[203,330],[48,229,235,330],[202,203,205,230,330],[203,238,330],[202,230,330],[227,330],[202,205,330],[202,222,225,227,228,229,230,231,233,234,236,237,238,239,240,241,242,243,244,245,246,330],[225,293,330],[238,330],[232,330],[202,203,205,210,212,213,217,218,219,223,232,246,247,251,252,254,255,256,257,330],[202,203,204,205,218,219,224,232,245,258,259,260,261,262,263,330],[48,202,203,217,220,221,251,330],[202,203,205,213,218,219,224,231,238,257,258,260,261,330],[202,203,204,218,219,223,224,232,255,262,265,266,267,268,330],[203,219,258,264,265,269,330],[203,205,217,218,330],[202,204,205,224,231,330]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"9e8ca8ed051c2697578c023d9c29d6df689a083561feba5c14aedee895853999","affectsGlobalScope":true,"impliedFormat":1},{"version":"30055c4694373918593a99ac50e8bc2d42922b8117f71c79719ee433320eb80c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"11aec49f70e2b113c31b93f6bbd39ab344990a71eb7f9b8ec4f87087d104fa5b","signature":"14877f8999c6edc2eca4a4739b92b3e513a6f58a4e62b3f6e6929d22dcc177f1"},{"version":"a38d71d48e8097dc479eeb78d9a9a070c8e4a58c6e3dab44dd3bc3ca9fcfa027","impliedFormat":99},{"version":"cba6688cd77e97f8bec08ed8b1e98db2cd3fe119d76f136b032de3f36bc4f20c","impliedFormat":99},{"version":"987749b82eed507f1a2412cdcbd949fff5710bdd66db6ce8e2165d2fdacb74d6","impliedFormat":99},{"version":"26aaba823e6eb0ca301c3e70786e3217b20e80ff59879f4e4897e00ecb7ba060","impliedFormat":99},{"version":"1d41545e31b119d9bb993202dc5fa73815ac0cfe486feaddad7c3bbcbcef0e68","impliedFormat":99},{"version":"7e392413f34965abfd94cff06e38e3dabb999d0e97583c318a72b99f79d3e75f","impliedFormat":99},{"version":"7426d1ec25b2f49f7700e85a63bea9a7aba52fd33a0879f6fd3e8e98568b5811","impliedFormat":99},{"version":"60fc0d963d309f2984e37784feb937250ac80b0872aca8c938e7f671000df77b","impliedFormat":99},{"version":"2f275fec9095538f7ca65b5c89a470726d786244c711e55cc2c7ec60eea1b346","impliedFormat":99},{"version":"aed13d0d330e79bf17373a0cabe9dac6ec29d3e1a0b5c8eaaacb81fd2fa94494","impliedFormat":99},{"version":"23f634e12d2c1c5f876caddf838923f8e1485f259b16bbaa8263d6b89ba87592","impliedFormat":99},{"version":"de3af19c02f00bd370a985b62061a6d7d02883ec012382f3c19c39046d52c966","impliedFormat":99},{"version":"1b30425956ed9d9a6a7388d40f19fc1a5e4b88a921fb13d6a23cb55147211f28","impliedFormat":99},{"version":"4f9462a097d141e885b737f09164e861e2895f1043d0646180db3c03f0dbf143","impliedFormat":99},{"version":"d34336323293a332e720fa87bec70af73a870dc7b3f7d5f38cfca0fc3c3b65ad","impliedFormat":99},{"version":"b3531a70c555139ccbeca949f84282d65b6a5755d863ac3503e35a82502b09ca","impliedFormat":99},{"version":"6d199ba5d5156351ccfeecaa9a5ae01af5b7784cd81f222e7a0c11e4721b354e","impliedFormat":99},{"version":"f3a8d7c9272a3a82c85f2341f5e2ca3c3d18f060150226f787870c8ec3e2a827","impliedFormat":99},{"version":"1b0df60f3b58b2f4d4478820ac476f7e78274a52292d9d42373a0a96dcd3069f","impliedFormat":99},{"version":"6aa2c64d92e9090f78179c0bed1602e9f860b91275d459e67e318c9e79464657","impliedFormat":99},{"version":"9f315cecb5e5da51300379da15a3f78aec7453cb4d004fef057d8ef6e5d7dcbc","impliedFormat":99},{"version":"d06e733c0ebb22e1e3af02a32c34e625947b88513d3bbfb8b13bbfe94e12fe4b","impliedFormat":99},{"version":"cd1b749ad64dadd2a14d785d1af90a7c05304cad2fb6a77a90c78e1f88b0c436","impliedFormat":99},{"version":"a9d41a14643ed25da84e060e39d81a8170e5cf407909528b34ce32e9c3e5522b","impliedFormat":99},{"version":"79f75d25b82ef484fff58c701d4d15aba4d13976cf7c981cdb4cebbaaa0e8105","impliedFormat":99},{"version":"ce33c917b77d69a60d4844a965a3db13ee6c2ac0bcc2bf8429e28586cd57d0f5","impliedFormat":99},{"version":"a785ac9f11b50e976663ee951f7a7acc3320a36532524a9d46a0fe542720e34f","impliedFormat":99},{"version":"5ba8578db919e6b54168305899203c13fd5a86e8f8e76b08fb42eaf9c6879f5e","impliedFormat":99},{"version":"67f397f227fbf8576e325c6b3c5d39d9fda989ba0b09b58705f33427af457e81","impliedFormat":99},{"version":"c8a1f0f8c1480aa0a5245a43c3c2b380d17da6eae045ffb92a2daf5e764d7b3a","impliedFormat":99},{"version":"ba555564cda57456f002787864df83ac0d35d8e74b4e89d3d73e688cd4464f87","impliedFormat":99},{"version":"3d6c80e747f1c522a6cf6df4c7e86d1e07b01fd9e1c160ed4170ad63d132ca7d","impliedFormat":99},{"version":"728dcbde517e31c9b8bc622ecb1ef5a275568d69e6bcab2f34de961d8f681e1c","impliedFormat":99},{"version":"119014bf306302bd117b1bbe9f809313816d36020a59d07f2c6c37790665757c","impliedFormat":99},{"version":"829608c14e83f9ad43e6e260119617029d6d425b7ae6a21132c6e3ee2ca850e3","impliedFormat":99},{"version":"0e3823c30ce7d5ee4e0cf6fb915ba8233054bf3988d55359dbf984fea5c2568a","impliedFormat":99},{"version":"ad40ae7beeef7d76a610b2669d798235c7a8e5a5ea0de65de8ab7433641c206a","impliedFormat":99},{"version":"9a870477f7e4a5c19dd446e1cd6c337bc6109089175e0557d7bb320f2894a9fc","impliedFormat":99},{"version":"949dc79359a4014c163c82d16f9a33130ff948a4fd5dc9ee1276ebf4e9dddc29","impliedFormat":99},{"version":"64d5f2f2523adbb097b6c20d346158bb48307ef9c9f7f65f423aa0af58beb9db","impliedFormat":99},{"version":"d35ca62340b51165dd1a9d27f4615790d38961f6e0728e3fe688643ee25a9750","impliedFormat":99},{"version":"af650943a57e3e1a0cf2d73e4fb2fc4f9e0b5f3414242d849f13713d7bfc86a7","impliedFormat":99},{"version":"05070c9cce1bf6c0a6ad2f9cab6562d6f0717ef3be5e85bf607a88292866dfe8","impliedFormat":99},{"version":"423872925077214074ac64562f539ea6a95e2aec64aa1dfc21ce7e18a49fb2a1","impliedFormat":99},{"version":"d5170c8d36bae7f5e54716612fcffe654b406e3222810073aeda14c20bede12a","impliedFormat":99},{"version":"0716f1b01085ea795a96bc1d9159baf2b98025c2f1ebd9b40b49434dc70b89d9","impliedFormat":99},{"version":"c5286a8f76ab94568608c5e3c588024ed63047e61ddd8037c373dc68af120392","impliedFormat":99},{"version":"1c0807be4d4ecefddbf9b719139c13368ec4a5ed95c7324aa4d591e3cc550840","impliedFormat":99},{"version":"7f9e6651383f0563cc730c42973bee069dd48cc96d99940218379e516d900a9d","impliedFormat":99},{"version":"e6370030948c325544eb00e8ec025ca8b5c29c667630d99b9c568fe01f665078","impliedFormat":99},{"version":"e5dda9fb9dab003e975fa2b3f8afb3f3e21914f48df73b4c21c4e7d3aa59c550","impliedFormat":99},{"version":"bc06e0598f8dedbb70b897f45d387f33fff56c0e93c95531df7836b81929db6f","impliedFormat":99},{"version":"5ddafee7e18fef65f2fcc9e6c143e8cfce64fe639fcd43512fd48103cb7d0880","impliedFormat":99},{"version":"e58f814f0cdddf98a39a886af78aef76af93a9407d314bfa35c825f3c9b9ed81","impliedFormat":99},{"version":"06c9b6087d78baf71927b1d8da838c6bc1577398e02d615d10a6d454c590b1e3","impliedFormat":99},{"version":"1159f7a7770f4f3e21c7c1cf5dd679c44ddf4f6d5700290b728af9a8678bfb20","impliedFormat":99},{"version":"0d4359e3863dee0d03ee806a2027c3ca80d2df49fadfb4883a83d253dbf7b7ce","impliedFormat":99},{"version":"fb1d640181613305988efc7fe3370d34c046d39e03fc047c3551c94e9d08e0a3","impliedFormat":99},{"version":"1440fc398d5289c15ecf7c39580a968ade6e4c050bf519fa9555b34591bb4af1","impliedFormat":99},{"version":"6869337d36e58a184d046aae831f640dbd65e37f089a8cadb284e9d71e294df8","impliedFormat":99},{"version":"c2df7d7040a47954a9e3f7cad68adadfaf415a3a2462c7c623589323d0b7adf3","impliedFormat":99},{"version":"50e01013f474ae073d2c59624749bb26fbeb8a44ecb76695606126d16ed64553","impliedFormat":99},{"version":"b04b90388c60ef1674fd77e3a66d9432873980e7ee87745332b9c10457fe7289","impliedFormat":99},{"version":"3e768d76d6b43e265d2e074179bb5770774155d157ce68a5a02c907282750cfc","impliedFormat":99},{"version":"6ba33903b042f585b4cf3192ee22af279326e64ad157101e1bcede7a70b15adf","impliedFormat":99},{"version":"c6467ed6ced9fc889c3b71f940c8f88bce1e7bd95368ebc57ef9466a358e6674","impliedFormat":99},{"version":"9b7cded7d20ce665ee2bfdd5633da6bef8a499db922d3b6b4460c964cd1be562","impliedFormat":99},{"version":"4acbab96d77eba31dcf5449218d922801031d7de833663ff9d8e9b61369a0aef","impliedFormat":99},{"version":"40fb77b3d3b3e2a7efd19d2d22627026bfb62cec7717ba5e557b521ae2637dc4","impliedFormat":99},{"version":"55b13c1dd972dfeda70fcee2b2537a785ed03fc5c361b11608a2712b90b959cd","impliedFormat":99},{"version":"adb20bc681c4d0c3374d8b78791f8ead0ca0fe15983a551b40fc4936648bb578","impliedFormat":99},{"version":"bff8dc562f4ff354814df681853116fcfa12c295e4303603a6fc679f6d971750","impliedFormat":99},{"version":"e544a1c40a5f673a3a7e52de4f49681bbf529d9e1153aa7751f0e588c07d7efa","impliedFormat":99},{"version":"6f239b41df9c2ea6444023435f07d2369bb76d88f5028982e8f88d9dbcb604e4","impliedFormat":99},{"version":"39c752cffb1a85d727d4c6e5b0c25282ae3a4fdfe5d8227c38b50044cd4ed743","impliedFormat":99},{"version":"8ca5d1bbdf57ef5bc32f37a9726ee951c2864ad336a34ff318d0cac7e7f651de","impliedFormat":99},{"version":"37f59378ffb6b2d6971586a55cc10411bdba7206f7193b52d42197e32f2446f7","impliedFormat":99},{"version":"fbedf387f1d5b9ad293214ad01a3d89bfc6df3217af27a27e510c73a037312a5","impliedFormat":99},{"version":"996950adc8136a34770e8565dfb7ccedbe188234fdf2db46cc79fa6cdbd66a7a","impliedFormat":99},{"version":"160f9097426561fdaed62ce71a37fccf99be456011eef35d01253741932c9661","impliedFormat":99},{"version":"3ad36afdc1975a50309d2e55b5c2bba46aadba993537bc75b65f085bfef3c996","impliedFormat":99},{"version":"801a096aef05881eb498616cb15ba6cb3da874865207a088dd963a46023cc89c","impliedFormat":99},{"version":"e0a8a476d2d73c121ef763186d4a36991a45471dcbe98732748643d39c17f09c","impliedFormat":99},{"version":"3d5e6241b997c057749fa806facb8887891fb06e67eab4c113bd36ca17bf77fb","impliedFormat":99},{"version":"0122b4d85b9be2b0b55f414090edb2e7e5b58cd4e022ce23989d6e119506faea","impliedFormat":99},{"version":"feeaf290ca736cd2be9dbbc6fc46771ce201529e95ce882c92a796368bcc73e3","impliedFormat":99},{"version":"95aaaf4d6f9d3a1b8966728a20c48164bfa7a8d9230f207f2a43ac11fc594e10","impliedFormat":99},{"version":"991351e5fbf046ade49c4235865af04ed3bf79bb1344864d64dc6fa1e090514c","impliedFormat":99},{"version":"0d3a3d5097a6a21e8574900bf1a1bc5df40988586dcf9dcb653fa700503d4962","impliedFormat":99},{"version":"4eeb635e14e95d82264e58ba48a44eb73f3e38c23b3ce826a1ab87fb215fe7a2","impliedFormat":99},{"version":"cd2995a95d0c9ff13ee7a97c9128e2684ead9b89ebcd991ee8e889aca948e207","impliedFormat":99},{"version":"afec6accba8ddf0aa8b91e1883aa2ea801a2f3f6404f7aacf34dc7ed6fb8cec7","impliedFormat":99},{"version":"02823ab4704c645aa0a594d520426cd9b1a776a242005bb04d35389dd35ab1f2","impliedFormat":99},{"version":"80b9cfc778a768d883d329669a325bfeefe1a6c866e05c75a64689960ac5f2aa","impliedFormat":99},{"version":"2a83200ba02822ce3ac4d68c2cab29273150505ed567532a133a20bbc7e68ec6","impliedFormat":99},{"version":"2b113dd63b57d48fc6f9a748e22cd6cdd2b18bee091a8286b36f32085138ee15","impliedFormat":99},{"version":"d684dd5b0a093bb586b8477b6ceda5f62f793982041fd1b2a222fef52a1c3b2d","impliedFormat":99},{"version":"30062e3628fef7c84a3c193d1bfe21a5498f9b53f3d6593323c5d41bf8576ef4","impliedFormat":99},{"version":"19b0eca295f5dfbc38857244c9e875b9410926ec00ec96e4700c7957c92533ca","impliedFormat":99},{"version":"03af5ad674ec20be8583ada8fc6833b445b88bf9244481e7a2ee283213070c68","impliedFormat":99},{"version":"c0c1c1bfcf65b773f5609169abe698305d281b5f926e4c63a188a87e670de425","impliedFormat":99},{"version":"40e0080e7412be9160e51065e73fa02fd59fe914da2fb12139814d9f34044464","impliedFormat":99},{"version":"e21f5e986a1d531131c64b94b0304e67e076d31107e80f604b3d466fcfef6d46","impliedFormat":99},{"version":"2c521da211b5b8384fca5996cb362bfcc62411ca2f22bf40221a8de7e033d303","impliedFormat":99},{"version":"c3315aa3888b4ab9804c8ef9b07caab5e5c0cf412a909faa70200e9d5aeb7c9c","impliedFormat":99},{"version":"ba760ff1ddcdd93c88cad217bc17e8b4e922f5e697bcaae0846a0028d31ba599","impliedFormat":99},{"version":"f1083bc7c0d73c8fcbe183c7131e7cc54543aad18f42654a3a3e1be48fc39465","impliedFormat":99},{"version":"7a34416b8856d7fa9fc0cad61de9a5dfeb140544309ce74778cfa1110e07b72a","impliedFormat":99},{"version":"a80e8bc4c77d345bf132ed1a7beb2d716d01999f1d7c5be29a71a1c002e175ce","impliedFormat":99},{"version":"ca0cbc4dfaf6a85cc4174a1ed7211aa17125a9d87dbde4d387fcd3db16d31223","impliedFormat":99},{"version":"12cb647b2b5019e5ab0c96023af34eb1e80eac58938577909c2bc20403da5890","impliedFormat":99},{"version":"0d56443cf4645c9fec714e14f6c99e246f27926169e0bd10069bc7cab1d74043","impliedFormat":99},{"version":"a3d1d3d9f234c7bfc31440649d48b523a80848945c3d8a2e0e5c58155e5a35cd","impliedFormat":99},{"version":"00b2af81f381c78a7c7a94ccd1ec6678fa9102554f0bbe4a48008818710afd98","impliedFormat":99},{"version":"a5f44d1ab98b8f29f90492c057eafffc14521a7cc0cdb8e036ef0541f2d923cc","impliedFormat":99},{"version":"858625b1fd6da32ef93167a7bb30e9ebfdb1b12c2c771f6e276e21fcbf6d28d6","impliedFormat":99},{"version":"1dca71c43b1f127c85a832c91ebd93f568f848f71ebbad49c69c97b28f102478","impliedFormat":99},{"version":"4140f62e4f8c9719ce15b3c73b2b5a36ca27e14fdec8d1b94c711abf190ddd38","impliedFormat":99},{"version":"28ced0cf69dd632d98961761b4250d6c0253e861fb217d019cf2ea634b882699","impliedFormat":99},{"version":"5ff96b7fc47bd4eccea926d559d6a76ad8871f752447f3fa698427c756c832d7","impliedFormat":99},{"version":"62ed2978ed2f3611e60bc80fdfedf5d0b6cb26b46835758d73b56956b0b7d936","impliedFormat":99},{"version":"0b7887c86bf0fe8f44d0f9082ae70ca0307d1013b958d884d54ae95698a8344a","impliedFormat":99},{"version":"31779f2eec7eb6657587a9943837d504e5d1747db5b06349ba51b05257588aa0","impliedFormat":99},{"version":"a42c680a17c557688a90c4c547f5f425b78e33cdebbc7ee4fd0135b0fdb26dae","impliedFormat":99},{"version":"e1d916f45a9c540c3ec595a41b55fc80049df132e63f75367c0290fc7238a89e","impliedFormat":99},{"version":"53608e6e0d36b8fd5a9e3b5afbce1f67c2933410317beb2b9973b77c1f13a0cb","impliedFormat":99},{"version":"49611c9c0dea1fad478353d0a5c394cd5c66b60d760d12e0d99063a2ec8cda5f","impliedFormat":99},{"version":"6b207c678bf857a3253cf4c82c1da768b6d7fd5e6a0ac3c8e27f83f65bb6f24b","impliedFormat":99},{"version":"2140fde2b2b1861f77c0e308232a2f73dd78e7cc784207c618de3b6c46da190a","impliedFormat":99},{"version":"68cf4649d2c34c7f3485ea72b95f8c1f4383f265dad143c16fbe608037358f53","impliedFormat":99},{"version":"20a981ef7b7bdabd1920d67b32b5d53675bc11bae590c3fdfd4746ed1e6fa7a0","impliedFormat":99},{"version":"9b6ac1aaf1599be6c19f32a3e87bcec56d5f2fce6d41fe39ba5fe175d1549c4e","impliedFormat":99},{"version":"cfa9f8ffa183bf6bc84394787fa1c54bc060441643b5f0c4ece5645632a11976","impliedFormat":99},{"version":"59d6dd3cf7364974669a5942dbb548e691b1f8414c12940b5ba27339dee4a91e","impliedFormat":99},{"version":"3c4b2980f4880b3de393ecfd0ff078c00a0d7ed2f751a2c68bc5394ec9917878","impliedFormat":99},{"version":"49e1b05f3946a3a49dcbc81900e6192f84cf3d870223fc04133924079ab26e75","impliedFormat":99},{"version":"433ba82be5f2662d62fe8365a537644adb43b7f281d810c99eb1c09e4e209f88","impliedFormat":99},{"version":"0c181e791efb543d0560d9b2870515d821e3dfa0e2a8dda640f1535b2764ba6e","impliedFormat":99},{"version":"eb82d2e6a9a1159f416a32750c5aa269904727d1a384bd56fb61ae9e1542c151","impliedFormat":99},{"version":"30dd04b36fcdfcf9f4cc5fcde78bf86941275b1641481b1643419a46934b6bc7","impliedFormat":99},{"version":"684631ad2087983d1fa9cfe781debe5b59efa87291c1df2ca0033bc26f3f9282","impliedFormat":99},{"version":"5d4e07aa8912747754c81949a7fae410393a0b511b607da5c8859b59134dbed0","impliedFormat":99},{"version":"ca358f352179f2ef403c343bfe76b167d7735162a6084cbce3213417a9ccd158","impliedFormat":99},{"version":"a43368b9ec2b3b71677d47a05c7d3296ca632f6c05b3be9aa9b18b18df6666ae","impliedFormat":99},{"version":"e7542a62f622e137e574f6c2811e4eec547bef5ef17868f1740c17b001d10a8d","impliedFormat":99},{"version":"c8e4c5adf99601307a86a7ffd1ea4899bbcf44bd4fee17100a9dcd3232047cc1","impliedFormat":99},{"version":"7b2510df81a30a99a97f2b439b4ffb382d0f3d465fd46665e29e899d6fc30617","impliedFormat":99},{"version":"5b0488f48695d38c3f1fc7a95f1e5a5ec32d09d2c10b167d20ee4c1307630ed7","impliedFormat":99},{"version":"80222964f435aa1b28c4714ea86d3499d776fc47dbdbb4d161ce34d1d9c33ca4","impliedFormat":99},{"version":"418471fc8ccdb989edeebd30ece9a45480d9144255050a301f48d95231ca43bb","impliedFormat":99},{"version":"bca3eb2e7d0e4a24daba895e9ead08317a90a8326b07b63d2775b09cc61b2f6d","impliedFormat":99},{"version":"05e6fbfa9545e669d5e67e3188d03f7fd50c41b84e13da570330a2b016e0b45f","impliedFormat":99},{"version":"e7deee5e735375a7dc03b23fa8e2dd0e707bada9f9e4d7d96da60a688d7fcc3f","impliedFormat":99},{"version":"3b944a181090e86de3b44670de8061d6def4315e3f0e68a448469c2ab867b552","impliedFormat":99},{"version":"266d796619bbd68b75e6848dff8b0f5ce7feb0bed225ff928bfe25bdc4602250","signature":"5cbbc192960d423ee248e4637a303bba7bc6c5897f8f9f9cb2bdec71418a86ed"},{"version":"d90f8e2fae7e6418c43d49db901ac55b71596633627442cc54ef0dcb9be52652","signature":"f6e2bb9b8f99b9c464239e72479a3ccf213306c8db269573e9b57cd7d1d5ae50"},{"version":"7a474f6155fa388aaa9b94e8938ce74d37f290dd32b6053bf7ca7f80e4ba5235","signature":"f535d0e212b21cf44cef76c4ab9575bd8fc872f49a665de6e5531f4458a87160"},{"version":"e783cd105107800009d3cf3c3b4b0c3815905528deed5c917c9230189ed7452d","signature":"1a305f4e0816e0aeacbdf7f0c2ba7ad8dc3e60916c0ed28946fdad753aa972f6"},{"version":"8526d2a4a66eb2363fd8a0f119f25fc4216e5bd9a92330d6734bb11d6f39f3af","signature":"286f0a57e7e1b93d00cdd6a1817739a4018a10baa63f60038ab388f973a404e4"},{"version":"da9f1e5ff61ddd8d0e2f6b723dcdc840e8da74c9ce419f681b21c0fa18edaf85","signature":"68f9fba31a9898c15c08053fd0dff961ca64759b22a20a15229df30899ac090c"},{"version":"59f6a4d2928a90a5cc48b85f23b8c58b6ca27e2475bda3886ca15d9618fb29e6","signature":"2c55afb6cf8360cc9fb987dadcd62649ac62841a1a91b4ef2a906e8f0b9941eb"},{"version":"ccc51a04f872cfda45eb1908a9f9333f6b0b4cacf1ad1454ba68c4fb0cca51a9","signature":"6ff18052b239401dede64dfdfce2bc2e20632110a9ff82456749f609517fe721"},{"version":"e6bef70114b74828a98d49720fb98184c8faa2655801f7ff1d5399c14c8c4572","signature":"fa2eae3a28979e3d440e9beb1fc257675d416bffcfe744c38f49e34dd63898db"},{"version":"3b51f53f02132c5283706ffb3c5e2ce6f5acb819fc4b42f26894d3d98d87c929","signature":"b160e3dd134b408f7771757b2667dc8df5b5db56378fdff870296593017cbbf5"},{"version":"9ab225a0b0ad3670296a83ed879918b1af2bbbe8aa74ae97de35524ef134e5e0","signature":"c1b4f1b82b22734fe6a7e4d1105b35b700a3051bf4fc3dede769efffd9aba1cc"},{"version":"27679e96d1bd38c5938178aaf4abe8627493090b63d6bae2ce8436e6a87ebe4d","impliedFormat":1},{"version":"0f052bc8c149445eab975ed9904bfbffc9423097281508fc9bfcd363fe73e30d","impliedFormat":99},{"version":"89225f279e9349673519446e5f64487937b1362d26d7444f74649c443172ef22","impliedFormat":99},{"version":"cc925bb05a88470c834ada8b8d423683db31707fe4da36296f4afd2f69e2e30b","signature":"9af941ebbb5f205652cc7691b35105f06131b6e22631483df9a3d2e12c90c4c3"},{"version":"30219b4811cf18773d66acdba1dccd978667a34ca2b8c79b82c3cf815131f4f3","signature":"ad92e210c81ee442085cc19f44797ffc75e9e85a85fce52f7bd9b49bc58bab80"},{"version":"a772b519563357255a041bad1a57c1f8600997d2e83f1f6df79dec3358c2962d","signature":"0bcaa9b28f9185c25d8bb560f4056a2f82ce46f43f822d43c5280d831a72a131"},{"version":"db0684af9e32fd0565b09e14137bde08228ac06ce800084730788df318436121","signature":"53ba8fad914af2be8672983f1e874628cc22bb3c566feb3dffb4e2f26e39b0cf"},{"version":"1d6800aeb28b8beac0b5f3fef6a481574d71919ecdb7075af52f88e1e28f9b71","signature":"a5f7076c6e98069ceafa2615d44f23f294b4dc2f257842b7bb067b4943b07e80"},{"version":"16c4d4aaee5e0046fcbf70d59a103b8cd78b4f772f4c6125a6b4b3373d490987","signature":"ae56fb90af23a6c7c0b7789b531a39065e1e0b963c6d420337e4db08605e1fe5"},{"version":"e4d290d14eed371ecc51cf2036bf064e5ff3191734e66459db1b14a0c6f2eeb7","signature":"3dc200b619d9b3921ed927e025af75ccc380d77447ddb5bae02944692f2bd454"},{"version":"a706e1129b56e72e53f0a6284a1c5295e45c1a31792ef1f044217f360faec15c","signature":"166a173f09113441ad608576f8aa5d48df9f105e2c8a7feca0a3dcf27fd89df0"},{"version":"03058ca16f42d0a619f6faa3848096bcf5c5bb3382d12aae23c78a1e17888b31","signature":"97b5d2fdec7c85f9a8bbff85350c12635a94ef3dfa265679ab0806ecadb85dd4"},{"version":"ef86c33a91aac82d86ae26dd7d5b049e094f1c9eed121375575e93a5217b4e0b","signature":"6880c56133117c76a8e2fbff4c2918caea2f1d2f7db06668ee5149094584e43c"},{"version":"ddb193970ad94819ba28b1b9d68fed79cc729568a49940359665f1306f95393c","signature":"d9926272f3d88d7b5461ae47c9da311d353ceacbb176e976aea11a22d3c8c5cb"},{"version":"40871fe15e2ecf88714da0847588959d7049d34709a5c4f9f2584d8cdbda2874","signature":"89b9bdcbcfb6dadcff24eab8a1a3ec3ae0eb2d548a37f4091aa8aab0ac405627"},{"version":"9e87fba04e87f1d900a459f6cd3aa53311ead8a1e9bd32f1c4019cbcea2cb7fd","signature":"bd283455bb1836729cbb987f5cec241041de4854e4ed2d4155d64e81854ff201"},{"version":"ea38212c34e9ef0d803a4629c30d3808f984dbb8c8da792ec9dfc4cb4da07e46","signature":"00ee72c8e766b351df16e157c6dbd7b82f5fd659b64a4ae71bada2af2c9a2196"},{"version":"b88204d8ac6d600d44a99d26f5884ef55d0dce70e47647a07decb32514ed54e4","signature":"7f8acc73668636513659747f853332a4b7fefa40d5ccf5d20f7696a69598e399"},{"version":"c3201cebefbbf7e25dd84c4bc61f357b13e89e2df71ed663ea800bf2a769f5c1","signature":"5c0d189ae1021e4e1b6fde67ed2e9a357474be7dc3eb4211de84a1235882deb7"},{"version":"ce07cd96d51ff742fdbaab46120b3e0b3edfdacc7b97e1552001291c325c8838","signature":"4fcba3823aea7a18b160041af629cff46341a0ff790b691b831939eb7f954a47"},{"version":"2a851f3adebd931ec949cd374ce0ab05d59dae3cfe3a56300cb0f55c1b933213","signature":"614051bf05d3b41673e2e865ed30c4eea50a171253fe7b7d3fd0b93a84bcafc4"},{"version":"73b725c171aacdf8016868cbb3f6537b7298b610c3b4a23be99ee1b1c71a53b3","signature":"85d459db8a234a07d7af58bd4a96f9db1b5ce5149072dde460b70fa96eece384"},{"version":"6a31a0b9d7f9730794768ff1dd5c4f510e4e1e35a1af5bd106df7392530d07f3","signature":"5f3cda1fd5dae864899c33f4cd18955e0bd43107572789ab990e41fdaad333f7"},{"version":"ca29c120c816120222d7561cd221c6aad4af304cf06e234bc16a6ea59022878c","signature":"be8c4dff12f713c857ff7211e205ba6cf5a4212829268e5d3937c5eec30fe03e"},{"version":"19c2bc5072ded03c0e230bbf1560ffdb38ccde0ff19e640ba6ae9d4a067dec81","signature":"157efbab6372e89ffb534b16a298e716175add5dfc8159fb9608877eb2a18059"},{"version":"0a3e28437639fa6653393be28e33c52c790ba72a802c56c6c70b6702a1bbb522","signature":"911b6da100b2ee84b9fc1dbdc34771a0701e4c8e0fa694bb510c33359b6026e2"},{"version":"abbb06c6c8f8bbbdceb60b6a46e2bf496a39b539f93c30cb38fe2137ce6aa83e","signature":"0ea4b7de810d4759cc256c64d94cbeb12e97a26582f8cea8981827a20be67125"},{"version":"bbf28aac6fc307a3925db448f87dc5e8d85b4806d9cead36f8776d77afa0b00f","signature":"2aeae9a85d9f2bd098e207b97f94105370c2986206f9992fe593430d5e6e2ff2"},{"version":"fb724c133584a056c6d715ce5275bfa294e2378c8bacc28e9ecac1acd5e73717","signature":"94ea9bfd0e479d53e6dbe56667671a509c9368dca504b26bef69d726abba8a2b"},{"version":"c1fb57d64078078c7548b0bb94b4ad00e62df72464a190e274de7a68973a52f2","signature":"3dfc11fb9036c0deffd34eca4bf80cb7c86b8f6e47f4d7c93b6970593367adfb"},{"version":"a4cf31373d4ddc07a09d5cd831df664dc093f2dd3b37b08ed7f08c21bb49d6e6","signature":"ee4e8505266b5bb2be82d994812b327c7eff0330648f8b7be90fa4de1e73ca48"},{"version":"d095e6bbfcd4f018806f73231311f9cffe242037bcc320e784c1c0f5ec1820d0","signature":"00e2d807fa89745a9a07a23ae586664725a4883a372bfec8a99db075e4e3a2e4"},{"version":"96f258d8c4dd85e8bf7b6e9a9d178c0b9388d5f4d283be8631d65552c35d1ea8","signature":"8613b26881a0a26fb34dc3648c6f32aa77696e8b65688d1de6dad2cee5034831"},{"version":"d23cd3b599d668f7ba1b4a708313d1ce761105fb4ffb0099314e8604417c4ee5","signature":"fa2db834e2587a561f5801fad014dcdd086fa57ec877a5c50eb1b4a4bedf633b"},{"version":"a6a11fda4d6d55588d5667dec55981234e803b3f014c03e5ee29bda5f5ab77e0","signature":"a3bb1c830fe06af6e8a2978827fc835b8027ca3e1d9a23286be3389f6fc0cc35"},{"version":"97ca28b5c460096532d75a9ce804407b96690b160fcda292fd662025d7484ef5","signature":"2a98a4ab9e9820072a946fcfef340d689969735f1d6de698296ffeb39a12ade9"},{"version":"88a63bc5562d804a5d8a538471150dbf66d05f6612ac95b51f886aa8cdaacf14","signature":"29365ccb20bf2e82cb68733ae86df255284262c5a96707766605e74e7a4e31bf"},{"version":"fd08e81fe3c33a352d864a26712bf10ec6758537462207751fd627606639a937","signature":"339c6463f32d297da9d028f9e1ddfa65bb09ade95fb4d4f941ed1afa98b69474"},{"version":"a86be42004c11e1e88d7ed5f606d5dbee707e5368f81144629f74535649b4f0f","signature":"d7f1748d7edc511cb9d290495cc8fef29990ad8097cb002843e47a4df8e8cb1b"},{"version":"22a7b5274e0c3eda9fc6defba141f0e76759714bc2586f3088744fa677456839","signature":"89889fc6b52ca7dd87c1cda1f1ec88b7ca670632761341ee497b515a25275437"},{"version":"71766854add73b8605a25e51e440ae537a38657ef60cd2172b9f7f3b182e949d","signature":"c03ae6b1a90abef48c8560207c3ade602a03c7b0400266d72de1d878f0e8595b"},{"version":"523da4fedbeff46441da8142ed5e2a67baab3931e3c4af8e486a3ae216c8e9a8","signature":"ba343d51c387bb4364109935cc71e23c8ed6d43d0b9ebb5be728e747ff344edb"},{"version":"05b9c773579fa21ed1720579e4874cbdfa44b62ba886e5d86a939391b2280a37","signature":"e7d9429fa198056b070f735514cdcb61de388fe8311b46ed313da75934a398c9"},{"version":"9ce37889c840574b868727286458b1b9a096e8b35fcbca73efc89da95b9301d3","signature":"fbd7490c61287e5dd21a191889565090b2a74a08756c1a96a5be582a96f2f620"},{"version":"388b7b0c8748ac411ecbfbb9676d0583f455baa0e2947af812a1c4dba4e41860","signature":"6eb1a106e16f4622d756ceb77dacbbc8fe3ab7a504de8811e0250a080982ceb3"},"fd4664d3ba891c02fc4c5b95d7de2b7d399e1b80e9a413d244e13ed124ec3eb4",{"version":"2cb665e04ffbce718a7be68e1875b9f8eee236739a079371ccd56696ebef6efa","signature":"08e921a75ffb64bf6359eb471543046fc540a45175bc10d9bfc10f07a094d8c4"},{"version":"761a6d6b9f2183c8209f450099a6c4cddc8e7eb4e2339be7da574d9b16c5237a","signature":"cba8f67be65fb4df3dbe95b986dee315d01470e1fe2c3939cd837b1783391735"},{"version":"0329fa3e6702a35c56591d4de8a42459c2127ca91745437eacda173b3b3e18e9","signature":"8b6042d4eb490073d078e68d11adb50c3217d7ad37992f5d27caaaeb7fd0c513"},{"version":"59598100e94188bb6468a8d2082f02a38b10920268b75ed15f9dc7c895dc90ed","signature":"869edbd2d4eb7939186d2a1e4d4a8f4d3b49f6968b30c30a7ffafe85a3a3850f"},{"version":"315b4ade2773b0a9a0c00b1eddb51c3f5daee7d558dc3371050106eb19aa3fe3","signature":"962e06e08fba0d408fe6fe07b31ec638c3c4d5050462a8f735466e1383a40edb"},{"version":"d09a06d7c7837d485720982c2fe996d102b54ae1389332ee6537165d7dd1da38","signature":"9474f35e4354d1c672c0e50a1486f883635acf25ac51daf558b0fe3a060f453c"},"12aa9c803cd79a739aa663156f39131869a41388bf253e3b51f0f61f98a07663",{"version":"1376fcb20905de176bd02c73f5fdd6dc0366d36d60725eec51273b30df79792c","signature":"ee3e10a4d1ca340b0ecfe104928d710096114a854bce058958f8fe1c5104b464"},{"version":"f7a76e04d55272e70d5e4aa916062f943870ac3253d495e1bfc3fd8bf2678769","signature":"4b3f957d26a976450dc20f17c42bc5985076b7aee2862c089d74618e70a32885"},{"version":"63ae39a34eb50bc66962f497136bfb3edf43eee2d5ca5588dd6a6b57569928dd","signature":"b786bd3b474e34d30a2dec8a5463c275b9f60f3dec90c9b9290d92922a49b2da"},{"version":"c1122a7d537641b06a2e4b5a0c70a08644cadffaa695e07c5271121951333e0a","signature":"bf23f8d76d60ea190fb57a69c680028ab33410610b4c3de78d2205ac9124b1fa"},{"version":"dfde2ab8bd062f440f68d8a0cbb5395a9288b10cc72b4382ac38eec88669ea22","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"37fcbadd9474687ec8464b6769167b1777921aa7a981d209d95e24a7a216337e","signature":"c4c2edaa636235a2977987778d7d5843ff70aaa66be8b959a259dc13fffdf2de"},{"version":"889b4beefc59797c39dd56afbd7a441c95a55d64ada2640ed7537ffff93c3d43","signature":"e4b720ad7cb72f6aa05cc8d94f15aa76a6335ce56f094ce06ca3a9fbb83be0b3"},"61bf0f4302ee1e5e4b2d037c7de82ce8410560dc61fcdadd1a1d4f016b99134c",{"version":"dc3b8558e7b3a460899bf9c18d20d9f41a55723961d385c03e8e47eed08c0ce1","signature":"3b278139f3ee26991f492c67ff390110b6908aacd90c407d7fd64c30476b2427"},"030e1fcbaf536940f6facf8677ff38f729b5574cfa6ebfcd6d354054ffd104af",{"version":"2db56aa2c1cc6a1f505922bdfad8bdb849d52c89eb0bfb8294dc5642fb3da17f","signature":"eb9ed10f5edb23efc5897763b5b2cad5d49b774abc2dc946fe7a3c94188bd6f9"},{"version":"623c1c8a4aa2c809f44e10f8edb4fe628039461e65c93c83027185049aec843e","signature":"9af9b7bea59b671adad2c3d96e6a32016ddd4bb733ec1eccfc748db741c7bd71"},{"version":"92e6d34734761367decfc51940f032ed342c9bb2d8faed5a0345b32af6c6bb6c","signature":"6656dccace415e2c2c6efa3030480206e1b613bf9778143327745d9b448bed47"},{"version":"a73027a4a089f54d3b7f5d1f5fee42ece2d00433a505181e39e26ba32f2a5e23","signature":"a5143f71cf3b3e24434ea1bcbfb2ce96538bb1a48a23670d5d824d5f3cb68455"},{"version":"d5ace6192178d45de42affa439c12585d4fe6aa51ec198da3261d64ce7f6897d","signature":"c3631567b9942cdb63c8c47b953e009ba090ac0353bb974adfd02b5b32af807b"},{"version":"cf8888dcc41b068af7a630cbfffccf68ce6f2ffb5413fda9ec562ca0493f8752","signature":"c441aeef9933c2a798ee7457ace59fd1bf3c69dacadb9777f02a1e3cb4e8df52"},{"version":"547bf5974369e3ff85eee157cbc94a69ce177b218cf0586ab93731491c6fc5ae","signature":"75e5571585ae7220697ba4a08f5b9621981839acd5c6352675535bb26512c261"},{"version":"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true,"impliedFormat":1},{"version":"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9","impliedFormat":1},{"version":"bb65c6267c5d6676be61acbf6604cf0a4555ac4b505df58ac15c831fcbff4e3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","impliedFormat":1},{"version":"5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"afcc1c426b76db7ec80e563d4fb0ba9e6bcc6e63c2d7e9342e649dc56d26347f","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","impliedFormat":1},{"version":"f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true,"impliedFormat":1},{"version":"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","impliedFormat":1},{"version":"d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","impliedFormat":1},{"version":"b01a80007e448d035a16c74b5c95a5405b2e81b12fabcf18b75aa9eb9ef28990","impliedFormat":1},{"version":"04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","impliedFormat":1},{"version":"dbe5aa5a5dd8bd1c6a8d11b1310c3f0cdabaacc78a37b394a8c7b14faeb5fb84","impliedFormat":1},{"version":"2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58","impliedFormat":1},{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true,"impliedFormat":1},{"version":"d076fede3cb042e7b13fc29442aaa03a57806bc51e2b26a67a01fbc66a7c0c12","impliedFormat":1},{"version":"7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","impliedFormat":1},{"version":"b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30","impliedFormat":1},{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"213fc4f2b172d8beb74b77d7c1b41488d67348066d185e4263470cbb010cd6e8","impliedFormat":1},{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","impliedFormat":1},{"version":"4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true,"impliedFormat":1},{"version":"f7db71191aa7aac5d6bc927ed6e7075c2763d22c7238227ec0c63c8cf5cb6a8b","affectsGlobalScope":true,"impliedFormat":1},{"version":"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","impliedFormat":1},{"version":"ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e9a8d4274033cb520ee12d6f68d161ba2b9128b87399645d3916b71187032836","impliedFormat":1},{"version":"a7321c0e96eecb19dcbf178493836474cef21ee3f9345384ce9d74e4be31228d","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"3054ef91b855e005b9c4681399e9d64d2a7b07a22d539314d794f09e53b876a7","impliedFormat":1},{"version":"427ce5854885cfc34387e09de05c1d5c1acf94c2143e1693f1d9ff54880573e7","impliedFormat":1},{"version":"bed2c4f96fab3348be4a34d88dcb12578c1b2475b07c6acd369e99e227718d81","impliedFormat":1},{"version":"e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","impliedFormat":1},{"version":"9ac9b7b349a96ff204f4172183cca1672cc402e1ee7277bfcdec96c000b7d818","impliedFormat":1},{"version":"ac127e4c6f2b5220b293cc9d2e64ba49781225b792a51cda50f3db8eafba550c","impliedFormat":1},{"version":"f5e277afc658b3fefe1e9d06f3018416ea92f3e094bc21d38517f7f36627a5e4","affectsGlobalScope":true,"impliedFormat":1}],"root":[48,[203,213],[217,283]],"options":{"allowJs":false,"allowSyntheticDefaultImports":true,"alwaysStrict":true,"composite":true,"declaration":true,"declarationMap":true,"downlevelIteration":true,"esModuleInterop":true,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitAny":false,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./module","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":false,"target":99,"useDefineForClassFields":false},"referencedMap":[[202,1],[53,2],[49,1],[50,3],[51,3],[52,1],[61,4],[54,3],[55,3],[56,3],[57,5],[58,3],[59,3],[60,3],[63,6],[64,3],[65,1],[66,6],[62,1],[67,6],[73,7],[69,1],[68,1],[70,1],[71,8],[74,1],[97,9],[89,10],[87,11],[90,1],[91,12],[92,1],[88,3],[93,1],[94,1],[95,1],[96,1],[99,13],[98,3],[72,3],[75,3],[76,3],[77,3],[78,3],[86,14],[79,3],[80,3],[81,1],[82,3],[83,3],[84,3],[85,3],[112,15],[100,1],[101,16],[114,17],[113,1],[102,3],[103,3],[104,3],[105,3],[106,3],[107,3],[108,3],[109,3],[110,3],[111,3],[115,1],[117,1],[116,1],[121,18],[118,1],[119,1],[120,19],[201,20],[125,21],[122,1],[124,22],[123,1],[126,1],[128,23],[127,1],[129,1],[130,24],[160,3],[161,3],[162,25],[163,26],[164,3],[165,1],[166,1],[167,27],[168,28],[170,29],[171,30],[172,31],[169,1],[173,27],[174,32],[175,3],[180,33],[182,34],[177,35],[186,1],[187,36],[176,1],[178,27],[179,37],[192,38],[184,3],[181,39],[183,40],[185,41],[188,42],[189,1],[190,43],[191,44],[193,3],[194,3],[195,1],[196,45],[141,1],[142,1],[143,1],[144,1],[159,46],[146,47],[147,1],[148,3],[149,1],[150,1],[151,1],[152,48],[153,3],[154,1],[155,1],[156,1],[145,1],[157,1],[158,1],[197,49],[139,3],[132,3],[131,3],[133,50],[134,3],[135,1],[138,27],[140,51],[136,1],[137,1],[198,52],[199,1],[200,53],[216,54],[215,55],[346,56],[338,3],[341,57],[340,3],[339,3],[345,58],[343,59],[344,60],[342,61],[284,62],[285,62],[287,63],[288,64],[289,65],[290,66],[291,67],[292,68],[293,69],[294,70],[295,71],[296,72],[297,72],[299,73],[298,74],[300,73],[301,75],[302,76],[286,77],[336,3],[303,78],[304,79],[305,80],[337,81],[306,82],[307,83],[308,84],[309,85],[310,86],[311,87],[312,88],[313,89],[314,90],[315,91],[316,91],[317,92],[318,93],[320,94],[319,95],[321,96],[322,97],[323,3],[324,98],[325,99],[326,100],[327,101],[328,102],[329,103],[330,104],[331,105],[332,106],[333,107],[334,108],[335,109],[214,3],[46,3],[47,3],[8,3],[11,3],[10,3],[2,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[3,3],[20,3],[4,3],[21,3],[25,3],[22,3],[23,3],[24,3],[26,3],[27,3],[28,3],[5,3],[29,3],[30,3],[31,3],[32,3],[6,3],[36,3],[33,3],[34,3],[35,3],[37,3],[7,3],[38,3],[43,3],[44,3],[39,3],[40,3],[41,3],[42,3],[1,3],[45,3],[9,3],[207,110],[208,110],[209,110],[259,111],[206,3],[210,112],[48,3],[271,113],[204,3],[224,3],[226,114],[212,114],[274,115],[211,3],[203,116],[261,117],[260,118],[280,119],[205,116],[279,116],[266,120],[213,3],[257,121],[276,122],[275,116],[277,123],[223,124],[220,125],[249,126],[248,3],[251,127],[252,128],[278,129],[217,118],[250,130],[227,131],[273,3],[272,3],[255,132],[253,133],[229,134],[233,135],[234,116],[281,136],[262,116],[246,118],[267,137],[236,138],[237,3],[231,139],[282,116],[239,140],[238,116],[283,3],[240,141],[225,3],[241,142],[244,116],[230,116],[263,3],[222,143],[247,144],[268,145],[243,3],[242,146],[228,137],[235,134],[254,147],[245,118],[221,116],[258,148],[264,149],[256,150],[265,151],[269,152],[270,153],[218,3],[219,154],[232,155]],"latestChangedDtsFile":"./module/util/floor.d.ts","version":"5.6.2"}
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "url": "https://github.com/mainnet-cash/mainnet-js/issues"
10
10
  },
11
11
  "name": "mainnet-js",
12
- "version": "3.1.6",
12
+ "version": "3.1.7",
13
13
  "homepage": "https://mainnet.cash",
14
14
  "module": "dist/module/index.js",
15
15
  "browser": {
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "dependencies": {
41
41
  "@bitauth/libauth": "^3.1.0-next.8",
42
- "@electrum-cash/network": "^4.1.3"
42
+ "@electrum-cash/network": "^4.2.2"
43
43
  },
44
44
  "optionalDependencies": {
45
45
  "dotenv": "^10.0.0"
@@ -102,7 +102,11 @@ function getElectrumClient(
102
102
  params.host,
103
103
  params.port,
104
104
  params.scheme === "wss",
105
- timeout
105
+ timeout,
106
+ {
107
+ disableBrowserConnectivityHandling: true,
108
+ disableBrowserVisibilityHandling: true,
109
+ }
106
110
  );
107
111
  return new ElectrumClient(
108
112
  getUserAgent(),